Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for true (0.18 sec)

  1. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"name":"Default Crawler","target":"all","cronExpression":"0 0 * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"crawlJob\").logLevel(\"info\").gcLogging().execute(executor);","jobLogging":true,"crawler":true,"available":true,"sortOrder":1,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}
    {"index":{"_index":"fess_config.scheduled_job","_id":"suggest_indexer"}}
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 4.2K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #   [true]
        #     You should always write the title of outsideSql.
        #     If it doesn't exist, the OutsideSqlTest task fails.
        #
        #; isRequiredSqlTitle = true
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isRequiredSqlDescription: (NotRequired - Default true)
        #   [true]
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

        #
        # @SpringOnly
        #; dbfluteBeansDefaultAttribute = default-lazy-init="true"
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isDBFluteBeansGeneratedAsJavaConfig (NotRequired - Default true since 1.1)
        #  Does it generate JavaConfig for DBFluteBeans? (not use XML configuration)
        #
        # @SpringOnly
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 6.5K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/documentMap.dfprop

    #     ; isDbCommentOnAliasBasis = true
    #     ; isEntityJavaDocDbCommentValid = true
    #     ; isEntityDBMetaDbCommentValid = true
    #     ; schemaHtmlFileName = xxx.html
    #     ; isSuppressSchemaHtmlOutsideSql = false
    #     ; isSuppressSchemaHtmlProcedure = false
    #     ; historyHtmlFileName = xxx.html
    #     ; isCheckColumnDefOrderDiff = true
    #     ; isCheckDbCommentDiff = true
    #     ; isCheckProcedureDiff = 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)
  5. src/main/webapp/js/admin/adminlte.min.js.map

    ght',\n    CONTAINER_BOTTOM_LEFT: 'toastsContainerBottomLeft',\n  }\n\n  const Default = {\n    position: Position.TOP_RIGHT,\n    fixed: true,\n    autohide: false,\n    autoremove: true,\n    delay: 1000,\n    fade: true,\n    icon: null,\n    image: null,\n    imageAlt: null,\n    imageHeight: '25px',\n    title: null,\n    subtitle: null,\n    close: true,\n    body: null,\n    class: null,\n  }\n\n  /**\n   * Class Definition\n   * ====================================================\n   */\n...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  6. src/main/webapp/js/bootstrap.min.js.map

          = `.${DATA_KEY}`\nconst DATA_API_KEY       = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ESCAPE_KEYCODE     = 27 // KeyboardEvent.which value for Escape (Esc) key\n\nconst Default = {\n  backdrop : true,\n  keyboard : true,\n  focus    : true,\n  show     : true\n}\n\nconst DefaultType = {\n  backdrop : '(boolean|string)',\n  keyboard : 'boolean',\n  focus    : 'boolean',\n  show     : 'boolean'\n}\n\nconst Event = {\n  HIDE              : `hide${EVENT_KEY}`,\n  HIDE_PREVENTED...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jan 11 06:54:28 GMT 2020
    - 189.9K bytes
    - Viewed (0)
  7. MIGRATION.md

    ### Google Search Appliance (GSA) / Google Mini
    
    Fess provides a [Google Search Appliance](https://enterprise.google.com/search/products/gsa.html) (GSA) compatible API. To enable this API, set `web.api.gsa=true` to system.properties. This will enable an enpoint at `<Fess Server Name>:8080/gsa`. When a search query is sent to `<Fess Server Name>:8080/gsa/?q=QUERY`, a GSA compatible response will be returned
    
    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)
  8. src/packaging/common/scripts/postinst

        fi
    elif [ "$RESTART_ON_UPGRADE" = "true" ]; then
    
        echo -n "Restarting fess service..."
        if command -v systemctl >/dev/null; then
            systemctl daemon-reload
            systemctl restart fess.service || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
                invoke-rc.d fess start || true
            else
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/basicInfoMap.dfprop

        # o isTableNameCamelCase: (NotRequired - Default false)
        #  Is the table name camel case?
        #  Basically you don't need this if the style of table name is like 'FOO_STATUS'.
        #    [true]
        #      The table name is camel case.
        #      e.g. If the table name is 'OrderDetail', the class name is 'OrderDetail'.
        #
        #    [false]
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #             ; topComment=[comment]; codeType=[String(default) or Number or Boolean]}
    #             ; undefinedHandlingType=[EXCEPTION or LOGGING(default) or ALLOWED]
    #             ; isUseDocumentOnly=[true or false(default)]
    #             ; isSuppressAutoDeploy=[true or false(default)]
    #             ; groupingMap = map:{
    #                 ; [group-name] = map:{
    #                     ; groupComment=[comment]
    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)
Back to top