Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. architecture/standards/0007-java-pre-requisite.md

    ## Consequences
    
    - Finalize Daemon JVM toolchain support, including auto-provisioning.
    - To stop requiring a pre-installed Java runtime for the Gradle Wrapper and Launcher, Gradle will need to find an alternative.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            assertEquals("<pre class=\"prettyprint\"></pre>", value);
    
            code = "aaa";
            value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code);
            assertEquals("<pre class=\"prettyprint\">aaa</pre>", value);
    
            code = "aaa\nbbb";
            value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code);
            assertEquals("<pre class=\"prettyprint\">aaa\nbbb</pre>", value);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6K bytes
    - Click Count (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     * set one of the following:</p>
     *
     * <h3>Option 1: Set base URL (recommended for simplicity)</h3>
     * <pre>
     * # All SP URLs will be derived from this base URL
     * saml.sp.base.url=https://your-fess-server.example.com
     * </pre>
     *
     * <h3>Option 2: Set individual SP URLs</h3>
     * <pre>
     * # SP Entity ID (Audience URI in IdP)
     * saml.sp.entityid=https://your-fess-server.example.com/sso/metadata
     *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:13:33 GMT 2026
    - 20.2K bytes
    - Click Count (3)
  5. 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)
  6. src/main/webapp/js/marked.min.js

    `;return r?'<pre><code class="language-'+O(r)+'">'+(n?i:O(i,!0))+`</code></pre>
    `:"<pre><code>"+(n?i:O(i,!0))+`</code></pre>
    `}blockquote({tokens:e}){return`<blockquote>
    ${this.parser.parse(e)}</blockquote>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 41.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

            return this;
        }
    
        /**
         * Gets the custom pre-tags for highlighting.
         *
         * @return the pre-tags array, or null if using defaults
         */
        public String[] getPreTags() {
            return preTags;
        }
    
        /**
         * Sets the custom pre-tags for highlighting with fluent interface.
         *
         * @param preTags the pre-tags to set
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 10:17:07 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            if (StringUtil.isBlank(content)) {
                return "<pre class=\"" + style + "\">" + input.replaceAll("L[0-9]+:", StringUtil.EMPTY).trim() + "</pre>";
            }
            return "<pre class=\"" + style + " linenums:" + lineNum + "\">" + content + "</pre>";
        }
    
        /**
         * Retrieves a localized message for the given key.
         *
         * @param key the message key
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25.4K bytes
    - Click Count (1)
  9. architecture/standards/0010-gradle-properties-naming.md

    Examples of properties that follow the naming rules:
    
    * `org.gradle.internal.operations.trace`
    * `org.gradle.internal.cmdline.max.length`
    * …
    
    ### Properties of pre-incubation features
    
    Properties of pre-incubation features MUST start with `org.gradle.experimental.`  
    They can all be called **experimental properties**.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_ALLOW_BASIC = "spnego.allow.basic";
    
        /** Configuration key for pre-authentication password. */
        protected static final String SPNEGO_PREAUTH_PASSWORD = "spnego.preauth.password";
    
        /** Configuration key for pre-authentication username. */
        protected static final String SPNEGO_PREAUTH_USERNAME = "spnego.preauth.username";
    
    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)
Back to Top