Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,576 for IMPLEMENTATION (0.21 sec)

  1. platforms/software/reporting/build.gradle.kts

        api(project(":core-api"))
    
        api(libs.groovy)
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(project(":file-collections"))
        implementation(project(":logging"))
        implementation(project(":model-core"))
    
        implementation(libs.guava)
        implementation(libs.jatl)
    
        implementationResources("jquery:jquery.min:3.5.1@js")
    
        testImplementation(project(":process-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/manifest/groovy/build.gradle

    version = '1.0'
    
    // tag::add-to-manifest[]
    jar {
        manifest {
            attributes("Implementation-Title": "Gradle",
                       "Implementation-Version": archiveVersion)
        }
    }
    // end::add-to-manifest[]
    
    // tag::custom-manifest[]
    def sharedManifest = java.manifest {
        attributes("Implementation-Title": "Gradle",
                   "Implementation-Version": version)
    }
    tasks.register('fooJar', Jar) {
        manifest = java.manifest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/manifest/kotlin/build.gradle.kts

    tasks.jar {
        manifest {
            attributes(
                "Implementation-Title" to "Gradle",
                "Implementation-Version" to archiveVersion
            )
        }
    }
    // end::add-to-manifest[]
    
    // tag::custom-manifest[]
    val sharedManifest = java.manifest {
        attributes (
            "Implementation-Title" to "Gradle",
            "Implementation-Version" to version
        )
    }
    
    tasks.register<Jar>("fooJar") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/build.gradle.kts

        api(project(":file-collections"))
        api(project(":jvm-services"))
        api(project(":persistent-cache"))
        api(project(":core"))
    
        implementation(project(":logging"))
        implementation(libs.guava)
        implementation(libs.slf4jApi)
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
    
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/resources/build.gradle.kts

        api(project(":hashing"))
        api(project(":base-services"))
        api(project(":messaging"))
        api(project(":native"))
    
        api(libs.jsr305)
    
        implementation(project(":files"))
        implementation(project(":logging"))
    
        implementation(libs.guava)
        implementation(libs.commonsIo)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 970 bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceLocatorTest.groovy

            RuntimeException e = thrown()
            e.message.startsWith("Could not load implementation class 'java.lang.Integer' for service 'java.lang.String' specified in resource '")
            e.cause.message == "Implementation class 'java.lang.Integer' is not assignable to service class 'java.lang.String'."
        }
    
        def "get() creates an instance of specified service implementation class"() {
            given:
            implementationDeclared(CharSequence, String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-state/build.gradle.kts

        api(project(":stdlib-java-extensions"))
        api(project(":daemon-protocol"))
        api(project(":logging"))
    
        implementation(project(":core-api"))
        implementation(project(":messaging"))
        implementation(project(":concurrent"))
        implementation(project(":logging-api"))
        implementation(project(":problems-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingMap.java

       * #entrySet}. In many cases, you may wish to override {@link #clear} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected void standardClear() {
        Iterators.clear(entrySet().iterator());
      }
    
      /**
       * A sensible implementation of {@link Map#keySet} in terms of the following methods: {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. test/interface/private.dir/prog.go

    package main
    
    import "./private1"
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() {}
    
    func main() {
    	var x Exported
    	x = new(Implementation)
    	x.private()
    
    	var px p.Exported
    	px = p.X
    
    	px.private()			// ERROR "private"
    
    	px = new(Implementation)	// ERROR "private"
    
    	x = px				// ERROR "private"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 608 bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/build.gradle.kts

        api(libs.asm)
        api(libs.javaPoet)
        api(libs.jsr305)
    
        implementation(libs.asmTree)
        implementation(libs.jacksonAnnotations)
        implementation(libs.jacksonDatabind)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":base-services"))
        implementation(project(":base-asm"))
    
        testCompileOnly(libs.jetbrainsAnnotations)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top