Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Topo (0.09 sec)

  1. 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)
  2. pkg/kubelet/cm/container_manager.go

    	var respDevs []*podresourcesapi.ContainerDevices
    
    	for resourceName, resourceDevs := range devs {
    		for devID, dev := range resourceDevs {
    			topo := dev.GetTopology()
    			if topo == nil {
    				// Some device plugin do not report the topology information.
    				// This is legal, so we report the devices anyway,
    				// let the client decide what to do.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

      }
    
      std::vector<Node*> topo;
      TF_RETURN_IF_ERROR(GetFrameBasedTopologicalOrder(&topo));
    
      size_t frame_start = 0;
      while (frame_start < topo.size()) {
        // Batching nodes who have the same root frame.
        absl::string_view cur_frame_name;
        TF_RETURN_IF_ERROR(
            GetRootFrame(topo[frame_start], control_flow_info_, &cur_frame_name));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. docs/pt/docs/fastapi-cli.md

    Em muitos casos você pode ter (e deveria ter) um "proxy de saída" tratando HTTPS no topo, isso dependerá de como você fará o deploy da sua aplicação, seu provedor pode fazer isso pra você ou talvez seja necessário fazer você mesmo.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

            SmallVector<Value>{erf_input->getOperand(0)}, MakeCompositeName(kGelu),
            composite_attrs, func.getSymName());
        rewriter.replaceAllOpUsesWith(output_mul, composite_op);
        // Note these must be erased in reverse topo order to avoid
        // failing in debug mode.
        rewriter.eraseOp(output_mul);
        rewriter.eraseOp(rhs_add);
        rewriter.eraseOp(op);
        rewriter.eraseOp(lhs_mul);
        rewriter.eraseOp(rhs_mul);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K 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. cmd/kubelet/app/server.go

    	if cpus == "" {
    		return emptyCPUSet, nil
    	}
    
    	topo, err := topology.Discover(machineInfo)
    	if err != nil {
    		return emptyCPUSet, fmt.Errorf("unable to discover CPU topology info: %s", err)
    	}
    	reservedCPUSet, err := cpuset.Parse(cpus)
    	if err != nil {
    		return emptyCPUSet, fmt.Errorf("unable to parse reserved-cpus list: %s", err)
    	}
    	allCPUSet := topo.CPUDetails.CPUs()
    	if !reservedCPUSet.IsSubsetOf(allCPUSet) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. 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)
Back to top