Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 621 for light (0.38 sec)

  1. src/cmd/go/internal/modindex/read.go

    	h := cache.NewHash("moduleIndex")
    	fmt.Fprintf(h, "modroot %s\n", modroot)
    	fmt.Fprintf(h, "package %s %s %v\n", runtime.Version(), indexVersion, pkgdir)
    	entries, err := fsys.ReadDir(pkgdir)
    	if err != nil {
    		// pkgdir might not be a directory. give up on hashing.
    		return cache.ActionID{}, ErrNotIndexed
    	}
    	cutoff := time.Now().Add(-modTimeCutoff)
    	for _, info := range entries {
    		if info.IsDir() {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/text/template/parse/parse.go

    	default:
    		t.unexpected(token, context)
    	}
    	return
    }
    
    // command:
    //
    //	operand (space operand)*
    //
    // space-separated arguments up to a pipeline character or right delimiter.
    // we consume the pipe character but leave the right delim to terminate the action.
    func (t *Tree) command() *CommandNode {
    	cmd := t.newCommand(t.peekNonSpace().pos)
    	for {
    		t.peekNonSpace() // skip leading spaces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/cmd/trace/main.go

    	log.Print("Preparing trace for viewer...")
    	parsed, err := parseTraceInteractive(tracef, traceSize)
    	if err != nil {
    		logAndDie(err)
    	}
    	// N.B. tracef not needed after this point.
    	// We might double-close, but that's fine; we ignore the error.
    	tracef.Close()
    
    	// Print a nice message for a partial trace.
    	if parsed.err != nil {
    		log.Printf("Encountered error, but able to proceed. Error: %v", parsed.err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/os/types_windows.go

    			// regular files: they continue to support random-access reads and writes
    			// of persistent data, and they shouldn't add unexpected latency or
    			// unavailability in the way that a network filesystem might.
    			//
    			// Go programs may use ModeIrregular to filter out unusual files (such as
    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/join_test.go

    			flags: map[string]string{
    				options.CfgPath:                   configFilePath,
    				options.APIServerAdvertiseAddress: "1.2.3.4",
    			},
    			expectError: true,
    		},
    
    		// Pre-flight errors:
    		{
    			name: "pre-flights errors from CLI args only",
    			flags: map[string]string{
    				options.IgnorePreflightErrors: "a,b",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    	apiGroup := metav1.APIGroup{
    		Name:     version.Group,
    		Versions: apiVersionsForDiscovery,
    		// the preferred versions for a group is the first item in
    		// apiVersionsForDiscovery after it put in the right ordered
    		PreferredVersion: apiVersionsForDiscovery[0],
    	}
    	c.groupHandler.setDiscovery(version.Group, discovery.NewAPIGroupHandler(Codecs, apiGroup))
    
    	if !foundVersion {
    		c.versionHandler.unsetDiscovery(version)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/inline/inlheur/scoring.go

    //
    // NOTE: this assumes that inlining operations are happening in a serial,
    // single-threaded fashion,f which is true today but probably won't hold
    // in the future (for example, we might want to score the callsites
    // in multiple functions in parallel); if the inliner evolves in this
    // direction we'll need to come up with a different approach here.
    var callSiteTab CallSiteTab
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/preemption/preemption.go

    func (cl *candidateList) add(c *candidate) {
    	if idx := atomic.AddInt32(&cl.idx, 1); idx < int32(len(cl.items)) {
    		cl.items[idx] = c
    	}
    }
    
    // size returns the number of candidate stored. Note that some add() operations
    // might still be executing when this is called, so care must be taken to
    // ensure that all add() operations complete before accessing the elements of
    // the list.
    func (cl *candidateList) size() int32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. src/runtime/pinner.go

    	if span == nil {
    		// this code is only called for Go pointer, so this must be a
    		// linker-allocated global object.
    		return true
    	}
    	pinnerBits := span.getPinnerBits()
    	// these pinnerBits might get unlinked by a concurrently running sweep, but
    	// that's OK because gcBits don't get cleared until the following GC cycle
    	// (nextMarkBitArenaEpoch)
    	if pinnerBits == nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top