Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Othman (0.17 sec)

  1. common-protos/k8s.io/api/discovery/v1/generated.proto

      // according to the corresponding EndpointSlice addressType field. Consumers
      // must handle different types of addresses in the context of their own
      // capabilities. This must contain at least one address but no more than
      // 100. These are all assumed to be fungible and clients may choose to only
      // use the first element. Refer to: https://issue.k8s.io/106267
      // +listType=set
      repeated string addresses = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string type = 1;
    
      // value contains the amount of change which is permitted by the policy.
      // It must be greater than zero
      optional int32 value = 2;
    
      // periodSeconds specifies the window of time for which the policy should hold true.
      // PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).
      optional int32 periodSeconds = 3;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // <decimalExponent> ::= "e" <signedNumber> | "E" <signedNumber>
    // ```
    //
    // No matter which of the three exponent forms is used, no quantity may represent
    // a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal
    // places. Numbers larger or more precise will be capped or rounded up.
    // (E.g.: 0.1m will rounded up to 1m.)
    // This may be extended in the future if we require larger or smaller quantities.
    //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. cni/pkg/pluginlistener/listener.go

    	"istio.io/istio/pkg/log"
    )
    
    func NewListener(path string) (net.Listener, error) {
    	// Remove unix socket before use.
    	if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
    		// Anything other than "file not found" is an error.
    		return nil, fmt.Errorf("failed to remove unix://%s: %v", path, err)
    	}
    
    	// Attempt to create the folder in case it doesn't exist
    	if err := os.MkdirAll(filepath.Dir(path), 0o750); err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/scheduling/v1alpha1/generated.proto

      // globalDefault specifies whether this PriorityClass should be considered as
      // the default priority for pods that do not have any priority class.
      // Only one PriorityClass can be marked as `globalDefault`. However, if more than
      // one PriorityClasses exists with their `globalDefault` field set to true,
      // the smallest value of such global default PriorityClasses will be used as the default priority.
      // +optional
      optional bool globalDefault = 3;
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed.
      // And when the number of eligible domains with matching topology keys equals or greater than minDomains,
      // this value has no effect on scheduling.
      // As a result, when the number of eligible domains is less than minDomains,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          {{- end }}
    {{- end }}
    
    {{/* We take the mesh config above, defined with individual values.yaml, and merge with .Values.meshConfig */}}
    {{/* The intent here is that meshConfig.foo becomes the API, rather than re-inventing the API in values.yaml */}}
    {{- $originalMesh := include "mesh" . | fromYaml }}
    {{- $mesh := mergeOverwrite $originalMesh .Values.meshConfig }}
    
    {{- if .Values.pilot.configMap }}
    apiVersion: v1
    kind: ConfigMap
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 16:59:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  8. istioctl/pkg/dashboard/dashboard.go

    				}
    
    				if len(pl.Items) < 1 {
    					return errors.New("no pods found")
    				}
    
    				if len(pl.Items) > 1 {
    					log.Warnf("more than 1 pods fits selector: %s; will use pod: %s", labelSelector, pl.Items[0].Name)
    				}
    
    				// only use the first pod in the list
    				podName = pl.Items[0].Name
    				ns = pl.Items[0].Namespace
    			} else {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // The grace period is the duration in seconds after the processes running in the carp are sent
      // a termination signal and the time when the processes are forcibly halted with a kill signal.
      // Set this value longer than the expected cleanup time for your process.
      // Defaults to 30 seconds.
      // +optional
      optional int64 terminationGracePeriodSeconds = 4;
    
      // Optional duration in seconds the carp may be active on the node relative to
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/ztunnelserver.go

    	}
    	// remove potentially existing address
    	// Remove unix socket before use, if one is leftover from previous CNI restart
    	if err := os.Remove(addr); err != nil && !os.IsNotExist(err) {
    		// Anything other than "file not found" is an error.
    		return nil, fmt.Errorf("failed to remove unix://%s: %w", addr, err)
    	}
    
    	l, err := net.ListenUnix("unixpacket", resolvedAddr)
    	if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
Back to top