Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 4,694 for Implementation (0.63 sec)

  1. platforms/jvm/toolchains-jvm/build.gradle.kts

        api(libs.inject)
        api(libs.jsr305)
        api(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
        implementation(project(":logging"))
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":logging")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-filters/groovy/build.gradle

    } else if (testToolchain == "matchingImplementation") {
    // tag::toolchain-matching-implementation[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.IBM
            implementation = JvmImplementation.J9
        }
    }
    // end::toolchain-matching-implementation[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    // tag::dependency-constraints[]
    dependencies {
        implementation 'org.apache.httpcomponents:httpclient'
        constraints {
            implementation('org.apache.httpcomponents:httpclient:4.5.3') {
                because 'previous versions have a bug impacting this application'
            }
            implementation('commons-codec:commons-codec:1.11') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 682 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-configurations.dot

      subgraph central {
        node[style=filled, fillcolor=white]
        implementation -> testVariantExecutableImplementation [style=invis, weight=1000]
        testVariantExecutableImplementation -> implementation [headport=s, tailport=n]
    
        testVariantExecutableImplementation[label=<test<i>Variant</i>ExecutableImplementation>]
        implementation[style=dashed]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/quickstart/kotlin/build.gradle.kts

    version = "1.0"
    tasks.jar {
        manifest {
            attributes(
                "Implementation-Title" to "Gradle Quickstart",
                "Implementation-Version" to archiveVersion)
        }
    }
    // end::customization[]
    
    // tag::repo[]
    repositories {
        mavenCentral()
    }
    // end::repo[]
    
    // tag::dependencies[]
    dependencies {
        implementation(group = "commons-collections", name = "commons-collections", version = "3.2.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-declarative/tests/dependencies.out

    compileClasspath - Compile classpath for source set 'main'.
    \--- com.example:lib:1.1 FAILED
    
    implementation - Implementation dependencies for the 'main' feature. (n)
    \--- com.example:lib:1.1 (n)
    
    runtimeClasspath - Runtime classpath of source set 'main'.
    +--- com.example:lib:1.1 FAILED
    \--- com.example:runtime:1.0 FAILED
    
    runtimeOnly - Runtime-only dependencies for the 'main' feature. (n)
    \--- com.example:runtime:1.0 (n)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-imperative/tests/dependencies.out

    compileClasspath - Compile classpath for source set 'main'.
    \--- com.example:lib:1.1 FAILED
    
    implementation - Implementation dependencies for the 'main' feature. (n)
    \--- com.example:lib:1.1 (n)
    
    runtimeClasspath - Runtime classpath of source set 'main'.
    +--- com.example:lib:1.1 FAILED
    \--- com.example:runtime:1.0 FAILED
    
    runtimeOnly - Runtime-only dependencies for the 'main' feature. (n)
    \--- com.example:runtime:1.0 (n)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/java/modules-with-transform/groovy/application/build.gradle

        options.javaModuleVersion = provider { version }
    }
    
    dependencies {
        implementation 'com.google.code.gson:gson:2.8.9'           // real module
        implementation 'org.apache.commons:commons-lang3:3.10'     // automatic module
        implementation 'commons-beanutils:commons-beanutils:1.9.4' // plain library (also brings in other libraries transitively)
        implementation 'commons-cli:commons-cli:1.4'               // plain library
    }
    
    application {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/java/modules-with-transform/kotlin/application/build.gradle.kts

    }
    // end::extraModuleInfo[]
    
    dependencies {
        implementation("com.google.code.gson:gson:2.8.9")           // real module
        implementation("org.apache.commons:commons-lang3:3.10")     // automatic module
        implementation("commons-beanutils:commons-beanutils:1.9.4") // plain library (also brings in other libraries transitively)
        implementation("commons-cli:commons-cli:1.4")               // plain library
    }
    
    application {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

         * A shared or exclusive file lock is held while fetching the value, depending on implementation.
         *
         * @return The value, or null if no value associated with the key.
         */
        @Override
        @Nullable
        V getIfPresent(K key);
    
        /**
         * Returns the value mapped to the given key, producing the value if not present.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top