Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for gids (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	n, err = getgroups(n, &a[0])
    	if err != nil {
    		return nil, err
    	}
    	gids = make([]int, n)
    	for i, v := range a[0:n] {
    		gids[i] = int(v)
    	}
    	return
    }
    
    func Setgroups(gids []int) (err error) {
    	if len(gids) == 0 {
    		return setgroups(0, nil)
    	}
    
    	a := make([]_Gid_t, len(gids))
    	for i, v := range gids {
    		a[i] = _Gid_t(v)
    	}
    	return setgroups(len(a), &a[0])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	n, err = getgroups(n, &a[0])
    	if err != nil {
    		return nil, err
    	}
    	gids = make([]int, n)
    	for i, v := range a[0:n] {
    		gids[i] = int(v)
    	}
    	return
    }
    
    func Setgroups(gids []int) (err error) {
    	if len(gids) == 0 {
    		return setgroups(0, nil)
    	}
    
    	a := make([]_Gid_t, len(gids))
    	for i, v := range gids {
    		a[i] = _Gid_t(v)
    	}
    	return setgroups(len(a), &a[0])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    func Chown(path string, uid int, gid int) (err error)  { return EWINDOWS }
    func Lchown(path string, uid int, gid int) (err error) { return EWINDOWS }
    func Fchown(fd Handle, uid int, gid int) (err error)   { return EWINDOWS }
    
    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func Chown(path string, uid int, gid int) (err error)  { return syscall.EWINDOWS }
    func Lchown(path string, uid int, gid int) (err error) { return syscall.EWINDOWS }
    func Fchown(fd Handle, uid int, gid int) (err error)   { return syscall.EWINDOWS }
    
    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	ext := pkix.Extension{Id: oidExtensionExtendedKeyUsage}
    
    	oids := make([]asn1.ObjectIdentifier, len(extUsages)+len(unknownUsages))
    	for i, u := range extUsages {
    		if oid, ok := oidFromExtKeyUsage(u); ok {
    			oids[i] = oid
    		} else {
    			return ext, errors.New("x509: unknown extended key usage")
    		}
    	}
    
    	copy(oids[len(extUsages):], unknownUsages)
    
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	SECURITY_AUTHENTICATED_USER_RID     = 0xb
    	SECURITY_RESTRICTED_CODE_RID        = 0xc
    	SECURITY_NT_NON_UNIQUE_RID          = 0x15
    )
    
    // Predefined domain-relative RIDs for local groups.
    // See https://msdn.microsoft.com/en-us/library/windows/desktop/aa379649(v=vs.85).aspx
    const (
    	DOMAIN_ALIAS_RID_ADMINS                         = 0x220
    	DOMAIN_ALIAS_RID_USERS                          = 0x221
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // operations.
      //
      // Populated by the system.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
      // +optional
      optional string uid = 5;
    
      // An opaque value that represents the internal version of this object that can
      // be used by clients to determine when objects have changed. May be used for optimistic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // operations.
      //
      // Populated by the system.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
      // +optional
      optional string uid = 5;
    
      // An opaque value that represents the internal version of this object that can
      // be used by clients to determine when objects have changed. May be used for optimistic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    // SetupDiClassGuidsFromNameEx function retrieves the GUIDs associated with the specified class name. This resulting list contains the classes currently installed on a local or remote computer.
    func SetupDiClassGuidsFromNameEx(className string, machineName string) ([]GUID, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	// Tracks by UID the termination status of a pod - syncing, terminating,
    	// terminated, and evicted.
    	podSyncStatuses map[types.UID]*podSyncStatus
    
    	// Tracks all uids for started static pods by full name
    	startedStaticPodsByFullname map[string]types.UID
    	// Tracks all uids for static pods that are waiting to start by full name
    	waitingToStartStaticPodsByFullname map[string][]types.UID
    
    	workQueue queue.WorkQueue
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top