Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 269 for setFid (0.23 sec)

  1. pkg/xds/server.go

    	GetWatchedResource(url string) *WatchedResource
    	NewWatchedResource(url string, names []string)
    	UpdateWatchedResource(string, func(*WatchedResource) *WatchedResource)
    	// GetID identifies an xDS client. This is different from a connection ID.
    	GetID() string
    }
    
    // IsWildcardTypeURL checks whether a given type is a wildcard type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_linux_s390x.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setpgid(pid int, pgid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setsid() (pid int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)
    	pid = int(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

                // fall trough if the tree connection is already established
                // and send it as a separate request instead
                String svc = null;
                int t = this.tid;
                request.setTid(t);
    
                if ( !transport.isSMB2() ) {
                    ServerMessageBlock req = (ServerMessageBlock) request;
                    svc = this.service;
                    if ( svc == null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/net_test.go

    	fakeIPSetDeps.AssertExpectations(t)
    }
    
    func TestSyncHostIPSetsIgnoresPodIPAddErrorAndContinues(t *testing.T) {
    	pod1 := buildConvincingPod(false)
    	pod2 := buildConvincingPod(false)
    
    	pod2.ObjectMeta.SetUID("4455")
    
    	fakeIPSetDeps := ipset.FakeNLDeps()
    
    	var pod1UID string = string(pod1.ObjectMeta.UID)
    	var pod2UID string = string(pod2.ObjectMeta.UID)
    	ipProto := uint8(unix.IPPROTO_TCP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_linux_386.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setpgid(pid int, pgid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setsid() (pid int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)
    	pid = int(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 34.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/builtin.go

    	fn := typecheck.LookupRuntime("memmove", nl.Type().Elem(), nl.Type().Elem())
    	nwid := ir.Node(typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TUINTPTR]))
    	setwid := ir.NewAssignStmt(base.Pos, nwid, typecheck.Conv(nlen, types.Types[types.TUINTPTR]))
    	ne.Body.Append(setwid)
    	nwid = ir.NewBinaryExpr(base.Pos, ir.OMUL, nwid, ir.NewInt(base.Pos, nl.Type().Elem().Size()))
    	call := mkcall1(fn, nil, init, nto, nfrm, nwid)
    	ne.Body.Append(call)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. helm-releases/minio-2.0.1.tgz

    false allowHostNetwork: false allowHostPID: false allowHostPorts: false allowPrivilegeEscala: true allowPrivilegedConta: false allowedCapabilities: [] readOnlyRootFilesyst: false defaultAddCapabiliti: [] requiredDropCapabili: - KILL - MKNOD - SETUID - SETGID fsGroup: type: MustRunAs ranges: - max: {{ .Values.securityContext.fsGroup }} min: {{ .Values.securityContext.fsGroup }} runAsUser: type: MustRunAs uid: {{ .Values.securityContext.runAsUser }} seLinuxContext: type: MustRunAs supplementalGroups:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		return nil
    	}
    
    	user := &kubecontainer.ContainerUser{}
    	if statusUser.GetLinux() != nil {
    		user.Linux = &kubecontainer.LinuxContainerUser{
    			UID:                statusUser.GetLinux().GetUid(),
    			GID:                statusUser.GetLinux().GetGid(),
    			SupplementalGroups: statusUser.GetLinux().GetSupplementalGroups(),
    		}
    	}
    
    	return user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_linux_arm64.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setpgid(pid int, pgid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setsid() (pid int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)
    	pid = int(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  10. src/runtime/os_linux.go

    	mp.gsignal.m = mp
    }
    
    func gettid() uint32
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    	minitSignals()
    
    	// Cgo-created threads and the bootstrap m are missing a
    	// procid. We need this for asynchronous preemption and it's
    	// useful in debuggers.
    	getg().m.procid = uint64(gettid())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top