Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for content_es (0.13 sec)

  1. cmd/kubeadm/app/preflight/checks.go

    }
    
    // Check validates if the given file contains the given content.
    func (fcc FileContentCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infof("validating the contents of file %s", fcc.Path)
    	f, err := os.Open(fcc.Path)
    	if err != nil {
    		return nil, []error{errors.Errorf("%s does not exist", fcc.Path)}
    	}
    
    	lr := io.LimitReader(f, int64(len(fcc.Content)))
    	defer f.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/volume_manager.go

    	// Some pods expect to have Setup called over and over again to update.
    	// Remount plugins for which this is true. (Atomically updating volumes,
    	// like Downward API, depend on this to update the contents of the volume).
    	vm.desiredStateOfWorldPopulator.ReprocessPod(uniquePodName)
    
    	err := wait.PollUntilContextTimeout(
    		ctx,
    		podAttachAndMountRetryInterval,
    		podAttachAndMountTimeout,
    		true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // Required.
      optional string name = 1;
    
      // Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
      // CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:
      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    type Validation struct {
    	// Expression represents the expression which will be evaluated by CEL.
    	// ref: https://github.com/google/cel-spec
    	// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
    	//
    	// - 'object' - The object from the incoming request. The value is null for DELETE requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    // will *not* be used as the last pod state unless no previous pod state exists (because
    // the pod worker may be responsible for terminating a pod from a previous run of the
    // kubelet where no config state is visible). The contents of activeUpdate are used as the
    // source of truth for components downstream of the pod workers.
    func (s *podSyncStatus) mergeLastUpdate(other UpdatePodOptions) {
    	opts := s.activeUpdate
    	if opts == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// If the provisioner or an external controller can support the specified data source,
    	// it will create a new volume based on the contents of the specified data source.
    	// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,
    	// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      }
    
      Log-Output ("Node: $(hostname) successfully joined cluster `n NODES: `n $($nodes_list)")
      Verify_GceMetadataServerRouteIsPresent
    
    }
    
    # Downloads the Windows crictl package and installs its contents (e.g.
    # crictl.exe) in $env:NODE_DIR.
    function DownloadAndInstall-Crictl {
      if (-not (ShouldWrite-File ${env:NODE_DIR}\crictl.exe)) {
        return
      }
      $CRI_TOOLS_GCS_BUCKET = 'k8s-artifacts-cri-tools'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/types.go

    	// volume. This field defaults to false.
    	//
    	// Note: After a successful initial NodePublishVolume call, subsequent calls
    	// to NodePublishVolume should only update the contents of the volume. New
    	// mount points will not be seen by a running container.
    	//
    	// +optional
    	RequiresRepublish *bool `json:"requiresRepublish,omitempty" protobuf:"varint,7,opt,name=requiresRepublish"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    	// const.
    	CanSupport(spec *Spec) bool
    
    	// RequiresRemount returns true if this plugin requires mount calls to be
    	// reexecuted. Atomically updating volumes, like Downward API, depend on
    	// this to update the contents of the volume.
    	RequiresRemount(spec *Spec) bool
    
    	// NewMounter creates a new volume.Mounter from an API specification.
    	// Ownership of the spec pointer in *not* transferred.
    	// - spec: The v1.Volume spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top