Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 4,694 for Implementation (0.19 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-projectDependencies/groovy/web-service/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::project-dependencies[]
    dependencies {
        implementation project(':utils')
        implementation project(':api')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/groovy/project1/build.gradle

    plugins {
        id 'myproject.publishing-conventions'
    }
    
    description = 'The first project'
    
    dependencies {
        implementation 'junit:junit:4.13'
        implementation project(':project2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 185 bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildNestingIntegrationTest.groovy

                    dependencies { implementation 'org.test:buildD:1.2' }
                    dependencies { implementation 'org.test:buildC:1.2' }
                """
            }
            includeBuild(buildB)
    
            def buildD = singleProjectBuild("buildD") {
                buildFile << """
                    apply plugin: 'java'
                    dependencies { implementation 'org.test:buildC:1.2' }
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasEVTSTRM  bool // Event stream support
    	HasAES      bool // AES hardware implementation
    	HasPMULL    bool // Polynomial multiplication instruction set
    	HasSHA1     bool // SHA1 hardware implementation
    	HasSHA2     bool // SHA2 hardware implementation
    	HasCRC32    bool // CRC32 hardware implementation
    	HasATOMICS  bool // Atomic memory operation instruction set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

            this.requirement = requirement;
        }
    
        public String getImplementation() {
            return implementation;
        }
    
        public void setImplementation(String implementation) {
            this.implementation = implementation;
        }
    
        public String getSince() {
            return since;
        }
    
        public void setSince(String since) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractIterator.java

    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * This class provides a skeletal implementation of the {@code Iterator} interface, to make this
     * interface easier to implement for certain types of data sources.
     *
     * <p>{@code Iterator} requires its implementations to support querying the end-of-data status
     * without changing the iterator's state, using the {@link #hasNext} method. But many data sources,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/groovy/application/build.gradle

    plugins {
        id 'myproject.java-conventions'
        id 'application'
    }
    
    dependencies {
        implementation project(':list')
        implementation project(':utilities')
    }
    
    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
    - 222 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/groovy/app/build.gradle

    plugins {
        id 'application'
    }
    
    group "org.sample"
    version "1.0"
    
    application {
        mainClass = "org.sample.myapp.Main"
    }
    
    dependencies {
        implementation "org.sample:number-utils:1.0"
        implementation "org.sample:string-utils:1.0"
    }
    
    repositories {
        maven {
            url project.file("../local-repo")
        }
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 337 bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Configuration input discovery code"
    
    dependencies {
        api(libs.jsr305)
        api(libs.guava)
    
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 229 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/scala/force/kotlin/build.gradle.kts

    plugins {
        scala
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("org.scala-lang:scala-library:2.13.12")
    }
    
    dependencies {
        implementation("commons-collections:commons-collections:3.2.2")
        testImplementation("junit:junit:4.13")
    }
    
    // tag::force-compilation[]
    tasks.withType<ScalaCompile>().configureEach {
        scalaCompileOptions.apply {
            isForce = true
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 432 bytes
    - Viewed (0)
Back to top