Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,771 for keys2 (0.06 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/ComponentIdentifierParserTest.groovy

            [group: 'foo']                              | "Required keys [name, version] are missing from map {group=foo}."
            [name: 'foo']                               | "Required keys [group, version] are missing from map {name=foo}."
            [version: 'foo']                            | "Required keys [group, name] are missing from map {version=foo}."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/tagroot.go

    		locs[locKey] = loc
    		return loc
    	}
    
    	makeLabelLocs := func(s *profile.Sample, keys []string) ([]*profile.Location, bool) {
    		var locs []*profile.Location
    		var match bool
    		for i := range keys {
    			// Loop backwards, ensuring the first tag is closest to the root,
    			// and the last tag is closest to the leaves.
    			k := keys[len(keys)-1-i]
    			values := formatLabelValues(s, k, outputUnit)
    			if len(values) > 0 {
    				match = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/mapper.go

    	key := ""
    	gr := resource.GroupResource()
    	if r.keyFunc != nil {
    		key = r.keyFunc(gr)
    	}
    	if key == "" {
    		key = gr.String()
    	}
    
    	if r.keys == nil {
    		r.keys = map[schema.GroupResource]string{}
    	}
    	r.keys[gr] = key
    
    	if r.resources == nil {
    		r.resources = map[string]map[string][]schema.GroupVersionResource{}
    	}
    	if r.resources[key] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 18:26:06 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/security/internal/KeyringFilePublicKeyService.java

                        }
                        keys = new LoadedKeys(ImmutableMap.copyOf(keyToKeyringBuilder), longIdLongPGPPublicKeyBuilder.build());
                        LOGGER.info("Loaded {} keys from {}", keys.keyToKeyring.size(), keyRingFile);
                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
                }
                return keys;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheLoader.java

      /**
       * Computes or retrieves the values corresponding to {@code keys}. This method is called by {@link
       * LoadingCache#getAll}.
       *
       * <p>If the returned map doesn't contain all requested {@code keys} then the entries it does
       * contain will be cached, but {@code getAll} will throw an exception. If the returned map
       * contains extra keys not present in {@code keys} then all returned entries will be cached, but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/common/common.go

    			} else if podVolume.VolumeSource.Ephemeral != nil {
    				claimName = ephemeral.VolumeClaimName(pod, &podVolume)
    			}
    			if claimName != "" {
    				keys = append(keys, fmt.Sprintf("%s/%s", pod.Namespace, claimName))
    			}
    		}
    		return keys, nil
    	}
    }
    
    // AddPodPVCIndexerIfNotPresent adds the PodPVCIndexFunc.
    func AddPodPVCIndexerIfNotPresent(indexer cache.Indexer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 18:54:20 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeMultimap.java

     * according to the key comparator ordering or the natural ordering of the keys. Similarly, {@code
     * get}, {@code removeAll}, and {@code replaceValues} return collections that iterate through the
     * values according to the value comparator ordering or the natural ordering of the values. The
     * collections generated by {@code entries}, {@code keys}, and {@code values} iterate across the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/TreeMultimap.java

     * according to the key comparator ordering or the natural ordering of the keys. Similarly, {@code
     * get}, {@code removeAll}, and {@code replaceValues} return collections that iterate through the
     * values according to the value comparator ordering or the natural ordering of the values. The
     * collections generated by {@code entries}, {@code keys}, and {@code values} iterate across the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

          each identifying a `SignatureDef`.
    
      Raises:
        ValueError: Iff `representative_dataset` does not satisfy the conditions
          above.
      """
      if isinstance(representative_dataset, Mapping):
        if set(signature_keys) != set(representative_dataset.keys()):
          raise ValueError(
              'The signature keys and the keys of representative dataset map '
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/log/slog/slogtest_test.go

    		k, value, found := strings.Cut(kv, "=")
    		if !found {
    			return nil, fmt.Errorf("no '=' in %q", kv)
    		}
    		keys := strings.Split(k, ".")
    		// Populate a tree of maps for a dotted path such as "a.b.c=x".
    		m := top
    		for _, key := range keys[:len(keys)-1] {
    			x, ok := m[key]
    			var m2 map[string]any
    			if !ok {
    				m2 = map[string]any{}
    				m[key] = m2
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:50:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top