Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for egid (0.09 sec)

  1. pkg/volume/util/util.go

    	MountsInGlobalPDPath = "mounts"
    
    	// VolumeGidAnnotationKey is the of the annotation on the PersistentVolume
    	// object that specifies a supplemental GID.
    	VolumeGidAnnotationKey = "pv.beta.kubernetes.io/gid"
    
    	// VolumeDynamicallyCreatedByKey is the key of the annotation on PersistentVolume
    	// object created dynamically
    	VolumeDynamicallyCreatedByKey = "kubernetes.io/createdby"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_executor.go

    	// PluginIsDeviceMountable indicates that the plugin for this volume implements
    	// the volume.DeviceMounter interface
    	PluginIsDeviceMountable bool
    
    	// VolumeGidValue contains the value of the GID annotation, if present.
    	VolumeGidValue string
    
    	// DevicePath contains the path on the node where the volume is attached.
    	// For non-attachable volumes this is empty.
    	DevicePath string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_ppc64x.s

    	MOVW	sig+0(FP), R4	// arg 2
    	SYSCALL	$SYS_kill
    	RET
    
    TEXT ·getpid(SB),NOSPLIT|NOFRAME,$0-8
    	SYSCALL $SYS_getpid
    	MOVD	R3, ret+0(FP)
    	RET
    
    TEXT ·tgkill(SB),NOSPLIT|NOFRAME,$0-24
    	MOVD	tgid+0(FP), R3
    	MOVD	tid+8(FP), R4
    	MOVD	sig+16(FP), R5
    	SYSCALL $SYS_tgkill
    	RET
    
    TEXT runtime·setitimer(SB),NOSPLIT|NOFRAME,$0-24
    	MOVW	mode+0(FP), R3
    	MOVD	new+8(FP), R4
    	MOVD	old+16(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. src/runtime/os_linux.go

    			})
    		}
    	}
    }
    
    // rt_sigaction is implemented in assembly.
    //
    //go:noescape
    func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32
    
    func getpid() int
    func tgkill(tgid, tid, sig int)
    
    // signalM sends a signal to mp.
    func signalM(mp *m, sig int) {
    	tgkill(getpid(), int(mp.procid), sig)
    }
    
    // validSIGPROF compares this signal delivery's code against the signal sources
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    type LinuxContainerUser struct {
    	// UID is the primary uid initially attached to the first process in the container
    	UID int64
    	// GID is the primary gid initially attached to the first process in the container
    	GID int64
    	// SupplementalGroups are the supplemental groups initially attached to the first process in the container
    	SupplementalGroups []int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                   "LinuxContainerUser represents user identity information in Linux containers",
    	"uid":                "UID is the primary uid initially attached to the first process in the container",
    	"gid":                "GID is the primary gid initially attached to the first process in the container",
    	"supplementalGroups": "SupplementalGroups are the supplemental groups initially attached to the first process in the container",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

    message LinuxContainerUser {
      // UID is the primary uid initially attached to the first process in the container
      optional int64 uid = 1;
    
      // GID is the primary gid initially attached to the first process in the container
      optional int64 gid = 2;
    
      // SupplementalGroups are the supplemental groups initially attached to the first process in the container
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. pkg/kube/inject/webhook.go

    			// Should not happen
    			log.Warn("Could not find the istio-proxy container")
    			return
    		}
    		*sidecar.SecurityContext.RunAsUser = 0
    	}
    
    	// Make sure the validation container runs with the same uid/gid as the proxy (init container is untouched, it must run with 0)
    	if !tproxy && initContainer.Name == ValidationContainerName {
    		if initContainer.SecurityContext == nil {
    			initContainer.SecurityContext = &corev1.SecurityContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Sec  int64
    	Nsec uint32
    	_    int32
    }
    
    type Statx_t struct {
    	Mask             uint32
    	Blksize          uint32
    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    	Ino              uint64
    	Size             uint64
    	Blocks           uint64
    	Attributes_mask  uint64
    	Atime            StatxTimestamp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // for that container.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
      optional int64 runAsUser = 2;
    
      // The GID to run the entrypoint of the container process.
      // Uses runtime default if unset.
      // May also be set in SecurityContext.  If set in both SecurityContext and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top