- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 141 for SessionId (0.04 sec)
-
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"suggest_indexer"}} {"name":"Suggest Indexer","target":"all","cronExpression":"0 12 * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"suggestJob\").logLevel(\"info\").sessionId(\"SUGGEST\").execute(executor);","jobLogging":true,"crawler":false,"available":true,"sortOrder":2,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 4.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
public void setExtendedSecurity(boolean extendedSecurity) { this.extendedSecurity = extendedSecurity; } @Override public void setSessionId(long sessionId) { this.sessionId = sessionId; } // Message interface methods @Override public boolean isRetainPayload() { return this.retainPayload; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
testEncryptionKey, testEncryptionKey); // Use same key for test byte[] plaintext = "Hello, SMB3 Encryption!".getBytes(); long sessionId = 0x123456789ABCDEF0L; // When - Encrypt byte[] encrypted = context.encryptMessage(plaintext, sessionId); // Then - Verify encrypted message structure assertNotNull(encrypted, "Encrypted message should not be null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
return new ArrayList<>(); // Always return empty for fast tests } public String store(String sessionId, DataConfig dataConfig) { return sessionId + "-" + dataConfig.getId(); } public void remove(String sessionCountId) { // No-op } }, "crawlingConfigHelper");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
} @Override public void setExtendedSecurity(boolean extendedSecurity) { // No-op for test } @Override public void setSessionId(long sessionId) { // No-op for test } @Override public void reset() { this.response = null; this.ignoreDisconnect = false; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K 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/helper/CrawlingConfigHelper.java
* * @param sessionId the session identifier * @param crawlingConfig the crawling configuration to store * @return the unique session count ID that can be used to retrieve the stored configuration */ public synchronized String store(final String sessionId, final CrawlingConfig crawlingConfig) { final String sessionCountId = sessionId + "-" + count;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/app/pager/CrawlingInfoPagerTest.java
assertEquals(25, crawlinginfopage.getPageSize()); assertEquals(1, crawlinginfopage.getCurrentPageNumber()); assertNull(crawlinginfopage.id); assertNull(crawlinginfopage.sessionId); assertNull(crawlinginfopage.createdTime); assertEquals(1, crawlinginfopage.getDefaultCurrentPageNumber()); crawlinginfopage.setAllRecordCount(999);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
private boolean extendedSecurity; private final AtomicLong usageCount = new AtomicLong(1); private final AtomicBoolean transportAcquired = new AtomicBoolean(true); private long sessionId; private SMBSigningDigest digest; private Smb2EncryptionContext encryptionContext; private final String targetDomain; private final String targetHost;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
// Given long[] sessionIds = { 0L, 1L, Long.MAX_VALUE, Long.MIN_VALUE, 0xFFFFFFFFFFFFFFFFL }; for (long sessionId : sessionIds) { Smb2SessionSetupRequest req = new Smb2SessionSetupRequest(mockContext, TEST_SECURITY_MODE, TEST_CAPABILITIES, sessionId, null); byte[] buffer = new byte[512]; // When req.encode(buffer, 0); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0)