Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for isIdent (0.12 sec)

  1. src/cmd/compile/internal/types2/expr.go

    func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, allowGeneric bool) exprKind {
    	if check.conf.Trace {
    		check.trace(e.Pos(), "-- expr %s", e)
    		check.indent++
    		defer func() {
    			check.indent--
    			check.trace(e.Pos(), "=> %s", x)
    		}()
    	}
    
    	kind := check.exprInternal(T, x, e, hint)
    
    	if !allowGeneric {
    		check.nonGeneric(T, x)
    	}
    
    	check.record(x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
        Time_Keep   On
    
    [PARSER]
        Name        syslog-rfc3164-local
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/testing/testing.go

    		if end == -1 {
    			end = len(b)
    		} else {
    			end++
    		}
    		// An indent of 4 spaces will neatly align the dashes with the status
    		// indicator of the parent.
    		line := b[:end]
    		if line[0] == marker {
    			w.c.output = append(w.c.output, marker)
    			line = line[1:]
    		}
    		const indent = "    "
    		w.c.output = append(w.c.output, indent...)
    		w.c.output = append(w.c.output, line...)
    		b = b[end:]
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation.go

    	"as", "break", "const", "continue", "else",
    	"for", "function", "if", "import", "let",
    	"loop", "package", "namespace", "return",
    	"var", "void", "while")
    
    func isCELIdentifier(name string) bool {
    	// IDENT          ::= [_a-zA-Z][_a-zA-Z0-9]* - RESERVED
    	// BOOL_LIT       ::= "true" | "false"
    	// NULL_LIT       ::= "null"
    	// RESERVED       ::= BOOL_LIT | NULL_LIT | "in"
    	// 	 | "as" | "break" | "const" | "continue" | "else"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	margin: -0.25em 0 0.75em 0;
    	border-width: 1px 0 0 0;
    }
    
    #footnotes .footnote {
    	padding: 0 0.375em 0 0.225em;
    	line-height: 1.3334;
    	font-size: 0.875em;
    	margin-left: 1.2em;
    	text-indent: -1.05em;
    	margin-bottom: 0.2em;
    }
    
    #footnotes .footnote a:first-of-type {
    	font-weight: bold;
    	text-decoration: none;
    }
    
    #footnotes .footnote:last-of-type {
    	margin-bottom: 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top