Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for hamster (0.2 sec)

  1. cmd/kubelet/app/server.go

    		// the kubeconfig file be managed by this process. For backwards compatibility with kubeadm,
    		// which provides a high powered kubeconfig on the master with cert/key data, we must
    		// bootstrap the cert manager with the contents of the initial client config.
    
    		klog.InfoS("Client rotation is on, will bootstrap in background")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    									// If request is sent before service is processed it will hit 10s timeout, so fail faster
    									Timeout: time.Millisecond * 500,
    								})
    							})
    					})
    				}
    			}
    		})
    }
    
    func TestServiceEntrySelectsWorkloadEntry(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	case "amd64", "arm64":
    		return true
    	case "ppc64le", "ppc64":
    		return sz < 512
    	}
    	return false
    }
    
    // isInlinableMemmove reports whether the given arch performs a Move of the given size
    // faster than memmove. It will only return true if replacing the memmove with a Move is
    // safe, either because Move will do all of its loads before any of its stores, or
    // because the arguments are known to be disjoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Watchers stopped after startDispatching will be delayed to finishDispatching,
    
    	// Since add() can block, we explicitly add when cacher is unlocked.
    	// Dispatching event in nonblocking way first, which make faster watchers
    	// not be blocked by slower ones.
    	if event.Type == watch.Bookmark {
    		for _, watcher := range c.watchersBuffer {
    			watcher.nonblockingAdd(event)
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    		}
    		if dataDir != "" {
    			versionID := fi.VersionID
    			if versionID == "" {
    				versionID = nullVersionID
    			}
    
    			// PR #11758 used DataDir, preserve it
    			// for users who might have used master
    			// branch
    			xlMeta.data.remove(versionID, dataDir)
    
    			// We need to attempt delete "dataDir" on the disk
    			// due to a CopyObject() bug where it might have
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top