Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 140 for greeting (0.04 seconds)

  1. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  This is only for the main schema. Additional schemas are unconcerned.
            #  And ReplaceSchema task basically ignores this.
            #
            #  Normally this 'except' means no getting meta data for excepted tables.
            #  (so the tables are not existing in SchemaHTML and HistoryHTML and so on).
            #  But you can specify the '@gen' suffix that means generate-only except.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            assertTrue(result >= 0);
        }
    
        // Test FilePurgeVisitor getDocId
        @Test
        public void test_FilePurgeVisitor_getDocId() throws IOException {
            // Test the getDocId logic without creating actual FilePurgeVisitor
            // The logic converts path to doc ID by removing path separators
            String pathStr = "_1/_2/docid123";
            String expectedDocId = "_1_2docid123";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

                assertEquals(expectedCause, e.getCause());
            }
        }
    
        @Test
        public void test_multipleExceptions_differentStatusCodes() {
            // Test creating multiple exceptions with different status codes
            WebApiException exception1 = new WebApiException(400, "Bad Request");
            WebApiException exception2 = new WebApiException(401, "Unauthorized");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

        // -----------------------------------------------------
        //                                            Entry Page
        //                                            ----------
        /**
         * Displays the form for creating a new role item.
         *
         * @return HTML response for the create form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

        }
    
        @Test
        public void test_getXContentBuilderOutputStream_ioException() {
            XContentBuilderCallback callback = (builder, params) -> {
                // Simulate IOException by creating invalid state
                throw new IOException("Test exception");
            };
    
            OutputStream outputStream = SearchEngineUtil.getXContentBuilderOutputStream(callback, XContentType.JSON);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        // -----------------------------------------------------
        //                                            Entry Page
        //                                            ----------
        /**
         * Displays the form for creating a new path mapping.
         *
         * @return HTML response for the path mapping creation form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  7. README.md

    > For a comprehensive overview, please visit the [official Gradle project homepage](https://gradle.org).
    
    ---
    
    ### 🚀 **Getting Started**
    
    Starting with Gradle is easy with these essential resources. Follow these to install Gradle, set up initial projects, and explore supported platforms:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

                    }
                }
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Creating new session. requestedSessionId={}, userId={}", sessionId, userId);
            }
            return createSession(userId);
        }
    
        /**
         * Adds a message to a session.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

        // -----------------------------------------------------
        //                                            Entry Page
        //                                            ----------
        /**
         * Displays the form for creating a new related query item.
         *
         * @return HTML response for the create form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 16.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

        // -----------------------------------------------------
        //                                            Entry Page
        //                                            ----------
        /**
         * Displays the form for creating a new related content item.
         *
         * @return HTML response for the create form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.5K bytes
    - Click Count (0)
Back to Top