Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,282 for STDOUT (0.14 sec)

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

    ! stdout RUN
    stdout '^ok.*\[no tests to run\]'
    
    go test -v -skip T skip_test.go
    ! stdout RUN
    
    go test -v -skip 1 skip_test.go
    ! stdout Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    
    go test -v -skip 2/3 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*ExampleTest1
    ! stdout Test2/3
    
    go test -v -skip 2/4 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 17:40:22 UTC 2023
    - 755 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/reuse_git.txt

    ! stderr 'git( .*)* fetch'
    stdout '"Reuse": true'
    stdout '"Version": "v0.0.0-20170922010558-fc3a09f3dc5c"'
    stdout '"VCS": "git"'
    stdout '"URL": ".*/git/hello"'
    ! stdout '"TagPrefix"'
    stdout '"TagSum": "t1:47DEQpj8HBSa[+]/TImW[+]5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "HEAD"'
    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    ! stdout '"Dir"'
    ! stdout '"Info"'
    ! stdout '"GoMod"'
    ! stdout '"Zip"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_std.txt

    go list cmd/...
    stdout ^cmd/compile
    ! stdout ^cmd/vendor/golang\.org/x/arch/x86/x86asm
    
    # GOROOT/src/... should list the packages in std as if it were a module
    # dependency: omitting vendored dependencies and stopping at the 'cmd' module
    # boundary.
    
    go list $GOROOT/src/...
    stdout ^bytes$
    ! stdout ^builtin$
    ! stdout ^cmd/
    ! stdout ^vendor/
    ! stdout ^golang\.org/x/
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiReceivingStandardStreamsCrossVersionSpec.groovy

            stdout.toString().contains('this is stdout')
            stdout.toString().contains('A warning using SLF4j')
            stdout.toString().contains('A warning using JCL')
            stdout.toString().contains('A warning using Log4j')
            stdout.toString().contains('A warning using JUL')
            if (targetVersion.baseVersion >= GradleVersion.version('4.7')) {
                // Changed handling of error log messages
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_auto.txt

    go list -f {{.Dir}} -tags tools -e all
    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$GOPATH'[/\\]pkg[/\\]mod[/\\]example.com[/\\]printversion@v1.0.0$'
    stdout '^'$WORK'[/\\]auto[/\\]replacement-version$'
    
    go list -m all
    stdout '^example.com/auto$'
    stdout 'example.com/printversion v1.0.0'
    stdout 'example.com/version v1.0.0'
    
    go list -m -f '{{.Dir}}' all
    stdout '^'$WORK'[/\\]auto$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ConsoleConfigureAction.java

            if (consoleMetaData.isStdOut() && consoleMetaData.isStdErr()) {
                // Redirect stderr to stdout when both stdout and stderr are attached to a console. Assume that they are attached to the same console
                // This avoids interleaving problems when stdout and stderr end up at the same location
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProviderTest.groovy

            1 * provider1.writeTestOutput(12, 11, TestOutputEvent.Destination.StdOut, writer)
            1 * provider1.writeNonTestOutput(12, TestOutputEvent.Destination.StdOut, writer)
    
            when:
            provider.hasOutput(2, TestOutputEvent.Destination.StdOut)
            provider.writeAllOutput(2, TestOutputEvent.Destination.StdOut, writer)
    
            then:
            1 * provider2.hasOutput(12, TestOutputEvent.Destination.StdOut)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/querytest.txt

    cp stdout status
    git commit -a -m 'before v0.0.1'
    
    echo 'at v0.0.1'
    cp stdout status
    git commit -a -m 'at v0.0.1'
    git tag 'v0.0.1'
    
    echo 'before v0.0.2'
    cp stdout status
    git commit -a -m 'before v0.0.2'
    
    echo 'at v0.0.2'
    cp stdout status
    git commit -a -m 'at v0.0.2'
    git tag 'v0.0.2'
    
    echo 'before v0.0.3'
    cp stdout status
    git commit -a -m 'before v0.0.3'
    
    echo 'at v0.0.3'
    cp stdout status
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/doc.txt

    # go help doc
    go help doc
    stdout 'go doc'
    stdout 'go doc <pkg>'
    stdout 'go doc <sym>\[\.<methodOrField>\]'
    stdout 'go doc \[<pkg>\.\]<sym>\[\.<methodOrField>\]'
    stdout 'go doc \[<pkg>\.\]\[<sym>\.\]<methodOrField>'
    stdout 'go doc <pkg> <sym>\[\.<methodOrField>\]'
    
    # go doc <pkg>
    go doc p/v2
    stdout .
    
    # go doc <pkg> <sym>
    go doc p/v2 Symbol
    stdout .
    
    # go doc <pkg> <sym> <method>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 18 17:57:19 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStoreSpec.groovy

            writer.onOutput(1, output(StdOut, "[out-5]"))
            writer.onOutput(1, 2, output(StdOut, "[out-6]"))
            writer.onOutput(2, output(StdOut, "[out-6]"))
            writer.close()
            def reader = output.reader()
    
            then:
            collectOutput(reader, 1, StdOut) == "[out-1][out-5]"
            collectOutput(reader, 1, StdErr) == "[out-3][out-4]"
            collectOutput(reader, 2, StdOut) == "[out-6]"
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top