- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 608 for sparse (0.04 sec)
-
src/main/java/jcifs/ntlmssp/Type3Message.java
* @throws IOException * If an error occurs while parsing the material. */ public Type3Message(final byte[] material) throws IOException { parse(material); } /** * Returns the default flags for a generic Type-3 message in the * current environment. * * @param tc * context to use
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
while (offset < data.length) { // Parse NETWORK_INTERFACE_INFO structure int next = readInt4(data, offset); int ifIndex = readInt4(data, offset + 4); int capability = readInt4(data, offset + 8); long linkSpeed = readInt8(data, offset + 16); // Parse socket address InetAddress addr = parseSockaddr(data, offset + 24);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
docs/de/docs/tutorial/body-nested-models.md
Aber mit all den Vorzügen: * Editor-Unterstützung (Codevervollständigung überall) * Datenkonvertierung (auch bekannt als Parsen, Serialisierung) * Datenvalidierung * Schema-Dokumentation
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
if (StringUtil.isNotBlank(roleName)) { roleNameList.add(roleName); } } /** * Parses the role set from a string. * @param value The string to parse. * @param encrypted Whether the string is encrypted. * @param roleSet The set of roles. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java
int result = response.readSetupWireFormat(buffer, bufferIndex, len); // Assert assertEquals(0, result); } @Test @DisplayName("readParametersWireFormat should parse available bytes and status correctly") void testReadParametersWireFormat() { // Arrange byte[] buffer = new byte[10]; int bufferIndex = 0; int len = 6;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt
val FORCE_CACHE = commonForceCache() /** * Returns the cache directives of [headers]. This honors both Cache-Control and Pragma headers * if they are present. */ @JvmStatic fun parse(headers: Headers): CacheControl = commonParse(headers) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 10K bytes - Viewed (0) -
callbacks/query.go
queryFields = db.Statement.ReflectValue.Type().Elem() != db.Statement.Schema.ModelType } } if queryFields { stmt := gorm.Statement{DB: db} // smaller struct if err := stmt.Parse(db.Statement.Dest); err == nil && (db.QueryFields || stmt.Schema.ModelType != db.Statement.Schema.ModelType) { clauseSelect.Columns = make([]clause.Column, len(stmt.Schema.DBNames))
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (3) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.query; import java.math.BigDecimal; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.query.parser.QueryParser; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; /** * Base test class for query-related tests that properly initializes FessConfig */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
try { stopwordsFile.reload(null, failingStream); fail("Should throw DictionaryException"); } catch (DictionaryException e) { assertTrue(e.getMessage().contains("Failed to parse")); } } // Test update with InputStream public void test_update_withInputStream() throws IOException { String content = "new1\n" + "new2\n" + "new3\n";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
fileIdField.setAccessible(true); assertArrayEquals(fileId, (byte[]) fileIdField.get(notification)); } @Test @DisplayName("Should correctly parse reserved fields") void testReservedFieldsAreSkipped() throws Exception { byte[] buffer = new byte[64]; // Structure with specific values in reserved fields
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0)