Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for emptypb (0.16 sec)

  1. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

              "namespace": {
                "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    field is set via the /status subresource. Once populated, this field is immutable.\n\nIf the certificate signing request is denied, a condition of type \"Denied\" is added and this field remains empty. If the signer cannot issue the certificate, a condition of type \"Failed\" is added and this field remains empty.\n\nValidation requirements:\n 1. certificate must contain one or more PEM blocks.\n 2. All PEM blocks must have the \"CERTIFICATE\" label, contain no headers, and the encoded data\n  must be...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <p>
    A <a href="#Blocks">statement list</a> ends in a terminating statement if the list
    is not empty and its final non-empty statement is terminating.
    </p>
    
    
    <h3 id="Empty_statements">Empty statements</h3>
    
    <p>
    The empty statement does nothing.
    </p>
    
    <pre class="ebnf">
    EmptyStmt = .
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      auto func = mlir::cast<SymbolRefAttr>(op.getBranches()[index]);
      auto empty = rewriter.getStringAttr("");
      ReplaceTfOpWithNewOp<PartitionedCallOp>(
          rewriter, op, op.getResultTypes(), op.getOperands().drop_front(), func,
          /*config=*/empty, /*config_proto=*/empty, /*executor_type=*/empty);
      return success();
    }
    
    void CaseOp::getCanonicalizationPatterns(RewritePatternSet& results,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		return err
    	}
    
    	// Prepare Go import config.
    	// We start it off with a comment so it can't be empty, so icfg.Bytes() below is never nil.
    	// It should never be empty anyway, but there have been bugs in the past that resulted
    	// in empty configs, which then unfortunately turn into "no config passed to compiler",
    	// and the compiler falls back to looking in pkg itself, which mostly works,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    	fittingPod := podWithUIDNameNsSpec("1", "fittingpod", "foo", fittingPodSpec)
    	emptyPod := podWithUIDNameNsSpec("2", "emptypod", "foo", emptyPodSpec)
    	missingPod := podWithUIDNameNsSpec("3", "missingpod", "foo", missingPodSpec)
    	failedPod := podWithUIDNameNsSpec("4", "failedpod", "foo", failedPodSpec)
    
    	kl.HandlePodAdditions([]*v1.Pod{fittingPod, emptyPod, missingPod, failedPod})
    
    	// Check pod status stored in the status map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	// named types and equal underlying types
    	{V(new(int)), V(new(integer))},
    	{V(new(integer)), V(new(int))},
    	{V(Empty{}), V(struct{}{})},
    	{V(new(Empty)), V(new(struct{}))},
    	{V(struct{}{}), V(Empty{})},
    	{V(new(struct{})), V(new(Empty))},
    	{V(Empty{}), V(Empty{})},
    	{V(MyBytes{}), V([]byte{})},
    	{V([]byte{}), V(MyBytes{})},
    	{V((func())(nil)), V(MyFunc(nil))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    			return madmin.ReplicateAddStatus{}, errSRDuplicateSites
    		}
    		deploymentIDsSet.Add(v.DeploymentID)
    
    		if v.self {
    			selfIdx = i
    			localHasBuckets = !v.Empty
    			continue
    		}
    		if !v.Empty && !currDeploymentIDsSet.Contains(v.DeploymentID) {
    			nonLocalPeerWithBuckets = v.Name
    		}
    	}
    	if selfIdx == -1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    func TestSortByEvictionPriority(t *testing.T) {
    	for _, tc := range []struct {
    		name       string
    		thresholds []evictionapi.Threshold
    		expected   []evictionapi.Threshold
    	}{
    		{
    			name:       "empty threshold list",
    			thresholds: []evictionapi.Threshold{},
    			expected:   []evictionapi.Threshold{},
    		},
    		{
    			name: "memory first",
    			thresholds: []evictionapi.Threshold{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	// cleanup of pod cgroups.
    	stringIfTrue := func(t bool) string {
    		if t {
    			return "true"
    		}
    		return ""
    	}
    	runningPods := make(map[types.UID]sets.Empty)
    	possiblyRunningPods := make(map[types.UID]sets.Empty)
    	for uid, sync := range workingPods {
    		switch sync.State {
    		case SyncPod:
    			runningPods[uid] = struct{}{}
    			possiblyRunningPods[uid] = struct{}{}
    		case TerminatingPod:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top