Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 322 for user4 (0.08 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	return map_ManagedFieldsEntry
    }
    
    var map_ObjectMeta = map[string]string{
    	"":                           "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission_test.go

    	}
    
    	return pvc
    }
    
    func createPodAttributes(pod *api.Pod, user user.Info) admission.Attributes {
    	podResource := api.Resource("pods").WithVersion("v1")
    	podKind := api.Kind("Pod").WithVersion("v1")
    	return admission.NewAttributesRecord(pod, nil, podKind, pod.Namespace, pod.Name, podResource, "", admission.Create, &metav1.CreateOptions{}, false, user)
    }
    
    func TestAdmitResourceSlice(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

      /**
       * Returns a new hash set using the smallest initial table size that can hold {@code expectedSize}
       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
       * <p>This behavior can't be broadly guaranteed, but has been tested with OpenJDK 1.7 and 1.8.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. src/syscall/zerrors_solaris_amd64.go

    	12: "bad System Call",
    	13: "broken Pipe",
    	14: "alarm Clock",
    	15: "terminated",
    	16: "user Signal 1",
    	17: "user Signal 2",
    	18: "child Status Changed",
    	19: "power-Fail/Restart",
    	20: "window Size Change",
    	21: "urgent Socket Condition",
    	22: "pollable Event",
    	23: "stopped (signal)",
    	24: "stopped (user)",
    	25: "continued",
    	26: "stopped (tty input)",
    	27: "stopped (tty output)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    func (cm *connectMethod) proxyAuth() string {
    	if cm.proxyURL == nil {
    		return ""
    	}
    	if u := cm.proxyURL.User; u != nil {
    		username := u.Username()
    		password, _ := u.Password()
    		return "Basic " + basicAuth(username, password)
    	}
    	return ""
    }
    
    // error values for debugging and testing, not seen by users.
    var (
    	errKeepAlivesDisabled = errors.New("http: putIdleConn: keep alives disabled")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    	if errCode != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(errCode), r.URL)
    		return
    	}
    
    	if len(fanOutEntries) > 0 {
    		// Once signature is validated, check if the user has
    		// explicit permissions for the user.
    		if !globalIAMSys.IsAllowed(policy.Args{
    			AccountName:     cred.AccessKey,
    			Groups:          cred.Groups,
    			Action:          policy.PutObjectFanOutAction,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeToken.java

       * @Nullable X>, then users might pass a TypeParameter<Y>, where Y is a subtype of X, while still
       * passing a TypeToken<X>. This would be invalid. Maybe we could accept a TypeParameter<@PolyNull
       * X> if we support such a thing? It would be weird or misleading for users to be able to pass
       * `new TypeParameter<@Nullable T>() {}` and have it act as a plain `TypeParameter<T>`, but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

        return
      }
    
      # TODO(mtaufen): is user "kubelet" correct? Other examples use e.g.
      # "system:node:$(hostname)".
    
      $apiserverAddress = ${kube_env}['KUBERNETES_MASTER_NAME']
      New-Item -Force -ItemType file ${env:BOOTSTRAP_KUBECONFIG} | Out-Null
      Set-Content ${env:BOOTSTRAP_KUBECONFIG} `
    'apiVersion: v1
    kind: Config
    users:
    - name: kubelet
      user:
        client-certificate: KUBELET_CERT_PATH
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	StatusReasonUnknown StatusReason = ""
    
    	// StatusReasonUnauthorized means the server can be reached and understood the request, but requires
    	// the user to present appropriate authorization credentials (identified by the WWW-Authenticate header)
    	// in order for the action to be completed. If the user has specified credentials on the request, the
    	// server considers them insufficient.
    	// Status code 401
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. pkg/controller/daemon/daemon_controller.go

    	if err != nil {
    		return nil
    	}
    	if len(sets) > 1 {
    		// ControllerRef will ensure we don't do anything crazy, but more than one
    		// item in this list nevertheless constitutes user error.
    		utilruntime.HandleError(fmt.Errorf("user error! more than one daemon is selecting pods with labels: %+v", pod.Labels))
    	}
    	return sets
    }
    
    // getDaemonSetsForHistory returns a list of DaemonSets that potentially
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top