Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,251 for noOutputs (0.29 sec)

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

         */
        boolean isOutputOwnedByBuild(File file);
    
        /**
         * Finalizes the registered build outputs.
         *
         * After this call, it is impossible to register more outputs.
         */
        void resolveOutputs();
    
        /**
         * Gets the set of registered outputs as file collections.
         */
        Set<FileCollection> getRegisteredOutputs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            result.assertTasksNotSkipped(assembleAppTasks)
    
            outputs.deletedClasses("multiply", "sum")
    
            // See https://github.com/gradle/gradle-native/issues/1004
            if (toolchainUnderTest.version.major == 5) {
                outputs.recompiledClasses('renamed-sum')
            } else {
                outputs.recompiledClasses('greeter', 'renamed-sum', 'main')
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

         * as this does not include overlapping outputs not produced by the work.
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork();
    
        /**
         * The origin metadata of the outputs captured.
         */
        OriginMetadata getOriginMetadata();
    
        /**
         * Whether the outputs come from a previous execution.
         */
        boolean isReused();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

    }
    
    // A SavedConcreteFunction whose (inputs + captures) = functiondef inputs,
    // and whose outputs = functiondef outputs should successfully load.
    TEST_F(SavedConcreteFunctionLoadingTest, SuccessfulLoad) {
      // `saved` has 1 input, 2 captures, 3 outputs
      SavedConcreteFunction saved;
      *saved.mutable_canonicalized_input_signature() =
          testing::SingleArgInputSignature();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/math.mlir

      // CHECK-NEXT:     } ],
      // CHECK-NEXT:     inputs: [ 0 ],
      // CHECK-NEXT:     outputs: [ 6 ],
      // CHECK-NEXT:     operators: [ {
      // CHECK-NEXT:       inputs: [ 0, 1 ],
      // CHECK-NEXT:       outputs: [ 2 ]
      // CHECK-NEXT:     }, {
      // CHECK-NEXT:       opcode_index: 1,
      // CHECK-NEXT:       inputs: [ 0, 2 ],
      // CHECK-NEXT:       outputs: [ 3 ],
      // CHECK-NEXT:       builtin_options_type: MulOptions,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/testutil.h

    namespace tensorflow {
    namespace test {
    
    /// Computes the outputs listed in 'tensors', returns the tensors in 'out'.
    void GetTensors(const Scope& scope, OutputList tensors,
                    std::vector<Tensor>* out);
    
    // Computes the outputs listed in 'tensors', returns the tensors in 'out'.
    // assign_vars are extra outputs that should be run
    // e.g. to assign values to variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:47:18 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

            buildFile << """
                apply plugin: "base"
                task customTask {
                    inputs.file "input.txt"
                    outputs.file "build/output" withPropertyName "output"
                    outputs.cacheIf { true }
                    doLast {
                      mkdir('build/output')
                      file('build/output/output.txt').text = file('input.txt').text
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_with_multiple_entry_points.mlir

    // CHECK-NEXT:    inputs: [ 0, 1 ],
    // CHECK-NEXT:    outputs: [ 3 ],
    // CHECK-NEXT:    operators: [ {
    // CHECK-NEXT:      inputs: [ 0, 1 ],
    // CHECK-NEXT:      outputs: [ 2 ],
    // CHECK-NEXT:      builtin_options_type: AddOptions,
    // CHECK-NEXT:      builtin_options: {
    // CHECK-EMPTY:
    // CHECK-NEXT:      }
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      inputs: [ 2, 2 ],
    // CHECK-NEXT:      outputs: [ 3 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

            def clean = rootBuild.task('clean').dependsOn(cleanFoo).dependsOn(cleanBar)
            def generateFoo = foo.task('generateFoo').outputs('build/foo')
            def generateBar = bar.task('generateBar').outputs('build/bar')
            def generate = rootBuild.task('generate').dependsOn(generateBar).dependsOn(generateFoo)
    
            // conflicts with command line order
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

      }
    
      std::vector<Value> inputs;
      std::vector<Value> outputs;
      computeInputsOutputs(ops, &inputs, &outputs);
    
      std::vector<Type> input_types;
      std::vector<Type> output_types;
    
      input_types.reserve(inputs.size());
      for (Value v : inputs) {
        input_types.push_back(v.getType());
      }
      output_types.reserve(outputs.size());
      for (Value v : outputs) {
        output_types.push_back(v.getType());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top