Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for content_es (0.2 sec)

  1. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// remounted to reflect changes in the referencing pod. Atomically updating
    	// volumes, depend on this to update the contents of the volume.
    	// All volume mounting calls should be idempotent so a second mount call for
    	// volumes that do not need to update contents should not fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	getAttrsFunc func(runtime.Object) (labels.Set, fields.Set, error)
    
    	// cache is used a cyclic buffer - the "current" contents of it are
    	// stored in [start_index%capacity, end_index%capacity) - so the
    	// "current" contents have exactly end_index-start_index items.
    	cache      []*watchCacheEvent
    	startIndex int
    	endIndex   int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/staticpod/utils.go

    				port = p
    			}
    		}
    		return hostname, int32(port), scheme
    	}
    	return localhost, kubeadmconstants.EtcdMetricsPort, v1.URISchemeHTTP
    }
    
    // ManifestFilesAreEqual compares 2 files. It returns true if their contents are equal, false otherwise
    func ManifestFilesAreEqual(path1, path2 string) (bool, string, error) {
    	pod1, err := ReadStaticPodFromDisk(path1)
    	if err != nil {
    		return false, "", err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_test.go

    	}
    	defer utiltesting.CloseAndRemove(t, f)
    	if _, err := f.Write([]byte(externalEtcdRootCAFileContent)); err != nil {
    		t.Errorf("failed configRootCAs:\n\texpected: succeed writing contents to temp CA file %s\n\tactual:%v", f.Name(), err)
    	}
    
    	c := ExternalEtcdVersionCheck{Etcd: kubeadmapi.Etcd{External: &kubeadmapi.ExternalEtcd{CAFile: f.Name()}}}
    
    	config, err := c.configRootCAs(nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/config.go

    			Any unmarshaling problems such as unknown API fields will trigger errors. Unknown API versions and
    			fields with invalid values will also trigger errors. Any other errors or warnings may be reported
    			depending on contents of the input file.
    
    			In this version of kubeadm, the following API versions are supported:
    			- %s
    		`), kubeadmapiv1old.SchemeGroupVersion),
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // 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
    - 280.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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