Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hostProcess (0.16 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.RunAsUserName != nil {
    		in, out := &in.RunAsUserName, &out.RunAsUserName
    		*out = new(string)
    		**out = **in
    	}
    	if in.HostProcess != nil {
    		in, out := &in.HostProcess, &out.HostProcess
    		*out = new(bool)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WindowsSecurityContextOptions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.RunAsUserName != nil {
    		in, out := &in.RunAsUserName, &out.RunAsUserName
    		*out = new(string)
    		**out = **in
    	}
    	if in.HostProcess != nil {
    		in, out := &in.HostProcess, &out.HostProcess
    		*out = new(bool)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WindowsSecurityContextOptions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    // - 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
    	if runtime.GOOS == "windows" {
    		return shouldMount && !kubecontainer.HasWindowsHostProcessContainer(pod)
    	}
    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/jit/extract_outside_compilation_pass.cc

          host_graph->get(),
          std::unordered_set<const Node*>{(*host_graph)->sink_node()});
    
      // Postprocess edges between different outside compilations.
      TF_RETURN_IF_ERROR(PostprocessEdgesBetweenOutsideCompilations(
          host_graph->get(), outside_compilation_attr_name));
    
      // Postprocess lifted arg nodes.
      TF_RETURN_IF_ERROR(PostprocessLiftedArgs(host_graph->get(), fld));
    
      if (VLOG_IS_ON(4)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top