Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,669 for output0 (0.14 sec)

  1. tensorflow/compiler/jit/ops/xla_ops.cc

        // Note: when replication is supported, this op will have N outputs.
        .Output("outputs: T")
        .Attr("T: type")
        .SetShapeFn([](InferenceContext* c) {
          for (int i = 0; i < c->num_outputs(); ++i) {
            c->set_output(i, c->input(0));
          }
          return absl::OkStatus();
        })
        .Doc(
            "Operator that connects the output of an XLA computation to other "
            "consumer graph nodes.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/kotlin/build.gradle.kts

            val output = outputDirectory.resolve(entry.name)
            if (!output.canonicalPath.startsWith(outputDirectoryCanonicalPath)) {
                throw ZipException("Zip entry '${entry.name}' is outside of the output directory")
            }
            if (entry.isDirectory) {
                output.mkdirs()
            } else {
                output.parentFile.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

         */
        DISABLE_CONDITION_SATISFIED,
    
        /**
         * The work has no outputs declared.
         */
        NO_OUTPUTS_DECLARED,
    
        /**
         * Work has declared output that is not cacheable.
         *
         * Reasons for non-cacheable outputs:
         * <ul>
         *     <li>an output contains a file tree,</li>
         *     <li>an output is not tracked.</li>
         * </ul>
         */
        NON_CACHEABLE_OUTPUT,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsRenderer.java

                hiddenNonBuildable = true;
                return;
            }
            StyledTextOutput output = builder.getOutput();
            GraphRenderer renderer = new GraphRenderer(output);
            renderer.visit(output1 -> {
                output1.withStyle(Identifier).text(component.getName());
                output1.withStyle(Description).text(" - Components that depend on " + component.getDisplayName());
            }, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/groovy/build.gradle

            def output = new File(outputDirectory, entry.name)
            if (!output.canonicalPath.startsWith(outputDirectoryCanonicalPath)) {
                throw new ZipException("Zip entry '${entry.name}' is outside of the output directory")
            }
            if (entry.isDirectory) {
                output.mkdirs()
            } else {
                output.parentFile.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        delete(layout.buildDirectory.file("outputs/1.txt"))
    }
    // end::removed-output[]
    
    // tag::reverse[]
    tasks.register<IncrementalReverseTask>("incrementalReverse") {
        inputDir = file("inputs")
        outputDir = layout.buildDirectory.dir("outputs")
        inputProperty = project.findProperty("taskInputProperty") as String? ?: "original"
    }
    // end::reverse[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformOfDirectoriesIntegrationTest.groovy

                    abstract Provider<FileSystemLocation> getInput()
    
                    void transform(TransformOutputs outputs) {
                        def dir = input.get().asFile
                        assert dir.directory
                        println("transforming [\${dir.name}]")
                        outputs.file("\${dir.name}.size").text = 'ok'
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

        @Override
        public void transform(TransformOutputs outputs) {
            // We simulate fan-in behaviour:
            // We expect that a transform before this one outputs three artifacts: 1. analysis metadata, 2. the original file and 3. instrumentation marker file.
            // So if the input is analysis metadata we merge it and output it, otherwise it's original artifact, and we output that.
            File input = getInput().get().getAsFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedNodeFixture.java

    public abstract class GroupedNodeFixture {
    
        private final List<String> outputs = new ArrayList<>(1);
    
        public void addOutput(String transformOutput) {
            outputs.add(transformOutput);
        }
    
        public String getOutput() {
            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

            ExecOutput result = findMSBuild().execWithFailure(args, buildEnvironment(workingDir));
    
            List<ExecutionOutput> outputs = getOutputFiles();
            assert outputs.size() == 1;
            String gradleStdout = fileContents(outputs.get(0).stdout);
            String gradleStderr = fileContents(outputs.get(0).stderr);
            System.out.println(result.getOut());
            System.out.println(gradleStdout);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top