Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for getPids (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/kubelet/kubelet_pods.go

    // those pods during admission may still be in use. See
    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

              "format");
      }
    
      if (!IsOfRankOrUnranked(op.getBias(), 1))
        return op.emitOpError("requires bias operand to have rank exactly one");
    
      RankedTensorType value_ty =
          mlir::dyn_cast<RankedTensorType>(op.getValue().getType());
      RankedTensorType bias_ty =
          mlir::dyn_cast<RankedTensorType>(op.getBias().getType());
      if (!bias_ty || !value_ty) return success();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. okhttp/api/okhttp.api

    	public final fun check (Ljava/lang/String;[Ljava/security/cert/Certificate;)V
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun findMatchingPins (Ljava/lang/String;)Ljava/util/List;
    	public final fun getPins ()Ljava/util/Set;
    	public fun hashCode ()I
    	public static final fun pin (Ljava/security/cert/Certificate;)Ljava/lang/String;
    	public static final fun sha1Hash (Ljava/security/cert/X509Certificate;)Lokio/ByteString;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_Fstatfs fstatfs "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Ftruncate ftruncate "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Getgid getgid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Getpid getpid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Geteuid geteuid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Getegid getegid "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_openbsd_arm.go

    //go:cgo_import_dynamic libc_geteuid geteuid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getgid() (gid int) {
    	r0, _, _ := rawSyscall(abi.FuncPCABI0(libc_getgid_trampoline), 0, 0, 0)
    	gid = int(r0)
    	return
    }
    
    func libc_getgid_trampoline()
    
    //go:cgo_import_dynamic libc_getgid getgid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_386.go

    //go:cgo_import_dynamic libc_geteuid geteuid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getgid() (gid int) {
    	r0, _, _ := rawSyscall(abi.FuncPCABI0(libc_getgid_trampoline), 0, 0, 0)
    	gid = int(r0)
    	return
    }
    
    func libc_getgid_trampoline()
    
    //go:cgo_import_dynamic libc_getgid getgid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top