Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for kill (0.04 sec)

  1. pkg/kubelet/kubelet.go

    	plegChannelCapacity = 1000
    
    	// Generic PLEG relies on relisting for discovering container events.
    	// A longer period means that kubelet will take longer to detect container
    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		t.Fatalf("expected %v kills, got %v", expect, actual)
    	}
    
    	ready = true
    	kubelet.HandlePodRemoves(pods)
    	time.Sleep(2 * time.Second)
    
    	// Sources are ready. Remove unwanted pods.
    	if expect, actual := []types.UID{"1"}, kubelet.podWorkers.(*fakePodWorkers).triggeredDeletion; !reflect.DeepEqual(expect, actual) {
    		t.Fatalf("expected %v kills, got %v", expect, actual)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    // Kubernetes only mounts on /etc/hosts if:
    // - container is not an infrastructure (pause) container
    // - container is not already mounting on /etc/hosts
    // Kubernetes will not mount /etc/hosts if:
    // - when the Pod sandbox is being created, its IP is still unknown. Hence, PodIP will not have been set.
    // - Windows pod contains a hostProcess container
    func shouldMountHostsFile(pod *v1.Pod, podIPs []string) bool {
    	shouldMount := len(podIPs) > 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<std::vector<Operation*>> subgraph_op_inst_map_;
      // A list of subgraphs in the model
      std::vector<BufferOffset<tflite::SubGraph>> subgraphs_;
    
      // Will be populated by ExtractControlEdges to contain the control
      // dependencies contained in the ControlNodeOps. Will then be used to populate
      // metadata in the exported flatbuffer file.
      tflite::ModelControlDependencies model_control_dependencies_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    are intended to show Istio main components cost in terms of resources utilization under steady load.\n\n- **vCPU / 1k rps:** shows vCPU utilization by the main Istio components normalized by 1000 requests/second. When idle or low traffic, this chart will be blank. The curve for istio-proxy refers to the services sidecars only.\n- **vCPU:** vCPU utilization by Istio components, not normalized.\n- **Memory:** memory footprint for the components. Telemetry and policy are normalized by 1k rps, and no data...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top