Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Entrees (0.19 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     * requested entries may be evicted on each cache modification.
     *
     * <p>If {@link #expireAfterWrite expireAfterWrite} or {@link #expireAfterAccess expireAfterAccess}
     * is requested entries may be evicted on each cache modification, on occasional cache accesses, or
     * on calls to {@link Cache#cleanUp}. Expired entries may be counted by {@link Cache#size}, but will
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils_gen.go

    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Entries")
    				return
    			}
    			if z.Entries == nil {
    				z.Entries = make(map[string]MRFReplicateEntry, zb0002)
    			} else if len(z.Entries) > 0 {
    				for key := range z.Entries {
    					delete(z.Entries, key)
    				}
    			}
    			for zb0002 > 0 {
    				zb0002--
    				var za0001 string
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 61.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      private static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> fromEntries(
          Entry<K, V>... entries) {
        return fromEntries(Ordering.natural(), false, entries, entries.length);
      }
    
      /**
       * Accepts a collection of possibly-null entries. If {@code sameComparator}, then it is assumed
       * that they do not need to be sorted or checked for dupes.
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

          }
          return result;
        }
    
        @Override
        public Collection<Entry<K, V>> entries() {
          Collection<Entry<K, V>> result = entries;
          if (result == null) {
            entries = result = unmodifiableEntries(delegate.entries());
          }
          return result;
        }
    
        @Override
        public Collection<V> get(@ParametricNullness K key) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 86.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      private static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> fromEntries(
          Entry<K, V>... entries) {
        return fromEntries(Ordering.natural(), false, entries, entries.length);
      }
    
      /**
       * Accepts a collection of possibly-null entries. If {@code sameComparator}, then it is assumed
       * that they do not need to be sorted or checked for dupes.
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 52.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

      char* (*translate_name)(const TF_Filesystem* filesystem, const char* uri);
    
      /// Finds all entries in the directory given by `path`.
      ///
      /// The returned entries are paths relative to `path`.
      ///
      /// Plugins must allocate `entries` to hold all names that need to be returned
      /// and return the size of `entries`. Caller takes ownership of `entries`
      /// after the call.
      ///
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    		// MaxUploads is set more than number of meta data entries in the result.
    		// Expecting no `Uploads` metadata.
    		{
    			MaxUploads:  2,
    			Prefix:      "orange",
    			IsTruncated: false,
    		},
    		// listMultipartResults - 14.
    		// `Prefix` is set. It doesn't contain object name as its preifx.
    		// MaxUploads is set more than number of meta data entries in the result.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    		return nil, err
    	}
    	entries, err := readDir(dirPath)
    	if err != nil {
    		if errors.Is(err, errFileAccessDenied) {
    			return nil, errDiskAccessDenied
    		} else if errors.Is(err, errFileNotFound) {
    			return nil, errDiskNotFound
    		}
    		return nil, err
    	}
    	volsInfo := make([]VolInfo, 0, len(entries))
    	for _, entry := range entries {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Synchronized.java

            }
            return valuesCollection;
          }
        }
    
        @Override
        public Collection<Map.Entry<K, V>> entries() {
          synchronized (mutex) {
            if (entries == null) {
              entries = typePreservingCollection(delegate().entries(), mutex);
            }
            return entries;
          }
        }
    
        @Override
        public Map<K, Collection<V>> asMap() {
          synchronized (mutex) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

                share = "IPC$";
            }
    
            synchronized ( this.trees ) {
                for ( SmbTreeImpl t : this.trees ) {
                    if ( t.matches(share, service) ) {
                        return t.acquire();
                    }
                }
                SmbTreeImpl t = new SmbTreeImpl(this, share, service);
                t.acquire();
                this.trees.add(t);
                return t;
            }
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top