Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for resides (0.03 seconds)

  1. src/main/webapp/js/suggestor.js

              });
              $boxElement.on("mouseleave", function () {
                isMouseHover = false;
              });
    
              this.resize();
              suggestor = this;
              $(window).resize(function () {
                suggestor.resize();
              });
    
              $("body").append($boxElement);
            },
    
            /**
             * Fetch and display suggestions based on current input
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  2. 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), ",");
    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)
  3. src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java

        }
    
        @Test
        public void test_nullSafeLogout() {
            SpnegoAuthenticator authenticator = new SpnegoAuthenticator();
    
            // SPNEGO logout should return null (relies on Kerberos infrastructure)
            String logoutUrl = authenticator.logout(null);
            assertNull(logoutUrl);
        }
    
        @Test
        public void test_nullSafeGetResponse() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  4. src/main/assemblies/files/fess.in.bat

    )
    
    if NOT "%FESS_HEAP_SIZE%" == "" (
    set FESS_MIN_MEM=%FESS_HEAP_SIZE%
    set FESS_MAX_MEM=%FESS_HEAP_SIZE%
    )
    
    REM min and max heap sizes should be set to the same value to avoid
    REM stop-the-world GC pauses during resize, and so that we can lock the
    REM heap in memory on startup to prevent any of it from being swapped
    REM out.
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Xms%FESS_MIN_MEM% -Xmx%FESS_MAX_MEM%
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 03:48:59 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  5. src/main/assemblies/files/fess.in.sh

    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djavax.net.ssl.trustStorePassword=changeit"
    
    # min and max heap sizes should be set to the same value to avoid
    # stop-the-world GC pauses during resize, and so that we can lock the
    # heap in memory on startup to prevent any of it from being swapped
    # out.
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xms${FESS_MIN_MEM}"
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmx${FESS_MAX_MEM}"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 03:48:59 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            final String testCommand = "convert ${url} -resize 100x100 ${outputFile}";
            final String tempPath = "/tmp/source.pdf";
            final String outputPath = "/tmp/thumbnail.jpg";
    
            final String expandedCommand = testCommand.replace("${url}", tempPath).replace("${outputFile}", outputPath);
    
            assertEquals("convert /tmp/source.pdf -resize 100x100 /tmp/thumbnail.jpg", expandedCommand);
    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)
  7. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        public ActionResponse getResponse(final SsoResponseType responseType) {
            return null;
        }
    
        /**
         * Performs logout for the specified user.
         *
         * SPNEGO authentication relies on the underlying Kerberos infrastructure
         * for session management, so no specific logout URL is provided.
         *
         * @param user The user to logout
    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. src/main/webapp/css/chat.css

       Input area
       ============================================ */
    .input-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .card-footer #chatInput {
        resize: none;
        max-height: 150px;
        overflow-y: auto;
        border-radius: 8px 0 0 8px;
        border: 1px solid #dfe1e6;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  9. src/main/webapp/js/chat.js

                var messageContent = $(this).closest('.chat-message').find('.message-text');
                copyToClipboard(messageContent.text(), $(this));
            });
        }
    
        /**
         * Auto-resize textarea based on content
         */
        function autoResizeTextarea() {
            var textarea = elements.chatInput[0];
            textarea.style.height = 'auto';
    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)
Back to Top