Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for entries (0.19 sec)

  1. cmd/bucket-replication.go

    		}
    	}
    }
    
    // save mrf entries to nodenamehex.bin
    func (p *ReplicationPool) saveMRFEntries(ctx context.Context, entries map[string]MRFReplicateEntry) {
    	if !p.initialized() {
    		return
    	}
    	atomic.StoreUint64(&globalReplicationStats.mrfStats.LastFailedCount, uint64(len(entries)))
    	if len(entries) == 0 {
    		return
    	}
    
    	v := MRFReplicateEntries{
    		Entries: entries,
    		Version: mrfMetaVersion,
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  2. cmd/storage-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "Entries")
    				return
    			}
    			if cap(z.Entries) >= int(zb0002) {
    				z.Entries = (z.Entries)[:zb0002]
    			} else {
    				z.Entries = make([]string, zb0002)
    			}
    			for za0001 := range z.Entries {
    				z.Entries[za0001], err = dc.ReadString()
    				if err != nil {
    					err = msgp.WrapError(err, "Entries", za0001)
    					return
    				}
    			}
    		default:
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

      final long refreshNanos;
    
      /** Entries waiting to be consumed by the removal listener. */
      // TODO(fry): define a new type which creates event objects and automates the clear logic
      final Queue<RemovalNotification<K, V>> removalNotificationQueue;
    
      /**
       * A listener that is invoked when an entry is removed due to expiration or garbage collection of
       * soft/weak entries.
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

      final long refreshNanos;
    
      /** Entries waiting to be consumed by the removal listener. */
      // TODO(fry): define a new type which creates event objects and automates the clear logic
      final Queue<RemovalNotification<K, V>> removalNotificationQueue;
    
      /**
       * A listener that is invoked when an entry is removed due to expiration or garbage collection of
       * soft/weak entries.
       */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

        private final Collection<Entry<K, V>> entries;
    
        UnmodifiableEntries(Collection<Entry<K, V>> entries) {
          this.entries = entries;
        }
    
        @Override
        protected Collection<Entry<K, V>> delegate() {
          return entries;
        }
    
        @Override
        public Iterator<Entry<K, V>> iterator() {
          return unmodifiableEntryIterator(entries.iterator());
        }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    try {
                        entries = doMsrpcShareEnum();
                    } catch(IOException ioe) {
                        if (log.level >= 3)
                            ioe.printStackTrace(log);
                        entries = doNetShareEnum();
                    }
                    for (int ei = 0; ei < entries.length; ei++) {
                        e = entries[ei];
                        if (map.containsKey(e) == false)
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          this.builder = builder;
        }
    
        @Override
        protected Map<String, String> create(Entry<String, String>[] entries) {
          LocalCache<String, String> map = makeLocalCache(builder);
          for (Entry<String, String> entry : entries) {
            map.put(entry.getKey(), entry.getValue());
          }
          return map;
        }
      }
    
      public static Test suite() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          this.builder = builder;
        }
    
        @Override
        protected Map<String, String> create(Entry<String, String>[] entries) {
          LocalCache<String, String> map = makeLocalCache(builder);
          for (Entry<String, String> entry : entries) {
            map.put(entry.getKey(), entry.getValue());
          }
          return map;
        }
      }
    
      public static Test suite() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    contains(Object); public void clear(); } org/codehaus/plexus/util/FastMap.class package org.codehaus.plexus.util; public synchronized class FastMap implements java.util.Map, Cloneable, java.io.Serializable { private transient FastMap$EntryImpl[] _entries; private transient int _capacity; private transient int _mask; private transient FastMap$EntryImpl _poolFirst; private transient FastMap$EntryImpl _mapFirst; private transient FastMap$EntryImpl _mapLast; private transient int _size; private transient...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
  10. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    contains(Object); public void clear(); } org/codehaus/plexus/util/FastMap.class package org.codehaus.plexus.util; public synchronized class FastMap implements java.util.Map, Cloneable, java.io.Serializable { private transient FastMap$EntryImpl[] _entries; private transient int _capacity; private transient int _mask; private transient FastMap$EntryImpl _poolFirst; private transient FastMap$EntryImpl _mapFirst; private transient FastMap$EntryImpl _mapLast; private transient int _size; private transient...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 164.6K bytes
    - Viewed (0)
Back to top