Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for redundant (0.08 sec)

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

        /**
         * Attests that the expected values must not just be present but must be present in the order
         * they were given.
         */
        void inOrder();
      }
    
      @IgnoreJRERequirement // *should* be redundant with the annotation on SpliteratorTester
      private abstract static class GeneralSpliterator<E extends @Nullable Object> {
        final Spliterator<E> spliterator;
    
        GeneralSpliterator(Spliterator<E> spliterator) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

            }
        }
    
        private Collection<WeakMojoExecutionListener> getProvidedListeners() {
            // the same instance can be provided multiple times under different Key's
            // deduplicate instances to avoid redundant beforeXXX/afterXXX callbacks
            IdentityHashMap<WeakMojoExecutionListener, Object> listeners = new IdentityHashMap<>();
            for (Object provided : getScopeState().provided()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

                if (upcastCount == l) {
                    return upcastCount;
                }
            }
    
            // Examine interfaces. Note we do it even if superclazz == null.
            // This is redundant as currently java.lang.Object does not implement
            // any interfaces, however nothing guarantees it will not in the future.
            Class<?>[] interfaces = clazz.getInterfaces();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/MoreFiles.java

       */
      public static ByteSource asByteSource(Path path, OpenOption... options) {
        return new PathByteSource(path, options);
      }
    
      @IgnoreJRERequirement // *should* be redundant with the one on MoreFiles itself
      private static final class PathByteSource extends
          ByteSource
      {
    
        private static final LinkOption[] FOLLOW_LINKS = {};
    
        private final Path path;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Range.java

              "intersection is undefined for disconnected ranges %s and %s",
              this,
              connectedRange);
    
          // TODO(kevinb): all the precondition checks in the constructor are redundant...
          return create(newLower, newUpper);
        }
      }
    
      /**
       * Returns the maximal range lying between this range and {@code otherRange}, if such a range
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Range.java

              "intersection is undefined for disconnected ranges %s and %s",
              this,
              connectedRange);
    
          // TODO(kevinb): all the precondition checks in the constructor are redundant...
          return create(newLower, newUpper);
        }
      }
    
      /**
       * Returns the maximal range lying between this range and {@code otherRange}, if such a range
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/IntsTest.java

    /**
     * Unit test for {@link Ints}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings("cast") // redundant casts are intentional and harmless
    public class IntsTest extends TestCase {
      private static final int[] EMPTY = {};
      private static final int[] ARRAY1 = {(int) 1};
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Streams.java

        /** Applies this function to the given argument and its index within a stream. */
        @ParametricNullness
        R apply(@ParametricNullness T from, long index);
      }
    
      /*
       * @IgnoreJRERequirement should be redundant with the one on Streams itself, but it's necessary as
       * of Animal Sniffer 1.24. Maybe Animal Sniffer processes this nested class before it processes
       * Streams and thus hasn't had a chance to see Streams's annotation?
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  9. RELEASE.md

    # Release 2.12.0
    
    ### Breaking Changes
    
    *   Build, Compilation and Packaging
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: fixed a bug during kubeadm upgrade, where it is not possible to mount a new device and create a symbolic link for /etc/kubernetes...
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:40:14 UTC 2024
    - 309.1K bytes
    - Viewed (0)
Back to top