Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 470 for every (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/jcifs/util/ResourceManager.java

                    reportLeak(holder);
                    activeResources.remove(entry.getKey());
                    cleaned++;
                } else if (!holder.closed && holder.getAge() > maxResourceAge * 2) {
                    // Very old unclosed resource - attempt to close it
                    AutoCloseable resource = holder.resourceRef.get();
                    if (resource != null) {
                        try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  10. 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)
Back to top