Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,512 for Hoolehan (0.18 sec)

  1. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          Iterator<V> getDelegateIterator() {
            validateIterator();
            return delegateIterator;
          }
        }
    
        @Override
        public boolean add(@ParametricNullness V value) {
          refreshIfEmpty();
          boolean wasEmpty = delegate.isEmpty();
          boolean changed = delegate.add(value);
          if (changed) {
            totalSize++;
            if (wasEmpty) {
              addToMap();
            }
          }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 46.6K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java

        boolean dummy = false;
        for (int i = 0; i < reps; i++) {
          dummy ^= Ascii.equalsIgnoreCase(lhs, rhs);
        }
        return dummy;
      }
    
      @Benchmark
      boolean equalsIgnoreCaseJDK(int reps) {
        // This benchmark has no concept of "noWorkToDo".
        String lhs = testString;
        String rhs = testString.toUpperCase();
    
        boolean dummy = false;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.8K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/collect/MapBenchmark.java

        return dummy;
      }
    
      @Benchmark
      boolean createPopulateAndRemove(int reps) {
        boolean dummy = false;
        for (int i = 1; i < reps; i++) {
          Map<Element, Element> map = impl.create(values);
          for (Element value : values) {
            dummy |= map.remove(value) == null;
          }
        }
        return dummy;
      }
    
      @Benchmark
      boolean iterateWithEntrySet(int reps) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

                return parent.toArray(a);
            }
    
            @Override
            public boolean add(final E e) {
                return parent.add(e);
            }
    
            @Override
            public boolean remove(final Object o) {
                return parent.remove(o);
            }
    
            @Override
            public boolean containsAll(final Collection<?> c) {
                return parent.containsAll(c);
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    filesDeselected; protected java.util.Vector dirsDeselected; protected boolean haveSlowResults; protected boolean isCaseSensitive; private boolean followSymlinks; protected boolean everythingIncluded; public void DirectoryScanner(); protected static boolean matchPatternStart(String, String); protected static boolean matchPatternStart(String, String, boolean); protected static boolean matchPath(String, String); protected static boolean matchPath(String, String, boolean); public static boolean match(String,...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        public boolean equals(@Nullable Object obj) {
          if (obj instanceof SameCharacterInstance) {
            SameCharacterInstance that = (SameCharacterInstance) obj;
            return i == that.i;
          }
          return false;
        }
      }
    
      static class SameBooleanInstance {
        private final Boolean i;
    
        public SameBooleanInstance(Boolean i) {
          this.i = checkNotNull(i);
        }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/cache/ForwardingCacheTest.java

        forward =
            new ForwardingCache<String, Boolean>() {
              @Override
              protected Cache<String, Boolean> delegate() {
                return mock;
              }
            };
      }
    
      public void testGetIfPresent() throws ExecutionException {
        when(mock.getIfPresent("key")).thenReturn(Boolean.TRUE);
        assertSame(Boolean.TRUE, forward.getIfPresent("key"));
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 17 12:41:04 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Monitor.java

        /**
         * Evaluates this guard's boolean condition. This method is always called with the associated
         * monitor already occupied. Implementations of this method must depend only on state protected
         * by the associated monitor, and must not modify that state.
         */
        public abstract boolean isSatisfied();
      }
    
      /** Whether this monitor is fair. */
      private final boolean fair;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 18:22:01 GMT 2023
    - 38.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescPropertyGetterSymbol.kt

        override val isDefault: Boolean
            get() = withValidityAssertion { descriptor.isDefault }
    
        override val isInline: Boolean
            get() = withValidityAssertion { descriptor.isInline }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val hasBody: Boolean
            get() = withValidityAssertion { descriptor.hasBody() }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
        }
    
        default boolean getSystemPropertyAsBoolean(final String key, final boolean defaultValue) {
            return Constants.TRUE.equalsIgnoreCase(getSystemProperty(key, defaultValue ? Constants.TRUE : Constants.FALSE));
        }
    
        default void setSystemPropertyAsBoolean(final String key, final boolean value) {
            setSystemProperty(key, value ? Constants.TRUE : Constants.FALSE);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top