Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for example (0.26 sec)

  1. dbflute_fess/dfprop/commonColumnMap.dfprop

    # commonColumnMap: (Default map:{})
    #
    # The definition of common column(contains auto set-up).
    # For example, the date you registered the record,
    # the user who updated the record and so on...
    # The column names are treated as case insensitive.
    #
    # The variable '$$AccessContext$$' means allcommon.AccessContext.
    #
    # Example:
    # map:{
    #     ; commonColumnMap = map:{
    #         ; REGISTER_DATETIME=TIMESTAMP ; REGISTER_USER=VARCHAR
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.9K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #
    map:{
        # example for implicit classification
        #; Flg = list:{
        #    ; map:{topComment=general boolean classification for every flg-column; codeType=Number}
        #    ; map:{code=1; name=True ; alias=Checked  ; comment=means yes; sisterCode=true}
        #    ; map:{code=0; name=False; alias=Unchecked; comment=means no ; sisterCode=false}
        #}
        # example for table classification
        #; MemberStatus = list:{
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/documentMap.dfprop

    # o isCheckProcedureDiff: (NotRequired - Default false)
    # o loadDataReverseMap: (NotRequired - Default map:{})
    # o schemaSyncCheckMap: (NotRequired - Default map:{})
    # o propertiesHtmlMap: (NotRequired - Default map:{})
    #
    # Example:
    # map:{
    #     ; documentOutputDirectory = ./output/doc
    #     ; aliasDelimiterInDbComment = :
    #     ; isDbCommentOnAliasBasis = true
    #     ; isEntityJavaDocDbCommentValid = true
    #     ; isEntityDBMetaDbCommentValid = true
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/admin/ReqHeaderTests.java

        }
    
        @BeforeEach
        void createWebConfig() {
            final Map<String, Object> requestBody = new HashMap<>();
            requestBody.put("name", "test_webconfig");
            requestBody.put("urls", "http://www.example.com");
            requestBody.put("user_agent", "Mozilla/5.0");
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", 100.0);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/additionalForeignKeyMap.dfprop

    # And you can use it to view objects too.
    #
    # If local column name is same as foreign column name,
    # you can omit the setting of localColumnName and foreignColumnName.
    # The names are treated as case insensitive.
    #
    # Example:
    # map:{
    #     ; FK_MEMBER_MEMBER_STATUS_CODE = map:{
    #         ; localTableName  = MEMBER             ; foreignTableName  = MEMBER_STATUS
    #         ; localColumnName = MEMBER_STATUS_CODE ; foreignColumnName = MEMBER_STATUS_CODE
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.7K bytes
    - Viewed (0)
  6. MIGRATION.md

        fess.setAttribute('fess-url', '//<Server Name>/json');
        var s = document.getElementsByTagName('script')[0];
        s.parentNode.insertBefore(fess, s);
      })();
    </script>
    <fess:search></fess:search>
    ```
    
    An example of Fess Site Search in use is below:
    
    ![Fess Site Search](https://fess.codelibs.org/_images/fess-ss-1.png "Fess Site Search")
    
    
    ### More Reading
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 05 06:12:02 GMT 2019
    - 1.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/FileAuthTests.java

        }
    
        @BeforeEach
        void createFileConfig() {
            final Map<String, Object> requestBody = new HashMap<>();
            requestBody.put("name", "test_fileconfig");
            requestBody.put("paths", "file:///example/path/");
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", 100.0);
            requestBody.put("available", true);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.contacts.technical.email_address", "technical@example.com");
            defaultSettings.put("onelogin.saml2.contacts.support.given_name", "Support Guy");
            defaultSettings.put("onelogin.saml2.contacts.support.email_address", "support@@example.com");
        }
    
        protected Saml2Settings getSettings() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/SearchListTests.java

            final Map<String, Object> doc = new HashMap<>();
            final String keyProp = NAME_PREFIX + id;
            doc.put(KEY_PROPERTY, keyProp);
            doc.put("url", "http://example.com/" + id);
            doc.put("boost", id);
            doc.put("role", "Rguest");
            requestBody.put("doc", doc);
            return requestBody;
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top