Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 32 for PRE (0.01 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String SUCCESS_crud_delete_crud_table = "{success.crud_delete_crud_table}";
    
        /**
         * Add the created action message for the key 'errors.front_header' with parameters.
         * <pre>
         * message:
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addErrorsFrontHeader(String property) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 126.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/opensearch/config/exentity/JobLogTest.java

            assertSame(scheduledJob, jobLog.getScheduledJob());
        }
    
        @Test
        public void test_setId_preGeneratedId() {
            final JobLog jobLog = new JobLog();
            jobLog.setId("pre-generated-id-123");
            assertEquals("pre-generated-id-123", jobLog.getId());
        }
    
        @Test
        public void test_setId_overwriteExisting() {
            final JobLog jobLog = new JobLog();
            jobLog.setId("first-id");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java

            // Execute the real process() method
            final TestableScriptExecutorJob job = new TestableScriptExecutorJob();
            job.process(runtime);
    
            // Verify the JobLog was stored with the pre-generated ID
            assertNotNull(storedJobLog.get());
            assertEquals("pregenerated-abc123", storedJobLog.get().getId());
            assertEquals(Constants.OK, storedJobLog.get().getJobStatus());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /** SPNEGO JAAS login server module name. */
        @Size(max = 1000)
        public String spnegoLoginServerModule;
    
        /** SPNEGO pre-authentication username. */
        @Size(max = 1000)
        public String spnegoPreauthUsername;
    
        /** SPNEGO pre-authentication password. */
        @Size(max = 1000)
        public String spnegoPreauthPassword;
    
        /** Enable or disable SPNEGO basic authentication. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

            throw new UnsupportedOperationException("index() is not supported in API. Use the admin UI instead.");
        }
    
        /**
         * Starts a scheduled job by ID.
         * When job logging is enabled, a pre-generated job log ID is returned in the response
         * as {@code jobLogId}. When job logging is disabled, {@code jobLogId} is {@code null}.
         *
         * @param id the ID of the scheduled job to start
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

        /**
         * Displays the form for duplicating an existing data store configuration.
         *
         * @param id the ID of the data config to duplicate
         * @return HTML response for the data config creation form pre-populated with duplicated values
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse duplicate(final String id) {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        /**
         * Displays the form for duplicating an existing file crawler configuration.
         *
         * @param id the ID of the file config to duplicate
         * @return HTML response for the file config creation form pre-populated with duplicated values
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse duplicate(final String id) {
            saveToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

        /**
         * Displays the form for duplicating an existing web crawler configuration.
         *
         * @param id the ID of the web config to duplicate
         * @return HTML response for the web config creation form pre-populated with duplicated values
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse duplicate(final String id) {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  9. src/main/resources/fess_label_en.properties

    labels.spnego_login_conf=Login Config
    labels.spnego_login_client_module=Login Client Module
    labels.spnego_login_server_module=Login Server Module
    labels.spnego_preauth_username=Pre-Auth Username
    labels.spnego_preauth_password=Pre-Auth Password
    labels.spnego_allow_basic=Allow Basic Auth
    labels.spnego_allow_unsecure_basic=Allow Unsecure Basic Auth
    labels.spnego_prompt_ntlm=Prompt NTLM
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            assertNotNull(responseJobLogId);
            assertEquals(32, responseJobLogId.length());
            assertTrue(responseJobLogId.matches("[0-9a-f]{32}"));
    
            // Verify the pre-generated ID was passed to the job via launch params
            assertNotNull(capturedOption.get());
            assertEquals(responseJobLogId, capturedOption.get().getParameterMap().get(Constants.JOB_LOG_ID));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
Back to Top