Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 87 for ohne (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. LICENSE

              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
              as part of the Derivative Works; within the Source form or
              documentation, if provided along with the Derivative Works; or,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 16:29:02 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    (){a(this).parent().find("."+e).fadeOut("slow")})}),this},a.fn.validate=function(b,c,d){var e=a.extend({},a.formUtils.LANG,d||{});this.each(function(){var d=a(this),f=d.closest("form").get(0)||{},g=f.validationConfig||a.formUtils.defaultConfig();d.one("validation",function(a,c){"function"==typeof b&&b(c,this,a)}),d.validateInputOnBlur(e,a.extend({},g,c||{}),!0)})},a.fn.willPostponeValidation=function(){return(this.valAttr("suggestion-nr")||this.valAttr("postpone")||this.hasClass("hasDatepicker")...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 32.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                    final List<String> sides = split(line, "=>");
                    if (sides.size() > 1) { // explicit mapping
                        if (sides.size() != 2) {
                            throw new DictionaryException("more than one explicit mapping specified on the same line");
                        }
                        final List<String> inputStrings = split(sides.get(0), ",");
                        inputs = new String[inputStrings.size()];
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

        private boolean isValidVirtualHostPath(final String path) {
            // Empty path is valid (default host)
            if (StringUtil.isBlank(path)) {
                return true;
            }
            // Path must match one of the configured virtual host paths
            for (final String validPath : ComponentUtil.getVirtualHostHelper().getVirtualHostPaths()) {
                if (path.equals(validPath)) {
                    return true;
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java

        @Test
        public void test_getParentGroup_oneBeforeDepthLimit() {
            EntraIdAuthenticator authenticator = new EntraIdAuthenticator();
            authenticator.setMaxGroupDepth(5);
    
            // Test with depth one before the limit - should attempt to process
            // Will fail due to null user, but verifies depth check passes
            try {
                authenticator.getParentGroup(null, "test-id", 4);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     *
     * <h2>Service Provider URL Configuration</h2>
     * <p>By default, the SP URLs use {@code http://localhost:8080} as the base URL.
     * For production or when the IdP is configured with a different URL, you should
     * 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>
     *
    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)
  7. src/main/resources/fess_config.properties

    #                                                     ------
    
    # The default path of cookie (basically '/' if no context path)
    cookie.default.path = /
    
    # The default expire of cookie in seconds e.g. 31556926: one year, 86400: one day
    cookie.default.expire = 3600
    # Session tracking modes
    session.tracking.modes=cookie
    
    # Comma-separated list of request parameter keys to store in cookies before SSO login.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

        }
    
        @Test
        public void test_getExtensionFromMimeType_msword() {
            assertEquals("", generator.getExtensionFromMimeType("application/msword"));
        }
    
        // Test all supported image MIME types in one comprehensive test
        @Test
        public void test_getExtensionFromMimeType_allImageTypes() {
            final String[][] testCases = { { "image/gif", ".gif" }, { "image/tiff", ".tiff" }, { "image/svg+xml", ".svg" },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            engine.close();
        }
    
        /**
         * Test that cached scripts do not leak binding state between evaluations.
         * Verifies that local variables in one evaluation do not affect the next.
         */
        @Test
        public void test_evaluate_noStateLeakBetweenEvaluations() {
            final GroovyEngine engine = new GroovyEngine();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        public static final String PROCESS_TYPE_DISPLAYING = "D";
    
        /** Process type for both crawling and displaying operations. */
        public static final String PROCESS_TYPE_BOTH = "B";
    
        /** Number of milliseconds in one day. */
        public static final long ONE_DAY_IN_MILLIS = 24L * 60L * 60L * 1000L;
    
        /** Guest user identifier. */
        public static final String GUEST_USER = "guest";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
Back to Top