Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for convey (0.48 sec)

  1. src/cmd/go/internal/generate/generate.go

    double-quoted strings passed to the generator as individual
    arguments when it is run.
    
    Quoted strings use Go syntax and are evaluated before execution; a
    quoted string appears as a single argument to the generator.
    
    To convey to humans and machine tools that code is generated,
    generated source should have a line that matches the following
    regular expression (in Go syntax):
    
    	^// Code generated .* DO NOT EDIT\.$
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/convert.go

    	init.Append(as)
    	return res
    }
    
    // Returns the data word (the second word) used to represent conv.X in
    // an interface.
    func dataWord(conv *ir.ConvExpr, init *ir.Nodes) ir.Node {
    	pos, n := conv.Pos(), conv.X
    	fromType := n.Type()
    
    	// If it's a pointer, it is its own representation.
    	if types.IsDirectIface(fromType) {
    		return n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    //		For a build that targets package 'main' (e.g. building a Go
    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/cover.go

    	args = append(args, cmdline...)
    	return b.Shell(a).runOut(a.Objdir, nil, args)
    }
    
    // BuildActionCoverMetaFile locates and returns the path of the
    // meta-data file written by the "go tool cover" step as part of the
    // build action for the "go test -cover" run action 'runAct'. Note
    // that if the package has no functions the meta-data file will exist
    // but will be empty; in this case the return is an empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/cover.go

    Than McIntosh <******@****.***> 1633965979 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/list/list.go

    With the -find flag, the -deps, -test and -export commands cannot be
    used.
    
    The -test flag causes list to report not only the named packages
    but also their test binaries (for packages with tests), to convey to
    source code analysis tools exactly how test binaries are constructed.
    The reported import path for a test binary is the import path of
    the package followed by a ".test" suffix, as in "math/rand.test".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    const usageMessage = "" +
    	`Usage of 'go tool cover':
    Given a coverage profile produced by 'go test':
    	go test -coverprofile=c.out
    
    Open a web browser displaying annotated source code:
    	go tool cover -html=c.out
    
    Write out an HTML file instead of launching a web browser:
    	go tool cover -html=c.out -o coverage.html
    
    Display coverage percentages to stdout for each function:
    	go tool cover -func=c.out
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/flags_test.go

    func flagRegister2flagConstant(x int, sub bool) flagConstant {
    	var fcb flagConstantBuilder
    	switch runtime.GOARCH {
    	case "amd64":
    		fcb.Z = x>>6&1 != 0
    		fcb.N = x>>7&1 != 0
    		fcb.C = x>>0&1 != 0
    		if sub {
    			// Convert from amd64-sense to arm-sense
    			fcb.C = !fcb.C
    		}
    		fcb.V = x>>11&1 != 0
    	case "arm64":
    		fcb.Z = x>>30&1 != 0
    		fcb.N = x>>31&1 != 0
    		fcb.C = x>>29&1 != 0
    		fcb.V = x>>28&1 != 0
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:36:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/telemetrystats/version_unix.go

    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-uname-error", runtime.GOOS))
    		return
    	}
    	major, minor, ok := majorMinor(convert(v.Release[:]))
    	if runtime.GOOS == "aix" {
    		major, minor, ok = convert(v.Version[:]), convert(v.Release[:]), true
    	}
    	if !ok {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-bad-format", runtime.GOOS))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:44:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/cover/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Cover is a program for analyzing the coverage profiles generated by
    'go test -coverprofile=cover.out'.
    
    Cover is also used by 'go test -cover' to rewrite the source code with
    annotations to track which parts of each function are executed (this
    is referred to "instrumentation"). Cover can operate in "legacy mode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top