- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 470 for every (0.02 sec)
-
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
} public void test_convertPhraseQuery_longPhrase() { // Test with long phrase (many terms) PhraseQuery.Builder builder = new PhraseQuery.Builder(); String[] words = { "this", "is", "a", "very", "long", "phrase", "query" }; for (String word : words) { builder.add(new Term(Constants.DEFAULT_FIELD, word)); } PhraseQuery phraseQuery = builder.build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
assertEquals(engine1, scriptEngineFactory.getScriptEngine("name1")); assertEquals(engine2, scriptEngineFactory.getScriptEngine("name2")); } // Test with engine that has very long class name public void test_add_longClassName() { VeryLongClassNameScriptEngineImplementation engine = new VeryLongClassNameScriptEngineImplementation(); scriptEngineFactory.add("short", engine);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
Supplier<Object> supplier = () -> ""; monitorTarget.append(buf, "emptyKey", supplier); assertEquals("\"emptyKey\":\"\"", buf.toString()); } // Test append with very long string public void test_append_veryLongString() { StringBuilder buf = new StringBuilder(); String longString = "a".repeat(10000); Supplier<Object> supplier = () -> longString;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Monitor.java
} /** * Returns whether any threads are waiting to enter this monitor. Note that because cancellations * may occur at any time, a {@code true} return does not guarantee that any other thread will ever * enter this monitor. This method is designed primarily for use in monitoring of the system * state. */ public boolean hasQueuedThreads() { return lock.hasQueuedThreads(); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 42.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
System.clearProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS); } } } public void test_getSearchEngineHttpAddress_withLongValue() { // Test with a very long URL StringBuilder longUrl = new StringBuilder("http://"); for (int i = 0; i < 1000; i++) { longUrl.append("a"); } longUrl.append(".example.com:9200");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withLongUrls() { // Test with very long URLs StringBuilder longParentUrl = new StringBuilder("http://example.com/"); StringBuilder longUrl = new StringBuilder("http://example.com/"); for (int i = 0; i < 100; i++) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java
final int r = 32; final byte[] suffix = new byte[label.length + context.length + 5]; // per bouncycastle // <li>1: K(i) := PRF( KI, [i]_2 || Label || 0x00 || Context || [L]_2 ) with the counter at the very beginning // of the fixedInputData (The default implementation has this format)</li> // with the parameters // <li>1. KDFCounterParameters(ki, null, "Label || 0x00 || Context || [L]_2]", 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
import java.util.Set; /** * Creates temporary files and directories whose permissions are restricted to the current user or, * in the case of Android, the current app. If that is not possible (as is the case under the very * old Android Ice Cream Sandwich release), then this class throws an exception instead of creating * a file or directory that would be more accessible. */ @J2ktIncompatible @GwtIncompatible @J2ObjCIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
docs/en/docs/tutorial/security/first-steps.md
We will soon also create the actual path operation. /// info If you are a very strict "Pythonista" you might dislike the style of the parameter name `tokenUrl` instead of `token_url`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.4K bytes - Viewed (0)