Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for skewX (0.06 sec)

  1. security/pkg/pki/util/generate_cert.go

    	}
    
    	return cert, key, nil
    }
    
    // ClockSkewGracePeriod defines the period of time a certificate will be valid before its creation.
    // This is meant to handle cases where we have clock skew between the CA and workloads.
    const ClockSkewGracePeriod = time.Minute * 2
    
    // genCertTemplateFromCSR generates a certificate template with the given CSR.
    // The NotBefore value of the cert is set to current time.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/covdata/metamerge.go

    	val := mm.pod.pmm[key]
    	// FIXME: in theory either A) len(val.Counters) is zero, or B)
    	// the two lengths are equal. Assert if not? Of course, we could
    	// see odd stuff if there is source file skew.
    	if *verbflag > 4 {
    		fmt.Printf("visit pk=%d fid=%d len(counters)=%d\n", data.PkgIdx, data.FuncIdx, len(data.Counters))
    	}
    	if len(val.Counters) < len(data.Counters) {
    		t := val.Counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top