Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for Implementation (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                apply plugin: 'java-library'
    
                dependencies {
                    implementation "org.gradle.test:lib-core:1.+" // intentional!
                    implementation "org.gradle.test:lib-ext" // intentional!
                    constraints {
                        implementation libs.myLib //.asProvider() as a workaround
                        implementation libs.myLib.ext
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                configurations {
                    implementation
                }
                task additionalFile(type: FileProducer) {
                    output = file("b.thing")
                }
                dependencies {
                    implementation project(':a')
                    implementation project(':b')
                    implementation "group:lib1:6500"
                    implementation files('a.thing', additionalFile.output)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

      }
    
      private static final int DISTINCT_CHARS = Character.MAX_VALUE - Character.MIN_VALUE + 1;
    
      /**
       * This is the actual implementation of {@link #precomputed}, but we bounce calls through a method
       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    runtimeElements.exclude(group: "runtimeElements-group", module: "runtimeElements-module")
                    implementation.exclude(group: "implementation-group", module: "implementation-module")
                    runtimeOnly.exclude(group: "runtimeOnly-group", module: "runtimeOnly-module")
                }
    
                $dependencies
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            settingsFile << "include 'a', 'b', 'c'"
            setupBuildWithColorTransform()
            buildFile << """
                project(':a') {
                    dependencies {
                        implementation project(':b')
                        implementation project(':c')
                    }
                }
                project(':b') {
                    tasks.producer.doLast { throw new RuntimeException('broken') }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            implementation project(':common')
        }
    }
    
    project(':app') {
        dependencies {
            implementation 'junit:junit:4.11'
            implementation project(':lib')
        }
    }
    
    """
        }
    
        void setupTransformerTypes() {
            buildFile << """
                abstract class TestTransform implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
            uncheckedModule("org", "bar", "1.0") {
                dependsOn("org", "foo", "1.0")
            }
            buildFile << """
                dependencies {
                    implementation "org:foo:1.0"
                    implementation "org:bar:1.0"
                }
            """
    
            when:
            serveValidKey()
            fails ":compileJava"
    
            then:
            assertVerificationError(terse) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

      }
    
      private static final int DISTINCT_CHARS = Character.MAX_VALUE - Character.MIN_VALUE + 1;
    
      /**
       * This is the actual implementation of {@link #precomputed}, but we bounce calls through a method
       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        }
    }
    
    dependencies {
        implementation 'org:direct:1.0'
        implementation 'org:a:1.0'
    }
    
    project(':sub') {
        apply plugin: 'java'
    
        group = 'org'
        version = '1.0'
    
        dependencies {
            constraints {
                implementation 'org:lib:1.0'
            }
    
            implementation 'org:lib'
            implementation 'org:other:1.0'
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

    /**
     * The concurrent hash map implementation built by {@link MapMaker}.
     *
     * <p>This implementation is heavily derived from revision 1.96 of <a
     * href="http://tinyurl.com/ConcurrentHashMap">ConcurrentHashMap.java</a>.
     *
     * @param <K> the type of the keys in the map
     * @param <V> the type of the values in the map
     * @param <E> the type of the {@link InternalEntry} entry implementation used internally
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top