Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for output_types (0.29 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

        def "detects missing dependency between two tasks and fails (#description)"() {
            buildFile """
                task producer {
                    def outputFile = file("${producedLocation}")
                    outputs.${outputType}(${producerOutput == null ? 'outputFile' : "'${producerOutput}'"})
                    doLast {
                        outputFile.parentFile.mkdirs()
                        outputFile.text = "produced"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

        }
    
        private String findLineThatContains(String text, LogContent content, String outputType) {
            Optional<String> foundLine = content.getLines().stream()
                .filter(line -> line.contains(text))
                .findFirst();
            return foundLine.orElseGet(() -> {
                failOnMissingOutput("Did not find expected text in " + outputType, "Build output", text, text);
                // never returned
                return "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		return resultError(issues.String(), apiservercel.ErrorTypeInvalid)
    	}
    	// type checker does not require the program, however the type must still be set.
    	return plugincel.CompilationResult{
    		OutputType: ast.OutputType(),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateOptimizeFunctionalOpsPass();
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateModifyIONodesPass(
        mlir::Type input_type, mlir::Type output_type);
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateModifyIONodesPass();
    
    // Creates an instance of the TensorFlow Lite dialect PostQuantizeRemoveQDQ
    // pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util.cc

        int missing_ctx_input_prefix,
        const xla::HloInputOutputAliasConfig& input_output_alias,
        absl::Span<const int> input_mapping,
        const std::map<int, const Tensor*>& resource_vars_snapshots,
        DataType output_dtype, const TensorShape& output_shape,
        Allocator* output_allocator, bool allocate_xla_tensors, se::Stream* stream,
        bool use_multiple_streams, std::shared_ptr<se::Event> definition_event) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_util.cc

        Node* placeholder_node;
        if (iter == placeholders.end()) {
          NodeDefBuilder placeholder_builder(new_name, "Placeholder");
          placeholder_builder.Attr("dtype", src->output_type(src_output));
          string outside_compilation_attr;
          TF_RETURN_IF_ERROR(GetNodeAttr(dst->attrs(),
                                         outside_compilation_attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      out_data_type: TensorType;
    }
    
    table DequantizeOptions {
    }
    
    table MaximumMinimumOptions {
    }
    
    table TileOptions {
    }
    
    table ArgMaxOptions {
      output_type : TensorType;
    }
    
    table ArgMinOptions {
      output_type : TensorType;
    }
    
    table GreaterOptions {
    }
    
    table GreaterEqualOptions {
    }
    
    table LessOptions {
    }
    
    table LessEqualOptions {
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  8. pkg/dns/proto/nds.pb.go

    	1, // 1: istio.networking.nds.v1.NameTable.TableEntry.value:type_name -> istio.networking.nds.v1.NameTable.NameInfo
    	2, // [2:2] is the sub-list for method output_type
    	2, // [2:2] is the sub-list for method input_type
    	2, // [2:2] is the sub-list for extension type_name
    	2, // [2:2] is the sub-list for extension extendee
    	0, // [0:2] is the sub-list for field type_name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function.cc

    #include "tensorflow/core/util/debug_data_dumper.h"
    
    using tensorflow::errors::InvalidArgument;
    
    namespace tensorflow {
    namespace {
    
    Status ValidateNonRefOutput(const Node* node, int idx) {
      const DataType& dt = node->output_type(idx);
      return IsRefType(dt)
                 ? InvalidArgument("Output ", idx, " of node '", node->name(),
                                   "' has a reference type ", DataTypeString(dt))
                 : absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      out_data_type: TensorType;
    }
    
    table DequantizeOptions {
    }
    
    table MaximumMinimumOptions {
    }
    
    table TileOptions {
    }
    
    table ArgMaxOptions {
      output_type : TensorType;
    }
    
    table ArgMinOptions {
      output_type : TensorType;
    }
    
    table GreaterOptions {
    }
    
    table GreaterEqualOptions {
    }
    
    table LessOptions {
    }
    
    table LessEqualOptions {
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top