Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 706 for light (0.72 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	if err != nil {
    		// TODO: return the error once CSINode is created by default
    		logger.V(4).Info("Could not get a CSINode object for the node", "node", klog.KObj(node), "err", err)
    	}
    
    	// Check for any conditions that might require scheduling retry
    
    	// When pod is deleted, binding operation should be cancelled. There is no
    	// need to check PV/PVC bindings any more.
    	_, err = b.podLister.Pods(pod.Namespace).Get(pod.Name)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/plist.go

    	return pcdata
    }
    
    // EndUnsafePoint generates PCDATA Progs after p to mark the end of an
    // unsafe point, restoring the register map index to oldval.
    // The unsafe point ends right after p.
    // It returns the last Prog generated.
    func (ctxt *Link) EndUnsafePoint(p *Prog, newprog ProgAlloc, oldval int64) *Prog {
    	pcdata := Appendp(p, newprog)
    	pcdata.As = APCDATA
    	pcdata.From.Type = TYPE_CONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/internal/coverage/defs.go

    // 14: func Medium(q, r int) int {
    // 15:   s1 := small(q, r)
    // 16:   z += s1
    // 17:   s2 := small(r, q)
    // 18:   w -= s2
    // 19:   return w + z
    // 20: }
    //
    // The meta-data blob for the single package above might look like the
    // following:
    //
    // -- MetaSymbolHeader header----------
    //  | size: size of this blob in bytes
    //  | packagepath: <path to p>
    //  | modulepath: <modpath for p>
    //  | nfiles: 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	Start    int    `json:"start"`
    	End      int    `json:"end"`
    	New      string `json:"new"`
    }
    
    // A JSONSuggestedFix describes an edit that should be applied as a whole or not
    // at all. It might contain multiple TextEdits/text_edits if the SuggestedFix
    // consists of multiple non-contiguous edits.
    type JSONSuggestedFix struct {
    	Message string         `json:"message"`
    	Edits   []JSONTextEdit `json:"edits"`
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519.go

    	SeedSize = 32
    )
    
    // PublicKey is the type of Ed25519 public keys.
    type PublicKey []byte
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. cmd/bucket-object-lock.go

    	if !retentionCfg.LockEnabled {
    		if legalHoldRequested || retentionRequested {
    			return mode, retainDate, legalHold, ErrInvalidBucketObjectLockConfiguration
    		}
    
    		// If this not a WORM enabled bucket, we should return right here.
    		return mode, retainDate, legalHold, ErrNone
    	}
    
    	opts, err := getOpts(ctx, rq, bucket, object)
    	if err != nil {
    		return mode, retainDate, legalHold, toAPIErrorCode(ctx, err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/text/template/parse/lex_test.go

    	// minimized JavaScript. Should have fixed it before Go 1.1.
    	{"unmatched right delimiter", "hello-{.}}-world", []item{
    		mkItem(itemText, "hello-{.}}-world"),
    		tEOF,
    	}},
    }
    
    // collect gathers the emitted items into a slice.
    func collect(t *lexTest, left, right string) (items []item) {
    	l := lex(t.name, t.input, left, right)
    	l.options = lexOptions{
    		emitComment: true,
    		breakOK:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  8. src/runtime/mgcstack.go

    	if n == 0 {
    		return nil, x, idx
    	}
    	var left, right *stackObject
    	left, x, idx = binarySearchTree(x, idx, n/2)
    	root = &x.obj[idx]
    	idx++
    	if idx == len(x.obj) {
    		x = x.next
    		idx = 0
    	}
    	right, x, idx = binarySearchTree(x, idx, n-n/2-1)
    	root.left = left
    	root.right = right
    	return root, x, idx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/resource/v1alpha2/types.go

    // when it gets created (AllocationModeImmediate) or whether allocation is
    // delayed until it is needed for a Pod
    // (AllocationModeWaitForFirstConsumer). Other modes might get added in the
    // future.
    type AllocationMode string
    
    const (
    	// When a ResourceClaim has AllocationModeWaitForFirstConsumer, allocation is
    	// delayed until a Pod gets scheduled that needs the ResourceClaim. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcweb/vcweb.go

    //
    // If the script completed successfully, HandleScript invokes f on the handler
    // with the script's result still read-locked, and waits for it to return. (That
    // ensures that cache invalidation does not race with an in-flight handler.)
    //
    // Otherwise, HandleScript returns the (cached) error from executing the script.
    func (s *Server) HandleScript(scriptRelPath string, logger *log.Logger, f func(http.Handler)) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top