Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NodeIf (0.09 sec)

  1. pkg/test/framework/components/echo/config/param/template.go

    		// is {{.To.Config.Service}}, this will return "To" as the parameter.
    		// That's all we need when looking for well-known params.
    		firstIdentifier := n.(*parse.FieldNode).Ident[0]
    		out.Insert(firstIdentifier)
    	case parse.NodeIf:
    		out.Merge(getParams(n.(*parse.IfNode).Pipe))
    	case parse.NodeWith:
    		out.Merge(getParams(n.(*parse.WithNode).Pipe))
    	case parse.NodeRange:
    		out.Merge(getParams(n.(*parse.RangeNode).Pipe))
    	case parse.NodeAction:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:48 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/README.md

    For each OS, there is a hand-written Go file at `${GOOS}/types.go` (or
    `types_${GOOS}.go` on the old system). This file includes standard C headers and
    creates Go type aliases to the corresponding C types. The file is then fed
    through godef to get the Go compatible definitions. Finally, the generated code
    is fed though mkpost.go to format the code correctly and remove any hidden or
    private identifiers. This cleaned-up code is written to
    `ztypes_${GOOS}_${GOARCH}.go`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
Back to top