Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 140 for Implementation (0.3 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

       * CacheLoader#reload}.
       *
       * <p>As the default implementation of {@link CacheLoader#reload} is synchronous, it is
       * recommended that users of this method override {@link CacheLoader#reload} with an asynchronous
       * implementation; otherwise refreshes will be performed during unrelated cache read and write
       * operations.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    --
    For tracking the implementation of tasks, task actions and nested inputs, Gradle uses the class name and an identifier for the classpath which contains the implementation.
    There are some situations when Gradle is not able to track the implementation precisely:
    
    Unknown classloader::
    When the classloader which loaded the implementation has not been created by Gradle, the classpath cannot be determined.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

        }
    
        /**
         * Adds one or more external implementation dependencies.
         *
         * @param comment A description of why the dependencies are required
         * @param dependencies The dependencies
         */
        public BuildScriptBuilder implementationDependency(@Nullable String comment, BuildInitDependency... dependencies) {
            return dependency("implementation", comment, dependencies);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        Kotlin-friendly Okio 2.x but OkHttp works fine with that series.
    
        ```kotlin
        implementation("org.bouncycastle:bcprov-jdk15on:1.60")
        implementation("org.conscrypt:conscrypt-openjdk-uber:1.4.0")
        implementation("com.squareup.okio:okio:1.15.0")
        ```
    
     *  Fix: Handle dispatcher executor shutdowns gracefully. When there aren't any threads to carry a
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

       * concurrency, and performance characteristics as the backing map. In essence, this factory
       * method provides a {@link Set} implementation corresponding to any {@link Map} implementation.
       * There is no need to use this method on a {@link Map} implementation that already has a
       * corresponding {@link Set} implementation (such as {@link java.util.HashMap} or {@link
       * java.util.TreeMap}).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            supplierInteractions = withPerVersionStatusSupplier(metadataFile, true, "println 'Alternate implementation'")
            run 'checkDeps'
    
            then:
            outputContains("Providing metadata for group:projectB:2.2")
            outputContains("Providing metadata for group:projectB:1.1")
            outputContains("Alternate implementation")
    
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            configuration.execute(getComponents());
        }
    
        /**
         * This is an implementation of the {@link groovy.lang.GroovyObject}'s corresponding method.
         * The interface itself is mixed-in at runtime, but we want to keep this implementation as it
         * properly handles the dynamicLookupRoutine.
         *
         * @see AsmBackedClassGenerator.ClassBuilderImpl#addDynamicMethods
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

       * concurrency, and performance characteristics as the backing map. In essence, this factory
       * method provides a {@link Set} implementation corresponding to any {@link Map} implementation.
       * There is no need to use this method on a {@link Map} implementation that already has a
       * corresponding {@link Set} implementation (such as {@link java.util.HashMap} or {@link
       * java.util.TreeMap}).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        to.attribute(counted, true).attribute(artifactType, "jar")
                    }
                }
    
                dependencies {
                    implementation 'org.apache.commons:commons-lang3:3.10'
                }
            """
            file("src/main/java").createDir()
            file("src/main/java/Foo.java").createFile().text = """class Foo {}"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    - Using a `java.io.File` as the `@InputArtifact` of an artifact transform.
    - Using an input with an unknown implementation.
    See <<validation_problems.adoc#implementation_unknown,Cannot use an input with an unknown implementation>>.
    - Missing dependencies between tasks.
    See <<validation_problems.adoc#implicit_dependency,Implicit dependencies between tasks>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top