Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 617 for light (0.18 sec)

  1. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	var errs []error
    
    	// Upload currently used configuration to the cluster
    	// Note: This is done right in the beginning of cluster initialization; as we might want to make other phases
    	// depend on centralized information from this source in the future
    	if err := uploadconfig.UploadConfiguration(cfg, client); err != nil {
    		errs = append(errs, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set.go

    	// When a delete is dropped, the relist will notice a pod in the store not
    	// in the list, leading to the insertion of a tombstone object which contains
    	// the deleted key/value. Note that this value might be stale.
    	if !ok {
    		tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
    		if !ok {
    			utilruntime.HandleError(fmt.Errorf("couldn't get object from tombstone %+v", obj))
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// Extra arguments will override existing default arguments. Duplicate extra arguments are allowed.
    	// +optional
    	KubeletExtraArgs []Arg `json:"kubeletExtraArgs,omitempty"`
    
    	// IgnorePreflightErrors provides a slice of pre-flight errors to be ignored when the current node is registered, e.g. 'IsPrivilegedUser,Swap'.
    	// Value 'all' ignores errors from all checks.
    	// +optional
    	IgnorePreflightErrors []string `json:"ignorePreflightErrors,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    	// roots that lead to those paths. When no conflicts remain, we're done.
    	//
    	// Since we want to report accurate paths to each conflict, we don't drop out
    	// older-than-selected roots until the process completes. That might mean that
    	// we do some extra downgrades when they could be skipped, but for the benefit
    	// of being able to explain the reason for every downgrade that seems
    	// worthwhile.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/signature.go

    	rparams  *TypeParamList // receiver type parameters from left to right, or nil
    	tparams  *TypeParamList // type parameters from left to right, or nil
    	scope    *Scope         // function scope for package-local and non-instantiated signatures; nil otherwise
    	recv     *Var           // nil if not a method
    	params   *Tuple         // (incoming) parameters from left to right; or nil
    	results  *Tuple         // (outgoing) results from left to right; or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/staticdata/data.go

    	return lsym
    }
    
    func dstringdata(s *obj.LSym, off int, t string, pos src.XPos, what string) int {
    	// Objects that are too large will cause the data section to overflow right away,
    	// causing a cryptic error message by the linker. Check for oversize objects here
    	// and provide a useful error message instead.
    	if int64(len(t)) > 2e9 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    	// We didn't find a matching instance. Create a dummy one because we need the right
    	// params to generate the right cluster name i.e. inbound|portNumber|portName|SidecarScopeID - which is uniformly generated by LDS/CDS.
    	return &model.Service{
    		Hostname: host.Name(sidecar + "." + sidecarns),
    		Attributes: model.ServiceAttributes{
    			Name: sidecar,
    			// This will ensure that the right AuthN policies are selected
    			Namespace: sidecarns,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. src/net/http/httputil/persist.go

    	if cc.c == nil { // connection closed by user in the meantime
    		defer cc.mu.Unlock()
    		return errClosed
    	}
    	c := cc.c
    	if req.Close {
    		// We write the EOF to the write-side error, because there
    		// still might be some pipelined reads
    		cc.we = ErrPersistEOF
    	}
    	cc.mu.Unlock()
    
    	err = cc.writeReq(req, c)
    	cc.mu.Lock()
    	defer cc.mu.Unlock()
    	if err != nil {
    		cc.we = err
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/registry/core/service/strategy.go

    	// longer applies; b) might have initialized it automatically; c) know the
    	// user did not ALSO try to change it (in which case it should fail in
    	// validation).
    
    	// If the user is switching to a type that does not need a value in
    	// clusterIP/clusterIPs (even "None" counts as a value), we might be able
    	// to wipe some fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	if err == nil {
    		t.Errorf("Expected error rejecting creates in a namespace right after deleting it")
    	}
    	if getCalls != 1 {
    		t.Errorf("Expected a live lookup of the namespace at t=0, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// Ensure the live lookup is still forced up to forceLiveLookupTTL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top