Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 296 for Implementation (0.19 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/internal/services/PlatformJvmServices.java

                    if (globalJvmMetadataDetector instanceof ConditionalInvalidation) {
                        // Avoiding generic-unchecked cast with this intermediate implementation that checks the types of the items:
                        ConditionalInvalidation<JvmInstallationMetadata> checkedInvalidationFromDetector =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorFactory.java

    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    
    import java.io.Serializable;
    
    /**
     * Implementation of {@link WorkerTestClassProcessorFactory} which instantiates a {@link JUnitTestClassProcessor}.
     * This class is loaded on test workers themselves and acts as the entry-point to running JUnit 4 tests on a test worker.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

            List<String> sharedPackages = new ArrayList<String>(sharedPackagesCount);
            for (int i = 0; i < sharedPackagesCount; i++) {
                sharedPackages.add(instr.readUTF());
            }
    
            // Read worker implementation classpath
            int classPathLength = instr.readInt();
            URL[] implementationClassPath = new URL[classPathLength];
            for (int i = 0; i < classPathLength; i++) {
                String url = instr.readUTF();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

      }
    
      /**
       * Indicates that the loading of Unsafe was successful and the load and store operations will be
       * very efficient. May be useful for calling code to fall back on an alternative implementation
       * that is slower than Unsafe.get/store but faster than the pure-Java mask-and-shift.
       */
      static boolean usingUnsafe() {
        return (byteArray instanceof UnsafeByteArray);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/ListProperty.java

     *
     * <p>
     * You can create a {@link ListProperty} instance using factory method {@link org.gradle.api.model.ObjectFactory#listProperty(Class)}.
     * </p>
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.
     *
     * @param <T> the type of elements.
     * @since 4.3
     */
    public interface ListProperty<T> extends Provider<List<T>>, HasMultipleValues<T> {
        /**
         * {@inheritDoc}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSetToFileCollectionFactory.java

        }
    
        /**
         * Presents the contents of the given artifacts as a partial {@link FileCollectionInternal} implementation.
         *
         * <p>This produces only a minimal implementation to use for artifact sets loaded from the configuration cache
         * Over time, this should be merged with the FileCollection implementation in DefaultConfiguration
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

    /**
     * Caches auxiliary data used during model building like already processed raw/effective models. The data in the cache
     * is meant for exclusive consumption by the model builder and is opaque to the cache implementation. The cache key is
     * formed by a combination of group id, artifact id, version and tag. The first three components generally refer to the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheController.java

     */
    @ServiceScope(Scope.Gradle.class)
    public interface LifecycleAwareBuildCacheController extends BuildCacheController {
        /**
         * Called when the configuration for this controller is available.
         * The implementation may or may not use the given configuration. For example, the controller for an included build might use the configuration from the root build instead.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/Types.java

       * to custom TypeVariable implementations. As a result, we need to make sure our TypeVariable
       * implementation respects symmetry. Moreover, we don't want to reconstruct a native type variable
       * {@code <A>} using our implementation unless some of its bounds have changed in resolution. This
       * avoids creating unequal TypeVariable implementation unnecessarily. When the bounds do change,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

    import java.util.concurrent.locks.LockSupport;
    import java.util.logging.Level;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An abstract implementation of {@link ListenableFuture}, intended for advanced users only. More
     * common ways to create a {@code ListenableFuture} include instantiating a {@link SettableFuture},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
Back to top