- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 341 for wirst (1.53 sec)
-
src/test/java/jcifs/pac/kerberos/KerberosRelevantAuthDataTest.java
assertEquals(2, authorizations.size(), "The authorizations list should contain two elements."); assertTrue(authorizations.contains(mockAuthData1), "The list should contain the first mocked auth data."); assertTrue(authorizations.contains(mockAuthData2), "The list should contain the second mocked auth data."); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/HostIntervalControllerTest.java
q.setUrl("http://example.com/page1"); CrawlingParameterUtil.setUrlQueue(q); // First access - should not delay final long start1 = System.nanoTime(); controller.delayBeforeProcessing(); final long elapsed1 = (System.nanoTime() - start1) / 1000000; assertTrue("First access should not delay", elapsed1 < 50); // Second access to same host - should delay
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
* specified through this <code>jcifs.properties</code> system property. * * @return a global context, initialized on first call */ public static synchronized final SingletonContext getInstance() { if (INSTANCE == null) { try { log.debug("Initializing singleton context"); init(null);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java
int written = pipe.writeSetupWireFormat(dst, 0); assertEquals(4, written, "Setup should write 4 bytes"); assertEquals(SmbComTransaction.TRANS_WAIT_NAMED_PIPE, dst[0], "First byte should be subCommand"); assertEquals(0, dst[1], "Second byte should be 0"); assertEquals(0, dst[2], "Third byte should be 0 (no FID)"); assertEquals(0, dst[3], "Fourth byte should be 0 (no FID)");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
assertNull(retrieved[0]); } public void test_multipleOperationsOnSameKey() { // Test multiple operations on the same key ExtractData data = new ExtractData(); // First operation data.putValue("key", "value1"); assertEquals("value1", data.getValues("key")[0]); // Second operation (overwrite) data.putValue("key", "value2");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
private String playerLoc; /** * The duration of the video in seconds. * Value must be from 1 to 28800 (8 hours). */ private String duration; /** * The date the video was first published, in W3C format. */ private String publicationDate; /** * An optional arbitrary string tag describing the video. * Maximum 32 characters. */ private String category;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplSecurityTest.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java
} @Test @DisplayName("Test multiple update and digest cycles") void testMultipleUpdateDigestCycles() { SMB1SigningDigest digest = new SMB1SigningDigest(testMacSigningKey); // First cycle byte[] data1 = new byte[] { 0x01, 0x02, 0x03, 0x04 }; digest.update(data1, 0, data1.length); byte[] result1 = digest.digest(); assertNotNull(result1); // Second cycleRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriterTest.java
new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.DOCUMENT); // First write SuggestWriterResult result1 = writer.write(runner.client(), suggester.settings(), suggester.getIndex(), new SuggestItem[] { item }, false); assertNotNull(result1);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 18.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java
* <li>Dynamic passwords provided through extraction parameters</li> * </ul> * * <p>Passwords are matched against URLs or resource names using regular expression patterns. * The extractor first tries to match against the URL, then falls back to the resource name if available. * * @author shinsuke */ public abstract class PasswordBasedExtractor extends AbstractExtractor {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 5.1K bytes - Viewed (0)