Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for keyId (0.12 sec)

  1. cmd/kubeadm/app/phases/certs/certlist.go

    		}
    
    		for _, leaf := range leaves {
    			if err := leaf.CreateFromCA(ic, caCert, caKey); err != nil {
    				return err
    			}
    		}
    	}
    	return nil
    }
    
    // CertificateMap is a flat map of certificates, keyed by Name.
    type CertificateMap map[string]*KubeadmCert
    
    // CertTree returns a one-level-deep tree, mapping a CA cert to an array of certificates that should be signed by it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/claiminfo.go

    	// a prepared resource
    	annotations map[string][]kubecontainer.Annotation
    	prepared    bool
    }
    
    // claimInfoCache is a cache of processed resource claims keyed by namespace/claimname.
    type claimInfoCache struct {
    	sync.RWMutex
    	state     state.CheckpointState
    	claimInfo map[string]*ClaimInfo
    }
    
    // newClaimInfoFromClaim creates a new claim info from a resource claim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	syncHandler func(groupVersion schema.GroupVersion) error
    
    	syncedInitialSet chan struct{}
    
    	// queue is where incoming work is placed to de-dup and to allow "easy" rate limited requeues on errors
    	// this is actually keyed by a groupVersion
    	queue workqueue.TypedRateLimitingInterface[schema.GroupVersion]
    }
    
    // NewCRDRegistrationController returns a controller which will register CRD GroupVersions with the auto APIService registration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

                              /*value=*/builder.getStrArrayAttr({kTfFilePrefix}));
    
      // Append the "__tf_file_prefix:0" to the "tf.entry_function" attribute's
      // item keyed by "inputs".
      AddEntryFunctionInput(Twine(kTfFilePrefix).concat(":0").str(), main_func_op);
    
      return new_file_prefix_arg;
    }
    
    // Finds the file prefix argument from `main_func_op`. The file prefix argument
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Added apiserver_envelope_encryption_invalid_key_id_from_status_total to measure number of times an invalid keyID is returned by the Status RPC call. ([#115846](https://github.com/kubernetes/kubernetes/pull/115846), [@ritazh](https://github.com/ritazh)) [SIG API Machinery and Auth]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    	moveRequestCycle int64
    
    	// preEnqueuePluginMap is keyed with profile name, valued with registered preEnqueue plugins.
    	preEnqueuePluginMap map[string][]framework.PreEnqueuePlugin
    	// queueingHintMap is keyed with profile name, valued with registered queueing hint functions.
    	queueingHintMap QueueingHintMapPerProfile
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    	var services []*model.Service
    	// Holds clusters per service, keyed by hostname.
    	serviceClusters := make(map[string]sets.String)
    	// Holds service ports, keyed by hostname.Inner map port and its cluster name.
    	// This is mainly used when service is updated and a port has been removed.
    	servicePortClusters := make(map[string]map[int]string)
    	// Holds subset clusters per service, keyed by hostname.
    	subsetClusters := make(map[string]sets.String)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pkg/kube/kclient/client.go

    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals. This is keyed on
    // unique {Type,LabelSelector,FieldSelector}.
    //
    // Warning: if conflicting filter.ObjectTransform are used for the same key, the first one registered wins.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

    // There may be multiple aliases for the same resource (examples: service in multiple networks, or a dual-stack workload).
    // Aliases are keyed by network/IP address. Example: "default/1.2.3.4".
    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

                        + getImplementation() + ")");
            }
    
            parameters.add(parameter);
        }
    
        /**
         * @return the list parameters as a Map (keyed by {@link Parameter#getName()}) that is built from
         * {@link #parameters} list on each call. In other words, the map returned is built on fly and is a copy.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top