Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,977 for Reserve (0.16 sec)

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

    			if err != nil {
    				return nil, fmt.Errorf("failed to parse percentage %q for %q resource: %w", v, k, err)
    			}
    			reservations[v1.ResourceName(k)] = q
    		default:
    			return nil, fmt.Errorf("cannot reserve %q resource", k)
    		}
    	}
    	return &reservations, nil
    }
    
    func containerDevicesFromResourceDeviceInstances(devs devicemanager.ResourceDeviceInstances) []*podresourcesapi.ContainerDevices {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. docs/fr/docs/fastapi-people.md

    Les données sont calculées chaque mois, vous pouvez lire le <a href="https://github.com/tiangolo/fastapi/blob/master/.github/actions/people/app/main.py" class="external-link" target="_blank">code source ici</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

          auto permuation_tensor_type =
              RankedTensorType::get({input_rank}, rewriter.getIntegerType(32));
          llvm::SmallVector<Attribute, 4> permute;
          permute.reserve(input_rank);
          // First create an identity permutation tensor.
          for (int i = 0; i < input_rank; i++) {
            permute.push_back(rewriter.getI32IntegerAttr(i));
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/mime/multipart/formdata.go

    	// since metadata is always stored in memory, not disk.
    	//
    	// maxMemoryBytes is the maximum bytes we will store in memory, including file content,
    	// non-file part values, metadata, and map entry overhead.
    	//
    	// We reserve an additional 10 MB in maxMemoryBytes for non-file data.
    	//
    	// The relationship between these parameters, as well as the overly-large and
    	// unconfigurable 10 MB added on to maxMemory, is unfortunate but difficult to change
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top