Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 107 for parenthesize (0.31 sec)

  1. src/internal/types/testdata/check/typeparams.go

    func identity[T any](x T) T { return x }
    
    func _[_ any](x int) int { panic(0) }
    func _[T any](T /* ERROR "redeclared" */ T)() {}
    func _[T, T /* ERROR "redeclared" */ any]() {}
    
    // Constraints (incl. any) may be parenthesized.
    func _[_ (any)]() {}
    func _[_ (interface{})]() {}
    
    func reverse[T any](list []T) []T {
            rlist := make([]T, len(list))
            i := len(list)
            for _, x := range list {
                    i--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:56:58 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    type Token int
    
    const (
    	// ErrorToken represents scan error
    	ErrorToken Token = iota
    	// EndOfStringToken represents end of string
    	EndOfStringToken
    	// ClosedParToken represents close parenthesis
    	ClosedParToken
    	// CommaToken represents the comma
    	CommaToken
    	// DoesNotExistToken represents logic not
    	DoesNotExistToken
    	// DoubleEqualsToken represents double equals
    	DoubleEqualsToken
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  3. src/go/printer/printer_test.go

    	_, err = parser.ParseFile(fset, "", got, 0)
    	if err != nil {
    		t.Errorf("%v\norig: %q\ngot : %q", err, src, got)
    	}
    }
    
    // If a declaration has multiple specifications, a parenthesized
    // declaration must be printed even if Lparen is token.NoPos.
    func TestParenthesizedDecl(t *testing.T) {
    	// a package with multiple specs in a single declaration
    	const src = "package p; var ( a float64; b int )"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/text/template/parse/parse.go

    	case itemCharConstant, itemComplex, itemNumber:
    		number, err := t.newNumber(token.pos, token.val, token.typ)
    		if err != nil {
    			t.error(err)
    		}
    		return number
    	case itemLeftParen:
    		return t.pipeline("parenthesized pipeline", itemRightParen)
    	case itemString, itemRawString:
    		s, err := strconv.Unquote(token.val)
    		if err != nil {
    			t.error(err)
    		}
    		return t.newString(token.pos, token.val, s)
    	}
    	t.backup()
    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. doc/go1.17_spec.html

    all non-<a href="#Blank_identifier">blank</a> names in the signature
    must be <a href="#Uniqueness_of_identifiers">unique</a>.
    If absent, each type stands for one item of that type.
    Parameter and result
    lists are always parenthesized except that if there is exactly
    one unnamed result it may be written as an unparenthesized type.
    </p>
    
    <p>
    The final incoming parameter in a function signature may have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/go/doc/example.go

    						ast.Inspect(val, inspectFunc)
    					}
    				}
    			}
    		}
    	}
    
    	// Some decls include multiple specs, such as a variable declaration with
    	// multiple variables on the same line, or a parenthesized declaration. Trim
    	// the declarations to include only the specs that are actually mentioned.
    	// However, if there is a constant group with iota, leave it all: later
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/html/template/transition.go

    	switch c.state {
    	case stateCSSDqStr, stateCSSDqURL:
    		endAndEsc = `\"`
    	case stateCSSSqStr, stateCSSSqURL:
    		endAndEsc = `\'`
    	case stateCSSURL:
    		// Unquoted URLs end with a newline or close parenthesis.
    		// The below includes the wc (whitespace character) and nl.
    		endAndEsc = "\\\t\n\f\r )"
    	default:
    		panic(c.state.String())
    	}
    
    	k := 0
    	for {
    		i := k + bytes.IndexAny(s[k:], endAndEsc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/text/template/parse/parse_test.go

    		hasError, `unexpected . after term`},
    	{"wrongpipeline",
    		"{{12|false}}",
    		hasError, `non executable command in pipeline`},
    	{"emptypipeline",
    		`{{ ( ) }}`,
    		hasError, `missing value for parenthesized pipeline`},
    	{"multilinerawstring",
    		"{{ $v := `\n` }} {{",
    		hasError, `multilinerawstring:2: unclosed action`},
    	{"rangeundefvar",
    		"{{range $k}}{{end}}",
    		hasError, `undefined variable`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/text/template/parse/node.go

    	return p.CopyPipe()
    }
    
    // ActionNode holds an action (something bounded by delimiters).
    // Control actions have their own nodes; ActionNode represents simple
    // ones such as field evaluations and parenthesized pipelines.
    type ActionNode struct {
    	NodeType
    	Pos
    	tr   *Tree
    	Line int       // The line number in the input. Deprecated: Kept for compatibility.
    	Pipe *PipeNode // The pipeline in the action.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    
    	"golang.org/x/tools/go/ast/astutil"
    )
    
    // rule syntax:
    //  sexpr [&& extra conditions] => [@block] sexpr
    //
    // sexpr are s-expressions (lisp-like parenthesized groupings)
    // sexpr ::= [variable:](opcode sexpr*)
    //         | variable
    //         | <type>
    //         | [auxint]
    //         | {aux}
    //
    // aux      ::= variable | {code}
    // type     ::= variable | {code}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top