Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 649 for Outputs (0.11 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. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

            outputs.fileProperties*.propertyFiles*.files.flatten() == [file("a")]
            outputs.fileProperties*.outputFile == [file("a")]
            outputs.fileProperties*.outputType == [FILE]
        }
    
        def "can register output dir"() {
            when:
            outputs.dir("a")
            then:
            outputs.files.files == files('a')
            outputs.fileProperties*.propertyName == ['$1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/input_output_names_attr.mlir

    // Tests input and output names from FlatBuffer are added to `tf.entry_function` attribute.
    
    // CHECK-LABEL: @main
    func.func @main(%arg0: tensor<4xi8>, %arg1: tensor<4xi32>) -> (tensor<4xi32>, tensor<4xi8>)
    // CHECK: attributes {tf.entry_function = {inputs = "input0,input1", outputs = "output0,output1"}}
    attributes {tf.entry_function = {inputs = "input0,input1", outputs = "output0,output1"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 726 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/multi_output_op.json

              ],
              "name": "output0",
              "quantization": {
              }
            },
            {
              "shape": [
                128,
                32,
                32,
                3
              ],
              "name": "output1",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            2,
            3
          ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 03 00:08:31 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top