Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for content_es (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	// until output is below this limit.
    	MaxPodTerminationMessageLogLength = 1024 * 12
    	// MaxContainerTerminationMessageLength is the upper bound any one container may write to
    	// its termination message path. Contents above this length will be truncated.
    	MaxContainerTerminationMessageLength = 1024 * 4
    	// MaxContainerTerminationMessageLogLength is the maximum bytes any one container will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    		// the kubeconfig file be managed by this process. For backwards compatibility with kubeadm,
    		// which provides a high powered kubeconfig on the master with cert/key data, we must
    		// bootstrap the cert manager with the contents of the initial client config.
    
    		klog.InfoS("Client rotation is on, will bootstrap in background")
    		certConfig, clientConfig, err := bootstrap.LoadClientConfig(s.KubeConfig, s.BootstrapKubeconfig, s.CertDirectory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top