Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,384 for idents (0.24 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/events.k8s.io.v1beta1.Event.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 783 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    //     "namespace", "return".
    func Escape(ident string) (string, bool) {
    	if len(ident) == 0 || ('0' <= ident[0] && ident[0] <= '9') {
    		return "", false
    	}
    	if celReservedSymbols.Has(ident) {
    		return "__" + ident + "__", true
    	}
    
    	escapeCheck := skipRegexCheck(ident)
    	if escapeCheck.invalidCharFound {
    		return "", false
    	}
    	if escapeCheck.canSkipRegex {
    		return ident, true
    	}
    
    	ok := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/events.k8s.io.v1.Event.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 778 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/argposition_test.go

    	t            *testing.T
    }
    
    func (v *Visitor) Visit(node ast.Node) ast.Visitor {
    	if ident, ok := node.(*ast.Ident); ok {
    		if expectedPositions, ok := v.identPosInfo[ident.Name]; ok {
    			gotMatch := false
    			var errorMessage strings.Builder
    			for caseIndex, expectedPos := range expectedPositions {
    				actualPosition := v.fset.PositionFor(ident.Pos(), true)
    				errorOccured := false
    				if expectedPos.Line != actualPosition.Line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipnets-with-kube-virt-interfaces.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1beta1.Event.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 783 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1.Event.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 778 bytes
    - Viewed (0)
  8. src/go/scanner/example_test.go

    		if tok == token.EOF {
    			break
    		}
    		fmt.Printf("%s\t%s\t%q\n", fset.Position(pos), tok, lit)
    	}
    
    	// output:
    	// 1:1	IDENT	"cos"
    	// 1:4	(	""
    	// 1:5	IDENT	"x"
    	// 1:6	)	""
    	// 1:8	+	""
    	// 1:10	IMAG	"1i"
    	// 1:12	*	""
    	// 1:13	IDENT	"sin"
    	// 1:16	(	""
    	// 1:17	IDENT	"x"
    	// 1:18	)	""
    	// 1:20	COMMENT	"// Euler"
    	// 1:28	;	"\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/util.go

    //
    // TODO: This is closely tied to id.Obj which is deprecated.
    func funcLitInScope(id *ast.Ident) *ast.FuncLit {
    	// Compare to (*ast.Object).Pos().
    	if id.Obj == nil {
    		return nil
    	}
    	var rhs ast.Expr
    	switch d := id.Obj.Decl.(type) {
    	case *ast.AssignStmt:
    		for i, x := range d.Lhs {
    			if ident, isIdent := x.(*ast.Ident); isIdent && ident.Name == id.Name && i < len(d.Rhs) {
    				rhs = d.Rhs[i]
    			}
    		}
    	case *ast.ValueSpec:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/go/ast/resolve.go

    			// incorrectly to universe objects)
    			pkgScope.Outer = nil
    		}
    		i := 0
    		for _, ident := range file.Unresolved {
    			if !resolve(fileScope, ident) {
    				p.errorf(ident.Pos(), "undeclared name: %s", ident.Name)
    				file.Unresolved[i] = ident
    				i++
    			}
    
    		}
    		file.Unresolved = file.Unresolved[0:i]
    		pkgScope.Outer = universe // reset universe scope
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top