Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 318 for nums (0.13 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_static.go

    	if err != nil {
    		return err
    	}
    
    	machineState := s.GetMachineState()
    	bestHint := &hint
    	// topology manager returned the hint with NUMA affinity nil
    	// we should use the default NUMA affinity calculated the same way as for the topology manager
    	if hint.NUMANodeAffinity == nil {
    		defaultHint, err := p.getDefaultHint(machineState, pod, requestedResources)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  3. proguard/base.pro

    # Note: We intentionally don't add the flags we'd need to make Flags and Enums
    # work. That's because the Proguard configuration required to make them work on
    # optimized code would preclude lots of optimization, like converting enums
    # into ints.
    
    # Throwables uses internal APIs for lazy stack trace resolution
    -dontnote sun.misc.SharedSecrets
    -keep class sun.misc.SharedSecrets {
      *** getJavaLangAccess(...);
    }
    -dontnote sun.misc.JavaLangAccess
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. 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
    	// among this and other resource controllers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/topology/topology.go

    type NUMANodeInfo map[int]cpuset.CPUSet
    
    // CPUDetails is a map from CPU ID to Core ID, Socket ID, and NUMA ID.
    type CPUDetails map[int]CPUInfo
    
    // CPUTopology contains details of node cpu, where :
    // CPU  - logical CPU, cadvisor - thread
    // Core - physical CPU, cadvisor - Core
    // Socket - socket, cadvisor - Socket
    // NUMA Node - NUMA cell, cadvisor - Node
    type CPUTopology struct {
    	NumCPUs      int
    	NumCores     int
    	NumSockets   int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/typeProvider/Fe10IdeNormalAnalysisSourceModuleHasCommonSubtypeTestGenerated.java

        runTest("analysis/analysis-api/testData/components/typeProvider/haveCommonSubtype/dataClasses.kt");
      }
    
      @Test
      @TestMetadata("enums.kt")
      public void testEnums() {
        runTest("analysis/analysis-api/testData/components/typeProvider/haveCommonSubtype/enums.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeDependentAnalysisSourceModuleContainingDeclarationProviderByPsiTestGenerated.java

      }
    
      @Test
      @TestMetadata("enums.kt")
      public void testEnums() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/enums.kt");
      }
    
      @Test
      @TestMetadata("functions.kt")
      public void testFunctions() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy.go

    	var allProviderHints [][]TopologyHint
    	for _, hints := range providersHints {
    		// If hints is nil, insert a single, preferred any-numa hint into allProviderHints.
    		if len(hints) == 0 {
    			klog.InfoS("Hint Provider has no preference for NUMA affinity with any resource")
    			allProviderHints = append(allProviderHints, []TopologyHint{{nil, true}})
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    	return m.state
    }
    
    // GetAllocatableMemory returns the amount of allocatable memory for each NUMA node
    func (m *fakeManager) GetAllocatableMemory() []state.Block {
    	klog.InfoS("Get Allocatable Memory")
    	return []state.Block{}
    }
    
    // GetMemory returns the memory allocated by a container from NUMA nodes
    func (m *fakeManager) GetMemory(podUID, containerName string) []state.Block {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

    public annotation class Anno {
        // source: 'classKinds.kt'
    }
    
    public final enum class Direction {
        // source: 'classKinds.kt'
        private synthetic final static field $ENTRIES: kotlin.enums.EnumEntries
        private synthetic final static field $VALUES: Direction[]
        public final enum static field EAST: Direction
        public final enum static field NORTH: Direction
        public final enum static field SOUTH: Direction
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top