Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 181 for processed_ (0.04 sec)

  1. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                    }
                }
            }
            return queryBuf.toString().trim();
        }
    
        /**
         * Appends various search conditions to the query buffer.
         * Processes advanced search parameters like occurrence, phrases, OR queries, NOT queries,
         * file types, site searches, and timestamp filters.
         *
         * @param queryBuf the StringBuilder to append conditions to
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/Punycode.kt

          return true
        }
    
        var pos = pos + 4 // 'xn--'.size.
    
        // We'd prefer to operate directly on `result` but it doesn't offer insertCodePoint(), only
        // appendCodePoint(). The Punycode algorithm processes code points in increasing code-point
        // order, not in increasing index order.
        val codePoints = mutableListOf<Int>()
    
        // consume all code points before the last delimiter (if there is one)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                if (e.getCause() instanceof DecodingException) {
                    return BASE64URL_DECODER.decode(base64String.trim());
                }
                throw e;
            }
        }
    
        /**
         * Processes the callback from OpenID Connect provider.
         *
         * @param request the HTTP servlet request
         * @param code the authorization code
         * @return the login credential
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/eventbus/EventBus.java

     *       complicate debugging, lead to unintentional reentrant calls, and force apps to eagerly
     *       initialize all possible subscribers at startup time.
     *   <li>It uses reflection in ways that break when code is processed by optimizers/minimizers like
     *       <a href="https://developer.android.com/studio/build/shrink-code">R8 and Proguard</a>.
     *   <li>It doesn't offer a way to wait for multiple events before taking action. For example, it
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/netbios/LmhostsTest.java

            assertNotNull(lmhosts.getByName("HOST3", mockContext));
        }
    
        @Test
        void testPopulateWithInclude() throws Exception {
            // Test that include directives are processed (even if the include fails)
            // The main file content should still be loaded
    
            // Create a temporary lmhosts file with include directive
            File lmhostsFile = tempDir.resolve("lmhosts_include").toFile();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    /**
     * Command class for handling term query execution and conversion.
     * This class processes Lucene TermQuery objects and converts them to OpenSearch QueryBuilder instances.
     */
    public class TermQueryCommand extends QueryCommand {
        private static final Logger logger = LogManager.getLogger(TermQueryCommand.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        protected WebConfigService webConfigService;
    
        /** Service for managing file crawler configurations */
        @Resource
        protected FileConfigService fileConfigService;
    
        /** Helper for managing crawler processes */
        @Resource
        protected ProcessHelper processHelper;
    
        /** Service for managing scheduled jobs */
        @Resource
        protected ScheduledJobService scheduledJobService;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/http/NtlmHttpFilterTest.java

        @Test
        void testDoFilter_ntlmType1Message() throws Exception {
            // Test NTLM Type 1 message handling
            // This test verifies that when a Type 1 NTLM message is received,
            // the filter processes it correctly through NtlmSsp.authenticate
    
            // Create a minimal filter config that won't try to connect to a real server
            Map<String, String> initParams = new HashMap<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

        protected static final String WAR_FILE_EXTENSION = ".war";
    
        /** The entry prefix for class files inside a WAR file. */
        protected static final String WEB_INF_CLASSES_PATH = "WEB-INF/classes/";
    
        /**
         * Processes the directory under the root directory.
         *
         * @param rootDir the root directory (must not be {@literal null})
         * @param handler the handler to process classes (must not be {@literal null})
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            int cleanupDays = fessConfig.getDayForCleanup();
            // cleanupDays is primitive int, not Integer
            assertEquals(3, cleanupDays);
    
            // Test integer conversion for crawler processes
            Integer crawlerProcesses = fessConfig.getJobMaxCrawlerProcessesAsInteger();
            assertNotNull(crawlerProcesses);
            assertEquals(3, crawlerProcesses.intValue());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
Back to top