- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 165 for 128 (0.01 sec)
-
src/main/java/jcifs/smb1/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.1K bytes - Viewed (0) -
src/builtin/builtin.go
type uint32 uint32 // uint64 is the set of all unsigned 64-bit integers. // Range: 0 through 18446744073709551615. type uint64 uint64 // int8 is the set of all signed 8-bit integers. // Range: -128 through 127. type int8 int8 // int16 is the set of all signed 16-bit integers. // Range: -32768 through 32767. type int16 int16 // int32 is the set of all signed 32-bit integers.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Dec 30 23:59:23 UTC 2024 - 12.8K 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/bytes/bytes_test.go
t.Errorf(`Equal(%q, %q) = %v`, tt.a, tt.b, eql) } } }) if allocs > 0 { t.Errorf("Equal allocated %v times", allocs) } } func TestEqualExhaustive(t *testing.T) { var size = 128 if testing.Short() { size = 32 } a := make([]byte, size) b := make([]byte, size) b_init := make([]byte, size) // randomish but deterministic data for i := 0; i < size; i++ { a[i] = byte(17 * i)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 28 18:13:58 UTC 2025 - 62.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java
void testBufferSizeEdgeCases() { // Test with very small buffer sizes when(mockConfig.getMaximumBufferSize()).thenReturn(256); when(mockConfig.getListSize()).thenReturn(128); request = new Smb2QueryInfoRequest(mockConfig); try { Field outputBufferLengthField = Smb2QueryInfoRequest.class.getDeclaredField("outputBufferLength");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
docs/es/docs/advanced/security/oauth2-scopes.md
También verificamos que tenemos un usuario con ese username, y si no, lanzamos esa misma excepción que creamos antes. {* ../../docs_src/security/tutorial005_an_py310.py hl[47,117:128] *} ## Verificar los `scopes`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
assertEquals(32, ACE.FILE_EXECUTE, "FILE_EXECUTE constant value"); assertEquals(64, ACE.FILE_DELETE, "FILE_DELETE constant value"); assertEquals(128, ACE.FILE_READ_ATTRIBUTES, "FILE_READ_ATTRIBUTES constant value"); assertEquals(256, ACE.FILE_WRITE_ATTRIBUTES, "FILE_WRITE_ATTRIBUTES constant value");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
} @Test @DisplayName("Should pass output buffer to response") void testCreateResponseWithBuffer() { byte[] specificBuffer = new byte[2048]; int offset = 128; Smb2ReadRequest requestWithBuffer = new Smb2ReadRequest(mockConfig, testFileId, specificBuffer, offset); Smb2ReadResponse response = requestWithBuffer.createResponse(mockContext, requestWithBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
android/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)