Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 75 for nell (0.02 seconds)

  1. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                System.setProperty(FesenClient.HTTP_ADDRESS, httpAddress);
            }
    
            TimeoutTask systemMonitorTask = null;
            TimeoutTask logNotificationTask = null;
            LogNotificationTarget logNotificationTarget = null;
            int exitCode;
            try {
                SingletonLaContainerFactory.setConfigPath("app.xml");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  2. AI_POLICY.md

    ## What we expect from contributors
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java

            }
    
            @Override
            public LaunchedProcess launchNow() {
                return delegate != null ? delegate.launchNow() : null;
            }
    
            @Override
            public LaunchedProcess launchNow(final LaunchNowOpCall opLambda) {
                return delegate != null ? delegate.launchNow(opLambda) : null;
            }
    
            @Override
            public void stopNow() {
            }
    
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

         *
         * @param template the Groovy script to evaluate (null-safe, returns null if empty)
         * @param paramMap the parameters to bind to the script (null-safe, treated as empty map if null)
         * @return the result of script evaluation, or null if the template is empty or evaluation fails
         * @throws JobProcessingException if the script explicitly throws this exception
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

                    }
                    return null;
                }
    
                @Override
                public LaunchedProcess launchNow(final LaunchNowOpCall opLambda) {
                    if (withParamsCallback != null) {
                        return withParamsCallback.call(opLambda);
                    }
                    return null;
                }
            };
    
            final JobManager mockJobManager = new JobManager() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                    if (cleanupCalled != null) {
                        cleanupCalled.set(true);
                    }
                    if (cleanupRetries != null) {
                        cleanupRetries.set(remainingRetries);
                    }
                    if (cleanupName != null) {
                        cleanupName.set(operationName);
                    }
                    if (cleanupData != null) {
                        cleanupData.set(data);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            final String value = getHttpFileuploadMaxSize();
            return value != null ? DfTypeUtil.toLong(value) : null;
        }
    
        String getHttpFileuploadThresholdSize();
    
        default Long getHttpFileuploadThresholdSizeAsLong() {
            final String value = getHttpFileuploadThresholdSize();
            return value != null ? DfTypeUtil.toLong(value) : null;
        }
    
        String getPasswordInvalidAdminPasswords();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/exec/Crawler.java

                final boolean runAll = webConfigIdList == null && fileConfigIdList == null && dataConfigIdList == null;
    
                Thread webFsCrawlerThread = null;
                Thread dataCrawlerThread = null;
    
                if (runAll || webConfigIdList != null || fileConfigIdList != null) {
                    webFsCrawlerThread = new Thread((Runnable) () -> {
                        // crawl web
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            events.add(new LogNotificationEvent(base, "ERROR", "org.test.A", "first", null));
            events.add(new LogNotificationEvent(base + 1000, "WARN", "org.test.B", "second", null));
            events.add(new LogNotificationEvent(base + 2000, "ERROR", "org.test.C", "third", null));
    
            String details = testableJob.testFormatDetails(events);
    
            int posFirst = details.indexOf("first");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

                helper = ComponentUtil.getLogNotificationHelper();
            } catch (final Exception e) {
                return;
            }
    
            String throwableStr = null;
            final Throwable thrown = event.getThrown();
            if (thrown != null) {
                final StringWriter sw = new StringWriter();
                thrown.printStackTrace(new PrintWriter(sw));
                throwableStr = sw.toString();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
Back to Top