- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 573 for session2 (4.14 sec)
-
src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java
*/ package jcifs.smb1.netbios; import java.io.IOException; import java.io.InputStream; /** * NetBIOS session request packet for establishing sessions. * This packet is sent to request a NetBIOS session with a remote host. */ public class SessionRequestPacket extends SessionServicePacket { private final Name calledName, callingName; SessionRequestPacket() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/sts/assume-role.md
- To be able to easily get the temporary credentials to upload to a prefix. Make it possible for a client to upload a whole folder using the session. The server side applications need not create a presigned URL and serve to the client for each file. Since, the client would have the session it can do it by itself.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
// Test options parsing instead SuggestCreator.Options options = new SuggestCreator.Options(); options.sessionId = "test-session"; options.name = "test-name"; assertEquals("test-session", options.sessionId); assertEquals("test-name", options.name); } // Test create with search log enabled public void test_create_searchLogEnabled() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
context.put("thread", Thread.currentThread().getName()); context.put("threadId", Thread.currentThread().getId()); String sessionId = MDC.get("sessionId"); if (sessionId != null) { context.put("sessionId", sessionId); } String userId = MDC.get("userId"); if (userId != null) { context.put("userId", userId); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/SearchBody.java
* Extends BaseSearchBody with crawling information-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The crawling session ID to search for. */ public String sessionId; /** * Default constructor for SearchBody. */ public SearchBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
log.trace("Currently " + this.sessions.size() + " session(s) active for " + this); } if (targetHost != null) { targetHost = targetHost.toLowerCase(Locale.ROOT); } if (targetDomain != null) { targetDomain = targetDomain.toUpperCase(Locale.ROOT); } ListIterator<SmbSessionImpl> iter = this.sessions.listIterator();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
*/ private int currentPageNumber; /** * Crawling information ID. */ public String id; /** * Session ID for the crawling session. */ public String sessionId; /** * Creation time of the crawling information. */ public String createdTime; /** * Clears all pagination state and crawling information fields.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
if (sessionId == null) { // create session id final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); sessionId = sdf.format(new Date()); } resultBuf.append("Session Id: ").append(sessionId).append("\n"); resultBuf.append("Web Config Id:"); if (webConfigIds == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockTest.java
// Test with various session ID values long[] sessionIds = { 0L, 1L, Long.MAX_VALUE, Long.MIN_VALUE, -1L }; for (long sessionId : sessionIds) { doNothing().when(messageBlock).setSessionId(sessionId); messageBlock.setSessionId(sessionId); verify(messageBlock).setSessionId(sessionId); } } @Test @DisplayName("Test reset method")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplTest.java
void testGettersAndState() { SmbSessionImpl session = newSession(); // Basic getters assertSame(configuration, session.getConfig(), "getConfig delegates to transportContext"); assertEquals("EXAMPLE", session.getTargetDomain()); assertEquals("server.example", session.getTargetHost()); assertTrue(session.isInUse(), "New session starts in-use (usageCount=1)");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0)