Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for hit (0.07 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    	if resizeErr != nil {
    		// This is a workaround for now, until RecoverFromVolumeExpansionFailure feature goes GA.
    		// If RecoverFromVolumeExpansionFailure feature is enabled, we will not ever hit this state, because
    		// we will wait for VolumeExpansionPendingOnNode before trying to expand volume in kubelet.
    		if volumetypes.IsOperationNotSupportedError(resizeErr) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	}
    
    	logKind := madmin.LogKind(strings.ToUpper(r.Form.Get("logType"))).LogMask()
    	if logKind == 0 {
    		logKind = madmin.LogMaskAll
    	}
    
    	// Avoid reusing tcp connection if read timeout is hit
    	// This is needed to make r.Context().Done() work as
    	// expected in case of read timeout
    	w.Header().Set("Connection", "close")
    
    	setEventStreamHeaders(w)
    
    	logCh := make(chan log.Info, 1000)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	//
    	// It is only used by Scan, Next, and NextResultSet which are expected
    	// not to be called concurrently.
    	closemuScanHold bool
    
    	// hitEOF is whether Next hit the end of the rows without
    	// encountering an error. It's set in Next before
    	// returning. It's only used by Next and Err which are
    	// expected not to be called concurrently.
    	hitEOF bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    				}
    			}
    
    			if len(parsedCRL.Extensions[2:]) == 0 && len(tc.template.ExtraExtensions) == 0 {
    				// If we don't have anything to check return early so we don't
    				// hit a [] != nil false positive below.
    				return
    			}
    			if !reflect.DeepEqual(parsedCRL.Extensions[2:], tc.template.ExtraExtensions) {
    				t.Fatalf("Extensions mismatch: got %v; want %v.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	for i := len(dir); i >= len(root); i-- {
    		if i < len(dir) && dir[i] != filepath.Separator {
    			continue
    		}
    		// Note: checking for the vendor directory before checking
    		// for the vendor/path directory helps us hit the
    		// isDir cache more often. It also helps us prepare a more useful
    		// list of places we looked, to report when an import is not found.
    		if !isDir(filepath.Join(dir[:i], "vendor")) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    //
    //go:nosplit
    func readgstatus(gp *g) uint32 {
    	return gp.atomicstatus.Load()
    }
    
    // The Gscanstatuses are acting like locks and this releases them.
    // If it proves to be a performance hit we should be able to make these
    // simple atomic stores but for now we are going to throw if
    // we see an inconsistent state.
    func casfrom_Gscanstatus(gp *g, oldval, newval uint32) {
    	success := false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top