Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tsv2json (0.14 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          },
          "bin": {
            "csv2json": "bin/dsv2json.js",
            "csv2tsv": "bin/dsv2dsv.js",
            "dsv2dsv": "bin/dsv2dsv.js",
            "dsv2json": "bin/dsv2json.js",
            "json2csv": "bin/json2dsv.js",
            "json2dsv": "bin/json2dsv.js",
            "json2tsv": "bin/json2dsv.js",
            "tsv2csv": "bin/dsv2dsv.js",
            "tsv2json": "bin/dsv2json.js"
          },
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/version.txt

    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    # Check the build info of a binary built from $GOROOT/src/cmd
    go build -o test2json.exe cmd/test2json
    go version -m test2json.exe
    stdout -buildmode=exe
    stdout '^test2json.exe: .+'
    stdout '^\tpath\tcmd/test2json$'
    ! stdout 'mod[^e]'
    
    # Repeat the test with -buildmode=pie and default linking.
    [!buildmode:pie] stop
    [pielinkext] [!cgo] stop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/test2json/main.go

    // license that can be found in the LICENSE file.
    
    // Test2json converts go test output to a machine-readable JSON stream.
    //
    // Usage:
    //
    //	go tool test2json [-p pkg] [-t] [./pkg.test -test.v=test2json]
    //
    // Test2json runs the given test command and converts its output to JSON;
    // with no command specified, test2json expects test output on standard input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/dist/testjson.go

    		f.lineBuf.Reset()
    	}
    }
    
    func (f *testJSONFilter) process(line []byte) {
    	if len(line) > 0 && line[0] == '{' {
    		// Plausible test2json output. Parse it generically.
    		//
    		// We go to some effort here to preserve key order while doing this
    		// generically. This will stay robust to changes in the test2json
    		// struct, or other additions outside of it. If humans are ever looking
    		// at the output, it's really nice to keep field order because it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/testflag.go

    	if testJSON {
    		// If converting to JSON, we need the full output in order to pipe it to test2json.
    		// The -test.v=test2json flag is like -test.v=true but causes the test to add
    		// extra ^V characters before testing output lines and other framing,
    		// which helps test2json do a better job creating the JSON events.
    		injectedFlags = append(injectedFlags, "-test.v=test2json")
    		delete(addFromGOFLAGS, "v")
    		delete(addFromGOFLAGS, "test.v")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	on   bool // -v is set in some form
    	json bool // -v=test2json is set, to make output better for test2json
    }
    
    func (*testVFlag) IsBoolFlag() bool { return true }
    
    func (f *testVFlag) Set(arg string) error {
    	if v, err := strconv.ParseBool(arg); err == nil {
    		f.on = v
    		f.json = false
    		return nil
    	}
    	if arg == "test2json" {
    		f.on = true
    		f.json = arg == "test2json"
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/testing/testing.go

    	on   bool // -v is set in some form
    	json bool // -v=test2json is set, to make output better for test2json
    }
    
    func (*chattyFlag) IsBoolFlag() bool { return true }
    
    func (f *chattyFlag) Set(arg string) error {
    	switch arg {
    	default:
    		return fmt.Errorf("invalid flag -test.v=%s", arg)
    	case "true", "test2json":
    		f.on = true
    		f.json = arg == "test2json"
    	case "false":
    		f.on = false
    		f.json = false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	// variant, if non-empty, is a name used to distinguish different
    	// configurations of the same test package(s). If set and omitVariant is false,
    	// the Package field in test2json output is rewritten to pkg:variant.
    	variant string
    	// omitVariant indicates that variant is used solely for the dist test name and
    	// that the set of test names run by each variant (including empty) of a package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //	    in 'go run'. See 'go help run' for details.
    //
    //	-json
    //	    Convert test output to JSON suitable for automated processing.
    //	    See 'go doc test2json' for the encoding details.
    //
    //	-o file
    //	    Compile the test binary to the named file.
    //	    The test still runs (unless -c or -i is specified).
    //	    If file ends in a slash or names an existing directory,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top