Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WriteEmbed (0.11 sec)

  1. src/cmd/compile/internal/staticdata/embed.go

    	xdir, xelem, _ := embedFileNameSplit(x)
    	ydir, yelem, _ := embedFileNameSplit(y)
    	return xdir < ydir || xdir == ydir && xelem < yelem
    }
    
    // WriteEmbed emits the init data for a //go:embed variable,
    // which is either a string, a []byte, or an embed.FS.
    func WriteEmbed(v *ir.Name) {
    	// TODO(mdempsky): User errors should be reported by the frontend.
    
    	commentPos := (*v.Embed)[0].Pos
    	if base.Flag.Cfg.Embed.Patterns == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 18:22:02 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/embed/embed.go

    //
    // See the package documentation for more details about initializing an FS.
    type FS struct {
    	// The compiler knows the layout of this struct.
    	// See cmd/compile/internal/staticdata's WriteEmbed.
    	//
    	// The files list is sorted by name but not by simple string comparison.
    	// Instead, each file's name takes the form "dir/elem" or "dir/elem/".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top