Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for scope_name (0.25 sec)

  1. istioctl/pkg/admin/istiodconfig.go

    }
    
    type getAllLogLevelsState struct {
    	client       *ControlzClient
    	outputFormat string
    }
    
    func (ga *getAllLogLevelsState) run(out io.Writer) error {
    	type scopeLogLevel struct {
    		ScopeName   string `json:"scope_name"`
    		LogLevel    string `json:"log_level"`
    		Description string `json:"description"`
    	}
    	allScopes, err := ga.client.GetScopes()
    	sort.Slice(allScopes, func(i, j int) bool {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

        mutex_lock graph_lock(g->mu);
    
        const int first_new_node_id = g->graph.num_node_ids();
    
        string prefix_cmp;
        const char* child_scope_name;
        if (prefix == nullptr) {
          child_scope_name = "gradients";
        } else {
          prefix_cmp = string(prefix) + "/";
          // The operation should fail if the provided name prefix has already been
          // used in this graph
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/resourcequota.yaml

    metadata:
      name: istio-cni-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Aug 18 18:15:44 GMT 2021
    - 374 bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // that relates the scope name and values.
    message ScopedResourceSelectorRequirement {
      // The name of the scope that the selector applies to.
      optional string scopeName = 1;
    
      // Represents a scope's relationship to a set of values.
      // Valid operators are In, NotIn, Exists, DoesNotExist.
      optional string operator = 2;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.cni.resourceQuotas.enabled }} apiVersion: v1 kind: ResourceQuota metadata: name: istio-cni-resource-quota namespace: {{ .Release.Namespace }} spec: hard: pods: {{ .Values.cni.resourceQuotas.pods | quote }} scopeSelector: matchExpressions: - operator: In scopeName: PriorityClass values: - system-node-critical {{- end }} manifests/charts/istio-cni/templates/network-attachment-definition.yaml {{- if eq .Values.cni.provider "multus" }} apiVersion: k8s.cni.cncf.io/v1 kind: NetworkAttachmentDef metadata: name:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top