Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,484 for output1 (0.49 sec)

  1. src/cmd/go/testdata/script/test_chatty_parallel_success.txt

    # Assert test2json has properly attributed output.
    go test -json -parallel 3 chatty_parallel_test.go -v
    stdout -count=2 '"Test":"TestChattyParallel/sub-0","Output":"    chatty_parallel_test.go:32: this is sub-0\\n"'
    stdout -count=2 '"Test":"TestChattyParallel/sub-1","Output":"    chatty_parallel_test.go:32: this is sub-1\\n"'
    stdout -count=2 '"Test":"TestChattyParallel/sub-2","Output":"    chatty_parallel_test.go:32: this is sub-2\\n"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultOutputSnapshotterTest.groovy

        def "snapshots outputs"() {
            def outputSnapshot = Mock(FileSystemSnapshot)
    
            when:
            def result = outputSnapshotter.snapshotOutputs(work, workspace)
    
            then:
            1 * work.visitOutputs(workspace, _ as UnitOfWork.OutputVisitor) >> { File workspace, UnitOfWork.OutputVisitor outputVisitor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.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 use it and create instrumented artifact, 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
    - 4.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

                createNewFile(outputs.file(AGENT_INSTRUMENTATION_MARKER.getFileName()));
                doTransform(artifactToTransform, outputs, originalName -> INSTRUMENTED_ENTRY_PREFIX + originalName);
            } else {
                createNewFile(outputs.file(LEGACY_INSTRUMENTATION_MARKER.getFileName()));
                doTransform(artifactToTransform, outputs, originalName -> originalName);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the task executed, but then decided it was UP_TO_DATE.
             * That is, it was not UP_TO_DATE due to Gradle's core input/output incremental build mechanism.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/rich/RichConsoleBasicGroupedTaskLoggingFunctionalTest.groovy

                } }
            """
    
            when:
            fails('failing')
    
            then:
            result.groupedOutput.task(':failing').output == 'hello'
            result.formattedOutput.contains(failingTask.output)
        }
    
        def "group header is printed red if task failed and there is no output"() {
            given:
            buildFile << """
                task failing { doFirst {
                    throw new RuntimeException('Failure...')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildAggregationIntegrationTest.groovy

                    @OutputFile
                    File output
    
                    @TaskAction
                    void upper() {
                      output.text = input.text.toUpperCase()
                    }
                }
    
                task upper(type: UpperFile) {
                    input = file("input")
                    output = file("output")
                }
    
                task build(type: GradleBuild) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. .github/workflows/mint.yml

              TAG="quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}" make docker
    
          - name: multipart uploads test
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/multipart/migrate.sh "${{ steps.vars.outputs.sha_short }}"
    
          - name: compress and encrypt
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "compress-encrypt" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

        const std::vector<std::string>& output_names,
        const std::vector<std::string>& target_nodes,
        std::vector<Tensor>* outputs) {
      tensorflow::RunMetadata run_metadata;
      return Run(tensorflow::RunOptions(), inputs, output_names, target_nodes,
                 outputs, &run_metadata);
    }
    
    Status FakeSession::Run(
        const tensorflow::RunOptions& run_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/while_gradients.cc

        DCHECK_EQ(inputs.size(), 1);
        outputs->emplace_back(ops::Subtract(scope, inputs[0], 1));
        return scope.status();
      };
    
      string frame_name = BackPropFrameName(while_ctx->frame_name());
      std::vector<Output> outputs;
      TF_RETURN_IF_ERROR(BuildWhileLoop(
          scope, {loop_count}, cond_fn, body_fn, frame_name, &outputs,
          /* create_while_ctx */ false, backprop_execution_pred));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top