[LanguageDetection] Rename model elements of LanguageDetectionDetails.

This is a global replace of:

/cld_language/model_detected_language
/is_cld_reliable/is_model_reliable

Bug: 1157983
Change-Id: I9471600db6ae3221dd63fa92ee30d8c093748b20
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2587620
Auto-Submit: Michael Crouse <mcrouse@chromium.org>
Reviewed-by: Donn Denman <donnd@chromium.org>
Reviewed-by: Jonathan Metzman <metzman@chromium.org>
Reviewed-by: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Trevor  Perrier <perrier@chromium.org>
Reviewed-by: Scott Little <sclittle@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#836839}
GitOrigin-RevId: 0ebf0d592f864e372cf01f75d9477a6a693a8cac
1 file changed
tree: 334c58f4f1c619dc8943fbcbc6d36ec22df64172
  1. fuzzers/
  2. proto/
  3. tests/
  4. AFL_integration.md
  5. archive_corpus.py
  6. BUILD.gn
  7. dictionary_generator.py
  8. efficient_fuzzing.md
  9. fuzzer_test.gni
  10. gen_fuzzer_config.py
  11. gen_fuzzer_owners.py
  12. getting_started.md
  13. libfuzzer_exports.h
  14. libFuzzer_integration.md
  15. libprotobuf-mutator.md
  16. OWNERS
  17. README.md
  18. reference.md
  19. reproducing.md
  20. unittest_main.cc
  21. zip_sources.py
README.md

Fuzz testing in Chromium

go/chrome-fuzzing

Fuzzing is a testing technique that feeds auto-generated inputs to a piece of target code in an attempt to crash the code. It's one of the most effective methods we have for finding security and stability issues (see go/fuzzing-success). You can learn more about the benefits of fuzzing at go/why-fuzz.

This documentation covers the in-process guided fuzzing approach employed by different fuzzing engines, such as libFuzzer or AFL. To learn more about out-of-process fuzzers, please refer to the Blackbox fuzzing page in the ClusterFuzz documentation.

Getting Started

In Chromium, you can easily create and submit fuzz targets. The targets are automatically discovered by buildbots, built with different fuzzing engines, then uploaded to the distributed ClusterFuzz fuzzing system to run at scale.

Create your first fuzz target and submit it by stepping through our Getting Started Guide.

Advanced Topics

Further Reading

Trophies

Other Links