Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,921 for Implementation (0.2 sec)

  1. platforms/core-configuration/file-collections/build.gradle.kts

        implementation(projects.io)
        implementation(project(":base-services-groovy"))
    
        implementation(libs.slf4jApi)
        implementation(libs.commonsIo)
    
        compileOnly(libs.jetbrainsAnnotations)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
        testImplementation(project(":snapshots"))
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/build.gradle.kts

            because("Loaded by the AWS libraries with reflection when present: https://github.com/gradle/gradle/issues/15332")
        }
        api(libs.guava)
    
        implementation(projects.baseServices)
        implementation(project(":hashing"))
    
        implementation(libs.commonsLang)
        implementation(libs.slf4jApi)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":dependency-management")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingSortedMap.java

     * override {@code putAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardPutAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedMap}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaPluginIntegrationTest.groovy

                    trait ${project.toUpperCase()}
                """
            }
            file("a/build.gradle") << """
                dependencies {
                  implementation(project(":b"))
                  implementation(project(":c"))
                  implementation(project(":d"))
                }
            """
    
            expect:
            executer.noDeprecationChecks()
            succeeds(":a:classes", "--parallel")
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. android-test-app/build.gradle.kts

          testProguardFiles("test-proguard-rules.pro")
        }
      }
    }
    
    dependencies {
      implementation(libs.playservices.safetynet)
      implementation(projects.okhttp)
      implementation(projects.okhttpAndroid)
      implementation(libs.androidx.activity)
    
      androidTestImplementation(libs.androidx.junit)
      androidTestImplementation(libs.androidx.espresso.core)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/build.gradle.kts

            }
        }
    // tag::android[]
    }
    // end::android[]
    
    dependencies {
        implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
        implementation(kotlin("stdlib-jdk7", KotlinCompilerVersion.VERSION))
        implementation("com.android.support:appcompat-v7:27.1.1")
        implementation("com.android.support.constraint:constraint-layout:1.1.0")
        testImplementation("junit:junit:4.13")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/build.gradle.kts

            }
        }
    // tag::android[]
    }
    // end::android[]
    
    dependencies {
        implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
        implementation(kotlin("stdlib-jdk7"))
        implementation("com.android.support:appcompat-v7:27.1.1")
        implementation("com.android.support.constraint:constraint-layout:1.1.0")
        testImplementation("junit:junit:4.13")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/dependency-management-serialization-codecs/build.gradle.kts

        api(project(":logging"))
        api(project(":model-core"))
        api(project(":snapshots"))
    
        api(libs.kotlinStdlib)
    
        implementation(projects.configurationCacheBase)
        implementation(projects.serialization)
        implementation(projects.stdlibKotlinExtensions)
    
        implementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/properties/ScriptSourceAwareImplementationResolverTest.groovy

    class ScriptSourceAwareImplementationResolverTest extends Specification {
    
        def "correct implementation for #type coerced to Action is tracked"() {
            expect:
            ScriptSourceAwareImplementationResolver.unwrapBean(implementation as Action) == implementation
    
            where:
            type      | implementation
            "Closure" | { it }
            "Action"  |  new Action<String>() { @Override void execute(String s) {} }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:27:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/index.apt

     with its <<<DefaultToolchainManagerPrivate>>> implementation ({{{./xref/org/apache/maven/toolchain/DefaultToolchainManagerPrivate.html}source}}),
     to manage toolchain selection,
    
     * internal JDK toolchain implementation: <<<JavaToolchain>>> interface ({{{./apidocs/org/apache/maven/toolchain/java/JavaToolchain.html}javadoc}}),
     with its <<<JavaToolchainImpl>>> implementation
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 14 05:48:39 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top