Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for output24 (0.14 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

        }
    
        /**
         * The way the outputs have been produced.
         */
        enum ExecutionOutcome {
            /**
             * The outputs haven't been changed, because the work is already up-to-date
             * (i.e. its inputs and outputs match that of the previous execution in the
             * same workspace).
             */
            UP_TO_DATE,
    
            /**
             * The outputs of the work have been loaded from the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. releasenotes/notes/dedupe-mismatch-output.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 14:28:49 UTC 2023
    - 247 bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

    Paul Merlin <******@****.***> 1690890212 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/UpToDateResult.java

         */
        public ImmutableList<String> getExecutionReasons() {
            return executionReasons;
        }
    
        /**
         * If a previously produced output was reused in some way, the reused output's origin metadata is returned.
         */
        public Optional<OriginMetadata> getReusedOutputOriginMetadata() {
            return Optional.ofNullable(reusedOutputOriginMetadata);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-input-comparison.png

    overlapping-outputs-input-comparison.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/RenderableOutputEvent.java

        }
    
        /**
         * Renders this event to the given output. The output's style will be set to {@link
         * StyledTextOutput.Style#Normal}. The style will be reset after the rendering is complete, so
         * there is no need for this method to clean up the style.
         *
         * @param output The output to render to.
         */
        public abstract void render(StyledTextOutput output);
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

    };
    
    // Idenitfy tf_device.cluster_func input-output alias pairs.
    // This is currently conservative, primarily handling the following base case:
    // ```
    // %value = tf.ReadVariableOp(%resource_var)
    // %output:N = tf_device.cluster_func(..., /*input index = a*/ %value, ...)
    // tf.AssignVariableOp(%resource_var, %output#b) // write output #b to resource
    // ```
    // where `%value` and `%output#b` have only one use. (a, b) would be added as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert-tf-quant-types.mlir

      // CHECK-DAG: %[[OUTPUT_1:.*]] = "tf.Cast"(%[[OUTPUT_QINT]]) <{Truncate = false}> : (tensor<1x2x2x1x!tf_type.qint32>) -> tensor<1x2x2x1xi32>
      %output = "tf.Cast"(%q_output) {Truncate = false} : (tensor<1x2x2x1x!tf_type.qint32>) -> tensor<1x2x2x1xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.9K bytes
    - Viewed (0)
Back to top