Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Topo (0.04 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. src/runtime/mklockrank.go

    	fmt.Fprintf(w, `// Code generated by mklockrank.go; DO NOT EDIT.
    
    package runtime
    
    type lockRank int
    
    `)
    
    	// Create numeric ranks.
    	topo := g.Topo()
    	for i, j := 0, len(topo)-1; i < j; i, j = i+1, j-1 {
    		topo[i], topo[j] = topo[j], topo[i]
    	}
    	fmt.Fprintf(w, `
    // Constants representing the ranks of all non-leaf runtime locks, in rank order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/fake.go

    	allClusters := make(cluster.Map)
    
    	for i := 0; i < f.NumClusters; i++ {
    		topo := cluster.NewTopology(cluster.Config{
    			Name:               fmt.Sprintf("cluster-%d", i),
    			PrimaryClusterName: fmt.Sprintf("cluster-%d", i),
    			ConfigClusterName:  fmt.Sprintf("cluster-%d", i),
    		}, allClusters)
    		c := &kube.Cluster{Topology: topo}
    		res = append(res, c)
    		allClusters[c.Name()] = c
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.8K 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top