Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for skewX (0.06 sec)

  1. cmd/globals.go

    	maxFormFieldSize = int64(1 * humanize.MiByte)
    
    	// The maximum allowed time difference between the incoming request
    	// date and server date during signature verification.
    	globalMaxSkewTime = 15 * time.Minute // 15 minutes skew allowed.
    
    	// GlobalStaleUploadsExpiry - Expiry duration after which the uploads in multipart,
    	// tmp directory are deemed stale.
    	GlobalStaleUploadsExpiry = time.Hour * 24 // 24 hrs.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/loader.cc

    // `tensorflow::LoadSavedModel` API label.
    constexpr char kCCLoadLabel[] = "cc_load";
    
    uint64 GetLatencyMicroseconds(const uint64 start_microseconds) {
      const uint64 end_microseconds = EnvTime::NowMicros();
      // Avoid clock skew.
      if (end_microseconds < start_microseconds) return 0;
      return end_microseconds - start_microseconds;
    }
    
    // Ensure that constant tensors loaded from the saved model have valid shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    			logger.V(2).Info("pod will be enqueued after a while for availability check", "duration", rs.Spec.MinReadySeconds, "kind", rsc.Kind, "pod", klog.KObj(oldPod))
    			// Add a second to avoid milliseconds skew in AddAfter.
    			// See https://github.com/kubernetes/kubernetes/issues/39785#issuecomment-279959133 for more info.
    			rsc.enqueueRSAfter(rs, (time.Duration(rs.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
    - 33.2K bytes
    - Viewed (0)
  4. pkg/features/kube_features.go

    	// owner: @richabanker
    	// alpha: v1.28
    	//
    	// Proxies client to an apiserver capable of serving the request in the event of version skew.
    	UnknownVersionInteroperabilityProxy featuregate.Feature = "UnknownVersionInteroperabilityProxy"
    
    	// owner: @rata, @giuseppe
    	// kep: https://kep.k8s.io/127
    	// alpha: v1.25
    	// beta: v1.30
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    				updatedNode.Status.Conditions[i].LastHeartbeatTime = metav1.Time{}
    				updatedNode.Status.Conditions[i].LastTransitionTime = metav1.Time{}
    			}
    
    			// Version skew workaround. See: https://github.com/kubernetes/kubernetes/issues/16961
    			assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[len(updatedNode.Status.Conditions)-1].Type,
    				"NotReady should be last")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top