- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 1,148 for data1 (0.21 sec)
-
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java
assertNull(trace.data()); } @Test void testChainedTraces() { RequestTrace root = new RequestTrace("root", null, "root-data"); RequestTrace level1 = new RequestTrace("level1", root, "level1-data"); RequestTrace level2 = new RequestTrace("level2", level1, "level2-data"); RequestTrace level3 = new RequestTrace(level2, "level3-data"); // Verify the chain
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.3K bytes - Viewed (0) -
docs/bucket/versioning/DESIGN.md
of the previous version. ## Inline Data Inline data is optional. If no inline data is present, it is encoded as 0 bytes. | Entry | Encoding | Content | --------------------|-----------------------------|---------------------------------------- | xlMetaInlineDataVer | byte | version identifier
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jul 17 15:43:14 UTC 2022 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
protected int dataOffset; /** Displacement of these data bytes from the start of the total data block */ protected int dataDisplacement; /** Number of setup words in this response */ protected int setupCount; /** Start position of parameter data in the buffer */ protected int bufParameterStart; /** Start position of data bytes in the buffer */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
registerProtocolSchemeItems(data); registerWebConfigItems(data); }); } private HtmlResponse asDetailsHtml() { return asHtml(path_AdminWebauth_AdminWebauthDetailsJsp).renderWith(data -> { registerProtocolSchemeItems(data); registerWebConfigItems(data); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt
} } fun toX509Certificate(): X509Certificate { val data = CertificateAdapters.certificate.toDer(this) try { val certificateFactory = CertificateFactory.getInstance("X.509") val certificates = certificateFactory.generateCertificates(Buffer().write(data).inputStream()) return certificates.single() as X509Certificate } catch (e: NoSuchElementException) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
byte[] data = "test content".getBytes(); ContentCache cache = new ContentCache(data); response.setContentCache(cache); try (InputStream stream = response.getContentAsStream()) { assertNotNull(stream); byte[] buffer = new byte[1024]; int bytesRead = stream.read(buffer); assertEquals(data.length, bytesRead);
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 11.5K bytes - Viewed (0) -
docs/en/docs/tutorial/request-files.md
/// ## What is "Form Data" { #what-is-form-data } The way HTML forms (`<form></form>`) sends the data to the server normally uses a "special" encoding for that data, it's different from JSON. **FastAPI** will make sure to read that data from the right place instead of JSON. /// note | Technical Details
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
searchPaging(data, form); }); } /** * Sets up data for search result pagination. * * @param data the render data * @param form the search form */ protected void searchPaging(final RenderData data, final SearchForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SSPContextTest.java
} @Override public byte[] calculateMIC(byte[] data) throws CIFSException { if (data == null) { throw new CIFSException("data is null"); } // Trivial MIC: 1-byte sum of all unsigned bytes int sum = 0; for (byte b : data) { sum = (sum + (b & 0xFF)) & 0xFF; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.2K bytes - Viewed (0)