- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 957 for nBytes (0.03 sec)
-
docs/em/docs/deployment/versions.md
๐ฅ ๐ โ๏ธ ๐ ๐ ๐งฐ ๐ ๏ธ ๐ ๐ทโโ, ๐ ๐ถ, Pipenv, โ๏ธ ๐, ๐ซ ๐ โ๏ธ ๐ ๐ ๐ ๐ช โ๏ธ ๐ฌ ๐ฏ โฌ ๐ ๐ฆ. ## ๐ช โฌ ๐ ๐ช ๐ ๐ช โฌ (โ โ โซ๏ธโ โฎ๏ธ ๐ฐ) [๐ ๐](../release-notes.md){.internal-link target=_blank}. ## ๐ โฌ ๐ โ ๐ ๏ธ ๐, ๐ โฌ ๐ `1.0.0` ๐ช โ ๐ฎ ๐ ๐. FastAPI โฉ ๐ ๐ ๐ "๐" โฌ ๐ ๐ ๐ง & ๐ซ-๐ ๐. /// tip "๐" ๐ ๐ข, ๐ผ, `0.2.3`, ๐ โฌ `3`. ///Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
.setState(state)// .build(); } /** * Decodes a Base64 string to bytes. * * @param base64String the Base64 string to decode * @return the decoded bytes, or null if input is null */ protected byte[] decodeBase64(String base64String) { if (base64String == null) { return null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/archive/zip/reader.go
// // dataDescriptorLen includes the size of the signature but // first read just those 4 bytes to see if it exists. if _, err := io.ReadFull(r, buf[:4]); err != nil { return err } off := 0 maybeSig := readBuf(buf[:4]) if maybeSig.uint32() != dataDescriptorSignature { // No data descriptor signature. Keep these four // bytes. off += 4 } if _, err := io.ReadFull(r, buf[off:12]); err != nil { return err
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Mar 11 22:19:38 UTC 2025 - 28.4K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
If you want this update with the old behavior use [this interceptor][legacy_interceptor]. * Fix: Don't crash decompressing web sockets messages. We had a bug where we assumed deflated bytes in would always yield deflated bytes out and this isn't always the case! * Fix: Reliably update and invalidate the disk cache on windows. As originally designed our
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java
} @Override public String getFileName() { return this.fileName; } /** * Gets the offset to the next entry. * * @return the next entry offset in bytes */ public int getNextEntryOffset() { return this.nextEntryOffset; } /** * Constructs a file notify information from the given buffer. *Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
docs/fr/docs/advanced/response-directly.md
Vous pouvez mettre votre contenu XML dans une chaรฎne de caractรจres, la placer dans une `Response`, et la retourner : {* ../../docs_src/response_directly/tutorial002.py hl[1,18] *} ## Notes Lorsque vous renvoyez une `Response` directement, ses donnรฉes ne sont pas validรฉes, converties (sรฉrialisรฉes), ni documentรฉes automatiquement.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/util/EncdecTest.java
void testStringOperations() { // Given String testString = "Hello"; byte[] buffer = new byte[testString.length()]; // When - Manual string encoding using individual bytes byte[] strBytes = testString.getBytes(); System.arraycopy(strBytes, 0, buffer, 0, strBytes.length); // Then String decoded = new String(buffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
cmd/admin-handlers-users_test.go
c.Helper() _, err := client.PutObject(ctx, bucket, "some-object", bytes.NewBuffer([]byte("stuff")), 5, minio.PutObjectOptions{}) if err != nil { c.Fatalf("upload did not succeed got %#v", err) } } func (c *check) mustNotUpload(ctx context.Context, client *minio.Client, bucket string) { c.Helper() _, err := client.PutObject(ctx, bucket, "some-object", bytes.NewBuffer([]byte("stuff")), 5, minio.PutObjectOptions{})
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 47.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileOutputStreamTest.java
when(mockFile.openUnshared(anyInt(), anyInt(), anyInt(), anyInt(), anyInt())).thenReturn(mockFileHandle); lenient().when(mockFileHandle.getInitialSize()).thenReturn(100L); // File already has 100 bytes when(mockTreeHandle.send(any(Smb2WriteRequest.class), any())).thenReturn(mockWriteResponse); when(mockWriteResponse.getCount()).thenReturn(8);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
break; } } assertTrue(hasNonZero, "Data should have non-zero bytes"); SecureKeyManager.secureWipe(data); // Verify data is wiped for (byte b : data) { assertEquals(0, b, "All bytes should be zero after wipe"); } } @Test public void testSecureWipeNull() { // Should not throwRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0)