Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Report (0.56 sec)

  1. src/cmd/go/alldocs.go

    //
    //	GitHub (Git)
    //
    //		import "github.com/user/project"
    //		import "github.com/user/project/sub/directory"
    //
    //	Launchpad (Bazaar)
    //
    //		import "launchpad.net/project"
    //		import "launchpad.net/project/series"
    //		import "launchpad.net/project/series/sub/directory"
    //
    //		import "launchpad.net/~user/project/branch"
    //		import "launchpad.net/~user/project/branch/sub/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)
  2. src/cmd/go/internal/load/pkg.go

    	ForTest       string                `json:",omitempty"` // package is only for use in named test
    	Export        string                `json:",omitempty"` // file containing export data (set by go list -export)
    	BuildID       string                `json:",omitempty"` // build ID of the compiled package (set by go list -export)
    	Module        *modinfo.ModulePublic `json:",omitempty"` // info about package's module, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "LoweredPanicBoundsB", argLength: 3, aux: "Int64", reg: regInfo{inputs: []regMask{cx, dx}}, typ: "Mem", call: true}, // arg0=idx, arg1=len, arg2=mem, returns memory. AuxInt contains report code (see PanicBounds in generic.go).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	ImportMap     map[string]string // map import path in source code to package path
    	PackageFile   map[string]string // map package path to .a file with export data
    	Standard      map[string]bool   // map package path to whether it's in the standard library
    	PackageVetx   map[string]string // map package path to vetx data from earlier vet run
    	VetxOnly      bool              // only compute vetx data; don't report detected problems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    This table illustrates how <code>Sin</code> is accessed in files
    that import the package after the
    various types of import declaration.
    </p>
    
    <pre class="grammar">
    Import declaration          Local name of Sin
    
    import   "lib/math"         math.Sin
    import m "lib/math"         m.Sin
    import . "lib/math"         Sin
    </pre>
    
    <p>
    An import declaration declares a dependency relation between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    // Code generated from _gen/RISCV64.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "math"
    import "cmd/compile/internal/types"
    
    func rewriteValueRISCV64(v *Value) bool {
    	switch v.Op {
    	case OpAbs:
    		v.Op = OpRISCV64FABSD
    		return true
    	case OpAdd16:
    		v.Op = OpRISCV64ADD
    		return true
    	case OpAdd32:
    		v.Op = OpRISCV64ADD
    		return true
    	case OpAdd32F:
    		v.Op = OpRISCV64FADDS
    		return true
    	case OpAdd64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    // Code generated from _gen/MIPS64.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "cmd/compile/internal/types"
    
    func rewriteValueMIPS64(v *Value) bool {
    	switch v.Op {
    	case OpAbs:
    		v.Op = OpMIPS64ABSD
    		return true
    	case OpAdd16:
    		v.Op = OpMIPS64ADDV
    		return true
    	case OpAdd32:
    		v.Op = OpMIPS64ADDV
    		return true
    	case OpAdd32F:
    		v.Op = OpMIPS64ADDF
    		return true
    	case OpAdd64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    // Code generated from _gen/LOONG64.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "cmd/compile/internal/types"
    
    func rewriteValueLOONG64(v *Value) bool {
    	switch v.Op {
    	case OpAdd16:
    		v.Op = OpLOONG64ADDV
    		return true
    	case OpAdd32:
    		v.Op = OpLOONG64ADDV
    		return true
    	case OpAdd32F:
    		v.Op = OpLOONG64ADDF
    		return true
    	case OpAdd64:
    		v.Op = OpLOONG64ADDV
    		return true
    	case OpAdd64F:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
Back to top