Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for keys2 (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
          "properties": {
            "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "boolean"
              },
              "x-kubernetes-list-map-keys": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

            "type":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "key": {
                "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
                "type": "string"
              },
              "operator": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

            "type":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

            "type":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    }
    
    // getQueuedKeys returns a sorted list of keys in the queue.
    // It can be used to quickly check that multiple keys are in there.
    func getQueuedKeys(queue workqueue.TypedRateLimitingInterface[string]) []string {
    	var keys []string
    	count := queue.Len()
    	for i := 0; i < count; i++ {
    		key, done := queue.Get()
    		if done {
    			return keys
    		}
    		keys = append(keys, key)
    	}
    	sort.Strings(keys)
    	return keys
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    		} else {
    			rootPool.AddCert(root)
    		}
    		certs[r.Subject] = root
    		keys[r.Subject] = k
    	}
    
    	intermediatePool := NewCertPool()
    	var leaf *Certificate
    	for _, e := range d.Graph {
    		issuerCert, ok := certs[e.Issuer]
    		if !ok {
    			t.Fatalf("unknown issuer %s", e.Issuer)
    		}
    		issuerKey, ok := keys[e.Issuer]
    		if !ok {
    			t.Fatalf("unknown issuer %s", e.Issuer)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top