Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for Tok (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    			r.ok = false
    			r.err = nil
    		default:
    			r.ok = false
    			r.err = errors.New("I can't think of a clever error name right now")
    		}
    		s.tokens = append(s.tokens, tok)
    		s.tokenToResponse[tok] = &r
    		if len(auds) > 0 {
    			s.tokenToAuds[tok] = auds
    		}
    	}
    }
    
    func (s *singleBenchmark) lookup(ctx context.Context, token string) (*authenticator.Response, bool, error) {
    	r, ok := s.tokenToResponse[token]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/mkbuiltin.go

    		case *ast.GenDecl:
    			if decl.Tok == token.IMPORT {
    				if len(decl.Specs) != 1 || decl.Specs[0].(*ast.ImportSpec).Path.Value != "\"unsafe\"" {
    					log.Fatal("runtime cannot import other package")
    				}
    				continue
    			}
    			if decl.Tok != token.VAR {
    				log.Fatal("unhandled declaration kind", decl.Tok)
    			}
    			for _, spec := range decl.Specs {
    				spec := spec.(*ast.ValueSpec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    		impIndex   = -1         // spec index in impDecl containing the best match
    
    		isThirdPartyPath = isThirdParty(path)
    	)
    	for i, decl := range f.Decls {
    		gen, ok := decl.(*ast.GenDecl)
    		if ok && gen.Tok == token.IMPORT {
    			lastImport = i
    			// Do not add to import "C", to avoid disrupting the
    			// association with its doc comment, breaking cgo.
    			if declImports(gen, "C") {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  4. src/encoding/xml/read.go

    	// or more fields have the path to this element as a parent
    	// prefix. Recurse and attempt to match these.
    	for {
    		var tok Token
    		tok, err = d.Token()
    		if err != nil {
    			return true, err
    		}
    		switch t := tok.(type) {
    		case StartElement:
    			// the recursion depth of unmarshalPath is limited to the path length specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. src/go/printer/printer.go

    		// use that information to decide more directly.
    		needsLinebreak := false
    		if p.mode&noExtraBlank == 0 &&
    			last.Text[1] == '*' && p.lineFor(last.Pos()) == next.Line &&
    			tok != token.COMMA &&
    			(tok != token.RPAREN || p.prevOpen == token.LPAREN) &&
    			(tok != token.RBRACK || p.prevOpen == token.LBRACK) {
    			if p.containsLinebreak() && p.mode&noExtraLinebreak == 0 && p.level == 0 {
    				needsLinebreak = true
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  6. src/go/ast/ast.go

    	IncDecStmt struct {
    		X      Expr
    		TokPos token.Pos   // position of Tok
    		Tok    token.Token // INC or DEC
    	}
    
    	// An AssignStmt node represents an assignment or
    	// a short variable declaration.
    	//
    	AssignStmt struct {
    		Lhs    []Expr
    		TokPos token.Pos   // position of Tok
    		Tok    token.Token // assignment token, DEFINE
    		Rhs    []Expr
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. src/go/parser/resolver.go

    		r.declare(n, nil, r.labelScope, ast.Lbl, n.Label)
    		ast.Walk(r, n.Stmt)
    
    	case *ast.AssignStmt:
    		r.walkExprs(n.Rhs)
    		if n.Tok == token.DEFINE {
    			r.shortVarDecl(n)
    		} else {
    			r.walkExprs(n.Lhs)
    		}
    
    	case *ast.BranchStmt:
    		// add to list of unresolved targets
    		if n.Tok != token.FALLTHROUGH && n.Label != nil {
    			depth := len(r.targetStack) - 1
    			r.targetStack[depth] = append(r.targetStack[depth], n.Label)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/shift/shift.go

    				checkLongShift(pass, node, node.X, node.Y)
    			}
    		case *ast.AssignStmt:
    			if len(node.Lhs) != 1 || len(node.Rhs) != 1 {
    				return
    			}
    			if node.Tok == token.SHL_ASSIGN || node.Tok == token.SHR_ASSIGN {
    				checkLongShift(pass, node, node.Lhs[0], node.Rhs[0])
    			}
    		}
    	})
    	return nil, nil
    }
    
    // checkLongShift checks if shift or shift-assign operations shift by more than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Kerb5Authenticator.java

            }
            try {
                NegTokenInit tok = new NegTokenInit(initialToken);
                if ( log.isDebugEnabled() ) {
                    log.debug("Have initial token " + tok);
                }
                if ( tok.getMechanisms() != null ) {
                    Set<ASN1ObjectIdentifier> mechs = new HashSet<>(Arrays.asList(tok.getMechanisms()));
                    boolean foundKerberos = false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  10. src/go/doc/exports.go

    				X:   &ast.Ident{Name: id.Name, NamePos: pos},
    			}
    		}
    	}
    	return nil // shouldn't happen, but be conservative and don't panic
    }
    
    func (r *reader) filterSpecList(list []ast.Spec, tok token.Token) []ast.Spec {
    	if tok == token.CONST {
    		// Propagate any type information that would get lost otherwise
    		// when unexported constants are filtered.
    		var prevType ast.Expr
    		for _, spec := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top