Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 381 for subclasses (0.2 sec)

  1. guava/src/com/google/common/collect/ForwardingDeque.java

    import java.util.Deque;
    import java.util.Iterator;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A deque which forwards all its method calls to another deque. Subclasses should override one or
     * more methods to modify the behavior of the backing deque as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ForwardingExecutorService.java

    import java.util.concurrent.TimeoutException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An executor service which forwards all its method calls to another executor service. Subclasses
     * should override one or more methods to modify the behavior of the backing executor service as
     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * ForwardingNavigableMap#navigableKeySet} to forward to this implementation or a subclass
       * thereof.
       *
       * @since 12.0
       */
      protected class StandardNavigableKeySet extends Maps.NavigableKeySet<K, V> {
        /** Constructor for use by subclasses. */
        public StandardNavigableKeySet() {
          super(ForwardingNavigableMap.this);
        }
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * ForwardingNavigableMap#navigableKeySet} to forward to this implementation or a subclass
       * thereof.
       *
       * @since 12.0
       */
      protected class StandardNavigableKeySet extends Maps.NavigableKeySet<K, V> {
        /** Constructor for use by subclasses. */
        public StandardNavigableKeySet() {
          super(ForwardingNavigableMap.this);
        }
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/PathTest.groovy

            Matchers.strictlyEquals(new Path('file://$ROOT_DIR$/file'), new Path('file://$ROOT_DIR$/file'))
            new Path('file://$ROOT_DIR$/file') != new Path('file://$ROOT_DIR$/other')
        }
    
        def "equals honors subclasses"() {
            expect:
            new Path('file://$ROOT_DIR$/file') == new FilePath(null, null, 'file://$ROOT_DIR$/file', null)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingBlockingDeque.java

    import java.util.concurrent.BlockingDeque;
    import java.util.concurrent.TimeUnit;
    import javax.annotation.CheckForNull;
    
    /**
     * A {@link BlockingDeque} which forwards all its method calls to another {@code BlockingDeque}.
     * Subclasses should override one or more methods to modify the behavior of the backing deque as
     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerRequirement.java

     */
    
    package org.gradle.workers.internal;
    
    import java.io.File;
    
    /**
     * Represents the directories a worker needs to understand in order to execute.
     *
     * TODO: This, and its subclasses, should probably be renamed to indicate that it is only about directories (for now)
     */
    public interface WorkerRequirement {
        /**
         * Returns the directory in which to execute new workers.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/OperationResultPostProcessor.java

    import org.gradle.internal.operations.OperationStartEvent;
    
    /**
     * Post-processor for {@link AbstractTaskResult} instances.
     *
     * <p>May be used to add information to results by returning specialized subclasses,
     * e.g. from internal language-specific plugins like Java.
     */
    public interface OperationResultPostProcessor {
        void started(BuildOperationDescriptor buildOperation, OperationStartEvent startEvent);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 08 21:12:24 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderSpec.java

     */
    
    package org.gradle.internal.classloader;
    
    import java.io.Serializable;
    
    /**
     * An immutable description of a ClassLoader hierarchy that can be used to recreate the hierarchy in a different process.
     *
     * Subclasses should implement equals() and hashCode(), so that the spec can be used as a hashmap key.
     */
    public abstract class ClassLoaderSpec implements Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 991 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

    import java.util.concurrent.BlockingDeque;
    import java.util.concurrent.TimeUnit;
    import javax.annotation.CheckForNull;
    
    /**
     * A {@link BlockingDeque} which forwards all its method calls to another {@code BlockingDeque}.
     * Subclasses should override one or more methods to modify the behavior of the backing deque as
     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top