Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 241 for langs3 (0.15 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/dependencyManagement/customizingResolution-metadataRule/kotlin/build.gradle.kts

            all<CustomStatusRule>()
        }
        implementation("org.apache.commons:commons-lang3:latest.rc")
    }
    // end::custom-status-scheme[]
    
    tasks.register("compileClasspathArtifacts") {
        val compileClasspath: FileCollection = configurations["compileClasspath"]
        doLast {
            compileClasspath.filter { !it.name.startsWith("commons-lang3") }.forEach { println(it.name) }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/build.gradle

    }
    
    // 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[]
    
    // tag::publishing_test_fixtures[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K 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. docs/de/docs/tutorial/security/simple-oauth2.md

    Ferner sagt die Spezifikation, dass der Client ein weiteres Formularfeld "`scope`" („Geltungsbereich“) senden kann.
    
    Der Name des Formularfelds lautet `scope` (im Singular), tatsächlich handelt es sich jedoch um einen langen String mit durch Leerzeichen getrennten „Scopes“.
    
    Jeder „Scope“ ist nur ein String (ohne Leerzeichen).
    
    Diese werden normalerweise verwendet, um bestimmte Sicherheitsberechtigungen zu deklarieren, zum Beispiel:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top