Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NodeField (0.14 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)
Back to top