Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,104 for Implementation (0.26 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

                      }
                    }
                """
            }
            file("a/build.gradle") << """
                dependencies {
                  implementation(project(":b"))
                  implementation(project(":c"))
                  implementation(project(":d"))
                }
            """
    
            expect:
            succeeds("build", "--parallel", "--max-workers", "4")
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

                    }
    
                    artifacts {
                        implementation p.flatMap { it.output }
                        broken b.flatMap { it.output }
                        broken b.flatMap { throw new RuntimeException("broken artifact") }
                    }
                }
    
                project(':a') {
                    dependencies {
                        implementation project(':b')
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainInput.java

        private final String vendor;
        private final String implementation;
    
        public JavaToolchainInput(JavaToolchainSpec spec) {
            this.javaLanguageVersion = spec.getLanguageVersion().getOrNull();
            this.vendor = spec.getVendor().get().toString();
            this.implementation = spec.getImplementation().get().toString();
        }
    
        @Optional
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

     * should override {@code equals} as well, either providing your own implementation, or delegating
     * to the provided {@code standardEquals} method.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
     * equality for both keys and values. This may not be the desired behavior for map implementations
     * that use non-standard notions of key equality, such as the entry of a {@code SortedMap} whose
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Platform.java

    final class Platform {
    
      /** Returns the platform preferred implementation of a map based on a hash table. */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
        return Maps.newHashMapWithExpectedSize(expectedSize);
      }
    
      /**
       * Returns the platform preferred implementation of an insertion ordered map based on a hash
       * table.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Services and types used to setup a build process from a Gradle distribution."
    
    dependencies {
        api(project(":stdlib-java-extensions"))
        api(project(":base-services"))
        api(libs.jsr305)
    
        implementation(libs.guava)
    
        testImplementation(libs.asm)
        testImplementation(libs.asmTree)
    
        testRuntimeOnly(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 426 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

                // Add a dependency with explicit coordinate parameters
                implementation(module(group = "org", name = "foo", version = "1.0")) // is getImplementation().add(module("org", "foo", "1.0"))
    
                // Add dependencies on projects
                implementation(project(":path")) // is getImplementation().add(project(":path"))
                implementation(project()) // is getImplementation().add(project())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

         * Returns the classpath for the module implementation. This is the classpath of the module itself. Does not include any dependencies.
         */
        ClassPath getImplementationClasspath();
    
        /**
         * Returns the classpath containing the runtime dependencies of the module. Does not include any other modules.
         */
        ClassPath getRuntimeClasspath();
    
        /**
         * Returns implementation + runtime.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/build.gradle.kts

    }
    
    description = "Base tools to work with files"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        testImplementation(project(":native"))
        testImplementation(project(":base-services")) {
            because("TextUtil is needed")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 525 bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

        /**
         * Writes a signed 64 bit long value. The implementation may encode the value as a variable number of bytes, not necessarily as 8 bytes.
         */
        void writeLong(long value) throws IOException;
    
        /**
         * Writes a signed 64 bit long value whose value is likely to be small and positive but may not be. The implementation may encode the value in a way that is more efficient for small positive
         * values.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top