Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Abbrevs (0.28 sec)

  1. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    	}}
    	r.Else = &ast.BlockStmt{List: []ast.Stmt{
    		pvacfgvisitnode(pvacfg, "DW_TAG_formal_parameter", []*pvacfgnode{}, abbrevs),
    	}}
    	return r
    }
    
    func pvacfgvisitnode(pvacfg *pvacfgnode, tag string, path []*pvacfgnode, abbrevs map[string]int) ast.Stmt {
    	if pvacfg == nil {
    		abbrev := toabbrev(tag, path)
    		if _, ok := abbrevs[abbrev]; !ok {
    			abbrevs[abbrev] = len(abbrevs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    	}
    	return uint8(expandedForm)
    }
    
    // Abbrevs returns the finalized abbrev array for the platform,
    // expanding any DW_FORM pseudo-ops to real values.
    func Abbrevs() []dwAbbrev {
    	if abbrevsFinalized {
    		return abbrevs
    	}
    	abbrevs = append(abbrevs, putvarAbbrevs...)
    	for i := 1; i < len(abbrevs); i++ {
    		for j := 0; j < len(abbrevs[i].attr); j++ {
    			abbrevs[i].attr[j].form = expandPseudoForm(abbrevs[i].attr[j].form)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/debug/dwarf/buf.go

    	version() int
    
    	// 64-bit DWARF format?
    	dwarf64() (dwarf64 bool, isKnown bool)
    
    	// Size of an address, in bytes. Zero means unknown.
    	addrsize() int
    }
    
    // Some parts of DWARF have no data format, e.g., abbrevs.
    type unknownFormat struct{}
    
    func (u unknownFormat) version() int {
    	return 0
    }
    
    func (u unknownFormat) dwarf64() (bool, bool) {
    	return false, false
    }
    
    func (u unknownFormat) addrsize() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. src/debug/dwarf/open.go

    //
    // The []byte arguments are the data from the corresponding debug section
    // in the object file; for example, for an ELF object, abbrev is the contents of
    // the ".debug_abbrev" section.
    func New(abbrev, aranges, frame, info, line, pubnames, ranges, str []byte) (*Data, error) {
    	d := &Data{
    		abbrev:      abbrev,
    		aranges:     aranges,
    		frame:       frame,
    		info:        info,
    		line:        line,
    		pubnames:    pubnames,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry_test.go

    	for i := 0; i <= len(info); i++ {
    		truncated := info[:i]
    		dw, err := New(abbrev, aranges, frame, truncated, nil, nil, nil, nil)
    		if err == nil {
    			t.Errorf("expected error")
    		} else {
    			if dw != nil {
    				t.Errorf("got non-nil dw, wanted nil")
    			}
    		}
    	}
    }
    
    func TestIssue52045(t *testing.T) {
    	var abbrev, aranges, frame, line, pubnames, ranges, str []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. docker-buildx.sh

    	echo "Script requires that the 'upstream' remote is set to ******@****.***:minio/minio.git"
    	exit 1
    fi
    
    git remote update upstream && git checkout master && git rebase upstream/master
    
    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:latest" \
    	-t "quay.io/minio/minio:latest" \
    	-t "minio/minio:${release}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt

            val rootProjectDir: DirectoryProperty
        }
    
        @get:Inject
        abstract val providers: ProviderFactory
    
        val gitCommitId = git("rev-parse", "HEAD")
        val gitBranch = git("rev-parse", "--abbrev-ref", "HEAD")
    
        @Suppress("UnstableApiUsage")
        private
        fun git(vararg args: String): Provider<String> {
            val projectDir = parameters.rootProjectDir.asFile.get()
            val execOutput = providers.exec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/time/zoneinfo_windows.go

    func extractCAPS(desc string) string {
    	var short []rune
    	for _, c := range desc {
    		if 'A' <= c && c <= 'Z' {
    			short = append(short, c)
    		}
    	}
    	return string(short)
    }
    
    // abbrev returns the abbreviations to use for the given zone z.
    func abbrev(z *syscall.Timezoneinformation) (std, dst string) {
    	stdName := syscall.UTF16ToString(z.StandardName[:])
    	a, ok := abbrs[stdName]
    	if !ok {
    		dstName := syscall.UTF16ToString(z.DaylightName[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    // attribute (but it will only be written out if it is listed in the abbrev).
    // The compiler does create nameless DWARF DIEs (ex: concrete subprogram
    // instance).
    // FIXME: it would be more efficient to bulk-allocate DIEs.
    func (d *dwctxt) newdie(parent *dwarf.DWDie, abbrev int, name string) *dwarf.DWDie {
    	die := new(dwarf.DWDie)
    	die.Abbrev = abbrev
    	die.Link = parent.Child
    	parent.Child = die
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/time/zoneinfo_read.go

    		var b byte
    		if b, ok = zonedata.byte(); !ok {
    			return nil, errBadData
    		}
    		zones[i].isDST = b != 0
    		if b, ok = zonedata.byte(); !ok || int(b) >= len(abbrev) {
    			return nil, errBadData
    		}
    		zones[i].name = byteString(abbrev[b:])
    		if runtime.GOOS == "aix" && len(name) > 8 && (name[:8] == "Etc/GMT+" || name[:8] == "Etc/GMT-") {
    			// There is a bug with AIX 7.2 TL 0 with files in Etc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top