Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for consulted (0.16 sec)

  1. pkg/kubelet/cm/memorymanager/policy_none.go

    // and is consulted to achieve NUMA aware resource alignment among this
    // and other resource controllers.
    func (p *none) GetTopologyHints(s state.State, pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    	return nil
    }
    
    // GetPodTopologyHints implements the topologymanager.HintProvider Interface
    // and is consulted to achieve NUMA aware resource alignment among this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 17:52:25 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy.go

    	// and is consulted to achieve NUMA aware resource alignment among this
    	// and other resource controllers.
    	GetTopologyHints(s state.State, pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint
    	// GetPodTopologyHints implements the topologymanager.HintProvider Interface
    	// and is consulted to achieve NUMA aware resource alignment among this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 17:52:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy.go

    	// and is consulted to achieve NUMA aware resource alignment among this
    	// and other resource controllers.
    	GetTopologyHints(s state.State, pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint
    	// GetPodTopologyHints implements the topologymanager.HintProvider Interface
    	// and is consulted to achieve NUMA aware resource alignment per Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/os/exec/lp_wasm.go

    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    // If file contains a slash, it is tried directly and the PATH is not consulted.
    // The result may be an absolute path or a path relative to the current directory.
    func LookPath(file string) (string, error) {
    	// Wasm can not execute processes, so act as if there are no executables at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 1012 bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/types.go

    	// and is consulted to make Topology aware resource alignments
    	GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint
    
    	// TopologyManager HintProvider provider indicates the Device Manager implements the Topology Manager Interface
    	// and is consulted to make Topology aware resource alignments per Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/os/exec/lp_plan9.go

    }
    
    // LookPath searches for an executable named file in the
    // directories named by the path environment variable.
    // If file begins with "/", "#", "./", or "../", it is tried
    // directly and the path is not consulted.
    // On success, the result is an absolute path.
    //
    // In older versions of Go, LookPath could return a path relative to the current directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. cmd/import-boss/README.md

    question.
    
    Evaluation starts with the rules file closest to the package.  If that file
    makes a determination to allow or forbid the import, evaluation is done.  If
    the import does not match any rule, the next-closest rules file is consulted,
    and so forth.  If the rules files are exhausted and no determination has been
    made, the import will be flagged as an error.
    
    ### What are rules files?
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/os/exec/lp_unix.go

    	}
    	return fs.ErrPermission
    }
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    // If file contains a slash, it is tried directly and the PATH is not consulted.
    // Otherwise, on success, the result is an absolute path.
    //
    // In older versions of Go, LookPath could return a path relative to the current directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/topology_hints.go

    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager/bitmask"
    )
    
    // GetTopologyHints implements the TopologyManager HintProvider Interface which
    // ensures the Device Manager is consulted when Topology Aware Hints for each
    // container are created.
    func (m *ManagerImpl) GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/toolchain.go

    // It is initialized by switchGoToolchain.
    var Startup struct {
    	GOTOOLCHAIN   string // $GOTOOLCHAIN setting
    	AutoFile      string // go.mod or go.work file consulted
    	AutoGoVersion string // go line found in file
    	AutoToolchain string // toolchain line found in file
    }
    
    // A TooNewError explains that a module is too new for this version of Go.
    type TooNewError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top