Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 276 for Implementation (0.27 sec)

  1. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/AbstractGradleModuleServices.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service.scopes;
    
    import org.gradle.internal.service.ServiceRegistration;
    
    /**
     * Base no-op implementation of the {@link GradleModuleServices}.
     */
    public class AbstractGradleModuleServices implements GradleModuleServices {
        @Override
        public void registerGlobalServices(ServiceRegistration registration) {
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                  @Override
                  public String pendingToString() {
                    throw new RuntimeException("I'm a misbehaving implementation");
                  }
                }.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, info=\\[Exception thrown from implementation: "
                    + "class java.lang.RuntimeException\\]\\]");
      }
    
      public void testCompletionFinishesWithDone() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

     * or tasks. This property object keeps track of both the location and the task or tasks that produce the content of the element.
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.</p>
     *
     * @param <T> The type of location.
     * @since 5.6
     */
    @HasInternalProtocol
    public interface FileSystemLocationProperty<T extends FileSystemLocation> extends Property<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

    import org.eclipse.aether.artifact.ArtifactProperties;
    import org.eclipse.aether.artifact.ArtifactType;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * Default implementation of {@link Type} and Resolver {@link ArtifactType}.
     *
     * @since 4.0.0
     */
    public class DefaultType implements Type, ArtifactType {
        private final String id;
        private final Language language;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeImplementation.java

    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    
    import java.util.List;
    
    /**
     * Represents a resolved software type implementation including the public model type and the plugin that exposes it.
     */
    public interface SoftwareTypeImplementation<T> {
        String getSoftwareType();
    
        Class<? extends T> getModelPublicType();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Result.java

     * <p>
     * The meaning of the value parameter is specific to each concrete subclass. The validity of {@code null}
     * is also to be defined by each subclass. This implementation does allow null values.
     *
     * <p>The result is the last message sent from the daemon back to the daemon client.
     */
    public abstract class Result<T> extends Message {
    
        private final T value;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

            }
    
            @Provides
            ClassLoaderHierarchyHasher createClassLoaderHierarchyHasher() {
                // Return a dummy implementation of this as creating a real hasher drags ~20 more services
                // along with it, and a hasher isn't actually needed on the worker process side at the moment.
                return new ClassLoaderHierarchyHasher() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

     * {@link #TEST_COMPILE} and {@link #TEST_RUNTIME}, but can be extended by registering a
     * {@code org.apache.maven.api.spi.PathScopeProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.services.DependencyResolver
     * @see DependencyScope
     */
    @Experimental
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. 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.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshotSerializer.java

            }
            if (implementationSnapshot instanceof UnknownImplementationSnapshot) {
                return Impl.UNKNOWN;
            }
            throw new IllegalArgumentException("Unexpected implementation snapshot type: " + implementationSnapshot.getClass().getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:33:49 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top