Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for skewY (0.03 sec)

  1. pkg/apis/batch/types.go

    	//
    	// More completion modes can be added in the future.
    	// If the Job controller observes a mode that it doesn't recognize, which
    	// is possible during upgrades due to version skew, the controller
    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode
    
    	// suspend specifies whether the Job controller should create Pods or not. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. cmd/storage-rest-server.go

    	case context.Canceled, context.DeadlineExceeded:
    		w.WriteHeader(499)
    	default:
    		w.WriteHeader(http.StatusForbidden)
    	}
    	w.Write([]byte(err.Error()))
    }
    
    // DefaultSkewTime - skew time is 15 minutes between minio peers.
    const DefaultSkewTime = 15 * time.Minute
    
    // Authenticates storage client's requests and validates for skewed time.
    func storageServerRequestValidate(r *http.Request) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    	// have a sleep in our b.N loop above which skews this significantly.
    	b.ReportMetric(0, "ns/op")
    	b.ReportMetric(0, "B/op")
    	b.ReportMetric(0, "allocs/op")
    
    	// Sort latencies then report percentiles.
    	sort.Slice(latencies, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/parser.go

    		}
    		p.lastG = p.lastGs[p.lastP]
    		p.lastTs = Timestamp(raw.args[1])
    	case EvFrequency:
    		p.ticksPerSec = int64(raw.args[0])
    		if p.ticksPerSec <= 0 {
    			// The most likely cause for this is tick skew on different CPUs.
    			// For example, solaris/amd64 seems to have wildly different
    			// ticks on different CPUs.
    			return ErrTimeOrder
    		}
    	case EvTimerGoroutine:
    		p.timerGoids[raw.args[0]] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top