Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for example (0.17 sec)

  1. dbflute_fess/_readme.txt

    manage.bat(sh) => 22 (doc):
    A execution command of Document task
    which creates documents, for example, SchemaHTML, HistoryHTML
    to the "output/doc" directory.
    
    manage.bat(sh) => 23 (generate):
    A execution command of Generate task
    which generates classes corresponding your tables,
    for example, entities, condition-beans to specified
    directories by DBFlute properties on "dfprop" directory.
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            data = "<img src=\"http://example/foo.jpg\">" //
                    + "<img src=\"http://example/bar.jpg\">";
            expected = "http://example/foo.jpg";
            assertGetThumbnailUrl(data, expected);
    
            data = "<img src=\"http://example/foo.jpg\">" //
                    + "<img src=\"http://example/bar.jpg\" width=\"100\" height=\"100\">";
            expected = "http://example/bar.jpg";
            assertGetThumbnailUrl(data, expected);
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  3. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.9K bytes
    - Viewed (0)
  4. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

                        example: 20
                      page_number:
                        type: integer
                        example: 1
                      record_count:
                        type: integer
                        format: int64
                        example: 31625
                      page_count:
                        type: integer
                        example: 1
                      highlight_params:
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            crawlingInfoHelper = new CrawlingInfoHelper();
        }
    
        public void test_generateId() {
            final Map<String, Object> dataMap = new HashMap<String, Object>();
            dataMap.put("url", "http://example.com/");
    
            assertEquals(
                    "6b2d3770573e53f9f2d743e0598fad397c34968566001329c436f041871fd8af950b32ce77da6cc4a5561a6ccf4d2d7741269209ac254c234a972029ec92110e",
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  7. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/sequenceMap.dfprop

    # 
    # The relation mappings between sequence and table.
    # If you don't specify the mappings, you cannot insert a record of the table by sequence. 
    # The table names are treated as case insensitive.
    # 
    # Example:
    # map:{
    #     ; PURCHASE     = SEQ_PURCHASE
    #     ; MEMBER       = SEQ_MEMBER
    #     ; MEMBER_LOGIN = SEQ_MEMBER_LOGIN
    #     ; PRODUCT      = SEQ_PRODUCT
    # }
    #
    # *The line that starts with '#' means comment-out.
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 717 bytes
    - Viewed (0)
  9. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/annotation/Secured.java

     * Java 5 annotation for describing service layer security attributes.
     *
     * <p>
     * The <code>Secured</code> annotation is used to define a list of security configuration
     * attributes for business methods.
     * <p>
     * For example:
     *
     * <pre>
     * &#064;Secured({ &quot;ROLE_USER&quot; })
     * public void create(Contact contact);
     *
     * &#064;Secured({ &quot;ROLE_USER&quot;, &quot;ROLE_ADMIN&quot; })
     * public void update(Contact contact);
     *
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top