Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for shame (0.04 sec)

  1. cmd/object-handlers.go

    var getRemoteInstanceClient = func(r *http.Request, host string) (*miniogo.Core, error) {
    	cred := getReqAccessCred(r, globalSite.Region())
    	// In a federated deployment, all the instances share config files
    	// and hence expected to have same credentials.
    	core, err := miniogo.NewCore(host, &miniogo.Options{
    		Creds:     credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, ""),
    		Secure:    globalIsTLS,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    // a given user or group. getsubids produces a line for each mapping configured.
    // Here we expect that there is a single mapping, and the same values are used for the subordinate user and group ID ranges.
    // The output is something like:
    // $ getsubids kubelet
    // 0: kubelet 65536 2147483648
    // $ getsubids -g kubelet
    // 0: kubelet 65536 2147483648
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    						return
    					}
    					// Validation ensures that the request does not query services and files at the same time
    					if len(nlq.Services) > 0 {
    						journal.ServeHTTP(w, req)
    						return
    					}
    					// Validation ensures that the request does not explicitly query multiple files at the same time
    					if len(nlq.Files) == 1 {
    						// Account for the \ being used on Windows clients
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		verifyContainerStatuses(t, apiStatus.ContainerStatuses, test.expectedState, test.expectedLastTerminationState, fmt.Sprintf("case %d", i))
    	}
    
    	// Everything should be the same for init containers
    	for i, test := range tests {
    		kubelet.reasonCache = NewReasonCache()
    		for n, e := range test.reasons {
    			kubelet.reasonCache.add(pod.UID, n, e, "")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top