- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 184 for 8128 (1.27 sec)
-
docs/em/docs/advanced/security/oauth2-scopes.md
โฉ๏ธ, ๐ผ, `dict`, โ๏ธ ๐ณ ๐, โซ๏ธ ๐ช ๐ ๐ธ โ โช, โ โซ๏ธ ๐โโ โ . ๐ฅ โ ๐ ๐ฅ โ๏ธ ๐ฉโ๐ป โฎ๏ธ ๐ ๐, & ๐ฅ ๐ซ, ๐ฅ ๐ค ๐ ๐ โ ๐ฅ โ โญ. {* ../../docs_src/security/tutorial005.py hl[46,116:128] *} ## โ `scopes` ๐ฅ ๐ โ ๐ ๐ โ โ, ๐ ๐ & ๐ โ๏ธ (๐ *โก ๐ ๏ธ*), ๐ โ ๐ ๐ค ๐จ, โช ๐ค `HTTPException`. ๐, ๐ฅ โ๏ธ `security_scopes.scopes`, ๐ ๐ `list` โฎ๏ธ ๐ ๐ซ โ `str`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:03:10 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/util/StringsTest.java
String uniRoundTrip = Strings.fromUNIBytes(uniBytes, 0, uniBytes.length); // When - round trip through ASCII encoding (for ASCII-safe strings) if (original.chars().allMatch(c -> c < 128)) { byte[] asciiBytes = Strings.getASCIIBytes(original); String asciiRoundTrip = new String(asciiBytes, StandardCharsets.US_ASCII);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* class. */ static final class AsciiDigits { private AsciiDigits() {} private static final byte[] asciiDigits; static { byte[] result = new byte[128]; Arrays.fill(result, (byte) -1); for (int i = 0; i < 10; i++) { result['0' + i] = (byte) i; } for (int i = 0; i < 26; i++) { result['A' + i] = (byte) (10 + i);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
docs/pt/docs/advanced/security/oauth2-scopes.md
Nรณs tambรฉm verificamos que nรณs temos um usuรกrio com o "*username*", e caso contrรกrio, nรณs levantamos a mesma exceรงรฃo que criamos anteriormente. {* ../../docs_src/security/tutorial005_an_py310.py hl[47,117:128] *} ## Verifique os `scopes`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/armerror.s
BFX $-2, $4, R2, R3 // ERROR "wrong width or LSB" BFXU $4, R2, R5, R2 // ERROR "missing or wrong LSB" BFXU $4, R2, R5 // ERROR "missing or wrong LSB" BFC $12, $8, R2, R3 // ERROR "illegal combination" MOVB R0>>8, R2 // ERROR "illegal shift" MOVH R0<<16, R2 // ERROR "illegal shift" MOVBS R0->8, R2 // ERROR "illegal shift"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 14.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertNull(systemHelper.encodeUrlFilter(path)); path = "abc"; assertEquals(path, systemHelper.encodeUrlFilter(path)); path = "ใใใ"; assertEquals("%E3%81%82%E3%81%84%E3%81%86", systemHelper.encodeUrlFilter(path)); path = "[]^$.*+?,{}|%\\"; assertEquals(path, systemHelper.encodeUrlFilter(path)); systemHelper.filterPathEncoding = null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
cmd/admin-handlers-site-replication.go
ctx := r.Context() globalSiteNetPerfRX.Connect() defer globalSiteNetPerfRX.Disconnect() connectTime := time.Now() for { n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte) atomic.AddUint64(&globalSiteNetPerfRX.RX, uint64(n)) if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 19.3K bytes - Viewed (0) -
api/go1.10.txt
pkg debug/elf, const R_ARM_LDR_SB_G1 = 76 pkg debug/elf, const R_ARM_LDR_SB_G1 R_ARM pkg debug/elf, const R_ARM_LDR_SB_G2 = 77 pkg debug/elf, const R_ARM_LDR_SB_G2 R_ARM pkg debug/elf, const R_ARM_ME_TOO = 128 pkg debug/elf, const R_ARM_ME_TOO R_ARM pkg debug/elf, const R_ARM_MOVT_ABS = 44 pkg debug/elf, const R_ARM_MOVT_ABS R_ARM pkg debug/elf, const R_ARM_MOVT_BREL = 85 pkg debug/elf, const R_ARM_MOVT_BREL R_ARM
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
int nestingDepth = 128; Iterator<Integer> iterator = iterateOver(); for (int i = 0; i < nestingDepth; i++) { iterator = Iterators.concat(iterator, iterateOver(1)); } assertEquals(nestingDepth, Iterators.size(iterator)); } public void testConcatNested_appendToBeginning() { int nestingDepth = 128; Iterator<Integer> iterator = iterateOver();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
/** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */ public static final int ACB_WSTRUST = 128; /** Account control bit flag: Server trust account */ public static final int ACB_SVRTRUST = 256; /** Account control bit flag: Password does not expire */ public static final int ACB_PWNOEXP = 512;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0)