Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for langs3 (0.13 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                final SuggestAnalyzer analyzer) {
            if (langs == null || langs.length == 0) {
                final List<AnalyzeToken> tokens = analyzer.analyze(searchWord, "", null);
                return tokens == null || tokens.size() == 0;
            }
            for (final String lang : langs) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

            def commonsVersion = "3.12.0"
            def calculatedCommonsVersionRange = "[3.12,4)"
            buildFile << """
    ${addBNDBuilderPlugin()}
    
    dependencies {
        implementation "org.apache.commons:commons-lang3:$commonsVersion"
    }
    
    tasks.named("jar") {
        bundle {
            properties.empty() // Make this work with CC per: https://github.com/bndtools/bnd/blob/master/gradle-plugins/README.md#gradle-configuration-cache-support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                        classpath "org.apache.commons:commons-lang3:3.8.1"
                    }
                }
            """
    
            when:
            run("tasks")
    
            then:
            typeHierarchyAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
            dependencyAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
            mergeAnalysisOutputs("commons-lang3-3.8.1.jar").size() == 1
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                    implementationFreeDebug 'org.apache.commons:commons-lang3:3.5'
                ''')
                src {
                    main {
                        java {
                            'Hello.java'('''import org.apache.commons.lang3.StringUtils;
    
                                public class Hello {
                                    public static void main(String... args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    			base, _ := addTags(Tag{LangID: t.LangID})
    			if base.ScriptID != maxScript {
    				return Tag{LangID: t.LangID, ScriptID: maxScript}
    			}
    			return Tag{LangID: t.LangID}
    		} else if t.ScriptID != 0 {
    			// The parent for an base-script pair with a non-default script is
    			// "und" instead of the base language.
    			base, _ := addTags(Tag{LangID: t.LangID})
    			if base.ScriptID != t.ScriptID {
    				return Und
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. .github/actions/notify-translations/app/main.py

        for lang in langs:
            if lang not in lang_to_discussion_map:
                log_message = f"Could not find discussion for language: {lang}"
                logging.error(log_message)
                raise RuntimeError(log_message)
            discussion = lang_to_discussion_map[lang]
            logging.info(
                f"Found a translation discussion for language: {lang} in discussion: #{discussion.number}"
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

            all(CustomStatusRule)
        }
        implementation("org.apache.commons:commons-lang3:latest.rc")
    }
    // end::custom-status-scheme[]
    
    tasks.register("compileClasspathArtifacts") {
        FileCollection compileClasspath = configurations["compileClasspath"]
        doLast {
            compileClasspath.findAll { !it.name.startsWith("commons-lang3") }.each { println(it.name) }
        }
    }
    tasks.register("failRuntimeClasspathResolve") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/language.go

    	}
    	changed := false
    	if c&SuppressScript != 0 {
    		if t.LangID.SuppressScript() == t.ScriptID {
    			t.ScriptID = 0
    			changed = true
    		}
    	}
    	if c&canonLang != 0 {
    		for {
    			if l, aliasType := t.LangID.Canonicalize(); l != t.LangID {
    				switch aliasType {
    				case language.Legacy:
    					if c&Legacy != 0 {
    						if t.LangID == _sh && t.ScriptID == 0 {
    							t.ScriptID = _Latn
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. scripts/docs.py

        """
        update_languages()
        shutil.rmtree(site_path, ignore_errors=True)
        langs = [lang.name for lang in get_lang_paths() if lang.is_dir()]
        cpu_count = os.cpu_count() or 1
        process_pool_size = cpu_count * 4
        typer.echo(f"Using process pool size: {process_pool_size}")
        with Pool(process_pool_size) as p:
            p.map(build_lang, langs)
    
    
    @app.command()
    def update_languages() -> None:
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            if (params.getLanguages() != null) {
                final Set<String> langSet = new HashSet<>();
                for (final String lang : params.getLanguages()) {
                    if (StringUtil.isNotBlank(lang) && lang.length() < 1000) {
                        if (Constants.ALL_LANGUAGES.equalsIgnoreCase(lang)) {
                            langSet.add(Constants.ALL_LANGUAGES);
                        } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top