Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for tolen (0.29 sec)

  1. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func OpenProcessToken(h Handle, access uint32, token *Token) (err error) {
    	r1, _, e1 := Syscall(procOpenProcessToken.Addr(), 3, uintptr(h), uintptr(access), uintptr(unsafe.Pointer(token)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func RegCloseKey(key Handle) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func KnownFolderPath(folderID *KNOWNFOLDERID, flags uint32) (string, error) {
    	return Token(0).KnownFolderPath(folderID, flags)
    }
    
    // KnownFolderPath returns a well-known folder path for the user token, specified by one of
    // the FOLDERID_ constants, and chosen and optionally created based on a KF_ flag.
    func (t Token) KnownFolderPath(folderID *KNOWNFOLDERID, flags uint32) (string, error) {
    	var p *uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    //sys	CreateProcessAsUser(token Token, appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    	token.GO:          true,
    	token.GOTO:        true,
    	token.IF:          true,
    	token.RETURN:      true,
    	token.SELECT:      true,
    	token.SWITCH:      true,
    	token.TYPE:        true,
    	token.VAR:         true,
    }
    
    var declStart = map[token.Token]bool{
    	token.IMPORT: true,
    	token.CONST:  true,
    	token.TYPE:   true,
    	token.VAR:    true,
    }
    
    var exprEnd = map[token.Token]bool{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    	}
    
    	switch p.tok {
    	case token.CONST, token.TYPE, token.VAR:
    		s = &ast.DeclStmt{p.parseDecl()}
    	case
    		// tokens that may start a top-level expression
    		token.IDENT, token.INT, token.FLOAT, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operand
    		token.LBRACK, token.STRUCT, // composite type
    		token.MUL, token.AND, token.ARROW, token.ADD, token.SUB, token.XOR: // unary operators
    		s = p.parseSimpleStmt(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    		p.expr(x.Key)
    		p.setPos(x.Colon)
    		p.print(token.COLON, blank)
    		p.expr(x.Value)
    
    	case *ast.StarExpr:
    		const prec = token.UnaryPrec
    		if prec < prec1 {
    			// parenthesis needed
    			p.print(token.LPAREN)
    			p.print(token.MUL)
    			p.expr(x.X)
    			p.print(token.RPAREN)
    		} else {
    			// no parenthesis needed
    			p.print(token.MUL)
    			p.expr(x.X)
    		}
    
    	case *ast.UnaryExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsAccessTokenCQ.java

        public void setToken_Equal(String token) {
            setToken_Term(token, null);
        }
    
        public void setToken_Equal(String token, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setToken_Term(token, opLambda);
        }
    
        public void setToken_Term(String token) {
            setToken_Term(token, null);
        }
    
        public void setToken_Term(String token, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 71.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	return token, err
    }
    
    // GetCurrentProcessToken returns the access token associated with
    // the current process. It is a pseudo token that does not need
    // to be closed.
    func GetCurrentProcessToken() Token {
    	return Token(^uintptr(4 - 1))
    }
    
    // GetCurrentThreadToken return the access token associated with
    // the current thread. It is a pseudo token that does not need
    // to be closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    	}
    
    	x.mode = value
    	// x.typ remains unchanged
    }
    
    func isShift(op token.Token) bool {
    	return op == token.SHL || op == token.SHR
    }
    
    func isComparison(op token.Token) bool {
    	// Note: tokens are not ordered well to make this much easier
    	switch op {
    	case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

                    ctx = createContext(trans, tdomain, negoResp, !anonymous, s);
                }
                token = createToken(ctx, token, s);
    
                if ( token != null ) {
                    request = new Smb2SessionSetupRequest(this.getContext(), securityMode, negoResp.getCommonCapabilities(), 0, token);
                    // here, messages are rejected with NOT_SUPPORTED if we start signing as soon as we can, wait until
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top