Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getNodes (0.17 sec)

  1. 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)
  2. pkg/config/validation/validation.go

    		return errs.Unwrap()
    	})
    
    func validateSidecarOutboundTrafficPolicy(tp *networking.OutboundTrafficPolicy) (errs error) {
    	if tp == nil {
    		return
    	}
    	mode := tp.GetMode()
    	if tp.EgressProxy != nil {
    		if mode != networking.OutboundTrafficPolicy_ALLOW_ANY {
    			errs = appendErrors(errs, fmt.Errorf("sidecar: egress_proxy must be set only with ALLOW_ANY outbound_traffic_policy mode"))
    			return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return translator->TranslateInternal();
      }
      return ret;
    }
    
    bool Translator::CheckGpuDelegateCompatibility(uint8_t* model_buffer_pointer) {
      bool gpu_compatibile = true;
      auto model = tflite::GetModel(model_buffer_pointer);
      auto subgraphs = model->subgraphs();
    
      for (int i = 0; i < subgraphs->Length(); ++i) {
        const tflite::SubGraph* subgraph = subgraphs->Get(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top