Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syncFrames (0.26 sec)

  1. src/internal/pkgbits/encoder.go

    	stringsIdx map[string]Index
    
    	// syncFrames is the number of frames to write at each sync
    	// marker. A negative value means sync markers are omitted.
    	syncFrames int
    }
    
    // SyncMarkers reports whether pw uses sync markers.
    func (pw *PkgEncoder) SyncMarkers() bool { return pw.syncFrames >= 0 }
    
    // NewPkgEncoder returns an initialized PkgEncoder.
    //
    // syncFrames is the number of caller frames that should be serialized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/internal/pkgbits/decoder.go

    	fmt.Printf("\nfound %v, written at:\n", mHave)
    	if len(writerPCs) == 0 {
    		fmt.Printf("\t[stack trace unavailable; recompile package %q with -d=syncframes]\n", r.common.pkgPath)
    	}
    	for _, pc := range writerPCs {
    		fmt.Printf("\t%s\n", r.common.StringIdx(r.rawReloc(RelocString, pc)))
    	}
    
    	fmt.Printf("\nexpected %v, reading at:\n", mWant)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
Back to top