Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 184 for Present (0.62 sec)

  1. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete".
      // Default is OnDelete.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string verbs = 1;
    
      // `apiGroups` is a list of matching API groups and may not be empty.
      // "*" matches all API groups and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string apiGroups = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string verbs = 1;
    
      // `apiGroups` is a list of matching API groups and may not be empty.
      // "*" matches all API groups and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string apiGroups = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/kube/kclient/client.go

    // empty results for all operations and watch for the CRD creation. Once created, watchers will be started and read operations will
    // begin returning results.
    // HasSynced will only return true if the CRD was not present upon creation OR the watch is fully synced. This ensures the creation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string apiVersion = 2;
    }
    
    // UpdateOptions may be provided when updating an API object.
    // All fields in UpdateOptions should also be present in PatchOptions.
    message UpdateOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
      // result in an error response and no further processing of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/maps/maps.go

    	r := make([]K, 0, len(m))
    	for k := range m {
    		r = append(r, k)
    	}
    	return r
    }
    
    // MergeCopy creates a new map by merging all key/value pairs from base and override.
    // When a key in override is already present in base,
    // the value in base will be overwritten by the value associated
    // with the key in override.
    func MergeCopy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](base M1, override M2) M1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 22:48:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/node/v1beta1/generated.proto

      repeated RuntimeClass items = 2;
    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    message Scheduling {
      // nodeSelector lists labels that must be present on nodes that support this
      // RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
      // node matched by this selector. The RuntimeClass nodeSelector is merged
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. cni/pkg/install/kubeconfig_test.go

    	if err != nil {
    		t.Fatalf("expected no error: %+v", err)
    	}
    	err = checkExistingKubeConfigFile(cfg, expectedKC)
    
    	if err == nil {
    		t.Fatalf("expected error, no kubeconfig present")
    	}
    }
    
    func TestCheckMismatchedExistingKubeConfig(t *testing.T) {
    	tmp := t.TempDir()
    	os.WriteFile(filepath.Join(tmp, "token"), []byte(saToken), 0o644)
    	tempDir := t.TempDir()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/options/security.go

    		if !security.CheckWorkloadCertificate(security.GkeWorkloadCertChainFilePath,
    			security.GkeWorkloadKeyFilePath, security.GkeWorkloadRootCertFilePath) {
    			return nil, fmt.Errorf("GKE workload certificate files (%v, %v, %v) not present",
    				security.GkeWorkloadCertChainFilePath, security.GkeWorkloadKeyFilePath, security.GkeWorkloadRootCertFilePath)
    		}
    		if o.ProvCert != "" {
    			return nil, fmt.Errorf(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/util/in_mesh.go

    		return piv
    	}
    
    	// If Pod has annotation, return the injection annotation value
    	if piv, ok := getPodSidecarInjectionStatus(annos); ok {
    		return piv
    	}
    
    	// In case the annotation is not present but there is a auto-injection label on the namespace,
    	// return the auto-injection label status
    	if niv, nivok := getNamesSidecarInjectionStatus(namespace, c); nivok {
    		return niv
    	}
    
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top