Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 141 for gretty (0.14 sec)

  1. pkg/controller/endpoint/endpoints_controller.go

    	list, err := e.endpointsLister.List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Unable to list endpoints (%v); orphaned endpoints will not be cleaned up. (They're pretty harmless, but you can restart this component if you want another attempt made.)", err))
    		return
    	}
    	for _, ep := range list {
    		if _, ok := ep.Annotations[resourcelock.LeaderElectionRecordAnnotationKey]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. pkg/proxy/servicechangetracker_test.go

    			// outputs
    			newServices := svcTracker.serviceToServiceMap(tc.service)
    
    			if len(newServices) != len(tc.expected) {
    				t.Fatalf("expected %d new, got %d: %v", len(tc.expected), len(newServices), dump.Pretty(newServices))
    			}
    			for svcKey, expectedInfo := range tc.expected {
    				svcInfo, exists := newServices[svcKey].(*BaseServicePortInfo)
    				if !exists {
    					t.Fatalf("[%s] expected to find key %s", tc.desc, svcKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

                                           "dynamic shapes not supported");
      }
    
      // Check if the padding values are equal (otherwise merging is illegal)
      // Because we are using the greedy pattern rewrite driver
      // (applyPatternsAndFoldGreedily), all different constant operators with the
      // same value will be replaced by a single constant operator of that value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/cache.go

    		//
    		// That's especially problematic if the original pseudo-version starts with
    		// v0.0.0-, as was the case for all pseudo-versions during vgo development,
    		// since a v0.0.0- pseudo-version has lower precedence than pretty much any
    		// tagged version.
    		//
    		// In practice, we're only looking up by hash during initial conversion of a
    		// legacy config and during an explicit 'go get', and a little extra latency
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    		// The originalNode is probably stale, but we know that the current state of kubelet would turn
    		// the node to be ready. Retry using syncNodeStatus() which fetches from the apiserver.
    		klog.ErrorS(err, "Error updating node status, will retry with syncNodeStatus")
    
    		// The reversed kl.syncNodeStatusMux.Unlock/Lock() below to allow kl.syncNodeStatus() execution.
    		kl.syncNodeStatusMux.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        private final boolean dependenciesMayChange;
        private boolean doesNotHaveDependencies;
    
        @Nullable
        ExcludeSpec previousTraversalExclusions;
    
        // In opposite to outgoing edges, virtual edges are for now pretty rare, so they are created lazily
        private List<EdgeState> virtualEdges;
        private boolean queued;
        private boolean evicted;
        private int transitiveEdgeCount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  7. hack/lib/golang.sh

    # install' will place binaries that match the host platform directly in $GOBIN
    # while placing cross compiled binaries into `platform_arch` subdirs.  This
    # complicates pretty much everything else we do around packaging and such.
    kube::golang::place_bins() {
      local host_platform
      host_platform=$(kube::golang::host_platform)
    
      V=2 kube::log::status "Placing binaries"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. docs/en/docs/index.md

    * **Fast to code**: Increase the speed to develop features by about 200% to 300%. *
    * **Fewer bugs**: Reduce about 40% of human (developer) induced errors. *
    * **Intuitive**: Great editor support. <abbr title="also known as auto-complete, autocompletion, IntelliSense">Completion</abbr> everywhere. Less time debugging.
    * **Easy**: Designed to be easy to use and learn. Less time reading docs.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat.go

    func rr(m *Modulus) *Nat {
    	rr := NewNat().ExpandFor(m)
    	n := uint(len(rr.limbs))
    	mLen := uint(m.BitLen())
    	logR := _W * n
    
    	// We start by computing R = 2^(_W * n) mod m. We can get pretty close, to
    	// 2^⌊log₂m⌋, by setting the highest bit we can without having to reduce.
    	rr.limbs[n-1] = 1 << ((mLen - 1) % _W)
    	// Then we double until we reach 2^(_W * n).
    	for i := mLen - 1; i < logR; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    ## Dependencies
    
    ### Added
    - github.com/a8m/tree: [10a5fd5](https://github.com/a8m/tree/tree/10a5fd5)
    - github.com/dougm/pretty: [2ee9d74](https://github.com/dougm/pretty/tree/2ee9d74)
    - github.com/rasky/go-xdr: [4930550](https://github.com/rasky/go-xdr/tree/4930550)
    - github.com/vmware/vmw-guestinfo: [25eff15](https://github.com/vmware/vmw-guestinfo/tree/25eff15)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top