Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 94 for spre (0.03 seconds)

  1. 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)
  2. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         * @return empty OptionalThing indicating no login manager is used
         */
        @Override
        protected OptionalThing<LoginManager> myLoginManager() {
            return OptionalThing.empty();
        }
    
        /**
         * Pre-processes API requests by checking access authorization before executing the action.
         * If access is not allowed, returns an unauthorized error response.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  3. src/main/webapp/css/admin/bootstrap.min.css.map

    $nested-kbd-font-weight;\n    @include box-shadow(none);\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  @include font-size($code-font-size);\n  color: $pre-color;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    @include font-size(inherit);\n    color: inherit;\n    word-break: normal;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: $pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","// Container widths\n//\n// Set...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 639.3K bytes
    - Click Count (1)
  4. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

                return curlHelper.delete(path);
            default:
                break;
            }
            return null;
        }
    
        /**
         * Creates an HTML response for the list page with optional pre-processing.
         *
         * @param runnable optional runnable to execute before rendering (can be null)
         * @return HTML response for the search request list page
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  5. src/main/resources/fess_label_zh_TW.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.5K bytes
    - Click Count (0)
  6. src/main/webapp/js/chat.js

            ALLOWED_TAGS: ['h1','h2','h3','h4','h5','h6',
                           'p','br','hr',
                           'strong','em','b','i','u','s','del',
                           'ul','ol','li',
                           'code','pre',
                           'blockquote',
                           'table','thead','tbody','tr','th','td',
                           'a','img',
                           'span','div'],
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  7. src/test/resources/thumbnail/test_generate_thumbnail.sh

    echo ""
    
    # Check if the script exists
    if [[ ! -f "${GENERATE_THUMBNAIL}" ]]; then
        echo -e "${RED}ERROR: generate-thumbnail script not found at ${GENERATE_THUMBNAIL}${NC}"
        exit 1
    fi
    
    # Make sure the script is executable
    chmod +x "${GENERATE_THUMBNAIL}"
    
    echo "--- Basic argument tests ---"
    
    # Test: No arguments
    run_test "no arguments" 1 "${GENERATE_THUMBNAIL}"
    
    # Test: Empty command type
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

                @Override
                public void commit() {
                }
            };
    
            FileListIndexUpdateCallbackImpl callback = new FileListIndexUpdateCallbackImpl(mockCallback, null, 1);
    
            // Pre-populate with some URLs
            synchronized (mockCallback) {
                for (int i = 0; i < 100; i++) {
                    callback.deleteUrlList.add("http://example.com/doc" + i);
                }
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  9. 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)
  10. 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)
Back to Top