Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 241 for langs3 (0.11 sec)

  1. scripts/mkdocs_hooks.py

        langs = [file.stem for file in material_langs_path.glob("*.html")]
        return langs
    
    
    class EnFile(File):
        pass
    
    
    def on_config(config: MkDocsConfig, **kwargs: Any) -> MkDocsConfig:
        available_langs = get_mkdocs_material_langs()
        dir_path = Path(config.docs_dir)
        lang = dir_path.parent.name
        if lang in available_langs:
            config.theme["language"] = lang
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/groovy/build.gradle

        mavenCentral()
    }
    
    testing {
        suites {
            // tag::version-catalogs-deps[]
            test {
                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)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    > Task :dependencies
    
    testRuntimeClasspath - Runtime classpath of source set 'test'.
    +--- org.apache.commons:commons-lang3:{strictly [3.8, 4.0[; prefer 3.9} -> 3.9
    +--- org.codehaus.groovy:groovy:3.0.5
    +--- org.codehaus.groovy:groovy-json:3.0.5
    |    \--- org.codehaus.groovy:groovy:3.0.5
    +--- org.codehaus.groovy:groovy-nio:3.0.5
    |    \--- org.codehaus.groovy:groovy:3.0.5
    \--- com.google.guava:guava:29.0-jre
         +--- com.google.guava:failureaccess:1.0.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompiledLanguage.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import org.apache.commons.lang3.StringUtils
    
    enum CompiledLanguage {
        JAVA,
        GROOVY;
    
        String getName() {
            return name().toLowerCase()
        }
    
        String getCapitalizedName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java

    public interface ReadingConverter {
        default int getMaxReadingNum() {
            return 10;
        }
    
        void init() throws IOException;
    
        List<String> convert(String text, final String field, String... langs) throws IOException;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 952 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/build.gradle.kts

    }
    
    // tag::test_fixtures_deps[]
    dependencies {
        testImplementation("junit:junit:4.13")
    
        // API dependencies are visible to consumers when building
        testFixturesApi("org.apache.commons:commons-lang3:3.9")
    
        // Implementation dependencies are not leaked to consumers when building
        testFixturesImplementation("org.apache.commons:commons-text:1.6")
    }
    // end::test_fixtures_deps[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/normalizer/ICUNormalizer.java

            transliterator = Transliterator.getInstance(transliteratorId);
        }
    
        @Override
        public String normalize(final String text, final String field, final String... langs) {
            return transliterator.transliterate(text);
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-library/quickstart/kotlin/src/main/java/org/gradle/HttpClientWrapper.java

    // tag::sample[]
    // The following types can appear anywhere in the code
    // but say nothing about API or implementation usage
    import org.apache.commons.lang3.exception.ExceptionUtils;
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpResponse;
    import org.apache.http.HttpStatus;
    import org.apache.http.client.HttpClient;
    import org.apache.http.client.methods.HttpGet;
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/build.gradle.kts

        `maven-publish`
    }
    // end::apply-plugins[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        api("commons-httpclient:commons-httpclient:3.1")
        implementation("org.apache.commons:commons-lang3:3.5")
    }
    
    // tag::configure-publishing[]
    group = "org.example"
    version = "1.0"
    
    // tag::enable-build-id[]
    publishing {
        publications {
            create<MavenPublication>("myLibrary") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/src/testFixtures/java/com/acme/Simpsons.java

    package com.acme;
    
    import java.util.List;
    import java.util.ArrayList;
    import org.apache.commons.text.WordUtils;
    import org.apache.commons.lang3.tuple.Pair;
    
    // tag::sample[]
    public class Simpsons {
        private static final Person HOMER = new Person("Homer", "Simpson");
        private static final Person MARGE = new Person("Marjorie", "Simpson");
        private static final Person BART = new Person("Bartholomew", "Simpson");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top