- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 527 for broken (0.12 sec)
-
cmd/signature-v4.go
if clntHashedPayload != "" && clntHashedPayload != query.Get(xhttp.AmzContentSha256) { return ErrContentSHA256Mismatch } // Verify if security token is correct. if token != "" && subtle.ConstantTimeCompare([]byte(token), []byte(cred.SessionToken)) != 1 { return ErrInvalidToken } // Verify finally if signature is same. // Get canonical request.
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu May 16 23:13:47 UTC 2024 - 12.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
} } // have reports whether the remaining tokens (including the current one) contain the specified token. func (p *Parser) have(token lex.ScanToken) bool { for i := p.inputPos; i < len(p.input); i++ { if p.input[i].ScanToken == token { return true } } return false } // at reports whether the next tokens are as requested.
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
api/go1.txt
pkg go/token, const AND_NOT_ASSIGN Token pkg go/token, const ARROW Token pkg go/token, const ASSIGN Token pkg go/token, const BREAK Token pkg go/token, const CASE Token pkg go/token, const CHAN Token pkg go/token, const CHAR Token pkg go/token, const COLON Token pkg go/token, const COMMA Token pkg go/token, const COMMENT Token pkg go/token, const CONST Token pkg go/token, const CONTINUE Token
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
fastapi/security/oauth2.py
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Wed Oct 23 18:30:18 UTC 2024 - 21.1K bytes - Viewed (0) -
.github/workflows/add-to-project.yml
name: Add to project runs-on: ubuntu-latest steps: - uses: actions/add-to-project@v1.0.2 with: project-url: https://github.com/orgs/fastapi/projects/2
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Tue Aug 13 02:00:25 UTC 2024 - 368 bytes - Viewed (0) -
docs/em/docs/tutorial/security/get-current-user.md
# ๐ค โฎ๏ธ ๐ฉโ๐ป โฎ๏ธ ๐ ๐โโ โ๏ธ (โ ๐งข ๐ ๐ ๐ โ๏ธ) ๐ค *โก ๐ ๏ธ ๐ข* `token` `str`: ```Python hl_lines="10" {!../../docs_src/security/tutorial001.py!} ``` โ๏ธ ๐ ๐ซ ๐ โ . โก๏ธ โ โซ๏ธ ๐ค ๐ฅ โฎ๏ธ ๐ฉโ๐ป. ## โ ๐ฉโ๐ป ๐ท ๐ฅ, โก๏ธ โ Pydantic ๐ฉโ๐ป ๐ท. ๐ ๐ ๐ฅ โ๏ธ Pydantic ๐ฃ ๐ช, ๐ฅ ๐ช โ๏ธ โซ๏ธ ๐ ๐: //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐ ```Python hl_lines="5 12-16" {!> ../../docs_src/security/tutorial002.py!} ``` ////
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.3K bytes - Viewed (0) -
tests/test_security_oauth2_optional.py
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 10.8K bytes - Viewed (0) -
internal/s3select/csv/args.go
args.QuoteEscapeCharacter = defaultQuoteEscapeCharacter args.CommentCharacter = defaultCommentCharacter args.AllowQuotedRecordDelimiter = false for { // Read tokens from the XML document in a stream. t, err := d.Token() if err != nil { if err == io.EOF { break } return err } if se, ok := t.(xml.StartElement); ok { tagName := se.Name.Local switch tagName {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Aug 20 18:31:45 UTC 2024 - 5.7K bytes - Viewed (0) -
tensorflow/c/eager/c_api_experimental.cc
TFE_CancellationToken token) { return tensorflow::unwrap(cancellation_manager)->DeregisterCallback(token); } bool TFE_CancellationManagerTryDeregisterCallback( TFE_CancellationManager* cancellation_manager, TFE_CancellationToken token) { return tensorflow::unwrap(cancellation_manager)->TryDeregisterCallback(token); } void TFE_DeleteCancellationManager(
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 35.9K bytes - Viewed (0) -
internal/grid/msg.go
type sender interface { msgp.MarshalSizer Op() Op } type connectReq struct { ID [16]byte Host string Time time.Time Token string } // addToken will add the token to the connect request. func (c *connectReq) addToken(fn AuthFn) { c.Token = fn() } func (connectReq) Op() Op { return OpConnect } type connectResp struct { ID [16]byte Accepted bool
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Jul 25 21:07:21 UTC 2024 - 7.6K bytes - Viewed (0)