Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,282 for STDOUT (1.82 sec)

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

    go list -deps net
    stdout '^vendor/golang.org/x/net'
    ! stdout '^golang.org/x/net'
    cp stdout $WORK/net-deps.txt
    
    
    # It should still report the same package dependencies when viewed from
    # within GOROOT/src.
    
    cd $GOROOT/src
    
    go list -deps net
    stdout '^vendor/golang.org/x/net'
    ! stdout '^golang.org/x/net'
    cmp stdout $WORK/net-deps.txt
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 883 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_trimpath.txt

    go build -o $WORK/paths-dbg.exe .
    exec $WORK/paths-dbg.exe $WORK/paths-dbg.exe
    stdout 'binary contains module root: true'
    stdout 'binary contains an empty GOROOT'
    
    # A binary built with -trimpath should not contain the current workspace.
    go build -trimpath -o $WORK/paths-a.exe .
    exec $WORK/paths-a.exe $WORK/paths-a.exe
    stdout 'binary contains module root: false'
    stdout 'binary contains an empty GOROOT'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/run_internal.txt

    env GO111MODULE=off
    
    go list -e -f '{{.Incomplete}}' m/runbad1.go
    stdout true
    ! go run m/runbad1.go
    stderr 'use of internal package m/x/internal not allowed'
    
    go list -e -f '{{.Incomplete}}' m/runbad2.go
    stdout true
    ! go run m/runbad2.go
    stderr 'use of internal package m/x/internal/y not allowed'
    
    go list -e -f '{{.Incomplete}}' m/runok.go
    stdout false
    go run m/runok.go
    
    cd m
    env GO111MODULE=on
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 03 19:05:59 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. fess-crawler-es/src/test/resources/log4j.properties

    log4j.rootLogger=INFO,STDOUT
    log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender
    log4j.appender.STDOUT.ImmediateFlush=true
    log4j.appender.STDOUT.layout=org.apache.log4j.PatternLayout
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Jan 01 13:27:13 UTC 2019
    - 251 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download.txt

    stdout '"Error": ".*this.domain.is.invalid.*"'
    
    # download -json with version should print JSON
    go mod download -json 'rsc.io/quote@<=v1.5.0'
    stdout '^\t"Path": "rsc.io/quote"'
    stdout '^\t"Version": "v1.5.0"'
    stdout '^\t"Info": ".*(\\\\|/)pkg(\\\\|/)mod(\\\\|/)cache(\\\\|/)download(\\\\|/)rsc.io(\\\\|/)quote(\\\\|/)@v(\\\\|/)v1.5.0.info"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  6. src/testing/run_example_wasm.go

    	}
    
    	// Capture stdout to temporary file. We're not using
    	// os.Pipe because it is not supported on js/wasm.
    	stdout := os.Stdout
    	f := createTempFile(eg.Name)
    	os.Stdout = f
    	finished := false
    	start := time.Now()
    
    	// Clean up in a deferred call so we can recover if the example panics.
    	defer func() {
    		timeSpent := time.Since(start)
    
    		// Restore stdout, get output and remove temporary file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

                this.args = args;
                this.code = code;
                this.stdout = stdout;
                this.stderr = stderr;
            }
    
            @Override
            public String toString() {
                return "ExecResult{" +
                    "code=" + code +
                    "\n stdout='" + stdout + '\'' +
                    "\n stderr='" + stderr + '\'' +
                    '}';
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    exec fossil commit -m 'initial commit'
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=fossil\n'
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    # Building with -buildvcs=false suppresses the info.
    go install -buildvcs=false
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/a$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. src/test/resources/log4j.properties

    log4j.rootLogger=WARN,STDOUT
    log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender
    log4j.appender.STDOUT.ImmediateFlush=true
    log4j.appender.STDOUT.layout=org.apache.log4j.PatternLayout
    log4j.appender.STDOUT.layout.ConversionPattern=%-5p %d [%t] %m%n
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sun Dec 28 09:01:06 UTC 2014
    - 283 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list_dir.txt

    go list -f '{{.ImportPath}}' $GOROOT/src/math
    stdout ^math$
    
    env GO111MODULE=on
    go list -f '{{.ImportPath}}' $GOROOT/src/math
    stdout ^math$
    go list -f '{{.ImportPath}}' .
    stdout ^x$
    
    go mod download rsc.io/quote@v1.5.2
    go list -f '{{.ImportPath}}' $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    stdout '^rsc.io/quote$'
    go list -f '{{.ImportPath}}' $GOPATH/pkg/mod/rsc.io/sampler@v1.3.0
    stdout '^rsc.io/sampler$'
    go get rsc.io/sampler@v1.3.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 854 bytes
    - Viewed (0)
Back to top