Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,961 for output0 (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistry.java

                    // See https://github.com/gradle/gradle/issues/18460.
                    LOGGER.debug("More outputs are being registered even though the build output cleanup registry has already been finalized. New outputs: {}", files);
                } else {
                    this.outputs.add(fileCollectionFactory.resolving(files));
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/cc/client/client_session.h

      /// `Tensor` objects in `outputs`. The number and order of `outputs` will
      /// match `fetch_outputs`.
      Status Run(const std::vector<Output>& fetch_outputs,
                 std::vector<Tensor>* outputs) const;
    
      /// Same as above, but use the mapping in `inputs` as feeds.
      Status Run(const FeedType& inputs, const std::vector<Output>& fetch_outputs,
                 std::vector<Tensor>* outputs) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

            outputs.add(output);
        }
    
        /**
         * Returns concatenated non-empty output entries.
         */
        public String getOutput() {
            List<String> nonEmptyOutputs = filter(outputs, string -> !string.equals(""));
            return join("\n", nonEmptyOutputs);
        }
    
        /**
         * Returns all output entries.
         */
        public List<String> getOutputs() {
            return outputs;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/c/ops_test.cc

      TF_OpDefinitionBuilderAddInput(builder, "input1: uint8");
      TF_OpDefinitionBuilderAddInput(builder, "input2: uint32");
      TF_OpDefinitionBuilderAddOutput(builder, "output1: uint8");
      TF_OpDefinitionBuilderAddOutput(builder, "output2: uint8");
      TF_OpDefinitionBuilderSetShapeInferenceFunction(
          builder, &TF_ShapeInferenceContextSetUnknownShape);
      TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing \${input.name} using \${parameters.someFiles*.name}"
                        def output = outputs.file(input.name + ".green")
                        def paramContent = parameters.someFiles.collect { it.file ? it.text : it.list().length }.join("")
                        output.text = input.text + paramContent + ".green"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output live0 = ops::Add(root.WithOpName("live0"), m0.output, m1.output);
      Output live1 = ops::Add(root.WithOpName("live1"), m2.output, m3.output);
    
      Output halfdead0 =
          ops::Add(root.WithOpName("halfdead0"), m0.output, m2.output);
      Output halfdead1 =
          ops::Add(root.WithOpName("halfdead1"), m1.output, m3.output);
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

    public class OutputSnapshotUtil {
    
        /**
         * Finds outputs that are still present since the last execution when overlapping outputs are present.
         *
         * Note: when there are no overlapping outputs, all outputs currently existing in the output locations
         * are considered outputs of the work.
         *
         * If a property did not exist after the previous execution then all the outputs for it will be ignored.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    @Override
                    void transform(TransformOutputs outputs) {
                        // Simulate transform leaving file open
                        def output = outputs.file("output.txt")
                        output.createNewFile()
                        TestState.fileKeptOpen = output.newOutputStream()
                        TestState.fileKeptOpen << "output"
                        TestState.fileKeptOpen.flush()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            withBuildCache().run "compileJava", "--info"
    
            then:
            noneSkipped()
            output.contains("Build cache key for task ':compileJava' is ")
            !output.contains("Appending implementation to build cache key:")
            !output.contains("Appending input value fingerprint for")
            !output.contains("Appending input file fingerprints for 'classpath'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. 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)
Back to top