Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NodeField (0.28 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/ant/BasicAntBuilder.java

        private final Field nodeField;
        private final List children;
    
        public BasicAntBuilder() {
            // These are used to discard references to tasks so they can be garbage collected
            Field collectorField;
            try {
                nodeField = groovy.ant.AntBuilder.class.getDeclaredField("lastCompletedNode");
                nodeField.setAccessible(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config/param/template.go

    		if !params.Contains(needed) {
    			out.Insert(needed)
    		}
    	}
    	return out
    }
    
    func getParams(n parse.Node) sets.String {
    	out := sets.New[string]()
    	switch n.Type() {
    	case parse.NodeField:
    		// Only look at the first identifier. For example, if the action
    		// is {{.To.Config.Service}}, this will return "To" as the parameter.
    		// That's all we need when looking for well-known params.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:48 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/text/template/parse/node.go

    	NodeDot                        // The cursor, dot.
    	nodeElse                       // An else action. Not added to tree.
    	nodeEnd                        // An end action. Not added to tree.
    	NodeField                      // A field or method name.
    	NodeIdentifier                 // An identifier; always a function name.
    	NodeIf                         // An if action.
    	NodeList                       // A list of Nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/text/template/parse/parse.go

    		}
    		// Compatibility with original API: If the term is of type NodeField
    		// or NodeVariable, just put more fields on the original.
    		// Otherwise, keep the Chain node.
    		// Obvious parsing errors involving literal values are detected here.
    		// More complex error cases will have to be handled at execution time.
    		switch node.Type() {
    		case NodeField:
    			node = t.newField(chain.Position(), chain.String())
    		case NodeVariable:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NodeBreak", Const, 18},
    		{"NodeChain", Const, 1},
    		{"NodeCommand", Const, 0},
    		{"NodeComment", Const, 16},
    		{"NodeContinue", Const, 18},
    		{"NodeDot", Const, 0},
    		{"NodeField", Const, 0},
    		{"NodeIdentifier", Const, 0},
    		{"NodeIf", Const, 0},
    		{"NodeList", Const, 0},
    		{"NodeNil", Const, 1},
    		{"NodeNumber", Const, 0},
    		{"NodePipe", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg text/template/parse, const NodeBool NodeType
    pkg text/template/parse, const NodeCommand NodeType
    pkg text/template/parse, const NodeDot NodeType
    pkg text/template/parse, const NodeField NodeType
    pkg text/template/parse, const NodeIdentifier NodeType
    pkg text/template/parse, const NodeIf NodeType
    pkg text/template/parse, const NodeList NodeType
    pkg text/template/parse, const NodeNumber NodeType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg text/template/parse, const NodeChain = 3
    pkg text/template/parse, const NodeChain NodeType
    pkg text/template/parse, const NodeCommand = 4
    pkg text/template/parse, const NodeDot = 5
    pkg text/template/parse, const NodeField = 8
    pkg text/template/parse, const NodeIdentifier = 9
    pkg text/template/parse, const NodeIf = 10
    pkg text/template/parse, const NodeList = 11
    pkg text/template/parse, const NodeNil = 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top