Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for extrakey (0.16 sec)

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

              if (e.getHash() != hash) {
                continue;
              }
    
              K entryKey = e.getKey();
              if (entryKey == null) {
                tryDrainReferenceQueues();
                continue;
              }
    
              if (map.keyEquivalence.equivalent(key, entryKey)) {
                return e;
              }
            }
          }
    
          return null;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

              if (e.getHash() != hash) {
                continue;
              }
    
              K entryKey = e.getKey();
              if (entryKey == null) {
                tryDrainReferenceQueues();
                continue;
              }
    
              if (map.keyEquivalence.equivalent(key, entryKey)) {
                return e;
              }
            }
          }
    
          return null;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	}
    	mergeKeyRight, ok := typedRight[mergeKey]
    	if !ok {
    		return false, mergepatch.ErrNoMergeKey(typedRight, mergeKey)
    	}
    	return mergeKeyLeft == mergeKeyRight, nil
    }
    
    // extractKey trims the prefix and return the original key
    func extractKey(s, prefix string) (string, error) {
    	substrings := strings.SplitN(s, "/", 2)
    	if len(substrings) <= 1 || substrings[0] != prefix {
    		switch prefix {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top