Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 212 for demand (0.14 sec)

  1. src/strings/strings.go

    	// things unpleasant. But it's so rare we barge in assuming it's
    	// fine. It could also shrink but that falls out naturally.
    
    	// The output buffer b is initialized on demand, the first
    	// time a character differs.
    	var b Builder
    
    	for i, c := range s {
    		r := mapping(c)
    		if r == c && c != utf8.RuneError {
    			continue
    		}
    
    		var width int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_executor.go

    	OuterVolumeSpecName string
    
    	// PluginName is the "Unescaped Qualified" name of the volume plugin used to
    	// mount and unmount this volume. It can be used to fetch the volume plugin
    	// to unmount with, on demand. It is also the name that plugins use, though
    	// escaped, in their pod mount path, i.e.
    	// /var/lib/kubelet/pods/{podUID}/volumes/{escapeQualifiedPluginName}/{outerVolumeSpecName}/
    	PluginName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      }
      Log-Output "Creating kubelet service"
      & sc.exe create kubelet binPath= "${env:NODE_DIR}\kube-log-runner.exe -log-file=${env:LOGS_DIR}\kubelet.log ${env:NODE_DIR}\kubelet.exe ${kubelet_args}" start= demand
      & sc.exe failure kubelet reset= 0 actions= restart/10000
      Log-Output "Starting kubelet service"
      & sc.exe start kubelet
    
      Log-Output "Waiting 10 seconds for kubelet to stabilize"
      Start-Sleep 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks.go

    }
    
    type etcdVersionResponse struct {
    	Etcdserver  string `json:"etcdserver"`
    	Etcdcluster string `json:"etcdcluster"`
    }
    
    // ExternalEtcdVersionCheck checks if version of external etcd meets the demand of kubeadm
    type ExternalEtcdVersionCheck struct {
    	Etcd kubeadmapi.Etcd
    }
    
    // Name will return ExternalEtcdVersion as name for ExternalEtcdVersionCheck
    func (ExternalEtcdVersionCheck) Name() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    func (c *ClientHelloInfo) Context() context.Context {
    	return c.ctx
    }
    
    // CertificateRequestInfo contains information from a server's
    // CertificateRequest message, which is used to demand a certificate and proof
    // of control from a client.
    type CertificateRequestInfo struct {
    	// AcceptableCAs contains zero or more, DER-encoded, X.501
    	// Distinguished Names. These are the names of root or intermediate CAs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    	// map of regular username to credentials
    	iamUsersMap map[string]UserIdentity
    	// map of regular username to policy names
    	iamUserPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    	// STS accounts are loaded on demand and not via the periodic IAM reload.
    	// map of STS access key to credentials
    	iamSTSAccountsMap map[string]UserIdentity
    	// map of STS access key to policy names
    	iamSTSPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    			// error. Caller will log and retry. The node status is updated
    			// periodically by kubelet, so it may take as much as 10 seconds
    			// before this clears.
    			// Issue #28141 to enable on demand status updates.
    			eventErr, detailedErr := volumeToMount.GenerateError("Volume has not been added to the list of VolumesInUse in the node's volume status", nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    			// Allocate an L2 arena map.
    			//
    			// Use sysAllocOS instead of sysAlloc or persistentalloc because there's no
    			// statistic we can comfortably account for this space in. With this structure,
    			// we rely on demand paging to avoid large overheads, but tracking which memory
    			// is paged in is too expensive. Trying to account for the whole region means
    			// that it will appear like an enormous memory overhead in statistics, even though
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    		// Note: coverage granularity is currently hard-wired to
    		// 'perblock'; there isn't a way using "go build -cover" or "go
    		// test -cover" to select it. This may change in the future
    		// depending on user demand.
    		Granularity: "perblock",
    		OutConfig:   p.Internal.Cover.Cfg,
    		Local:       p.Internal.Local,
    	}
    	if ba, ok := a.Actor.(*buildActor); ok && ba.covMetaFileName != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	if err := kl.cadvisor.Start(); err != nil {
    		// Fail kubelet and rely on the babysitter to retry starting kubelet.
    		klog.ErrorS(err, "Failed to start cAdvisor")
    		os.Exit(1)
    	}
    
    	// trigger on-demand stats collection once so that we have capacity information for ephemeral storage.
    	// ignore any errors, since if stats collection is not successful, the container manager will fail to start below.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top