- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 894 for Contexto (0.04 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
* * @return the clientGuid */ public byte[] getClientGuid() { return this.clientGuid; } /** * Gets the negotiate contexts for SMB 3.1.1 negotiation. * * @return the negotiateContexts */ public NegotiateContextRequest[] getNegotiateContexts() { return this.negotiateContexts; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmContextTest.java
// Test constructor when signing is enabled NtlmContext context = new NtlmContext(mockAuth, true); assertNotNull(context); assertFalse(context.isEstablished()); assertNull(context.getServerChallenge()); assertNull(context.getSigningKey()); assertNull(context.getNetbiosName());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
interfaces.go
} type ParamsFilter interface { ParamsFilter(ctx context.Context, sql string, params ...interface{}) (string, []interface{}) } // ConnPool db conns pool interface type ConnPool interface { PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sat Aug 19 13:33:31 UTC 2023 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
public void test_execute_withFuzzyQuery() { QueryContext context = new QueryContext("test", false); Term term = new Term("title", "fuzzy"); FuzzyQuery fuzzyQuery = new FuzzyQuery(term); float boost = 1.5f; QueryBuilder result = fuzzyQueryCommand.execute(context, fuzzyQuery, boost); assertNotNull(result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java
RequestTrace parentTrace = new RequestTrace("parent-context", null, "parent-data"); RequestTrace childTrace = new RequestTrace("child-context", parentTrace, "child-data"); assertEquals("parent-context", parentTrace.context()); assertNull(parentTrace.parent()); assertEquals("parent-data", parentTrace.data()); assertEquals("child-context", childTrace.context());
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java
assertNull(context.getCiphers()); } @Test @DisplayName("Should create instance with empty ciphers array") void testConstructorWithEmptyCiphers() { int[] ciphers = {}; EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, ciphers); assertNotNull(context); assertArrayEquals(ciphers, context.getCiphers());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
void testDefaultConstructor() { context = new PreauthIntegrityNegotiateContext(); assertEquals(PreauthIntegrityNegotiateContext.NEGO_CTX_PREAUTH_TYPE, context.getContextType()); assertNull(context.getHashAlgos()); assertNull(context.getSalt()); } @Test @DisplayName("Should handle null hash algorithms")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
cmd/naughty-disk_test.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 25 05:41:04 UTC 2025 - 10.1K bytes - Viewed (0) -
tests/tracer_test.go
} func (S Tracer) Warn(ctx context.Context, s string, i ...interface{}) { S.Logger.Warn(ctx, s, i...) } func (S Tracer) Error(ctx context.Context, s string, i ...interface{}) { S.Logger.Error(ctx, s, i...) } func (S Tracer) Trace(ctx context.Context, begin time.Time, fc func() (sql string, rowsAffected int64), err error) { S.Logger.Trace(ctx, begin, fc, err) S.Test(ctx, begin, fc, err)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Oct 18 09:28:06 UTC 2022 - 830 bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
// Reuse context map or create new entry.context = getContextMap(); if (context != null) { entry.context.putAll(maskContext(context)); } // Add MDC context efficiently addMdcContext(entry.context); // Process asynchronously or synchronously based on configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0)