Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for nextch (0.08 sec)

  1. src/crypto/tls/conn.go

    	mac     hash.Hash
    	seq     [8]byte // 64-bit sequence number
    
    	scratchBuf [13]byte // to avoid allocs; interface method args escape
    
    	nextCipher any       // next encryption state
    	nextMac    hash.Hash // next MAC algorithm
    
    	level         QUICEncryptionLevel // current QUIC encryption level
    	trafficSecret []byte              // current TLS 1.3 traffic secret
    }
    
    type permanentError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    	return tp, tp.addr + uintptr(i)*goarch.PtrSize
    }
    
    // next advances the pointers iterator, returning the updated iterator and
    // the address of the next pointer.
    //
    // limit must be the same each time it is passed to next.
    //
    // nosplit because it is used during write barriers and must not be preempted.
    //
    //go:nosplit
    func (tp typePointers) next(limit uintptr) (typePointers, uintptr) {
    	for {
    		if tp.mask != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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