Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 257 for uids (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"uid": {
    						SchemaProps: spec.SchemaProps{
    							Description: "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
    							Type:        []string{"string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			return "true"
    		}
    		return ""
    	}
    	runningPods := make(map[types.UID]sets.Empty)
    	possiblyRunningPods := make(map[types.UID]sets.Empty)
    	for uid, sync := range workingPods {
    		switch sync.State {
    		case SyncPod:
    			runningPods[uid] = struct{}{}
    			possiblyRunningPods[uid] = struct{}{}
    		case TerminatingPod:
    			possiblyRunningPods[uid] = struct{}{}
    		default:
    		}
    	}
    
    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. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  5. src/encoding/json/testdata/code.json.gz

    code.json {"tree":{"name":"/","kids":[{"name":"go","kids":[{"name":"src","kids":[{"name":"pkg","kids":[{"name":"exp","kids":[{"name":"ssh","kids":[{"name":"Makefile","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"channel.go","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"common.go","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/SidResolver.java

    
    /**
     * This is an internal API for resolving SIDs to names and/or retrieving member SIDs
     * 
     * @author mbechler
     * @internal
     */
    public interface SidResolver {
    
        /**
         * Resolve an array of SIDs using a cache and at most one MSRPC request.
         * <p>
         * This method will attempt
         * to resolve SIDs using a cache and cache the results of any SIDs that
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/LsarSidArrayX.java

        LsarSidArrayX ( jcifs.SID[] sids ) {
            this.num_sids = sids.length;
            this.sids = new lsarpc.LsarSidPtr[sids.length];
            for ( int si = 0; si < sids.length; si++ ) {
                this.sids[ si ] = new lsarpc.LsarSidPtr();
                this.sids[ si ].sid = sids[ si ].unwrap(sid_t.class);
            }
        }
    
    
        LsarSidArrayX ( SID[] sids ) {
            this.num_sids = sids.length;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  10. src/os/user/listgroups_unix_test.go

    	// input
    	in   string
    	user string
    	gid  string
    	// output
    	gids []string
    	err  bool
    }{
    	{in: testGroupFile, user: "root", gid: "0", gids: []string{"0", "1", "2", "7"}},
    	{in: testGroupFile, user: "jill", gid: "33", gids: []string{"33", "777"}},
    	{in: testGroupFile, user: "jody", gid: "34", gids: []string{"34", "777"}},
    	{in: testGroupFile, user: "john", gid: "35", gids: []string{"35", "777"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top