Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for nextch (0.07 sec)

  1. src/cmd/go/internal/modload/init.go

    		cfg.BuildMod = "mod"
    		return
    	case "mod graph", "mod verify", "mod why":
    		// These commands should not update go.mod or go.sum, but they should be
    		// able to fetch modules not in go.sum and should not report errors if
    		// go.mod is inconsistent. They're useful for debugging, and they need
    		// to work in buggy situations.
    		cfg.BuildMod = "mod"
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// If the pod does not reference any claim,
    	// DynamicResources Filter has nothing to do with the Pod.
    	if len(claims) == 0 {
    		return nil, framework.NewStatus(framework.Skip)
    	}
    
    	// Fetch PodSchedulingContext, it's going to be needed when checking claims.
    	if err := s.podSchedulingState.init(ctx, pod, pl.podSchedulingContextLister); err != nil {
    		return nil, statusError(logger, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	// more details.
    	writeCoverMetaAct *work.Action
    
    	// sequencing of json start messages, to preserve test order
    	prev <-chan struct{} // wait to start until prev is closed
    	next chan<- struct{} // close next once the next test can start.
    }
    
    // runCache is the cache for running a single test.
    type runCache struct {
    	disableCache bool // cache should be disabled for this run
    
    	buf *bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top