Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 122 for processed_ (0.04 seconds)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                logger.warn("Unexpected exception while getting sAMAccountName for group: {}", groupName, e);
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Processes sub-roles for the specified LDAP user.
         *
         * @param ldapUser the LDAP user to process sub-roles for
         * @param bindDn the bind DN for LDAP connection
         * @param subRoleSet the set of sub-roles to process
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                throw new SsoLoginException("Failed to initialize SPNEGO.", e);
            }
        }
    
        /**
         * Attempts to obtain login credentials using SPNEGO authentication.
         *
         * This method processes the HTTP request to extract and validate SPNEGO
         * authentication tokens. It handles the SPNEGO handshake process and
         * extracts the user principal from successful authentication.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  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
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Dec 14 01:18:25 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  4. 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());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

        //                                                                         ===========
    
        /**
         * Periodic poll that sends a heartbeat, processes new events, and cleans up expired documents.
         */
        protected void poll() {
            try {
                sendHeartbeat();
            } catch (final Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                }
                return Collections.emptyList();
            } catch (final Exception e) {
                throw new PluginException("Failed to access " + url, e);
            }
        }
    
        /**
         * Processes a Maven-style repository to extract artifacts of the specified type.
         *
         * @param artifactType the type of artifacts to process
         * @param url the URL of the repository
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

        }
    
        // Test ProcessDestroyer inner class
        @Test
        public void test_processDestroyer_creation() throws Exception {
            // We can't directly test ProcessDestroyer without creating actual processes,
            // but we can test that the class exists and basic functionality
            try {
                // Use reflection to verify ProcessDestroyer class exists
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        }
    
        /**
         * Gets the URL link for a document with proper protocol handling.
         * Handles file, SMB, FTP, and HTTP protocols.
         *
         * @param document the document data map
         * @return the processed URL link
         */
        public String getUrlLink(final Map<String, Object> document) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  9. src/main/resources/fess_config.properties

    job.template.script=return container.getComponent("crawlJob").logLevel("info").webConfigIds([{0}] as String[]).fileConfigIds([{1}] as String[]).dataConfigIds([{2}] as String[]).jobExecutor(executor).execute();
    # Maximum number of crawler processes.
    job.max.crawler.processes=0
    # Default script language for jobs.
    job.default.script=groovy
    # Pattern to filter system properties for jobs.
    job.system.property.filter.pattern=
    
    # Number of processors to use.
    processors=0
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_pt_BR.properties

    labels.chat_error_timeout=A solicitação expirou. Por favor, tente novamente.
    labels.chat_error_context_length_exceeded=A mensagem é muito longa para ser processada. Por favor, encurte-a e tente novamente.
    labels.chat_error_model_not_found=O modelo de IA não foi encontrado. Por favor, entre em contato com o administrador.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 53.9K bytes
    - Click Count (0)
Back to Top