Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for content_es (0.1 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. pkg/registry/apps/daemonset/strategy.go

    	// we can at first -- since obj contains spec -- but in the future we will probably make
    	// status its own object, and even if we don't, writes may be the result of a
    	// read-update-write loop, so the contents of spec may not actually be the spec that
    	// the manager has *seen*.
    	//
    	// TODO: Any changes to a part of the object that represents desired state (labels,
    	// annotations etc) should also increment the generation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_Endpoint = map[string]string{
    	"":           "Endpoint represents a single logical \"backend\" implementing a service.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. pkg/registry/apps/replicaset/strategy.go

    	// we can at first -- since obj contains spec -- but in the future we will probably make
    	// status its own object, and even if we don't, writes may be the result of a
    	// read-update-write loop, so the contents of spec may not actually be the spec that
    	// the ReplicaSet has *seen*.
    	if !apiequality.Semantic.DeepEqual(oldRS.Spec, newRS.Spec) {
    		newRS.Generation = oldRS.Generation + 1
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:43 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    		return nil
    	}
    	if err := schema.ValidateBytes(data); err != nil {
    		return fmt.Errorf("error validating data: %v; %s", err, stopValidateMessage)
    	}
    	return nil
    }
    
    // URLVisitor downloads the contents of a URL, and if successful, returns
    // an info object representing the downloaded object.
    type URLVisitor struct {
    	URL *url.URL
    	*StreamVisitor
    	HttpAttemptCount int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/reset.go

    		If your cluster was setup to utilize IPVS, run ipvsadm --clear (or similar)
    		to reset your system's IPVS tables.
    
    		The reset process does not clean your kubeconfig files and you must remove them manually.
    		Please, check the contents of the $HOME/.kube/config file.
    	`)
    
    	cniCleanupInstructions = dedent.Dedent(`
    		The reset process does not clean CNI configuration. To do so, you must remove /etc/cni/net.d
    	`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"seLinuxMount":         "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top