Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for batean (0.04 sec)

  1. src/main/resources/fess_indices/_aws/fess.json

              "type":       "stemmer_override",
              "rules": []
            },
            "basque_stop": {
              "type":       "stop",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

                @Override
                public String[] getRoles(LdapUser user, String baseDn, String accountFilter, String groupFilter, Consumer<String[]> callback) {
                    // Verify parameters
                    assertSame(ldapUser, user);
                    assertEquals("dc=example,dc=com", baseDn);
                    assertEquals("(uid=%s)", accountFilter);
                    assertEquals("(memberOf=%s)", groupFilter);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_de.properties

    errors.crud_failed_to_create_instance = Fehler beim Erstellen neuer Daten.
    errors.crud_failed_to_create_crud_table = Fehler beim Erstellen neuer Daten. ({0})
    errors.crud_failed_to_update_crud_table=Fehler beim Aktualisieren der Daten. ({0})
    errors.crud_failed_to_delete_crud_table=Fehler beim Löschen der Daten. ({0})
    errors.crud_could_not_find_crud_table = Die Daten {0} wurden nicht gefunden.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapUser.java

                final FessConfig fessConfig = ComponentUtil.getFessConfig();
                final String baseDn = fessConfig.getLdapBaseDn();
                final String accountFilter = fessConfig.getLdapAccountFilter();
                final String groupFilter = fessConfig.getLdapGroupFilter();
                if (StringUtil.isNotBlank(baseDn) && StringUtil.isNotBlank(accountFilter)) {
                    final LdapManager ldapManager = ComponentUtil.getLdapManager();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

        /**
         * Performs a search operation using the specified query and parameters.
         *
         * @param query the search query string
         * @param params the search request parameters
         * @param userBean the optional user bean for access control
         * @return the search result containing documents and metadata
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

            }
        }
    
        /**
         * Copies the source Bean to a new instance of the destination Bean and returns it.
         *
         * @param <T> The type of the destination Bean.
         * @param src The source Bean. Must not be {@literal null}.
         * @param destClass The type of the destination Bean. Must not be {@literal null}.
         * @return The newly copied Bean.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/GroupService.java

            });
    
        }
    
        /**
         * Sets up the search conditions for group list queries based on pager criteria.
         * Configures the condition bean with ID filtering and ordering by name.
         *
         * @param cb the condition bean for building the query
         * @param groupPager the pager containing search and filter criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            FessUserBean anotherBean = new FessUserBean(anotherUser);
            assertSame(anotherUser, anotherBean.getFessUser());
        }
    
        public void test_empty() {
            // Test empty user bean creation
            FessUserBean emptyBean = FessUserBean.empty();
            assertNotNull(emptyBean);
    
            // Test getUserId returns EMPTY_USER_ID
            assertEquals(Constants.EMPTY_USER_ID, emptyBean.getUserId());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. README.md

    nameProperty.setValue(bean, "John Doe");
    
    // Bean copying with flexible options
    BeanUtil.copyBeanToBean(source, destination);
    BeanUtil.copyBeanToBean(source, destination, options -> 
        options.exclude("password", "internalId"));
    
    // Convert between beans and maps
    Map<String, Object> map = BeanUtil.copyBeanToNewMap(bean);
    MyBean newBean = BeanUtil.copyMapToNewBean(map, MyBean.class);
    ```
    
    ### Type Conversion
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

             * @return The user type.
             */
            OptionalThing<String> supply();
        }
    
        /**
         * The supplier of user bean.
         */
        @FunctionalInterface
        public interface UserBeanSupplier {
            /**
             * Supply the user bean.
             * @return The user bean.
             */
            OptionalThing<FessUserBean> supply();
        }
    
        /**
         * The supplier of application type.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top