Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for tolen (0.06 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/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)
  5. 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)
  6. 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)
  7. src/encoding/xml/marshal_test.go

    	toks: []Token{
    		EndElement{Name{"space", ""}},
    	},
    	err: "xml: end tag with no name",
    }, {
    	desc: "char data",
    	toks: []Token{
    		CharData("foo"),
    	},
    	want: `foo`,
    }, {
    	desc: "char data with escaped chars",
    	toks: []Token{
    		CharData(" \t\n"),
    	},
    	want: " &#x9;\n",
    }, {
    	desc: "comment",
    	toks: []Token{
    		Comment("foo"),
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    }
    
    // op2tok translates syntax.Operators into token.Tokens.
    var op2tok = [...]token.Token{
    	syntax.Def:  token.ILLEGAL,
    	syntax.Not:  token.NOT,
    	syntax.Recv: token.ILLEGAL,
    
    	syntax.OrOr:   token.LOR,
    	syntax.AndAnd: token.LAND,
    
    	syntax.Eql: token.EQL,
    	syntax.Neq: token.NEQ,
    	syntax.Lss: token.LSS,
    	syntax.Leq: token.LEQ,
    	syntax.Gtr: token.GTR,
    	syntax.Geq: token.GEQ,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. cmd/sts-handlers_test.go

    	if err != nil {
    		c.Fatalf("bucket create error: %v", err)
    	}
    
    	// Generate web identity STS token by interacting with OpenID IDP.
    	token, err := MockOpenIDTestUserInteraction(ctx, testAppParams, "******@****.***", "dillon")
    	if err != nil {
    		c.Fatalf("mock user err: %v", err)
    	}
    	// fmt.Printf("TOKEN: %s\n", token)
    
    	webID := cr.STSWebIdentity{
    		Client:      s.TestSuiteCommon.client,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsAccessTokenCA.java

        }
    
        public void setToken_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setToken_Terms("token", opLambda, null);
        }
    
        public void setToken_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsAccessTokenCA> aggsLambda) {
            setToken_Terms("token", opLambda, aggsLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 59.9K bytes
    - Viewed (0)
Back to top