Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 826 for Unreserve (0.21 sec)

  1. src/reflect/float32reg_ppc64x.s

    	FMOVD	reg+0(FP), F1
    	// Normally a float64->float32 conversion
    	// would need rounding, but that is not needed
    	// here since the uint64 was originally converted
    	// from float32, and should be avoided to
    	// preserve SNaN values.
    	FMOVS	F1, ret+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 838 bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_launch_util_test.cc

                                                  device_->parsed_name().id));
    
        std::vector<xla::PjRtBuffer*> executable_args;
        executable_args.reserve(result->input_mapping.size());
        absl::flat_hash_set<int> non_donatable_input_indices;
        TF_EXPECT_OK(PreparePjRtExecutableArguments(
            /*num_missing_prefix_ctx_inputs=*/0, result->input_mapping, inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

      preserving:
        type: object
        x-kubernetes-preserve-unknown-fields: true
        properties:
          preserving:
            type: object
            x-kubernetes-preserve-unknown-fields: true
          pruning:
            type: object
      pruning:
        type: object
        properties:
          preserving:
            type: object
            x-kubernetes-preserve-unknown-fields: true
          pruning:
            type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

      llvm::SmallVector<mlir::APInt> ret;
      size_t read_size = sizeof(T);
      int bytes_len = bytes.size();
      assert(bytes_len % read_size == 0);
    
      int elem_count = bytes_len / read_size;
      ret.reserve(elem_count);
    
      const char* data_ptr = reinterpret_cast<const char*>(bytes.data());
      for (int i = 0; i < elem_count; i++) {
        T val = llvm::support::endian::readNext<T, llvm::endianness::native,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftStaleCompileOutputLib.groovy

        final greeter = new SwiftGreeter()
        final sum = new SwiftSum()
        final multiply = new SwiftMultiply()
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
            delete(multiply)
        ]
        final String moduleName = "Hello"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

                                            OpBuilder &rewriter) {
      auto i64_type = rewriter.getIntegerType(64);
      if (types.size() > 1) {
        llvm::SmallVector<mlir::Attribute> v;
        v.reserve(types.size());
        for (const mlir::Type &t : types) {
          if (mlir::isa<mhlo::TokenType>(t)) continue;
          auto layout = GetTPUInfeedLayout({t}, rewriter);
          if (failed(layout)) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

    std::optional<ConstBytesAttr> CustomOptions(MLIRContext* context,
                                                mlir::Operation* op) {
      if (auto reserve =
              llvm::dyn_cast_or_null<mlir::TF::TensorListReserveOp>(op)) {
        tflite::TensorType tflite_type =
            tflite::ConvertTypeToTensorType(reserve.getElementDtype());
    
        return CreateListReserveOptions(context, tflite_type);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. pkg/registry/certificates/certificates/strategy.go

    	newIndices := findConditionIndices(newCSR, conditionType)
    	if len(oldIndices) != len(newIndices) {
    		// instances were added or removed, we cannot preserve the existing values
    		return false
    	}
    	// preserve the old condition values
    	for i, oldIndex := range oldIndices {
    		newCSR.Status.Conditions[newIndices[i]] = oldCSR.Status.Conditions[oldIndex]
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleCompileOutputLib.groovy

        final greeter = new CppGreeter()
        final sum = new CppSum()
        final multiply = new CppMultiply()
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
            delete(multiply)
        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 994 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// It is optional only if x-kubernetes-preserve-unknown-fields
    	// or x-kubernetes-int-or-string is true.
    	Type     string
    	Title    string
    	Default  JSON
    	Nullable bool
    }
    
    // +k8s:deepcopy-gen=true
    
    // Extensions contains the Kubernetes OpenAPI v3 vendor extensions.
    type Extensions struct {
    	// x-kubernetes-preserve-unknown-fields stops the API server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top