├── .buckconfig ├── .gitignore ├── .travis.yml ├── DEFS ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── java └── com │ └── deezer │ └── research │ ├── cld2 │ ├── BUCK │ ├── CLDHints.java │ ├── Cld2.java │ ├── Cld2Library.java │ ├── Encoding.java │ ├── Language.java │ ├── README │ └── Result.java │ └── language │ ├── BUCK │ ├── DetectionConfiguration.java │ ├── DetectionController.java │ ├── DetectionResult.java │ ├── DetectionService.java │ ├── DetectionServiceImpl.java │ ├── DetectionServiceImplCld2.java │ └── DetectionServiceImplLanguageDetection.java ├── javatests └── com │ └── deezer │ └── research │ ├── cld2 │ ├── BUCK │ └── Cld2Test.java │ └── language │ ├── BUCK │ ├── BaseTest.java │ ├── DetectionResultTest.java │ ├── DetectionServiceImplCld2Test.java │ ├── DetectionServiceImplLanguageDetectionTest.java │ ├── DetectionServiceImplTest.java │ ├── DetectionTest.java │ ├── README.txt │ └── TestData.java └── third_party ├── cld2 ├── BUCK ├── DEFS ├── LICENSE ├── THIRD_PARTY.yaml ├── compile2buck.py ├── docs │ ├── CLD2UnitTestFullOutput.html │ ├── CLD2UnitTestOutput.html │ ├── CLD2UnitTestOutputVerbose.html │ ├── a_little_french_test_input.html │ ├── evaluate_cld1_small_20110406.txt │ ├── evaluate_cld2_large_20130720.txt │ ├── evaluate_cld2_large_20140122.txt │ ├── evaluate_cld2_small_20130715.txt │ ├── evaluate_cld2_small_20140122.txt │ ├── test_version.html │ └── test_version.txt ├── internal │ ├── cld2_do_score.cc │ ├── cld2_dynamic_data.cc │ ├── cld2_dynamic_data.h │ ├── cld2_dynamic_data_extractor.cc │ ├── cld2_dynamic_data_extractor.h │ ├── cld2_dynamic_data_loader.cc │ ├── cld2_dynamic_data_loader.h │ ├── cld2_dynamic_data_tool.cc │ ├── cld2_generated_cjk_compatible.cc │ ├── cld2_generated_deltaocta0122.cc │ ├── cld2_generated_deltaocta0527.cc │ ├── cld2_generated_deltaoctachrome0122.cc │ ├── cld2_generated_deltaoctachrome0614.cc │ ├── cld2_generated_distinctocta0122.cc │ ├── cld2_generated_distinctocta0527.cc │ ├── cld2_generated_distinctoctachrome0122.cc │ ├── cld2_generated_distinctoctachrome0604.cc │ ├── cld2_generated_octa2_dummy.cc │ ├── cld2_generated_quad0122.cc │ ├── cld2_generated_quad0720.cc │ ├── cld2_generated_quadchrome0122_16.cc │ ├── cld2_generated_quadchrome0122_19.cc │ ├── cld2_generated_quadchrome0122_2.cc │ ├── cld2_generated_quadchrome0715.cc │ ├── cld2_unittest.cc │ ├── cld2_unittest_full.cc │ ├── cld2tablesummary.h │ ├── cld_generated_cjk_delta_bi_32.cc │ ├── cld_generated_cjk_delta_bi_4.cc │ ├── cld_generated_cjk_uni_prop_80.cc │ ├── cld_generated_score_quad_octa_0122.cc │ ├── cld_generated_score_quad_octa_0122_2.cc │ ├── cld_generated_score_quad_octa_1024_256.cc │ ├── cldutil.cc │ ├── cldutil.h │ ├── cldutil_offline.cc │ ├── cldutil_offline.h │ ├── cldutil_shared.cc │ ├── cldutil_shared.h │ ├── compact_lang_det.cc │ ├── compact_lang_det_hint_code.cc │ ├── compact_lang_det_hint_code.h │ ├── compact_lang_det_impl.cc │ ├── compact_lang_det_impl.h │ ├── compact_lang_det_test.cc │ ├── compile.sh │ ├── compile_dynamic.sh │ ├── compile_full.sh │ ├── compile_libs.sh │ ├── debug.cc │ ├── debug.h │ ├── debug_empty.cc │ ├── fixunicodevalue.cc │ ├── fixunicodevalue.h │ ├── generated_distinct_bi_0.cc │ ├── generated_entities.cc │ ├── generated_language.cc │ ├── generated_language.h │ ├── generated_ulscript.cc │ ├── generated_ulscript.h │ ├── getonescriptspan.cc │ ├── getonescriptspan.h │ ├── integral_types.h │ ├── lang_script.cc │ ├── lang_script.h │ ├── langspan.h │ ├── offsetmap.cc │ ├── offsetmap.h │ ├── port.h │ ├── scoreonescriptspan.cc │ ├── scoreonescriptspan.h │ ├── scoreutf8text.cc │ ├── stringpiece.h │ ├── tote.cc │ ├── tote.h │ ├── unittest_data.h │ ├── utf8prop_lettermarkscriptnum.h │ ├── utf8repl_lettermarklower.h │ ├── utf8scannot_lettermarkspecial.h │ ├── utf8statetable.cc │ └── utf8statetable.h └── public │ ├── compact_lang_det.h │ └── encodings.h └── java ├── guava ├── BUCK ├── LICENSE ├── THIRD_PARTY.yaml ├── guava-17.0-sources.jar └── guava-17.0.jar ├── hamcrest ├── BUCK ├── LICENSE ├── THIRD_PARTY.yaml ├── hamcrest-all-1.3-sources.jar └── hamcrest-all-1.3.jar ├── jna ├── BUCK ├── LICENSE ├── THIRD_PARTY.yaml ├── jna-4.1.0-sources.jar └── jna-4.1.0.jar ├── junit ├── BUCK ├── LICENSE ├── THIRD_PARTY.yaml ├── junit-4.11-sources.jar └── junit-4.11.jar ├── language-detection-v2 ├── BUCK ├── THIRD_PARTY.yaml ├── doc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ │ └── cybozu │ │ │ └── labs │ │ │ └── langdetect │ │ │ ├── Command.html │ │ │ ├── Detector.html │ │ │ ├── DetectorFactory.html │ │ │ ├── DetectorTest.html │ │ │ ├── GenProfile.html │ │ │ ├── LangDetectException.html │ │ │ ├── Language.html │ │ │ ├── LanguageTest.html │ │ │ ├── class-use │ │ │ ├── Command.html │ │ │ ├── Detector.html │ │ │ ├── DetectorFactory.html │ │ │ ├── DetectorTest.html │ │ │ ├── GenProfile.html │ │ │ ├── LangDetectException.html │ │ │ ├── Language.html │ │ │ └── LanguageTest.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ └── util │ │ │ ├── LangProfile.html │ │ │ ├── LangProfileTest.html │ │ │ ├── Messages.html │ │ │ ├── NGram.html │ │ │ ├── NGramTest.html │ │ │ ├── TagExtractor.html │ │ │ ├── TagExtractorTest.html │ │ │ ├── class-use │ │ │ ├── LangProfile.html │ │ │ ├── LangProfileTest.html │ │ │ ├── Messages.html │ │ │ ├── NGram.html │ │ │ ├── NGramTest.html │ │ │ ├── TagExtractor.html │ │ │ └── TagExtractorTest.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-files │ │ ├── index-1.html │ │ ├── index-10.html │ │ ├── index-11.html │ │ ├── index-12.html │ │ ├── index-13.html │ │ ├── index-14.html │ │ ├── index-15.html │ │ ├── index-2.html │ │ ├── index-3.html │ │ ├── index-4.html │ │ ├── index-5.html │ │ ├── index-6.html │ │ ├── index-7.html │ │ ├── index-8.html │ │ └── index-9.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ │ ├── background.gif │ │ ├── inherit.gif │ │ ├── tab.gif │ │ ├── titlebar.gif │ │ └── titlebar_end.gif │ ├── serialized-form.html │ └── stylesheet.css ├── europarl.test ├── lib │ ├── jsonic-1.2.0.jar │ └── langdetect.jar ├── nutch-plugin │ ├── langdetect-nutch.jar │ ├── plugin.xml │ └── src │ │ └── com │ │ └── cybozu │ │ └── labs │ │ └── nutch │ │ └── plugin │ │ └── LanguageDetectionFilter.java ├── profiles.sm │ ├── ar │ ├── bg │ ├── bn │ ├── ca │ ├── cs │ ├── da │ ├── de │ ├── el │ ├── en │ ├── es │ ├── et │ ├── fa │ ├── fi │ ├── fr │ ├── gu │ ├── he │ ├── hi │ ├── hr │ ├── hu │ ├── id │ ├── it │ ├── ja │ ├── ko │ ├── lt │ ├── lv │ ├── mk │ ├── ml │ ├── nl │ ├── no │ ├── pa │ ├── pl │ ├── pt │ ├── ro │ ├── ru │ ├── si │ ├── sq │ ├── sv │ ├── ta │ ├── te │ ├── th │ ├── tl │ ├── tr │ ├── uk │ ├── ur │ ├── vi │ ├── zh-cn │ └── zh-tw ├── profiles │ ├── af │ ├── ar │ ├── bg │ ├── bn │ ├── cs │ ├── da │ ├── de │ ├── el │ ├── en │ ├── es │ ├── et │ ├── fa │ ├── fi │ ├── fr │ ├── gu │ ├── he │ ├── hi │ ├── hr │ ├── hu │ ├── id │ ├── it │ ├── ja │ ├── kn │ ├── ko │ ├── lt │ ├── lv │ ├── mk │ ├── ml │ ├── mr │ ├── ne │ ├── nl │ ├── no │ ├── pa │ ├── pl │ ├── profiles.txt │ ├── pt │ ├── ro │ ├── ru │ ├── sk │ ├── sl │ ├── so │ ├── sq │ ├── sv │ ├── sw │ ├── ta │ ├── te │ ├── th │ ├── tl │ ├── tr │ ├── uk │ ├── ur │ ├── vi │ ├── zh-cn │ └── zh-tw └── src │ └── com │ └── cybozu │ └── labs │ └── langdetect │ ├── BUCK │ ├── Command.java │ ├── Detector.java │ ├── DetectorFactory.java │ ├── DetectorTest.java │ ├── GenProfile.java │ ├── LangDetectException.java │ ├── Language.java │ ├── LanguageTest.java │ ├── ProfilesTest.java │ ├── package.html │ ├── profiles │ └── util │ ├── LangProfile.java │ ├── LangProfileTest.java │ ├── Messages.java │ ├── NGram.java │ ├── NGramTest.java │ ├── TagExtractor.java │ ├── TagExtractorTest.java │ ├── messages.properties │ └── package.html └── spring-boot ├── BUCK ├── DEFS ├── LICENSE ├── THIRD_PARTY.yaml ├── application.properties ├── generate-jars.sh ├── pom.xml ├── spring-boot-1.0.2.jar ├── spring-boot-1.1.4.jar ├── spring-boot-deps-1.0.2.jar ├── spring-boot-deps-1.1.4.jar └── spring-test-4.0.5.RELEASE.jar /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/.buckconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | buck-out/ 2 | *.swp 3 | *~ 4 | .git 5 | .svn 6 | .idea 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/.travis.yml -------------------------------------------------------------------------------- /DEFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/DEFS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/BUCK -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/CLDHints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/CLDHints.java -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/Cld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/Cld2.java -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/Cld2Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/Cld2Library.java -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/Encoding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/Encoding.java -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/Language.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/Language.java -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/README -------------------------------------------------------------------------------- /java/com/deezer/research/cld2/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/cld2/Result.java -------------------------------------------------------------------------------- /java/com/deezer/research/language/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/BUCK -------------------------------------------------------------------------------- /java/com/deezer/research/language/DetectionConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/DetectionConfiguration.java -------------------------------------------------------------------------------- /java/com/deezer/research/language/DetectionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/DetectionController.java -------------------------------------------------------------------------------- /java/com/deezer/research/language/DetectionResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/DetectionResult.java -------------------------------------------------------------------------------- /java/com/deezer/research/language/DetectionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/DetectionService.java -------------------------------------------------------------------------------- /java/com/deezer/research/language/DetectionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/DetectionServiceImpl.java -------------------------------------------------------------------------------- /java/com/deezer/research/language/DetectionServiceImplCld2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/DetectionServiceImplCld2.java -------------------------------------------------------------------------------- /java/com/deezer/research/language/DetectionServiceImplLanguageDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/java/com/deezer/research/language/DetectionServiceImplLanguageDetection.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/cld2/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/cld2/BUCK -------------------------------------------------------------------------------- /javatests/com/deezer/research/cld2/Cld2Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/cld2/Cld2Test.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/BUCK -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/BaseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/BaseTest.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/DetectionResultTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/DetectionResultTest.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/DetectionServiceImplCld2Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/DetectionServiceImplCld2Test.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/DetectionServiceImplLanguageDetectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/DetectionServiceImplLanguageDetectionTest.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/DetectionServiceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/DetectionServiceImplTest.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/DetectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/DetectionTest.java -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/README.txt -------------------------------------------------------------------------------- /javatests/com/deezer/research/language/TestData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/javatests/com/deezer/research/language/TestData.java -------------------------------------------------------------------------------- /third_party/cld2/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/BUCK -------------------------------------------------------------------------------- /third_party/cld2/DEFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/DEFS -------------------------------------------------------------------------------- /third_party/cld2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/LICENSE -------------------------------------------------------------------------------- /third_party/cld2/THIRD_PARTY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/THIRD_PARTY.yaml -------------------------------------------------------------------------------- /third_party/cld2/compile2buck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/compile2buck.py -------------------------------------------------------------------------------- /third_party/cld2/docs/CLD2UnitTestFullOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/CLD2UnitTestFullOutput.html -------------------------------------------------------------------------------- /third_party/cld2/docs/CLD2UnitTestOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/CLD2UnitTestOutput.html -------------------------------------------------------------------------------- /third_party/cld2/docs/CLD2UnitTestOutputVerbose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/CLD2UnitTestOutputVerbose.html -------------------------------------------------------------------------------- /third_party/cld2/docs/a_little_french_test_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/a_little_french_test_input.html -------------------------------------------------------------------------------- /third_party/cld2/docs/evaluate_cld1_small_20110406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/evaluate_cld1_small_20110406.txt -------------------------------------------------------------------------------- /third_party/cld2/docs/evaluate_cld2_large_20130720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/evaluate_cld2_large_20130720.txt -------------------------------------------------------------------------------- /third_party/cld2/docs/evaluate_cld2_large_20140122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/evaluate_cld2_large_20140122.txt -------------------------------------------------------------------------------- /third_party/cld2/docs/evaluate_cld2_small_20130715.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/evaluate_cld2_small_20130715.txt -------------------------------------------------------------------------------- /third_party/cld2/docs/evaluate_cld2_small_20140122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/evaluate_cld2_small_20140122.txt -------------------------------------------------------------------------------- /third_party/cld2/docs/test_version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/test_version.html -------------------------------------------------------------------------------- /third_party/cld2/docs/test_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/docs/test_version.txt -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_do_score.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_do_score.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_dynamic_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_dynamic_data.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_dynamic_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_dynamic_data.h -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_dynamic_data_extractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_dynamic_data_extractor.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_dynamic_data_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_dynamic_data_extractor.h -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_dynamic_data_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_dynamic_data_loader.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_dynamic_data_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_dynamic_data_loader.h -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_dynamic_data_tool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_dynamic_data_tool.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_cjk_compatible.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_cjk_compatible.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_deltaocta0122.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_deltaocta0122.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_deltaocta0527.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_deltaocta0527.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_deltaoctachrome0122.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_deltaoctachrome0122.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_deltaoctachrome0614.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_deltaoctachrome0614.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_distinctocta0122.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_distinctocta0122.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_distinctocta0527.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_distinctocta0527.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_distinctoctachrome0122.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_distinctoctachrome0122.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_distinctoctachrome0604.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_distinctoctachrome0604.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_octa2_dummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_octa2_dummy.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_quad0122.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_quad0122.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_quad0720.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_quad0720.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_quadchrome0122_16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_quadchrome0122_16.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_quadchrome0122_19.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_quadchrome0122_19.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_quadchrome0122_2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_quadchrome0122_2.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_generated_quadchrome0715.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_generated_quadchrome0715.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_unittest.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2_unittest_full.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2_unittest_full.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld2tablesummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld2tablesummary.h -------------------------------------------------------------------------------- /third_party/cld2/internal/cld_generated_cjk_delta_bi_32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld_generated_cjk_delta_bi_32.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld_generated_cjk_delta_bi_4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld_generated_cjk_delta_bi_4.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld_generated_cjk_uni_prop_80.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld_generated_cjk_uni_prop_80.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld_generated_score_quad_octa_0122.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld_generated_score_quad_octa_0122.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld_generated_score_quad_octa_0122_2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld_generated_score_quad_octa_0122_2.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cld_generated_score_quad_octa_1024_256.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cld_generated_score_quad_octa_1024_256.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cldutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cldutil.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cldutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cldutil.h -------------------------------------------------------------------------------- /third_party/cld2/internal/cldutil_offline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cldutil_offline.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cldutil_offline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cldutil_offline.h -------------------------------------------------------------------------------- /third_party/cld2/internal/cldutil_shared.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cldutil_shared.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/cldutil_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/cldutil_shared.h -------------------------------------------------------------------------------- /third_party/cld2/internal/compact_lang_det.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compact_lang_det.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/compact_lang_det_hint_code.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compact_lang_det_hint_code.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/compact_lang_det_hint_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compact_lang_det_hint_code.h -------------------------------------------------------------------------------- /third_party/cld2/internal/compact_lang_det_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compact_lang_det_impl.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/compact_lang_det_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compact_lang_det_impl.h -------------------------------------------------------------------------------- /third_party/cld2/internal/compact_lang_det_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compact_lang_det_test.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compile.sh -------------------------------------------------------------------------------- /third_party/cld2/internal/compile_dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compile_dynamic.sh -------------------------------------------------------------------------------- /third_party/cld2/internal/compile_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compile_full.sh -------------------------------------------------------------------------------- /third_party/cld2/internal/compile_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/compile_libs.sh -------------------------------------------------------------------------------- /third_party/cld2/internal/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/debug.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/debug.h -------------------------------------------------------------------------------- /third_party/cld2/internal/debug_empty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/debug_empty.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/fixunicodevalue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/fixunicodevalue.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/fixunicodevalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/fixunicodevalue.h -------------------------------------------------------------------------------- /third_party/cld2/internal/generated_distinct_bi_0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/generated_distinct_bi_0.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/generated_entities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/generated_entities.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/generated_language.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/generated_language.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/generated_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/generated_language.h -------------------------------------------------------------------------------- /third_party/cld2/internal/generated_ulscript.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/generated_ulscript.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/generated_ulscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/generated_ulscript.h -------------------------------------------------------------------------------- /third_party/cld2/internal/getonescriptspan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/getonescriptspan.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/getonescriptspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/getonescriptspan.h -------------------------------------------------------------------------------- /third_party/cld2/internal/integral_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/integral_types.h -------------------------------------------------------------------------------- /third_party/cld2/internal/lang_script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/lang_script.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/lang_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/lang_script.h -------------------------------------------------------------------------------- /third_party/cld2/internal/langspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/langspan.h -------------------------------------------------------------------------------- /third_party/cld2/internal/offsetmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/offsetmap.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/offsetmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/offsetmap.h -------------------------------------------------------------------------------- /third_party/cld2/internal/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/port.h -------------------------------------------------------------------------------- /third_party/cld2/internal/scoreonescriptspan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/scoreonescriptspan.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/scoreonescriptspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/scoreonescriptspan.h -------------------------------------------------------------------------------- /third_party/cld2/internal/scoreutf8text.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/scoreutf8text.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/stringpiece.h -------------------------------------------------------------------------------- /third_party/cld2/internal/tote.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/tote.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/tote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/tote.h -------------------------------------------------------------------------------- /third_party/cld2/internal/unittest_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/unittest_data.h -------------------------------------------------------------------------------- /third_party/cld2/internal/utf8prop_lettermarkscriptnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/utf8prop_lettermarkscriptnum.h -------------------------------------------------------------------------------- /third_party/cld2/internal/utf8repl_lettermarklower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/utf8repl_lettermarklower.h -------------------------------------------------------------------------------- /third_party/cld2/internal/utf8scannot_lettermarkspecial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/utf8scannot_lettermarkspecial.h -------------------------------------------------------------------------------- /third_party/cld2/internal/utf8statetable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/utf8statetable.cc -------------------------------------------------------------------------------- /third_party/cld2/internal/utf8statetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/internal/utf8statetable.h -------------------------------------------------------------------------------- /third_party/cld2/public/compact_lang_det.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/public/compact_lang_det.h -------------------------------------------------------------------------------- /third_party/cld2/public/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/cld2/public/encodings.h -------------------------------------------------------------------------------- /third_party/java/guava/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/guava/BUCK -------------------------------------------------------------------------------- /third_party/java/guava/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/guava/LICENSE -------------------------------------------------------------------------------- /third_party/java/guava/THIRD_PARTY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/guava/THIRD_PARTY.yaml -------------------------------------------------------------------------------- /third_party/java/guava/guava-17.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/guava/guava-17.0-sources.jar -------------------------------------------------------------------------------- /third_party/java/guava/guava-17.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/guava/guava-17.0.jar -------------------------------------------------------------------------------- /third_party/java/hamcrest/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/hamcrest/BUCK -------------------------------------------------------------------------------- /third_party/java/hamcrest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/hamcrest/LICENSE -------------------------------------------------------------------------------- /third_party/java/hamcrest/THIRD_PARTY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/hamcrest/THIRD_PARTY.yaml -------------------------------------------------------------------------------- /third_party/java/hamcrest/hamcrest-all-1.3-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/hamcrest/hamcrest-all-1.3-sources.jar -------------------------------------------------------------------------------- /third_party/java/hamcrest/hamcrest-all-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/hamcrest/hamcrest-all-1.3.jar -------------------------------------------------------------------------------- /third_party/java/jna/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/jna/BUCK -------------------------------------------------------------------------------- /third_party/java/jna/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/jna/LICENSE -------------------------------------------------------------------------------- /third_party/java/jna/THIRD_PARTY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/jna/THIRD_PARTY.yaml -------------------------------------------------------------------------------- /third_party/java/jna/jna-4.1.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/jna/jna-4.1.0-sources.jar -------------------------------------------------------------------------------- /third_party/java/jna/jna-4.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/jna/jna-4.1.0.jar -------------------------------------------------------------------------------- /third_party/java/junit/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/junit/BUCK -------------------------------------------------------------------------------- /third_party/java/junit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/junit/LICENSE -------------------------------------------------------------------------------- /third_party/java/junit/THIRD_PARTY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/junit/THIRD_PARTY.yaml -------------------------------------------------------------------------------- /third_party/java/junit/junit-4.11-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/junit/junit-4.11-sources.jar -------------------------------------------------------------------------------- /third_party/java/junit/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/junit/junit-4.11.jar -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/BUCK -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/THIRD_PARTY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/THIRD_PARTY.yaml -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/allclasses-frame.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/allclasses-noframe.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/Command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/Command.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/Detector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/Detector.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/DetectorFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/DetectorFactory.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/DetectorTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/DetectorTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/GenProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/GenProfile.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/LangDetectException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/LangDetectException.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/Language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/Language.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/LanguageTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/LanguageTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/Command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/Command.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/Detector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/Detector.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/DetectorFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/DetectorFactory.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/DetectorTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/DetectorTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/GenProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/GenProfile.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/LangDetectException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/LangDetectException.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/Language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/Language.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/LanguageTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/class-use/LanguageTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-frame.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-summary.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-tree.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/package-use.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/LangProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/LangProfile.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/LangProfileTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/LangProfileTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/Messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/Messages.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/NGram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/NGram.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/NGramTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/NGramTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/TagExtractor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/TagExtractor.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/TagExtractorTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/TagExtractorTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/LangProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/LangProfile.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/LangProfileTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/LangProfileTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/Messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/Messages.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/NGram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/NGram.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/NGramTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/NGramTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/TagExtractor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/TagExtractor.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/TagExtractorTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/class-use/TagExtractorTest.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-frame.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-summary.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-tree.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/com/cybozu/labs/langdetect/util/package-use.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/constant-values.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/deprecated-list.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/help-doc.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-1.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-10.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-11.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-12.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-13.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-14.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-15.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-2.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-3.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-4.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-5.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-6.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-7.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-8.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index-files/index-9.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/index.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/overview-frame.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/overview-summary.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/overview-tree.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/package-list -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/resources/background.gif -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/resources/inherit.gif -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/resources/tab.gif -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/resources/titlebar.gif -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/resources/titlebar_end.gif -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/serialized-form.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/doc/stylesheet.css -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/europarl.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/europarl.test -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/lib/jsonic-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/lib/jsonic-1.2.0.jar -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/lib/langdetect.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/lib/langdetect.jar -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/nutch-plugin/langdetect-nutch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/nutch-plugin/langdetect-nutch.jar -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/nutch-plugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/nutch-plugin/plugin.xml -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/nutch-plugin/src/com/cybozu/labs/nutch/plugin/LanguageDetectionFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/nutch-plugin/src/com/cybozu/labs/nutch/plugin/LanguageDetectionFilter.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ar -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/bg -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/bn -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ca -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/cs -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/da -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/de -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/el -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/en -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/es -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/et -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/fa -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/fi -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/fr -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/gu -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/he: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/he -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/hi -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/hr -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/hu -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/id -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/it -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ja -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ko -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/lt -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/lv -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/mk -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ml -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/nl -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/no -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/pa -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/pl -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/pt -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ro -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ru -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/si -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/sq -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/sv -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ta -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/te -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/th -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/tl -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/tr -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/uk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/uk -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/ur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/ur -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/vi -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/zh-cn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/zh-cn -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles.sm/zh-tw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles.sm/zh-tw -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/af -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ar -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/bg -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/bn -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/cs -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/da -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/de -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/el -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/en -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/es -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/et -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/fa -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/fi -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/fr -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/gu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/gu -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/he: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/he -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/hi -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/hr -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/hu -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/id -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/it -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ja -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/kn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/kn -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ko -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/lt -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/lv -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/mk -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ml -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/mr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/mr -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ne -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/nl -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/no -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/pa -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/pl -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/profiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/profiles.txt -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/pt -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ro -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ru -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/sk -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/sl -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/so -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/sq -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/sv -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/sw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/sw -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ta -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/te -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/th -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/tl -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/tr -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/uk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/uk -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/ur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/ur -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/vi -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/zh-cn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/zh-cn -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/profiles/zh-tw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/profiles/zh-tw -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/BUCK -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/Command.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/Detector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/Detector.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/DetectorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/DetectorFactory.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/DetectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/DetectorTest.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/GenProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/GenProfile.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/LangDetectException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/LangDetectException.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/Language.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/Language.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/LanguageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/LanguageTest.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/ProfilesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/ProfilesTest.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/package.html -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/profiles: -------------------------------------------------------------------------------- 1 | ../../../../../profiles -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/LangProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/LangProfile.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/LangProfileTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/LangProfileTest.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/Messages.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/NGram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/NGram.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/NGramTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/NGramTest.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/TagExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/TagExtractor.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/TagExtractorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/TagExtractorTest.java -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/messages.properties -------------------------------------------------------------------------------- /third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/language-detection-v2/src/com/cybozu/labs/langdetect/util/package.html -------------------------------------------------------------------------------- /third_party/java/spring-boot/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/BUCK -------------------------------------------------------------------------------- /third_party/java/spring-boot/DEFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/DEFS -------------------------------------------------------------------------------- /third_party/java/spring-boot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/LICENSE -------------------------------------------------------------------------------- /third_party/java/spring-boot/THIRD_PARTY.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/THIRD_PARTY.yaml -------------------------------------------------------------------------------- /third_party/java/spring-boot/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/application.properties -------------------------------------------------------------------------------- /third_party/java/spring-boot/generate-jars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/generate-jars.sh -------------------------------------------------------------------------------- /third_party/java/spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/pom.xml -------------------------------------------------------------------------------- /third_party/java/spring-boot/spring-boot-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/spring-boot-1.0.2.jar -------------------------------------------------------------------------------- /third_party/java/spring-boot/spring-boot-1.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/spring-boot-1.1.4.jar -------------------------------------------------------------------------------- /third_party/java/spring-boot/spring-boot-deps-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/spring-boot-deps-1.0.2.jar -------------------------------------------------------------------------------- /third_party/java/spring-boot/spring-boot-deps-1.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/spring-boot-deps-1.1.4.jar -------------------------------------------------------------------------------- /third_party/java/spring-boot/spring-test-4.0.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deezer/weslang/HEAD/third_party/java/spring-boot/spring-test-4.0.5.RELEASE.jar --------------------------------------------------------------------------------