Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,924 for booleans (0.1 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionRequest.java

        private Map managedVersionMap;
    
        /** result type - flat list; the default */
        private boolean asList = true;
    
        /** result type - dirty tree */
        private boolean asDirtyTree = false;
    
        /** result type - resolved tree */
        private boolean asResolvedTree = false;
    
        /** result type - graph */
        private boolean asGraph = false;
    
        public MetadataResolutionRequest() {}
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/StandardTable.java

          }
    
          @Override
          public boolean contains(@Nullable Object obj) {
            return StandardTable.this.contains(obj, columnKey);
          }
    
          @Override
          public boolean remove(@Nullable Object obj) {
            return StandardTable.this.remove(obj, columnKey) != null;
          }
    
          @Override
          public boolean retainAll(Collection<?> c) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTransformValuesUnmodifiableIteratorTest.java

        underlying.put("b", "");
    
        Map<@Nullable String, Boolean> map =
            transformValues(
                underlying,
                new Function<@Nullable String, Boolean>() {
                  @Override
                  public Boolean apply(@Nullable String from) {
                    return from == null;
                  }
                });
        Map<String, Boolean> expected = ImmutableMap.of("a", true, "b", false);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractTable.java

            R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
        implements Table<R, C, V> {
    
      @Override
      public boolean containsRow(@Nullable Object rowKey) {
        return Maps.safeContainsKey(rowMap(), rowKey);
      }
    
      @Override
      public boolean containsColumn(@Nullable Object columnKey) {
        return Maps.safeContainsKey(columnMap(), columnKey);
      }
    
      @Override
      public Set<R> rowKeySet() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java

        private ArtifactRepositoryPolicy snapshots;
    
        private ArtifactRepositoryPolicy releases;
    
        private boolean blacklisted;
    
        private Authentication authentication;
    
        private Proxy proxy;
    
        private List<ArtifactRepository> mirroredRepositories = Collections.emptyList();
    
        private boolean blocked;
    
        /**
         * Create a local repository or a test repository.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/FilesTest.java

      private static class UnmovableFile extends File {
    
        private final boolean canRename;
        private final boolean canDelete;
    
        UnmovableFile(File file, boolean canRename, boolean canDelete) {
          super(file.getPath());
          this.canRename = canRename;
          this.canDelete = canDelete;
        }
    
        @Override
        public boolean renameTo(File to) {
          return canRename && super.renameTo(to);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

        }
        return comparator;
      }
    
      @Override
      public boolean containsKey(Object key) {
        try {
          return delegate.containsKey(checkValid(key));
        } catch (NullPointerException | ClassCastException e) {
          return false;
        }
      }
    
      @Override
      public boolean containsValue(Object value) {
        return delegate.containsValue(value);
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

        private volatile long lastAccessTime;
    
        private final ConcurrentHashMap<String, FileInfo> children;
        private final ReadWriteLock lock;
    
        private volatile boolean isComplete;
        private volatile boolean hasChanges;
        private DirectoryCacheScope scope;
        private long maxAge;
    
        private final AtomicInteger inconsistencyCount = new AtomicInteger(0);
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/MethodDesc.java

         *
         * @return {@literal true} if the method is {@literal public}
         */
        boolean isPublic();
    
        /**
         * Returns {@literal true} if the method is {@literal static}.
         *
         * @return {@literal true} if the method is {@literal static}
         */
        boolean isStatic();
    
        /**
         * Returns {@literal true} if the method is {@literal final}.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            private boolean forceStop = false;
            private boolean componentAvailable = true;
            private final AtomicInteger cpuLoadCallCount = new AtomicInteger(0);
    
            @Override
            public boolean isForceStop() {
                return forceStop;
            }
    
            @Override
            public void setForceStop(boolean forceStop) {
                this.forceStop = forceStop;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
Back to top