Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Topo (0.06 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static_test.go

    // objects which are accessed read-only
    func (spt staticPolicyTest) PseudoClone() staticPolicyTest {
    	return staticPolicyTest{
    		description:     spt.description,
    		topo:            spt.topo, // accessed in read-only
    		numReservedCPUs: spt.numReservedCPUs,
    		podUID:          spt.podUID,
    		options:         spt.options, // accessed in read-only
    		containerName:   spt.containerName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/topology/topology_test.go

    	}
    
    	tests := []struct {
    		name    string
    		topo    *CPUTopology
    		id      int
    		want    int
    		wantErr bool
    	}{{
    		name: "Known Core ID",
    		topo: topoDualSocketHT,
    		id:   2,
    		want: 2,
    	}, {
    		name: "Known Core ID (core sibling).",
    		topo: topoDualSocketHT,
    		id:   8,
    		want: 2,
    	}, {
    		name:    "Unknown Core ID.",
    		topo:    topoDualSocketHT,
    		id:      -2,
    		want:    -1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    			acc := newCPUAccumulator(tc.topo, tc.availableCPUs, 0)
    			result := acc.freeSockets()
    			sort.Ints(result)
    			if !reflect.DeepEqual(result, tc.expect) {
    				t.Errorf("expected %v to equal %v", result, tc.expect)
    
    			}
    		})
    	}
    }
    
    func TestCPUAccumulatorFreeNUMANodes(t *testing.T) {
    	testCases := []struct {
    		description   string
    		topo          *topology.CPUTopology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    	numaOrSocketsFirst numaOrSocketsFirstFuncs
    }
    
    func newCPUAccumulator(topo *topology.CPUTopology, availableCPUs cpuset.CPUSet, numCPUs int) *cpuAccumulator {
    	acc := &cpuAccumulator{
    		topo:          topo,
    		details:       topo.CPUDetails.KeepOnly(availableCPUs),
    		numCPUsNeeded: numCPUs,
    		result:        cpuset.New(),
    	}
    
    	if topo.NumSockets >= topo.NumNUMANodes {
    		acc.numaOrSocketsFirst = &numaFirst{acc}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    				testCase.description, testCase.expCPUSet, mgr.state.GetDefaultCPUSet())
    		}
    	}
    }
    
    func TestCPUManagerAddWithInitContainers(t *testing.T) {
    	testCases := []struct {
    		description      string
    		topo             *topology.CPUTopology
    		numReservedCPUs  int
    		initContainerIDs []string
    		containerIDs     []string
    		stAssignments    state.ContainerCPUAssignments
    		stDefaultCPUSet  cpuset.CPUSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	var topo *topology.CPUTopology
    	var policy Policy
    	var err error
    
    	switch policyName(cpuPolicyName) {
    
    	case PolicyNone:
    		policy, err = NewNonePolicy(cpuPolicyOptions)
    		if err != nil {
    			return nil, fmt.Errorf("new none policy error: %w", err)
    		}
    
    	case PolicyStatic:
    		topo, err = topology.Discover(machineInfo)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

         * the set of projects we want to build then add an edge, otherwise throw
         * the edge away because that dependency is not within the set of projects
         * we are trying to build. we assume a closed set.</li>
         * <li>do a topo sort on the graph that remains.</li>
         * </ul>
         * @throws DuplicateProjectException if any projects are duplicated by id
         */
        // MAVENAPI FIXME: the DAG used is NOT only used to represent the dependency relation,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. docs/pt/docs/alternatives.md

    Outro grande recurso necessário pelas APIs é a <abbr title="ler e converter para dados Python">análise</abbr> de dados vindos de requisições.
    
    Webargs é uma ferramente feita para fornecer o que está no topo de vários frameworks, inclusive Flask.
    
    Ele utiliza Marshmallow por baixo para validação de dados. E ele foi criado pelos mesmos desenvolvedores.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment/docker.md

    ```Dockerfile
    COPY ./requirements.txt /code/requirements.txt
    ```
    
    Docker e outras ferramentas **constróem** essas imagens de contêiner **incrementalmente**, adicionando **uma camada em cima da outra**, começando do topo do `Dockerfile` e adicionando qualquer arquivo criado por cada uma das instruções do `Dockerfile`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    X ð¼¹ByT² 8—ú²¼òþttÊ€®„¢¨ª† „ª‚Š²`ª LVxNÕ†¯Ÿp\ mqò gñëGs ÷Ö³ocòQQ¿rm|eEÕm•~ûnAT-kDQ¾ ‘_i^qé ¢¸¸Äö`¢†ºµ`SN¾,WÙqJ°_² ]þ8Rto ž\q¡²¦< "¾ R|RtW†£­bô°ocòšk{1server—÷]`a[©~mhe} I©Fû`yÈŸ@Zå¾–rq«mqns{Š jÜv 3 —Š ¹ m^qï ²¤gË Dü üþÈê „ª‚ŠV„Ž^ÜNL}„•­f\2u}t¸]W1}qÖpO^³_qòsc•\i\wQÕc•jaòçXŸ}µ­$Ö/ cîacž<²¾øF^"XG² gp ’ì]N^ñMusòL¾stãT@g EG_Vw„JïhKßÌLˆ~QWè>ûL]ömVtiovSˆ~SIîqAavWcx qehåkqpeeìÜft±ñ ¾Aãzª|wKnºVdG†ìG@vYËesTt¢GMqzéˆLrïú g E‘† U^_Uôk¦¼aV’ïsTï|nsd8ÙE@½æ Uuj snd}yÜŠF^sq_o,0vwSTz åìFc¼‹il… ¾3IÈ@}J ¾®iinv ý„Sc...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top