Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 31 for spre (0.03 seconds)

  1. 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)
  2. CONTRIBUTING.md

    1. Open the failure report mentioned in the output.\
    If you don't see the report link in the output in the IDE, make sure to select the top-level node in the structured output panel.
    The report will explain the errors in detail.
    Perhaps, you forgot to add an `@Incubating` annotation or `@since` in the javadoc.
    
    2. Accept the changes.\
    If you are sure that the changes are intentional, follow the steps described in the report.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. MIGRATION.md

    ## Table of Contents
    
    - [Supported Migration Sources](#supported-migration-sources)
    - [Pre-Migration Planning](#pre-migration-planning)
    - [Migration Methods](#migration-methods)
      - [Google Search Appliance (GSA)](#google-search-appliance-gsa--google-mini)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

            @Override
            public boolean onStartElement(String element, Map<String, String> attributes) {
                if (!"pre".equals(element)) {
                    return false;
                }
                Element newElement = document.createElement("programlisting");
                //we're making an assumption that all <pre> elements contain java code
                //this should mostly be true :)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 21 06:20:45 GMT 2025
    - 29.3K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

                if (failures.isNotEmpty()) {
                    val lines = listOf("""
                        Failed to automatically fix project build files.
                        Make sure each project has a gradleModule.computedRuntimes block directly below the dependencies block:
    
                        ```
                        dependencies {
                            // ...
                        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
Back to Top