Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for skewY (0.05 sec)

  1. src/runtime/mgclimit.go

    	// Idle time is counted as any time that a P is on the P idle list plus idle mark
    	// time. Idle mark workers soak up time that the application spends idle.
    	//
    	// On a heavily undersubscribed system, any additional idle time can skew GC CPU
    	// utilization, because the GC might be executing continuously and thrashing,
    	// yet the CPU utilization with respect to GOMAXPROCS will be quite low, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/runtime/gc_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.
    	slices.Sort(latencies)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/iimport.go

    			if version > currentVersion {
    				err = fmt.Errorf("cannot import %q (%v), export data is newer version - update tool", path, e)
    			} else {
    				err = fmt.Errorf("cannot import %q (%v), possibly version skew - reinstall package", path, e)
    			}
    		}
    	}()
    
    	r := &intReader{dataReader, path}
    
    	version = int64(r.uint64())
    	switch version {
    	case iexportVersionGo1_18, iexportVersionPosCol, iexportVersionGo1_11:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    	// Initialize the metrics beforehand because this could
    	// allocate and skew the stats.
    	metricsLock()
    	initMetrics()
    
    	systemstack(func() {
    		// Donate the racectx to g0. readMetricsLocked calls into the race detector
    		// via map access.
    		getg().racectx = getg().m.curg.racectx
    
    		// Read the metrics once before in case it allocates and skews the metrics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/gcimporter_test.go

    		_, err = Import(fset, make(map[string]*types.Package), pkgpath, corruptdir, nil)
    		if err == nil {
    			t.Errorf("import corrupted %q succeeded", pkgpath)
    		} else if msg := err.Error(); !strings.Contains(msg, "version skew") {
    			t.Errorf("import %q error incorrect (%s)", pkgpath, msg)
    		}
    	}
    }
    
    func TestImportStdLib(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	podInformerSynced cache.InformerSynced
    	kubeClient        clientset.Interface
    
    	// This timestamp is to be used instead of LastProbeTime stored in Condition. We do this
    	// to avoid the problem with time skew across the cluster.
    	now func() metav1.Time
    
    	enterPartialDisruptionFunc func(nodeNum int) float32
    	enterFullDisruptionFunc    func(nodeNum int) float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/batch/v1/generated.proto

      //
      // 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
      optional string completionMode = 9;
    
      // suspend specifies whether the Job controller should create Pods or not. If
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    		// See https://github.com/kubernetes/kubernetes/pull/38076 for more details
    		if changedToReady && ds.Spec.MinReadySeconds > 0 {
    			// Add a second to avoid milliseconds skew in AddAfter.
    			// See https://github.com/kubernetes/kubernetes/issues/39785#issuecomment-279959133 for more info.
    			dsc.enqueueDaemonSetAfter(ds, (time.Duration(ds.Spec.MinReadySeconds)*time.Second)+time.Second)
    		}
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. src/testing/benchmark.go

    				results += "\t" + r.MemString()
    			}
    			fmt.Fprintln(b.w, results)
    			// Unlike with tests, we ignore the -chatty flag and always print output for
    			// benchmarks since the output generation time will skew the results.
    			if len(b.output) > 0 {
    				b.trimOutput()
    				fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
    			}
    			if p := runtime.GOMAXPROCS(-1); p != procs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
        Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top