- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for iss (0.02 sec)
-
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertTrue(StringUtil.startsWithIgnoreCase("isHoge", "IS")); assertTrue(StringUtil.startsWithIgnoreCase("ISHoge", "is")); assertFalse(StringUtil.startsWithIgnoreCase("isHoge", "iss")); assertFalse(StringUtil.startsWithIgnoreCase("is", "iss")); } /** * @throws Exception */ @Test public void testSubstringFromLast() throws Exception {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 12K bytes - Viewed (0) -
cmd/sts-datatypes.go
// which means the policy exceeded the allowed space. PackedPolicySize int `xml:",omitempty"` // The issuing authority of the web identity token presented. For OpenID Connect // ID tokens, this contains the value of the iss field. For OAuth 2.0 id_tokens, // this contains the value of the ProviderId parameter that was passed in the // AssumeRoleWithWebIdentity request. Provider string `xml:",omitempty"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 27 00:58:09 UTC 2022 - 9.9K bytes - Viewed (0) -
internal/jwt/parser.go
return errors.New("exp: Expected number") } c.IssuedAt, err = jsonparser.ParseInt(value) return err } if string(key) == "iss" { if dataType != jsonparser.String { return errors.New("iss: Expected string") } c.Issuer, err = jsonparser.ParseString(value) return err } case 'n': if string(key) == "nbf" {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 17 16:45:46 UTC 2024 - 14.1K bytes - Viewed (0) -
cmd/sts-handlers.go
assumeRole = "AssumeRole" stsRequestBodyLimit = 10 * (1 << 20) // 10 MiB // JWT claim keys expClaim = "exp" subClaim = "sub" audClaim = "aud" issClaim = "iss" // JWT claim to check the parent user parentClaim = "parent" // LDAP claim keys ldapUser = "ldapUser" // this is a key name for a normalized DN value
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 01:29:20 UTC 2024 - 33.9K bytes - Viewed (0)