Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RuntimeHandlers (0.27 sec)

  1. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		klog.ErrorS(err, "failed to look up the runtime handler", "runtimeClassName", pod.Spec.RuntimeClassName)
    		return false
    	}
    	runtimeHandlers := kl.runtimeState.runtimeHandlers()
    	return runtimeHandlerSupportsRecursiveReadOnlyMounts(runtimeHandlerName, runtimeHandlers)
    }
    
    // runtimeHandlerSupportsRecursiveReadOnlyMounts checks whether the runtime handler supports recursive read-only mounts.
    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/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.Config != nil {
    		in, out := &in.Config, &out.Config
    		*out = new(NodeConfigStatus)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.RuntimeHandlers != nil {
    		in, out := &in.RuntimeHandlers, &out.RuntimeHandlers
    		*out = make([]NodeRuntimeHandler, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.Config != nil {
    		in, out := &in.Config, &out.Config
    		*out = new(NodeConfigStatus)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.RuntimeHandlers != nil {
    		in, out := &in.RuntimeHandlers, &out.RuntimeHandlers
    		*out = make([]NodeRuntimeHandler, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top