Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,806 for implementMe (0.17 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestCharacterListGenerator.java

     *
     * @author Kevin Bourrillion
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class TestCharacterListGenerator implements TestListGenerator<Character> {
      @Override
      public SampleElements<Character> samples() {
        return new Chars();
      }
    
      @Override
      public List<Character> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestUnhashableCollectionGenerator.java

     *
     * @author Regina O'Dell
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
        implements TestCollectionGenerator<UnhashableObject> {
      @Override
      public SampleElements<UnhashableObject> samples() {
        return new Unhashables();
      }
    
      @Override
      public T create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * as {@code execute} and {@code invokeAny}, are implemented in terms of calls to {@code
       * delegate.execute}. All other methods are forwarded unchanged to the delegate. This implies that
       * the returned {@code ListeningExecutorService} never calls the delegate's {@code submit}, {@code
       * invokeAll}, and {@code invokeAny} methods, so any special handling of tasks must be implemented
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

            import org.gradle.api.Project
            class TestPlugin1 implements Plugin<Project> {
              void apply(Project project) {}
            }
        """)
    
        private Class<?> plugin2Class = classLoader.parseClass("""
            import org.gradle.api.Plugin
            import org.gradle.api.Project
            class TestPlugin2 implements Plugin<Project> {
              void apply(Project project) {}
            }
        """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/fmt/doc.go

    controlled by that implementation.
    
    3. If the %v verb is used with the # flag (%#v) and the operand
    implements the [GoStringer] interface, that will be invoked.
    
    If the format (which is implicitly %v for [Println] etc.) is valid
    for a string (%s %q %x %X), or is %v but not %#v,
    the following two rules apply:
    
    4. If an operand implements the error interface, the Error method
    will be invoked to convert the object to a string, which will then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginInstantiator.java

        }
    
        @Override
        public <T> T newInstance(Class<? extends T> type, Object... parameters) throws ObjectInstantiationException {
            // If the plugin type is abstract, it likely has abstract methods that should be implemented
            // during class generation. In this case, we should use the decorated instantiator to create
            // the plugin instance.  Otherwise, we should use the injected instantiator to create the plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/InterruptibleRunnable.java

     * This can be used to implement guaranteed delivery mechanisms, where proper interrupt handling is up to the delegate.
     */
    public final class InterruptibleRunnable implements Runnable {
        private final Lock stateLock = new ReentrantLock();
        private final Runnable delegate;
        private boolean interrupted;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/AbstractIntersection.java

            } else {
                return doIntersect(leftType.cast(right), rightType.cast(left), factory);
            }
        }
    
        /**
         * Intersects the given exclude specs.
         *
         * This method is meant to be implemented by subclasses realizing a specific intersection of types.
         *
         * @param left an exclude spec
         * @param right another exclude spec
         * @param factory the factory that can be used to create a new exclude spec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Equivalence.java

       *     instead.
       * @since 21.0
       */
      @Deprecated
      @Override
      public final boolean test(@CheckForNull T t, @CheckForNull T u) {
        return equivalent(t, u);
      }
    
      /**
       * Implemented by the user to determine whether {@code a} and {@code b} are considered equivalent,
       * subject to the requirements specified in {@link #equivalent}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pkg/volume/local/local.go

    			}
    		}
    
    	}
    
    	if runtime.GOOS != "windows" {
    		// skip below MkdirAll for windows since the "bind mount" logic is implemented differently in mount_wiondows.go
    		if err := os.MkdirAll(dir, 0750); err != nil {
    			klog.Errorf("mkdir failed on disk %s (%v)", dir, err)
    			return err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top