Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 121 for langs3 (0.39 sec)

  1. platforms/documentation/docs/src/snippets/java-library/quickstart/kotlin/build.gradle.kts

    // tag::repo[]
    repositories {
        mavenCentral()
    }
    // end::repo[]
    
    // tag::dependencies[]
    dependencies {
        api("org.apache.httpcomponents:httpclient:4.5.7")
        implementation("org.apache.commons:commons-lang3:3.5")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 318 bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/shared/conf/application.conf.old

    application.secret="TY9[b`xw2MeXUt;M<i_B0kUKm8/?PD1cS1WhFYyZ[1^6`Apew34q6DyNL=UqG/1l"
    application.langs="en"
    
    # Root logger:
    logger.root=ERROR
    
    # Logger used by the framework:
    logger.play=INFO
    
    # Logger provided to your application:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 257 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

            then:
            projectA.classpath.collect { it.file.name } as Set == [ 'commons-lang3-3.9.jar' ] as Set
            projectA.projectDependencies.collect { it.path } as Set == [ 'b' ] as Set
            projectB.classpath.collect { it.file.name } as Set == [ 'commons-lang3-3.9.jar', 'commons-io-1.4.jar' ] as Set
            projectB.projectDependencies.collect { it.path } as Set == [ 'c', 'd' ] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/query/QueryCommand.java

            getQueryLanguages().ifPresent(langs -> stream(langs).of(stream -> stream.forEach(lang -> {
                boolQuery.should(
                        builder.apply(fessConfig.getIndexFieldTitle() + "_" + lang, fessConfig.getQueryBoostTitleLangAsDecimal().floatValue()));
                boolQuery.should(builder.apply(fessConfig.getIndexFieldContent() + "_" + lang,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/kotlin/build.gradle.kts

    testing {
        suites {
            // tag::version-catalogs-deps[]
            val test by getting(JvmTestSuite::class) {
                dependencies {
                    runtimeOnly(libs.guava)
                    implementation(libs.commons.lang3)
                    implementation.bundle(libs.bundles.groovy)
                }
            }
            // end::version-catalogs-deps[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/normalizer/Normalizer.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.normalizer;
    
    public interface Normalizer {
        String normalize(String text, String field, String... langs);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 766 bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            and: "a dependency has been added to the implementation configuration"
            succeeds("dependencies", "--configuration", "implementation")
            outputContains("org.apache.commons:commons-lang3:3.12.0")
    
            where:
            typeSafeProjectAccessors << [true, false]
        }
    
        def 'can configure an extension using DependencyCollector in declarative DSL with @Restricted methods available on supertype'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top