Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,961 for output0 (0.16 sec)

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

            getInputProperties() >> ImmutableSortedMap.of()
            getInputFileProperties() >> ImmutableSortedMap.of()
        }
    
        def outputFile = file("output.txt").text = "output"
        def outputFilesProducedByWork = snapshotsOf(output: outputFile)
    
        def step = new StoreExecutionStateStep<IncrementalCachingContext, AfterExecutionResult>(delegate)
        def delegateResult = Mock(AfterExecutionResult)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalTask/groovy/build.gradle

    }
    // end::removed-output[]
    
    // tag::reverse[]
    tasks.register('incrementalReverse', IncrementalReverseTask) {
        inputDir = file('inputs')
        outputDir = layout.buildDirectory.dir("outputs")
        inputProperty = project.properties['taskInputProperty'] ?: 'original'
    }
    // end::reverse[]
    
    incrementalReverse.mustRunAfter(originalInputs, updateInputs, removeInput, removeOutput)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/kotlin/build.gradle.kts

        override
        fun transform(outputs: TransformOutputs) {
            val primaryInputFile = primaryInput.get().asFile
            if (parameters.externalClasspath.contains(primaryInputFile)) {       // <6>
                outputs.file(primaryInput)
            } else {
                val baseName = primaryInputFile.name.substring(0, primaryInputFile.name.length - 4)
                relocateJar(outputs.file("$baseName-relocated.jar"))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/signature_constants.h

    static constexpr char kPredictInputs[] = "inputs";
    
    /// Predict method name used in a SignatureDef.
    static constexpr char kPredictMethodName[] = "tensorflow/serving/predict";
    
    /// Predict outputs.
    static constexpr char kPredictOutputs[] = "outputs";
    
    ////////////////////////////////////////////////////////////////////////////////
    /// Regression API constants.
    
    /// Regression inputs.
    static constexpr char kRegressInputs[] = "inputs";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/examples/mnist/ops_defs.py

        assert FLAGS.output.endswith('.mlir')
        generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_',)
    
      dirname = os.path.dirname(FLAGS.output)
      if not os.path.exists(dirname):
        os.makedirs(dirname)
      with open(FLAGS.output, 'w') as f:
        f.write(generated_code)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 20:23:51 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIsolationIntegrationTest.groovy

                    }
    
                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".txt")
                        def counter = parameters.counter
                        println "Transforming \${input.name} to \${output.name}"
                        output.withWriter { out ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

    import java.io.File;
    import java.util.Map;
    
    /**
     * A collection of all output directories (compiled classes, processed resources, etc.) - notice that {@link SourceSetOutput} extends {@link FileCollection}.
     * <p>
     * Provides output information of the source set. Allows configuring the default output dirs and specify additional output dirs.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LocalStateFixture.groovy

            """
            if (useRuntimeApi) {
                """
                    task customTask {
                        def localStateFile = $localStateFile
                        outputs.cacheIf { true }
                        outputs.dir("build")
                        localState.register(localStateFile)
                        doLast { $action }
                    }
                """
            } else {
                """
                    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 08:00:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/VerificationException.java

     *
     * A task can depend upon another task's outcome (PASS vs. FAIL), outputs (the files they produce) or both. A verification
     * failure represents the case where a task has a failed outcome, but has still produced valid output files for consumption.
     * Tasks that only depend on the other task's outputs are allowed to execute. Tasks that depend on both the outcome and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 18:24:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/c/eager/gradient_checker.cc

      int num_dims_out = TF_NumDims(model_out_tensor);
      TF_DeleteTensor(model_out_tensor);
    
      // If the output is a scalar, then return the scalar output
      if (num_dims_out == 0) {
        outputs[0] = model_out.release();
        return absl::OkStatus();
      }
    
      // Else, reduce sum the output to get a scalar
    
      // Will sum all dimensions, so get a Tensor containing [0,...,num_dims_out-1].
      AbstractTensorHandlePtr sum_dims;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top