Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for entryAt (0.67 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

      }
    
      @LazyInit @RetainedWith @CheckForNull Set<Entry<K, V>> entrySet;
    
      @Override
      @GwtIncompatible // Not supported.
      public Set<Entry<K, V>> entrySet() {
        // does not impact recency ordering
        Set<Entry<K, V>> es = entrySet;
        return (es != null) ? es : (entrySet = new EntrySet());
      }
    
      // Iterator Support
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

            Map<K, V> map, Predicate<? super Entry<K, V>> entryPredicate, Collection<?> keyCollection) {
          Iterator<Entry<K, V>> entryItr = map.entrySet().iterator();
          boolean result = false;
          while (entryItr.hasNext()) {
            Entry<K, V> entry = entryItr.next();
            if (entryPredicate.apply(entry) && keyCollection.contains(entry.getKey())) {
              entryItr.remove();
              result = true;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

            Map<K, V> map, Predicate<? super Entry<K, V>> entryPredicate, Collection<?> keyCollection) {
          Iterator<Entry<K, V>> entryItr = map.entrySet().iterator();
          boolean result = false;
          while (entryItr.hasNext()) {
            Entry<K, V> entry = entryItr.next();
            if (entryPredicate.apply(entry) && keyCollection.contains(entry.getKey())) {
              entryItr.remove();
              result = true;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	// Entry 40 - 5F
    	0x00000001827c0813, 0x000000014240385f, 0x0000000103c1c813, 0x000000011e420813,
    	0x0000000112000001, 0x0000000106000001, 0x0000000101400001, 0x000000010a000001,
    	0x0000000102020001,
    }
    
    // regionInclusionNext marks, for each entry in regionInclusionBits, the set of
    // all groups that are reachable from the groups set in the respective entry.
    // Size: 73 bytes, 73 elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    equals(Object); public int hashCode(); public String toString(); } org/codehaus/plexus/util/FastMap$EntrySet$1.class package org.codehaus.plexus.util; synchronized class FastMap$EntrySet$1 implements java.util.Iterator { FastMap$EntryImpl after; FastMap$EntryImpl before; void FastMap$EntrySet$1(FastMap$EntrySet); public void remove(); public boolean hasNext(); public Object next(); } org/codehaus/plexus/util/FastMap$EntrySet.class package org.codehaus.plexus.util; synchronized class FastMap$EntrySet extends j...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	R_386_TLS_IE_32     R_386 = 33 /* 32 bit offset to GOT static TLS offset entry */
    	R_386_TLS_LE_32     R_386 = 34 /* 32 bit offset within static TLS block */
    	R_386_TLS_DTPMOD32  R_386 = 35 /* GOT entry containing TLS index */
    	R_386_TLS_DTPOFF32  R_386 = 36 /* GOT entry containing TLS offset */
    	R_386_TLS_TPOFF32   R_386 = 37 /* GOT entry of -ve static TLS offset */
    	R_386_SIZE32        R_386 = 38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    addMethod(ACC_STATIC, "<clinit>", "()V", methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                        for (Map.Entry<java.lang.reflect.Type, ReturnTypeEntry> entry : genericReturnTypeConstantsIndex.entrySet()) {
                            ReturnTypeEntry returnType = entry.getValue();
                            addField(PV_FINAL_STATIC, returnType.fieldName, JAVA_REFLECT_TYPE_DESCRIPTOR);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

      }
    
      @LazyInit @RetainedWith @CheckForNull Set<Entry<K, V>> entrySet;
    
      @Override
      @GwtIncompatible // Not supported.
      public Set<Entry<K, V>> entrySet() {
        // does not impact recency ordering
        Set<Entry<K, V>> es = entrySet;
        return (es != null) ? es : (entrySet = new EntrySet());
      }
    
      // Iterator Support
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    		}
    	}
    }
    
    func (p *ReplicationPool) queueMRFSave(entry MRFReplicateEntry) {
    	if !p.initialized() {
    		return
    	}
    	if entry.RetryCount > mrfRetryLimit { // let scanner catch up if retry count exceeded
    		atomic.AddUint64(&globalReplicationStats.mrfStats.TotalDroppedCount, 1)
    		atomic.AddUint64(&globalReplicationStats.mrfStats.TotalDroppedBytes, uint64(entry.sz))
    		return
    	}
    
    	select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	JMP   sealSSETail192
    
    // ----------------------------------------------------------------------------
    // Special optimization for the last 64 bytes of plaintext
    sealSSETail64:
    	// Need to encrypt up to 64 bytes - prepare single block, hash 192 or 256 bytes
    	MOVO  ·chacha20Constants<>(SB), A1
    	MOVO  state1Store, B1
    	MOVO  state2Store, C1
    	MOVO  ctr3Store, D1
    	PADDL ·sseIncMask<>(SB), D1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top