Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for link (0.81 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    		// the frontend may emit node with line number missing,
    		// use the parent line number in this case.
    		line = s.peekPos()
    		if base.Flag.K != 0 {
    			base.Warn("buildssa: unknown position (line 0)")
    		}
    	} else {
    		s.lastPos = line
    	}
    
    	s.line = append(s.line, line)
    }
    
    // popLine pops the top of the line number stack.
    func (s *state) popLine() {
    	s.line = s.line[:len(s.line)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <p>
    Given the declarations
    </p>
    <pre>
    type Point3D struct { x, y, z float64 }
    type Line struct { p, q Point3D }
    </pre>
    
    <p>
    one may write
    </p>
    
    <pre>
    origin := Point3D{}                            // zero value for Point3D
    line := Line{origin, Point3D{y: -4, z: 12.3}}  // zero value for line.q.x
    </pre>
    
    <p>
    For array and slice literals the following rules apply:
    </p>
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-65978`](https://youtrack.jetbrains.com/issue/KT-65978) Analysis API: Use soft references in `FileStructureCache`
    - [`KT-64051`](https://youtrack.jetbrains.com/issue/KT-64051) K2 IDE: Analysis API: Unresolved links to typealias in KDoc
    - [`KT-66189`](https://youtrack.jetbrains.com/issue/KT-66189) K2 / IDE: KtFirExpressionTypeProvider bugs
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type _Gid_t uint32
    
    type StatxTimestamp struct {
    	Sec  int64
    	Nsec uint32
    	_    int32
    }
    
    type Statx_t struct {
    	Mask             uint32
    	Blksize          uint32
    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    	Ino              uint64
    	Size             uint64
    	Blocks           uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top