Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 844 for inputs_ (0.26 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/java-version-tracking/kotlin/build.gradle.kts

    plugins {
        id("java-library")
    }
    
    // tag::trackVendor[]
    tasks.withType<AbstractCompile>().configureEach {
        inputs.property("java.vendor") {
            System.getProperty("java.vendor")
        }
    }
    
    tasks.withType<Test>().configureEach {
        inputs.property("java.vendor") {
            System.getProperty("java.vendor")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 344 bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            def actualDir = file("actualDir").createDir()
            file("symlink1").createLink(actualDir)
            file("symlink2").createLink(actualDir)
    
            buildFile << """
                task myTask {
                    def outputFile = file("build/output.txt")
                    inputs.dir("symlink1")
                    inputs.dir("symlink2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

        public interface Details {
        }
    
        /**
         * The hashes of the inputs.
         * <p>
         * If the inputs were not snapshotted, all fields are null.
         */
        public interface Result {
    
            /**
             * The overall hash value for the inputs.
             * <p>
             * Null if the overall key was not calculated because the inputs were invalid.
             */
            @Nullable
            byte[] getHashBytes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.h

    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    
    // This analyzes a TensorFlow graph to identify nodes which may have partially
    // dead inputs (i.e. these nodes may have some dead inputs and some alive
    // inputs).
    //
    // For example, the ADD node in the following graph
    //
    //      V0  PRED0    V1  PRED1
    //       |    |       |    |
    //       v    v       v    v
    //       SWITCH       SWITCH
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/GradleBuildContinuousIntegrationTest.groovy

        def setup() {
            file("gradle-build/inputs/input.txt").text = "first"
            file("gradle-build/settings.gradle") << """
                rootProject.name = "gradle-build"
            """
            file("gradle-build/build.gradle") << """
                task someTask {
                    def inputFile = file("inputs/input.txt")
                    def outputFile = file("build/output.txt")
                    inputs.file inputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/AbstractMethodRuleAction.java

            ModelView<? extends T> subjectView = modelNode.asMutable(getSubject().getType(), descriptor);
            try {
                execute(invoker, subjectView.getInstance(), inputs);
            } finally {
                subjectView.close();
            }
        }
    
        protected abstract void execute(ModelRuleInvoker<?> invoker, T subject, List<ModelView<?>> inputs);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/c/eager/gradient_checker.cc

                             absl::Span<AbstractTensorHandle* const> inputs,
                             int input_index, bool use_function,
                             AbstractTensorHandle** numerical_grad) {
      vector<AbstractTensorHandle*> theta_inputs(inputs.size());
      for (int i{}; i < inputs.size(); ++i) {
        theta_inputs[i] = inputs[i];
      }
    
      AbstractTensorHandle* theta =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/saved_model.pbtxt

        key: "predict0"
        value: {
          inputs: {
            key: "inputs"
            value: {
              name: "input0"
              dtype: DT_STRING
            }
          }
          outputs: {
            key: "outputs"
            value: {
              name: "batch_func:0"
            }
          }
        }
      }
      signature_def: {
        key: "predict1"
        value: {
          inputs: {
            key: "tf_example_input"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 09 16:20:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/disable_flex_enable_builtin.mlir

    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    inputs: [ 0 ],
    // CHECK-NEXT:    outputs: [ 4 ],
    // CHECK-NEXT:    operators: [ {
    // CHECK-NEXT:      inputs: [ 0, 1 ],
    // CHECK-NEXT:      outputs: [ 2 ],
    // CHECK-NEXT:      builtin_options_type: MulOptions,
    // CHECK-NEXT:      builtin_options: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      }
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      inputs: [ 2, 1 ],
    // CHECK-NEXT:      outputs: [ 3 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables_test_pass.h

        return OkStatus();
      }
    
      Status Run(const std::vector<std::pair<std::string, Tensor>>& inputs,
                 const std::vector<std::string>& output_names,
                 const std::vector<std::string>& target_nodes,
                 std::vector<Tensor>* outputs) override {
        tensorflow::RunMetadata run_metadata;
        return Run(tensorflow::RunOptions(), inputs, output_names, target_nodes,
                   outputs, &run_metadata);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 15:49:06 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top