Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for skewY (0.21 sec)

  1. pkg/controlplane/apiserver/config.go

    	// PeerAdvertiseAddress is the IP for this kube-apiserver which is used by peer apiservers to route a request
    	// to this apiserver. This happens in cases where the peer is not able to serve the request due to
    	// version skew. If unset, AdvertiseAddress/BindAddress will be used.
    	PeerAdvertiseAddress peerreconcilers.PeerAdvertiseAddress
    
    	ServiceAccountIssuer        serviceaccount.TokenGenerator
    	ServiceAccountMaxExpiration time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.go

    		// If all tests pump to the same channel, a bug can occur where a test
    		// kicks off a goroutine that Fails, yet the test still delivers a completion signal,
    		// which skews the counting.
    		var collector = make(chan any)
    
    		numParallel := 0
    		startParallel := make(chan bool)
    
    		for i := 0; i < len(tests); i++ {
    			matched, err := matchString(*match, tests[i].Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. pkg/registry/core/pod/strategy.go

    		Message: "Scheduling is blocked due to non-empty scheduling gates",
    	})
    }
    
    // applyAppArmorVersionSkew implements the version skew behavior described in:
    // https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/24-apparmor#version-skew-strategy
    func applyAppArmorVersionSkew(ctx context.Context, pod *api.Pod) {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.AppArmorFields) {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top