Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,576 for IMPLEMENTATION (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorIntegrationTest.groovy

                ${createDependenciesAndConfiguration()}
    
                dependencies.implementation 'com:foo:1.0'
    
                assert conf.dependencies*.name == ["foo"]
    
                dependencies.implementation 'com:bar:1.0'
            """
    
            when:
            fails("help")
    
            then:
            failure.assertHasErrorOutput("The value for property 'implementation' property 'dependencies' is final and cannot be changed any further.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

    configure(project(":a")){
        dependencies {
            implementation files("bar.jar")
            implementation project(':b')
        }
    }
    
    configure(project(":b")){
        dependencies {
            implementation project(':c')
            implementation files("baz.jar")
    
        }
    }
    
    configure(project(":c")){
        dependencies {
            implementation files("foo.jar")
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  3. subprojects/core-api/build.gradle.kts

        api(libs.groovyAnt)
        api(libs.guava)
        api(libs.ant)
        api(libs.inject)
    
        implementation(projects.io)
        implementation(project(":base-services-groovy"))
        implementation(project(":logging"))
        implementation(project(":build-process-services"))
        implementation(libs.commonsLang)
        implementation(libs.slf4jApi)
    
        runtimeOnly(libs.kotlinReflect)
    
        testImplementation(libs.asm)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/artifacts/generatedFileDependencies/kotlin/build.gradle.kts

    val implementation = configurations.create("implementation")
    val compileClasspath = configurations.create("compileClasspath") {
        extendsFrom(implementation)
    }
    
    // tag::generated-file-dependencies[]
    dependencies {
        implementation(files(layout.buildDirectory.dir("classes")) {
            builtBy("compile")
        })
    }
    
    tasks.register("compile") {
        doLast {
            println("compiling classes")
        }
    }
    
    tasks.register("list") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 682 bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ForwardingMultiset.java

       * override {@link #setCount(Object, int, int)} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardSetCount(@ParametricNullness E element, int oldCount, int newCount) {
        return Multisets.setCountImpl(this, element, oldCount, newCount);
      }
    
      /**
       * A sensible implementation of {@link Multiset#elementSet} in terms of the following methods:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/build.gradle

                    Thread.sleep(100)
                }
            }
        }
    }
    
    dependencies {
        implementation 'commons-lang:commons-lang:2.5'
        implementation "commons-httpclient:commons-httpclient:3.0"
        implementation "commons-codec:commons-codec:1.2"
        implementation "org.slf4j:jcl-over-slf4j:1.7.10"
        implementation "org.codehaus.groovy:groovy:2.4.10"
        testImplementation 'junit:junit:4.13'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-profile/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Provides high-level insights into a Gradle build (--profile)"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
        api(projects.time)
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":enterprise-logging"))
    
        implementation(project(":logging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 672 bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         *
         * @param parser The XML parser
         * @return Name of the custom implementation; otherwise {@code null}
         */
        private static String parseImplementation(final XmlPullParser parser) {
            return parser.getAttributeValue(null, "implementation");
        }
    
        /**
         * Attempts to load the named implementation, uses default implementation if no name is given.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/build.gradle.kts

        api(project(":build-operations"))
        api(project(":files"))
    
        api(libs.jsr305)
    
        implementation(projects.io)
        implementation(projects.time)
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
    
        testImplementation(projects.messaging)
        testImplementation(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-enforcedConstraintsFromBOM/kotlin/build.gradle.kts

        implementation(enforcedPlatform("org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE"))
    
        // define dependencies without versions
        implementation("com.google.code.gson:gson")
        implementation("dom4j:dom4j")
    
        // this version will be overridden by the one found in the BOM
        implementation("org.codehaus.groovy:groovy:1.8.6")
    }
    // end::dependency-on-bom[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 786 bytes
    - Viewed (0)
Back to top