Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for uids (0.04 sec)

  1. common-protos/k8s.io/api/policy/v1beta1/generated.proto

    message RunAsUserStrategyOptions {
      // rule is the strategy that will dictate the allowable RunAsUser values that may be set.
      optional string rule = 1;
    
      // ranges are the allowed ranges of uids that may be used. If you would like to force a single uid
      // then supply a single range with the same start and end. Required for MustRunAs.
      // +optional
      repeated IDRange ranges = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/cache_based_manager_test.go

    }
    
    func podWithSecretsAndUID(ns, podName, podUID string, toAttach secretsToAttach) *v1.Pod {
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: ns,
    			Name:      podName,
    			UID:       types.UID(podUID),
    		},
    		Spec: v1.PodSpec{},
    	}
    	for _, name := range toAttach.imagePullSecretNames {
    		pod.Spec.ImagePullSecrets = append(
    			pod.Spec.ImagePullSecrets, v1.LocalObjectReference{Name: name})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/scheduler/eventhandlers_test.go

    			if tt.oldObj.(*v1.Pod).UID != tt.newObj.(*v1.Pod).UID {
    				if pod, err := sched.Cache.GetPod(tt.oldObj.(*v1.Pod)); err == nil {
    					t.Errorf("Get pod UID %v from cache but it should not happen", pod.UID)
    				}
    			}
    			pod, err := sched.Cache.GetPod(tt.newObj.(*v1.Pod))
    			if err != nil {
    				t.Errorf("Failed to get pod from scheduler: %v", err)
    			}
    			if pod.UID != tt.newObj.(*v1.Pod).UID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation.go

    func validateResourceClaimConsumers(consumers []resource.ResourceClaimConsumerReference, maxSize int, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	allUIDs := sets.New[types.UID]()
    	for i, consumer := range consumers {
    		idxPath := fldPath.Index(i)
    		if allUIDs.Has(consumer.UID) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    		runAsUser, ok := securitycontext.DetermineEffectiveRunAsUser(pod, container)
    		// One container doesn't specify user or there are more than one
    		// non-root UIDs.
    		if !ok || (fsUser != nil && *fsUser != *runAsUser) {
    			fsUser = nil
    			return false
    		}
    		if fsUser == nil {
    			fsUser = runAsUser
    		}
    		return true
    	})
    	return fsUser
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    					if err != nil && !apierrors.IsNotFound(err) {
    						return err
    					}
    					if pod == nil || pod.UID != reservedFor.UID {
    						logger.V(6).Info("remove reservation because pod is gone or got replaced", "pod", klog.KObj(pod), "claim", klog.KRef(namespace, name))
    						keepEntry = false
    					}
    				case pod.UID != reservedFor.UID:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

            public int retval;
            public rpc.policy_handle alias_handle;
            public lsarpc.LsarSidArray sids;
    
            public SamrGetMembersInAlias(rpc.policy_handle alias_handle, lsarpc.LsarSidArray sids) {
                this.alias_handle = alias_handle;
                this.sids = sids;
            }
    
            public void encode_in(NdrBuffer _dst) throws NdrException {
                alias_handle.encode(_dst);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 14K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/samr.java

            }
    
            public int retval;
            public rpc.policy_handle alias_handle;
            public lsarpc.LsarSidArray sids;
    
    
            public SamrGetMembersInAlias ( rpc.policy_handle alias_handle, lsarpc.LsarSidArray sids ) {
                this.alias_handle = alias_handle;
                this.sids = sids;
            }
    
    
            @Override
            public void encode_in ( NdrBuffer _dst ) throws NdrException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 15.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SIDCacheImpl.java

                        SID[] sids = new SID[rpc.sids.num_sids];
    
                        String origin_server = handle.getServer();
                        CIFSContext origin_ctx = handle.getTransportContext();
    
                        for ( int i = 0; i < sids.length; i++ ) {
                            sids[ i ] = new SID(rpc.sids.sids[ i ].sid, 0, null, null, false);
                            sids[ i ].origin_server = origin_server;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SID.java

                    sids[offset + si].acctName = sid.acctName;
                } else {
                    list.add(sids[offset + si]);
                }
            }
    
            if (list.size() > 0) {
                sids = (SID[])list.toArray(new SID[0]);
                SID.resolveSids0(authorityServerName, auth, sids);
                for (si = 0; si < sids.length; si++) {
                    sid_cache.put(sids[si], sids[si]);
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
Back to top