Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 4,716 for Implementation (0.32 sec)

  1. platforms/documentation/docs/src/snippets/toolingApi/runBuild/groovy/build.gradle

    // tag::use-tooling-api[]
    repositories {
        maven { url 'https://repo.gradle.org/gradle/libs-releases' }
    }
    
    dependencies {
        implementation "org.gradle:gradle-tooling-api:$toolingApiVersion"
        // The tooling API need an SLF4J implementation available at runtime, replace this with any other implementation
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    // end::use-tooling-api[]
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 525 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    // calls that would have gone to updateGeneric to updateVX if the vector
    // facility is installed.
    //
    // A larger buffer is required for good performance because the vector
    // implementation has a higher fixed cost per call than the generic
    // implementation.
    type mac struct {
    	macState
    
    	buffer [16 * TagSize]byte // size must be a multiple of block size (16)
    	offset int
    }
    
    func (h *mac) Write(p []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K 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-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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/java-library/module/groovy/build.gradle

        options.javaModuleVersion = provider { version }
    }
    // end::declareVersion[]
    
    // tag::dependencies[]
    dependencies {
        implementation 'com.google.code.gson:gson:2.8.9'       // real module
        implementation 'org.apache.commons:commons-lang3:3.10' // automatic module
        implementation 'commons-cli:commons-cli:1.4'           // plain library
    }
    // end::dependencies[]
    
    // tag::automaticModuleName[]
    tasks.named('jar') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 742 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java-library/module/kotlin/build.gradle.kts

        options.javaModuleVersion = provider { version as String }
    }
    // end::declareVersion[]
    
    // tag::dependencies[]
    dependencies {
        implementation("com.google.code.gson:gson:2.8.9")       // real module
        implementation("org.apache.commons:commons-lang3:3.10") // automatic module
        implementation("commons-cli:commons-cli:1.4")           // plain library
    }
    // end::dependencies[]
    
    // tag::automaticModuleName[]
    tasks.jar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 736 bytes
    - Viewed (0)
Back to top