Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 176 for elemnt (0.04 seconds)

  1. src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java

            copiedGroups.add("new-group");
    
            // Verify original is not modified
            assertEquals("Original list should have 1 element", 1, originalGroups.size());
            assertEquals("Copied list should have 2 elements", 2, copiedGroups.size());
        }
    
        /**
         * Test that processParentGroup handles null user gracefully when depth limit is reached.
         */
        @Test
    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)
  2. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            StackTraceElement[] stackTrace = exception.getStackTrace();
            assertNotNull(stackTrace);
            assertTrue(stackTrace.length > 0);
    
            // The first element should be from this test method
            StackTraceElement firstElement = stackTrace[0];
            assertEquals("test_stackTrace", firstElement.getMethodName());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

            assertNotNull(exception.getStackTrace());
            assertTrue(exception.getStackTrace().length > 0);
    
            // Verify that the first stack trace element is from this test method
            StackTraceElement firstElement = exception.getStackTrace()[0];
            assertEquals(this.getClass().getName(), firstElement.getClassName());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  4. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #                     ; groupComment=[comment]
    #                     ; elementList=list:{[the list of classification element's name]}
    #                 }
    #             }
    #         }
    #         # classification elements for implicit classification
    #         ; map:{
    #             ; code=[code]; name=[name]; alias=[alias]; comment=[comment]
    #             ; sisterCode=[code or code-list]; subItemMap=map:{[free-map]}
    #         }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                }
            }
        }
    
        /**
         * Writes a search log event.
         *
         * @param event The search log event.
         */
        public void writeSearchLogEvent(final SearchLogEvent event) {
            try {
                final Map<String, Object> source = toSource(event);
                searchLogLogger.info(objectMapper.writeValueAsString(source));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java

            chatApiManager.sendSseEvent(writer, "test", Map.of("key", "value"));
    
            final String output = stringWriter.toString();
            assertTrue(output.contains("event: test"));
            assertTrue(output.contains("data:"));
            assertTrue(output.contains("\"key\":\"value\""));
        }
    
        @Test
        public void test_sendSseEvent_session() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 14 01:39:16 GMT 2026
    - 35K bytes
    - Click Count (0)
  7. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o additionalUserMap: (NotRequired - Default map:{})
        #  You can set additional users.
        #  Elements of this map are as below:
        #   o key of map: User Definition Name (userDefName)
        #   o url: (NotRequired - Default same as one of main schema)
        #   o schema: (NotRequired - Default treated as no schema setting)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.3K bytes
    - Click Count (0)
  8. CLAUDE.md

    - Authentication: Local (UserService), LDAP, OIDC, SAML, SPNEGO, Entra ID
    - Security features: AES encryption, SHA256 digest, LDAP injection prevention, password policy, rate limiting
    
    ## Naming Conventions
    
    | Element | Convention | Example |
    |---------|------------|---------|
    | Classes | PascalCase | `UserService`, `FessBaseAction` |
    | Methods | camelCase + verb | `getUserList()`, `setupHtmlData()` |
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  9. src/main/webapp/js/admin/admin.js

            }
          )
          .click(function() {
            document.location = $(this).attr("data-href");
          });
      });
    
      $("#confirmToDelete").on("show.bs.modal", function(event) {
        var button = $(event.relatedTarget);
        var docId = button.data("docid");
        var title = button.data("title");
        var url = button.data("url");
    
        $(this)
          .find(".modal-body #delete-doc-title")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 06 20:44:47 GMT 2018
    - 3.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java

            for (Map<String, Object> elem : jobLogList) {
                deleteMethod("/api/admin/joblog/log/" + elem.get("id"));
            }
    
            final List<Map<String, Object>> crawlingInfoList = readCrawlingInfo(fileConfigId);
            for (Map<String, Object> elem : crawlingInfoList) {
                deleteMethod("/api/admin/crawlinginfo/log/" + elem.get("id"));
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 7.5K bytes
    - Click Count (0)
Back to Top