Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,610 for output1 (0.46 sec)

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

                    @InputFiles def inputFiles = project.layout.files()
    
                    @OutputDirectory File outputs1
                    @OutputDirectory File outputs2
    
                    @TaskAction void action() {
                        new File(outputs1, "output1.txt").text = "output1"
                        new File(outputs2, "output2.txt").text = "output2"
                    }
                }
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

                    @Override
                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        def output1 = outputs.file(input.name + ".1." + target)
                        def output2 = outputs.file(input.name + ".2." + target)
                        if (showOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

            }
    
            void createContents() {
                file.text = "output file"
                dir.file("some/dir/output1.txt") << "output1"
                dir.file("some/dir/output2.txt") << "output2"
                dir.file("some/output3.txt") << "output3"
                dir.file("some/another/output4.txt") << "output4"
                dir.createDir("some/lonelyDir")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

        }
    
        private static String[] customTaskWithOutputs(List<String> outputs) {
            (["customTask", "-PnumOutputs=${outputs.size()}"] + outputs.withIndex().collect { value, idx -> "-Poutput${idx}" + (value ? "=${value}" : '') }) as String[]
        }
    
        def "output files moved from one location to another marks task up-to-date"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

    // WholeModel-DAG: "tf.DumpTensor"(%[[output1]]) <{enabled = true, file_name = "unquantized_tensor_data.pb", func_name = "conv", log_dir_path = "/tmp/dumps/composite_conv2d_with_bias_and_relu6_fn_1", node_name = "Conv2D_1"}> : (tensor<*xf32>) -> ()
    // WholeModel-DAG: return %[[output0]], %[[output1]]
    
    // IntPerLayer-LABEL: func @conv
    // IntPerLayer-DAG: %[[w:.*]] = "tf.Const"() <{value = dense<{{\[\[\[\[}}1.600000e-01, 1.000000e-01
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

            output.contains 'Output: nested.outputFiles$2 [output-nested-2.txt]'
            output.contains 'Output: outputDirectories$1 [outputs1]'
            output.contains 'Output: outputDirectories$2 [outputs2]'
            output.contains "Output: outputDirectory [outputs]"
            output.contains "Output: outputFile [output.txt]"
            output.contains 'Output: outputFiles$1 [output1.txt]'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

      // all the outputs of the main function are actually the final outputs.
      // main_func:
      //  %output1 = call @subgraph_1...
      //   ...
      //  %output2 = call @subgraph_m...
      //   ...
      //  %outputn = call @subgraph_k...
      //  return %output1, output2, ..., outputn.
      fn.walk([&](func::ReturnOp return_op) {
        for (auto output : return_op.getOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_unified_experimental_test.cc

       *
       *   A =[[0, 1],[1, 0]]
       *   B =[[1, 0],[0, 1]]
       *
       *   output1, output2, output3 = two_adds_and_mm(A, B)
       *
       * We expect outputs:
       *
       *   output1 = [[1, 1],[1, 1]]
       *   output2 = [[2, 0],[0, 2]]
       *   output3 = [[2, 2],[2, 2]]
       *
       */
    
      // Build eager context.
      TFE_ContextOptions* opts = TFE_NewContextOptions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      func.func @serving_default(%arg0: tensor<1024x1024xf32> {tf_saved_model.index_path = ["input_tensor"]}) -> (tensor<1024x3xf32> {tf_saved_model.index_path = ["output1"]}, tensor<1024x3xf32> {tf_saved_model.index_path = ["output2"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input_tensor:0", outputs = "PartitionedCall:0"}, tf_saved_model.exported_names = ["serving_default"]} {
        %0 = stablehlo.constant dense<1.000000e+03> : tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                file("build.gradle") << """
                    task foo {
                        inputs.dir('src').ignoreEmptyDirectories(false).withPropertyName('src')
                        outputs.file('output.txt')
                        doLast {
                            file('output.txt') << 'do stuff'
                        }
                    }
                """
                dir("src") {
                    file("A.txt") << "fooA"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top