Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 223 for SetUID (0.26 sec)

  1. src/syscall/asm_solaris_amd64.s

    TEXT ·setgroups1(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setgroups(SB)
    
    TEXT ·setrlimit1(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setrlimit(SB)
    
    TEXT ·setsid(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setsid(SB)
    
    TEXT ·setuid(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setuid(SB)
    
    TEXT ·setpgid(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setpgid(SB)
    
    TEXT ·Syscall(SB),NOSPLIT,$0
    	JMP	runtime·syscall_syscall(SB)
    
    TEXT ·wait4(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 17:21:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/runtime/syscall_aix.go

    //go:cgo_import_dynamic libc_setgroups setgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setsid setsid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setuid setuid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setpgid setpgid "libc.a/shr_64.o"
    
    //go:linkname libc_chdir libc_chdir
    //go:linkname libc_chroot libc_chroot
    //go:linkname libc_dup2 libc_dup2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/runtime/cgo/linux_syscall.c

    			     (uid_t) x->args[2]));
    }
    
    void
    _cgo_libc_setreuid(argset_t* x) {
    	SET_RETVAL(setreuid((uid_t) x->args[0], (uid_t) x->args[1]));
    }
    
    void
    _cgo_libc_setuid(argset_t* x) {
    	SET_RETVAL(setuid((uid_t) x->args[0]));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/os/types.go

    	ModeDevice     = fs.ModeDevice     // D: device file
    	ModeNamedPipe  = fs.ModeNamedPipe  // p: named pipe (FIFO)
    	ModeSocket     = fs.ModeSocket     // S: Unix domain socket
    	ModeSetuid     = fs.ModeSetuid     // u: setuid
    	ModeSetgid     = fs.ModeSetgid     // g: setgid
    	ModeCharDevice = fs.ModeCharDevice // c: Unix character device, when ModeDevice is set
    	ModeSticky     = fs.ModeSticky     // t: sticky
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/syscall/exec_libc.go

    func setgid(gid uintptr) (err Errno)
    func setgroups1(ngid uintptr, gid uintptr) (err Errno)
    func setrlimit1(which uintptr, lim unsafe.Pointer) (err Errno)
    func setsid() (pid uintptr, err Errno)
    func setuid(uid uintptr) (err Errno)
    func setpgid(pid uintptr, pgid uintptr) (err Errno)
    func write1(fd uintptr, buf uintptr, nbyte uintptr) (n uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    	accessor, err := Accessor(obj)
    	if err != nil {
    		return "", err
    	}
    	return accessor.GetUID(), nil
    }
    
    func (resourceAccessor) SetUID(obj runtime.Object, uid types.UID) error {
    	accessor, err := Accessor(obj)
    	if err != nil {
    		return err
    	}
    	accessor.SetUID(uid)
    	return nil
    }
    
    func (resourceAccessor) SelfLink(obj runtime.Object) (string, error) {
    	accessor, err := CommonAccessor(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    constants or functions in this package, but they do not influence the execution
    of the run-time system.
    
    # Security
    
    On Unix platforms, Go's runtime system behaves slightly differently when a
    binary is setuid/setgid or executed with setuid/setgid-like properties, in order
    to prevent dangerous behaviors. On Linux this is determined by checking for the
    AT_SECURE flag in the auxiliary vector, on the BSDs and Solaris/Illumos it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    func (p *PodWrapper) Name(s string) *PodWrapper {
    	p.SetName(s)
    	return p
    }
    
    // UID sets `s` as the UID of the inner pod.
    func (p *PodWrapper) UID(s string) *PodWrapper {
    	p.SetUID(types.UID(s))
    	return p
    }
    
    // SchedulerName sets `s` as the scheduler name of the inner pod.
    func (p *PodWrapper) SchedulerName(s string) *PodWrapper {
    	p.Spec.SchedulerName = s
    	return p
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    	SetName(obj runtime.Object, name string) error
    
    	GenerateName(obj runtime.Object) (string, error)
    	SetGenerateName(obj runtime.Object, name string) error
    
    	UID(obj runtime.Object) (types.UID, error)
    	SetUID(obj runtime.Object, uid types.UID) error
    
    	SelfLink(obj runtime.Object) (string, error)
    	SetSelfLink(obj runtime.Object, selfLink string) error
    
    	Labels(obj runtime.Object) (map[string]string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    	)
    }
    func (o *cachingObject) GetUID() types.UID {
    	o.lock.RLock()
    	defer o.lock.RUnlock()
    	return o.object.GetUID()
    }
    func (o *cachingObject) SetUID(uid types.UID) {
    	o.conditionalSet(
    		func() bool { return o.object.GetUID() == uid },
    		func() { o.object.SetUID(uid) },
    	)
    }
    func (o *cachingObject) GetResourceVersion() string {
    	o.lock.RLock()
    	defer o.lock.RUnlock()
    	return o.object.GetResourceVersion()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top