Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,619 for output0 (0.09 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/optional_input.json

                32,
                16
              ],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            2
          ],
          "operators": [
            {
              "inputs": [
                0,
                1
              ],
              "outputs": [
                2
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      //    operators. We also convert the XlaClusterOutput output nodes of the
      //    function call into the outputs of the XlaLaunch operator.
      static Status BuildXlaLaunchOps(Graph* graph);
    
      struct XlaFunctionInfo {
        int variable_start_index = -1;
        std::string function_name;
      };
    
      // We need to introduce this version to adapt to the output of gpu inference
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

        @get:InputArtifact
        @get:Classpath
        abstract val inputArtifact: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            val jarFile = inputArtifact.get().asFile
            val zipFile = ZipFile(jarFile)
            val outputRoot = outputs.dir("public-api")
            zipFile.stream().forEach { entry ->
                if (entry.shouldInclude()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

                outputFile = "${sourceSets.main.get().output.resourcesDir}/output.js"
                sourceMap = true
            }
        }
        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
            outputs.dir(outputDir)
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Report.java

        /**
         * The type of output the report produces
         */
        enum OutputType {
    
            /**
             * The report outputs a single file.
             * <p>
             * That is, the {@link #getOutputLocation()} points to a single file.
             */
            FILE,
    
            /**
             * The report outputs files into a directory.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

                class MyPlugin : Plugin<Project> {
                    override fun apply(target: Project) {
                        target.tasks.register("myTask") { task ->
                            task.outputs.file("build/output.txt")
                            task.doLast(Action { println("Hello") })
                        }
                    }
                }
            """
    
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                    configurations { create("default") }
                }
                project(":producer") {
                    task producer {
                        ext.output = objects.fileProperty()
                        outputs.file output
                        output.set(file("out"))
                    }
                    task longRunning {
                        dependsOn producer
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             *     <li>{@code NO-SOURCE} - executing the work was no necessary to produce the outputs</li>
             *     <li>{@code UP-TO-DATE} - the outputs have not changed, because the work is already up-to-date</li>
             *     <li>{@code FROM-CACHE} - the outputs have been loaded from the build cache</li>
             * </ul>
             */
            @Nullable
            String getSkipMessage();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. 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)
Back to top