Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 4,694 for Implementation (0.69 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/UndeclaredDependencyResolutionIntegrationTest.groovy

                include 'a', 'b'
            """
    
            setupBuildWithColorTransformImplementation(true)
    
            buildFile << """
                dependencies {
                    implementation project(':a')
                    implementation project(':b')
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

        }
    
        def "processors in the compile classpath are ignored"() {
    
            buildFile << """
                dependencies {
                    implementation project(":annotation")
                    implementation project(":processor")
                }
            """
    
            when:
            fails('compileJava')
    
            then:
            failureCauseContains('Compilation failed')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                        publicType, implementationRegistration.getSource()));
                }
                if (managedPublicType) {
                    throw new IllegalArgumentException(String.format("Cannot specify default implementation for managed type '%s'", publicType));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsReadOnlyCacheDependencyResolutionTest.groovy

            given:
            def other = mavenHttpRepo.module('org.other', 'other', '1.0').withModuleMetadata().publish()
            buildFile << """
                dependencies {
                    implementation 'org.readonly:core:1.0'
                    implementation 'org.other:other:1.0'
                }
            """
    
            when:
            withReadOnlyCache()
    
            other.pom.expectGet()
            other.moduleMetadata.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

        /**
         * Returns a {@link DependencyCollector} that collects the set of implementation dependencies.
         * <p>
         * <code>implementation</code> dependencies are used at compilation and runtime.
         *
         * @return a {@link DependencyCollector} that collects the set of implementation dependencies
         * @since 7.6
         */
        DependencyCollector getImplementation();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. pkg/ctrlz/topics/collection.go

    }
    
    // collection topic is a Topic fw.implementation that exposes a set of collections through CtrlZ.
    type collectionTopic struct {
    	title       string
    	prefix      string
    	collections []ReadableCollection
    
    	mainTmpl *template.Template
    	listTmpl *template.Template
    	itemTmpl *template.Template
    }
    
    var _ fw.Topic = &collectionTopic{}
    
    // Title is implementation of Topic.Title.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-problems-base/build.gradle.kts

        api(projects.logging)
        api(projects.problemsApi)
    
        api(libs.kotlinStdlib)
    
        implementation(projects.stdlibKotlinExtensions)
    
        implementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/kotlin/services/person-service/build.gradle.kts

    plugins {
        id("java")
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
        implementation(project(":shared"))
        implementation(project(":api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 200 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-typeSafeProjectDependencies/kotlin/web-service/build.gradle.kts

    plugins {
        id("java")
    }
    // tag::project-dependencies[]
    dependencies {
        implementation(projects.utils)
        implementation(projects.api)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactVariantReselectionIntegrationTest.groovy

                plugins {
                    id("java-library")
                }
    
                repositories { maven { url "${mavenRepo.uri}" } }
    
                dependencies {
                    implementation 'com:foo:1.0'
                    implementation 'com:foo:1.0:cls'
                }
    
                task resolve {
                    def normal = configurations.runtimeClasspath.incoming.files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top