Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddParseTree (0.17 sec)

  1. src/text/template/template.go

    		rightDelim: t.rightDelim,
    	}
    }
    
    // AddParseTree associates the argument parse tree with the template t, giving
    // it the specified name. If the template has not been defined, this tree becomes
    // its definition. If it has been defined and already has that name, the existing
    // definition is replaced; otherwise a new template is created, defined, and returned.
    func (t *Template) AddParseTree(name string, tree *parse.Tree) (*Template, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    	}
    
    	// Define a named template with specified contents.
    	def := func(name, contents string) {
    		sub := template.New(name)
    		template.Must(sub.Parse(contents))
    		template.Must(templates.AddParseTree(name, sub.Tree))
    	}
    
    	// Embedded files.
    	def("css", loadCSS("html/common.css"))
    	def("header", loadFile("html/header.html"))
    	def("graph", loadFile("html/graph.html"))
    	def("graph_css", loadCSS("html/graph.css"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top