Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 576 for Implementation (0.26 sec)

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

        api(project(":workers"))
    
        api(libs.groovy)
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(project(":dependency-management"))
        implementation(project(":logging"))
        implementation(project(":model-core"))
        implementation(project(":test-suites-base"))
    
        implementation(libs.guava)
    
        testImplementation(project(":native"))
        testImplementation(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    }
    
    // new224 returns an assembly implementation of SHA3-224 if available,
    // otherwise it returns a generic implementation.
    func new224() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_224)
    	}
    	return new224Generic()
    }
    
    // new256 returns an assembly implementation of SHA3-256 if available,
    // otherwise it returns a generic implementation.
    func new256() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/client-services/build.gradle.kts

        // The client should not depend on core, but core still contains some types that are shared between the client and daemon
        api(project(":core"))
    
        implementation(libs.jsr305)
        implementation(libs.guava)
        implementation(libs.asm)
        implementation(libs.slf4jApi)
        implementation(project(":stdlib-java-extensions"))
    
        testImplementation(testFixtures(project(":core"))) {
            because("ConcurrentSpecification")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

            """)
            customType(file("a"))
            customType(file("b")) << """
                dependencies {
                    implementation project(':a')
                }
            """
            customType(file("c")) << """
                dependencies {
                    implementation project(':b')
                }
            """
    
            when:
            isolatedProjectsRun(":b:producer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            0 * opened._
    
            when:
            cache1.close()
    
            then:
            0 * _
    
            when:
            cache2.close()
    
            then:
            1 * closed.accept(implementation)
            0 * _
        }
    
        void "can close cache multiple times"() {
            def implementation
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

         * @param serviceInstance The service implementation.
         */
        <T> void add(Class<T> serviceType, T serviceInstance);
    
        /**
         * Adds a service to this registry. The implementation class should have a single public constructor, and this constructor can take services to be injected as parameters.
         *
         * @param serviceType The service implementation to make visible.
         */
        void add(Class<?> serviceType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/gradle-cli-main/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
        id("gradlebuild.start-scripts")
    }
    
    description = "Java 6-compatible entry point of the `gradle` command. Boostraps the Gradle client implementation in :launcher."
    
    gradlebuildJava.usedForStartup()
    
    app {
        mainClassName = "org.gradle.launcher.GradleMain"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/plugins-version-catalog/build.gradle.kts

        api(project(":core-api"))
        api(project(":dependency-management"))
    
        api(libs.guava)
        api(libs.inject)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":logging-api"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/distributions-core/build.gradle.kts

        }
        pluginsRuntimeOnly(project(":composite-builds")) {
            because("We always need a BuildStateRegistry service implementation for certain code in ':core' to work.")
        }
        pluginsRuntimeOnly(project(":tooling-api-builders")) {
            because("We always need a BuildEventListenerFactory service implementation for ':launcher' to create global services.")
        }
        pluginsRuntimeOnly(project(":version-control")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/ivy/build.gradle.kts

        api(project(":publish"))
        api(project(":resources"))
    
        api(libs.jsr305)
        api(libs.inject)
    
        implementation(project(":functional"))
        implementation(project(":logging-api"))
    
        implementation(libs.guava)
        implementation(libs.commonsLang)
        implementation(libs.ivy)
    
        testImplementation(project(":native"))
        testImplementation(project(":process-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top