Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,144 for Implementation (0.44 sec)

  1. platforms/software/testing-base-infrastructure/build.gradle.kts

        api(projects.messaging)
        api(projects.serialization)
        api(projects.time)
        api(projects.workerMain)
    
        api(libs.jsr305)
    
        implementation(projects.io)
        implementation(projects.serviceProvider)
    
        implementation(libs.commonsLang)
        implementation(libs.slf4jApi)
    
        testImplementation(libs.commonsIo)
        testImplementation(testFixtures(projects.serialization))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 883 bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/war/src/integTest/groovy/org/gradle/integtests/MixedJavaAndWebProjectIntegrationTest.groovy

                    apply plugin: 'java'
                    dependencies {
                        implementation project(':c')
                        compileOnly project(':e')
                    }
                }
                project(":c") {
                    apply plugin: 'java-library'
                    dependencies {
                        implementation project(':d')
                    }
                }
                project(":d") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

        licenses = ["notice"],
    )
    
    # Filesystem implementation for POSIX environments: Linux, MacOS, Android, etc.
    tf_cc_shared_object(
        name = "libposix_filesystem.so",
        framework_so = [],
        linkstatic = False,
        visibility = ["//visibility:public"],
        deps = [":posix_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "posix_filesystem_impl",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top