Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for egid (0.04 sec)

  1. src/cmd/link/internal/ld/macho.go

    	ldr := ctxt.loader
    	rebase := ldr.CreateSymForUpdate(".machorebase", 0)
    	bind := ldr.CreateSymForUpdate(".machobind", 0)
    
    	if !(ctxt.IsPIE() && ctxt.IsInternal()) {
    		return
    	}
    
    	segId := func(seg *sym.Segment) uint8 {
    		switch seg {
    		case &Segtext:
    			return 1
    		case &Segrelrodata:
    			return 2
    		case &Segdata:
    			if Segrelrodata.Length > 0 {
    				return 3
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/cache.go

    		return missing(errors.New("invalid header"))
    	}
    	eid, entry := entry[3:3+hexSize], entry[3+hexSize:]
    	eout, entry := entry[1:1+hexSize], entry[1+hexSize:]
    	esize, entry := entry[1:1+20], entry[1+20:]
    	etime, entry := entry[1:1+20], entry[1+20:]
    	var buf [HashSize]byte
    	if _, err := hex.Decode(buf[:], eid); err != nil {
    		return missing(fmt.Errorf("decoding ID: %v", err))
    	} else if buf != id {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top