Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,773 for Reserve (0.18 sec)

  1. pkg/scheduler/apis/config/v1/defaults.go

    }
    
    func pluginsNames(p *configv1.Plugins) []string {
    	if p == nil {
    		return nil
    	}
    	extensions := []configv1.PluginSet{
    		p.MultiPoint,
    		p.PreFilter,
    		p.Filter,
    		p.PostFilter,
    		p.Reserve,
    		p.PreScore,
    		p.Score,
    		p.PreBind,
    		p.Bind,
    		p.PostBind,
    		p.Permit,
    		p.PreEnqueue,
    		p.QueueSort,
    	}
    	n := sets.New[string]()
    	for _, e := range extensions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/while_gradients.cc

    }
    
    std::vector<Output> ToOutputVector(
        const std::vector<OutputTensor>& output_tensors) {
      const int n = output_tensors.size();
      std::vector<Output> result;
      result.reserve(n);
      for (int i = 0; i < n; ++i) result.push_back(ToOutput(output_tensors[i]));
      return result;
    }
    
    // The backprop loop counter and main backprop loop run in their own execution
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

                                                       &hardware_map);
    
      // Populate the runtime metadata.
      std::vector<flatbuffers::Offset<SubgraphMetadata>> subgraphs_metadata;
      subgraphs_metadata.reserve(funcs.size());
      for (auto& func : funcs) {
        subgraphs_metadata.push_back(
            CreateSubgraphMetadata(hardware_map, &func.getBody(), &fb_builder));
      }
      auto runtime_metadata =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

          << "Wrong number of arguments for function " << function_name.str();
    
      // Prepare function arguments from ready Chain and input Tensors.
      llvm::SmallVector<tfrt::AsyncValue*> exec_arguments;
      exec_arguments.reserve(compute->num_arguments());
      exec_arguments.push_back(tfrt::GetReadyChain().release());
      for (const Tensor& input_tensor : arguments) {
        auto av = MakeAvailableAsyncValueRef<FallbackTensor>(input_tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options.go

    		"overlap with any IP ranges assigned to nodes or pods. Max of two dual-stack CIDRs is allowed.")
    
    	fs.Var(&s.ServiceNodePortRange, "service-node-port-range", ""+
    		"A port range to reserve for services with NodePort visibility.  This must not overlap with the ephemeral port range on nodes.  "+
    		"Example: '30000-32767'. Inclusive at both ends of the range.")
    
    	// Kubelet related flags:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    		// the design/implementation of P&F has a couple limitations that
    		// make using this assumption in the P&F implementation very
    		// inefficient because:
    		// - we reserve max(initialSeats, finalSeats) for time of executing
    		//   both phases of the request
    		// - even more importantly, when a given `wide` request is the one to
    		//   be dispatched, we are not dispatching any other request until
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/net/dnsclient.go

    	}
    
    	// See RFC 1035, RFC 3696.
    	// Presentation format has dots before every label except the first, and the
    	// terminal empty label is optional here because we assume fully-qualified
    	// (absolute) input. We must therefore reserve space for the first and last
    	// labels' length octets in wire format, where they are necessary and the
    	// maximum total length is 255.
    	// So our _effective_ maximum is 253, but 254 is not rejected if the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/modify_io_nodes.cc

      builder.setInsertionPoint(terminator);
    
      if (mlir::isa<FloatType>(output_type)) {
        return success();
      }
    
      int num_return_operands = terminator->getNumOperands();
      new_output_types.reserve(num_return_operands);
      for (int i = 0; i != num_return_operands; ++i) {
        auto returned_value = terminator->getOperand(i);
        Type returned_type = returned_value.getType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/perception_ops_utils.cc

      if (array_attr == nullptr || array_attr.size() != N) {
        return func->emitError()
               << "'" << attr_name << "' attribute for " << kMaxUnpooling
               << " must be set and has size of " << N;
      }
      results->reserve(N);
    
      for (Attribute integer_attr : array_attr.getValue()) {
        IntegerAttr value = mlir::dyn_cast<IntegerAttr>(integer_attr);
        if (!value) {
          return func->emitError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

        llvm::SetVector<Value> operands;
        getUsedValuesDefinedAbove(island_op.getBody(), operands);
    
        SmallVector<Type, 16> func_operand_types;
        func_operand_types.reserve(operands.size());
        for (Value operand : operands)
          func_operand_types.push_back(operand.getType());
    
        // Function results are the yield operands
        SmallVector<Type, 16> func_result_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top