Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,989 for onOutput (0.14 sec)

  1. src/internal/trace/testdata/cmd/gotraceraw/main.go

    func init() {
    	flag.Usage = func() {
    		fmt.Fprintf(flag.CommandLine.Output(), "Usage: %s [mode]\n", os.Args[0])
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "Supported modes:")
    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* text2bytes - converts a text format trace to bytes\n")
    		fmt.Fprintf(flag.CommandLine.Output(), "* bytes2text - converts a byte format trace to text\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r62/CapturingMultipleUserInputCrossVersionSpec.groovy

                runBuildWithStandardInput(connection, 'something one', 'something two')
            }
    
            then:
            output.contains(FOO.prompt)
            output.contains(FOO.answerOutput('something one'))
            output.contains(BAR.prompt)
            output.contains(BAR.answerOutput('something two'))
        }
    
        def "can capture multiple user input if standard input was provided using default values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

            where:
            registerExpression                                                         | _
            "artifacts.implementation(p.flatMap { it.output })"                        | _
            "configurations.outgoing.outgoing.artifact(p.flatMap { it.output })" | _
            "artifacts.parent(p.flatMap { it.output })"                                | _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

        mlir::ModuleOp module_op, llvm::raw_ostream& output) {
      output << "\"";
      std::string serialized_module = SerializeMlirModule(module_op);
      llvm::printEscapedString(serialized_module, output);
      output << "\"";
      return mlir::success();
    }
    
    static mlir::LogicalResult MlirTfToHloTextTranslateFunction(
        mlir::ModuleOp module_op, llvm::raw_ostream& output) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

            transitivePluginFixture.appliedOnce(output)
            assertNotAutoApplied(output)
        }
    
        def "task is up-to-date when using --scan"() {
            when:
            succeeds "cacheableTask"
    
            then:
            transitivePluginFixture.appliedOnce(output)
            assertNotAutoApplied(output)
            executedAndNotSkipped(":cacheableTask")
    
            when:
            succeeds "cacheableTask", "--scan"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

            error(e2).startsWith(error('''
                Did not find expected text in error output.
                Expected: broken
    
                Error output:
                =======
    
                Some error
                '''))
        }
    
        def "log output missing assertions do not ignore content after failure section"() {
            given:
            def output = """
    Some message
    Some error
    
    FAILURE: broken
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_ordinv_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(out, zero) {
    		t.Error("unexpected output for inv(0)")
    	}
    
    	// inv(N) is also 0 mod N.
    	input := make([]byte, 32)
    	N.FillBytes(input)
    	out, err = nistec.P256OrdInverse(input)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(out, zero) {
    		t.Error("unexpected output for inv(N)")
    	}
    	if !bytes.Equal(input, N.Bytes()) {
    		t.Error("input was modified")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/LineBufferingOutputStream.java

         * cannot be reopened.
         */
        @Override
        public void close() throws IOException {
            hasBeenClosed = true;
            flush();
            handler.endOfStream(null);
        }
    
        /**
         * Writes the specified byte to this output stream. The general contract for <code>write</code> is that one byte is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            def outputFile = file("build/output/output.txt")
    
            when:
            withWatchFs().run ":consumer"
            then:
            executedAndNotSkipped(":sourceTask", ":consumer")
            outputFile.assertExists()
    
            when:
            sourceFile.delete()
            waitForChangesToBePickedUp()
            withWatchFs().run ":consumer"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/DefaultTestReport.java

            private final HtmlReportBuilder output;
    
            HtmlReportFileGenerator(String fileUrl, T results, PageRenderer<T> renderer, HtmlReportBuilder output) {
                this.fileUrl = fileUrl;
                this.results = results;
                this.renderer = renderer;
                this.output = output;
            }
    
            @Override
            public BuildOperationDescriptor.Builder description() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:58:15 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top