Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 4,714 for Implementation (0.24 sec)

  1. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeProductionComponentDependenciesIntegrationTest.groovy

        def "can define different implementation dependencies on each binary"() {
            given:
            createDirs("lib")
            settingsFile << 'include "lib"'
            makeComponentWithLibrary()
            buildFile << """
                ${componentUnderTestDsl} {
                    binaries.getByName('mainDebug').configure {
                        dependencies {
                            implementation project(':lib')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                    implementation.exclude(group: "implementation-group", module: "implementation-module")
                    runtimeOnly.exclude(group: "runtimeOnly-group", module: "runtimeOnly-module")
                }
    
                dependencies {
                    api "org.test:a:1.0"
                    implementation "org.test:b:2.0"
                    api project(':subproject')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-local/build.gradle.kts

    }
    
    description = "Local build cache implementation"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":build-cache"))
        api(project(":build-cache-spi"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":persistent-cache"))
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 849 bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/build.gradle.kts

        api(project(":core-api"))
        api(project(":core"))
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
        implementation(project(":io"))
        implementation(project(":enterprise-logging"))
    
        testImplementation(testFixtures(project(":serialization")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/mavenMigration/importBom/groovy/build.gradle

    plugins {
        id 'java'
    }
    // end::plugins[]
    
    repositories {
        mavenCentral()
    }
    
    // tag::bom[]
    dependencies {
        implementation platform('org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE') // <1>
    
        implementation 'com.google.code.gson:gson' // <2>
        implementation 'dom4j:dom4j'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 335 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/PlatformDependencyModifiers.java

         *
         * @implSpec Do not implement this method. Gradle generates the implementation automatically.
         *
         * @see PlatformDependencyModifiers.PlatformDependencyModifier#modifyImplementation(ModuleDependency)
         */
        @Nested
        PlatformDependencyModifier getPlatform();
    
        /**
         * Implementation for the platform dependency modifier.
         *
         * @see #modifyImplementation(ModuleDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/filewatcher/fakefilewatcher.go

    )
    
    // NewFileWatcherFunc returns a function which creates a new file
    // watcher. This may be used to provide test hooks for using the
    // FakeWatcher implementation below.
    type NewFileWatcherFunc func() FileWatcher
    
    // FakeWatcher provides a fake file watcher implementation for unit
    // tests. Production code should use the `NewWatcher()`.
    type FakeWatcher struct {
    	sync.Mutex
    
    	events      map[string]chan fsnotify.Event
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingSortedSet.java

     * override {@code addAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardAddAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedSet}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeDependenciesIntegrationTest.groovy

            'CppLibraryDependenciesIntegrationTest',
        ])
        def "can define implementation dependencies on component"() {
            given:
            createDirs("lib")
            settingsFile << 'include "lib"'
            makeComponentWithLibrary()
            buildFile << """
                ${componentUnderTestDsl} { c ->
                    c.dependencies {
                        implementation project(':lib')
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

        }
    
        def "recompiles source when annotation processor implementation on annotation processor classpath changes"() {
            given:
            settingsFile << "include 'c'"
    
            buildFile << """
                project(':b') {
                    dependencies {
                        implementation project(':a')
                    }
                }
                project(':c') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top