Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 150 for getPids (0.15 sec)

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

    //sys	Fsync(fd int) (err error)
    //sys	Ftruncate(fd int, length int64) (err error)
    //sysnb	Getegid() (egid int)
    //sysnb	Geteuid() (uid int)
    //sysnb	Getgid() (gid int)
    //sysnb	Getpgid(pid int) (pgid int, err error)
    //sysnb	Getpgrp() (pgrp int)
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils_test.go

    			}
    
    			assert.True(t, uidExp.SatisfiedExpectations(logger, rcKey),
    				"Controller %v didn't satisfy expectations after deletion", rcKey)
    
    			uidExp.DeleteExpectations(logger, rcKey)
    
    			assert.Nil(t, uidExp.GetUIDs(rcKey),
    				"Failed to delete uid expectations for %v", rcKey)
    		})
    	}
    }
    
    func TestCreatePodsWithGenerateName(t *testing.T) {
    	ns := metav1.NamespaceDefault
    	generateName := "hello-"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_test.go

    				if err != nil {
    					t.Fatal(err)
    				}
    
    				// To accurately simulate a watch we must delete the exact pods
    				// the rs is waiting for.
    				expectedDels := manager.expectations.GetUIDs(GetKey(rsSpec, t))
    				podsToDelete := []*v1.Pod{}
    				isController := true
    				for _, key := range expectedDels.List() {
    					nsName := strings.Split(key, "/")
    					podsToDelete = append(podsToDelete, &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go

    	euid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getgid() (gid int) {
    	r0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)
    	gid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getuid() (uid int) {
    	r0, _ := RawSyscallNoError(SYS_GETUID, 0, 0, 0)
    	uid = int(r0)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager.go

    // See pkg/k8s.io/kubernetes/pkg/kubelet/pod.Manager for method godoc.
    type PodManager interface {
    	GetPodByUID(k8stypes.UID) (*v1.Pod, bool)
    	GetPods() []*v1.Pod
    }
    
    // NewVolumeManager returns a new concrete instance implementing the
    // VolumeManager interface.
    //
    // kubeClient - kubeClient is the kube API client used by DesiredStateOfWorldPopulator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Bias tensor is optional.
      const bool has_bias = !(!getBias() || getBias().getType().isa<NoneType>());
    
      // Get the tensors.
      DenseElementsAttr input_tensor, weights_tensor, bias_tensor;
      if (!matchPattern(getInput(), m_Constant(&input_tensor)) ||
          !matchPattern(getFilter(), m_Constant(&weights_tensor)) ||
          (has_bias && !matchPattern(getBias(), m_Constant(&bias_tensor)))) {
        return failure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_GETPID                   = 20  // { pid_t getpid(void); }
    	SYS_MOUNT                    = 21  // { int mount(char *type, char *path, \
    	SYS_UNMOUNT                  = 22  // { int unmount(char *path, int flags); }
    	SYS_SETUID                   = 23  // { int setuid(uid_t uid); }
    	SYS_GETUID                   = 24  // { uid_t getuid(void); }
    	SYS_GETEUID                  = 25  // { uid_t geteuid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    		ProbeManager:                    kubelet.probeManager,
    		Recorder:                        fakeRecorder,
    		NodeRef:                         nodeRef,
    		GetPodsFunc:                     kubelet.podManager.GetPods,
    		KillPodFunc:                     killPodNow(kubelet.podWorkers, fakeRecorder),
    		SyncNodeStatusFunc:              func() {},
    		ShutdownGracePeriodRequested:    0,
    		ShutdownGracePeriodCriticalPods: 0,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go

    func Geteuid() (euid int) {
    	r0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)
    	euid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getgid() (gid int) {
    	r0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)
    	gid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go

    func Geteuid() (euid int) {
    	r0, _ := RawSyscallNoError(SYS_GETEUID, 0, 0, 0)
    	euid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getgid() (gid int) {
    	r0, _ := RawSyscallNoError(SYS_GETGID, 0, 0, 0)
    	gid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top