Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 455 for Outputs (0.12 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

            }
            1 * delegate.execute(work, context) >> delegateResult
            0 * _
    
            !outputs.file.exists()
            outputs.dir.isDirectory()
            outputs.dir.list() as List == []
        }
    
        def "cleanup for exclusive output works with missing files"() {
            def outputs = new WorkOutputs()
            outputs.dir.parentFile.mkdirs()
            outputs.file.parentFile.mkdirs()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

        private final String[] inputs;
    
        private final String[] outputs;
    
        private String[] newInputs;
    
        private String[] newOutputs;
    
        public SynonymItem(final long id, final String[] inputs, final String[] outputs) {
            this.id = id;
            this.inputs = inputs;
            this.outputs = outputs;
    
            if (id == 0) {
                // create
                newInputs = inputs;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuterIntegrationTest.groovy

            }
    
            and:
            outputs.stdOut.contains("BEFORE OUT")
            stripped(outputs.stdOut).contains(result1.output)
            stripped(outputs.stdOut).contains(result2.output)
            outputs.stdOut.contains("AFTER OUT")
    
            and:
            outputs.stdErr.contains("BEFORE ERR")
            stripped(outputs.stdOut).contains(result1.error)
            stripped(outputs.stdOut).contains(result2.error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedPathSensitivityIntegrationTest.groovy

                task producer {
                    outputs.cacheIf { true }
                    outputs.file("build/outputs/producer.txt")
                    doLast {
                        file("build/outputs/producer.txt").text = "alma"
                    }
                }
    
                task consumer {
                    dependsOn producer
                    outputs.cacheIf { true }
                    inputs.file("build/outputs/producer.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyIncrementalCompilationIntegrationTest.groovy

    class A2{}
    """
            file('src/main/groovy/org/gradle/B.groovy') << 'package org.gradle; class B{}'
            outputs.snapshot { run "compileGroovy" }
    
            when:
            a.text = 'package org.gradle; class A1 {}'
            run "compileGroovy"
    
            then:
            outputs.recompiledClasses('A1')
            outputs.deletedClasses('A2')
        }
    
        def 'only recompile removed packages'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/c/eager/unified_api_testutil.cc

                    absl::Span<AbstractTensorHandle*> outputs, bool use_function) {
      if (use_function) {
        const char* fn_name = "test_fn";
        core::RefCountPtr<AbstractFunction> scoped_func;
        // Returning null tensors from a tf.function is not supported, so we keep
        // track of indices in the model's outputs are nullptr in this set.
        // The FunctionDef only outputs the non-null tensors. We later pad the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/cc/client/client_session_test.cc

      std::vector<Tensor> outputs;
    
      TF_EXPECT_OK(session.Run({{a, {1, 1}}}, {c}, &outputs));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({3, 3}, {2}));
    
      auto d = Add(root, c, {39, 39});
      outputs.clear();
      TF_EXPECT_OK(session.Run({{a, {-10, 1}}}, {d}, &outputs));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({31, 42}, {2}));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. tensorflow/cc/ops/while_loop.cc

    OutputTensor ToOutputTensor(const Output& output) {
      return OutputTensor(output.node(), output.index());
    }
    
    // Utility function for converting to internal C++ datatypes.
    std::vector<OutputTensor> ToOutputTensors(const std::vector<Output>& outputs) {
      std::vector<OutputTensor> result(outputs.size());
      for (int i = 0; i < outputs.size(); ++i) {
        result[i] = ToOutputTensor(outputs[i]);
      }
      return result;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

                #import "${otherHeaderFile.name}"
    """
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            otherHeaderFile << """
                // Some extra content
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped compileTask
    
            and:
            outputs.recompiledFile sourceFile
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top