Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,511 for Hoolehan (0.2 sec)

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

      public @Nullable E pollLast() {
        return delegate.pollLast();
      }
    
      @Override
      public boolean remove(Object object) {
        return delegate.remove(checkValid(object));
      }
    
      @Override
      public boolean removeAll(Collection<?> c) {
        return delegate.removeAll(c);
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
        return delegate.retainAll(c);
      }
    
      @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/SynchronizedDequeTest.java

        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.removeAll(collection);
        }
    
        @Override
        public boolean isEmpty() {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.isEmpty();
        }
    
        @Override
        public boolean contains(Object object) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    public static Categories$CategoryFilter categoryFilter(boolean, java.util.Set, boolean, java.util.Set); public void Categories$CategoryFilter(Class, Class); protected void Categories$CategoryFilter(boolean, java.util.Set, boolean, java.util.Set); private void Categories$CategoryFilter(boolean, Class[], boolean, Class[]); public String describe(); public String toString(); public boolean shouldRun(org.junit.runner.Description); private boolean hasCorrectCategoryAn(org.junit.runner.Description); private...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/Invokable.java

      /** See {@link java.lang.reflect.AccessibleObject#setAccessible(boolean)}. */
      public final void setAccessible(boolean flag) {
        accessibleObject.setAccessible(flag);
      }
    
      /** See {@link java.lang.reflect.AccessibleObject#trySetAccessible()}. */
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      public final boolean trySetAccessible() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    getThreshold(); public void setThreshold(int); public String getName(); public void debug(String); public boolean isDebugEnabled(); public void info(String); public boolean isInfoEnabled(); public void warn(String); public boolean isWarnEnabled(); public void error(String); public boolean isErrorEnabled(); public void fatalError(String); public boolean isFatalErrorEnabled(); protected boolean isValidThreshold(int); } org/codehaus/plexus/logging/AbstractLoggerManage.class package org.codehaus.plexus.logging;...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32.4K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

        private volatile String version;
    
        private VersionRange versionRange;
    
        private volatile boolean resolved;
    
        private boolean release;
    
        private List<ArtifactVersion> availableVersions;
    
        private Map<Object, ArtifactMetadata> metadataMap;
    
        private boolean optional;
    
        public DefaultArtifact(
                String groupId,
                String artifactId,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/BooleansTest.java

        testRotate(new boolean[] {true}, -2, new boolean[] {true});
        testRotate(new boolean[] {true}, -1, new boolean[] {true});
        testRotate(new boolean[] {true}, 0, new boolean[] {true});
        testRotate(new boolean[] {true}, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 2, new boolean[] {true});
    
        testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true});
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 15:43:29 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        testRotate(new boolean[] {true}, -2, new boolean[] {true});
        testRotate(new boolean[] {true}, -1, new boolean[] {true});
        testRotate(new boolean[] {true}, 0, new boolean[] {true});
        testRotate(new boolean[] {true}, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 2, new boolean[] {true});
    
        testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true});
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 15:43:29 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/PublicApproximatorConfiguration.kt

        override val allFlexible: Boolean get() = false
        override val errorType: Boolean get() = true
        override val definitelyNotNullType: Boolean get() = false
        override val integerLiteralConstantType: Boolean get() = true
        override val intersectionTypesInContravariantPositions: Boolean get() = true
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Nov 11 10:59:58 GMT 2022
    - 823 bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphVertex.java

        ArtifactMetadata md;
    
        // indications to use these in comparison
        private boolean compareVersion = false;
        private boolean compareScope = false;
    
        public MetadataGraphVertex(ArtifactMetadata md) {
            super();
            this.md = md;
        }
    
        public MetadataGraphVertex(ArtifactMetadata md, boolean compareVersion, boolean compareScope) {
            this(md);
            this.compareVersion = compareVersion;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.3K bytes
    - Viewed (0)
Back to top