Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 330 for Script (0.04 sec)

  1. src/main/resources/fess_config.properties

    job.template.title.data=Data Crawler - {0}
    # Script template for job execution.
    job.template.script=return container.getComponent("crawlJob").logLevel("info").webConfigIds([{0}] as String[]).fileConfigIds([{1}] as String[]).dataConfigIds([{2}] as String[]).jobExecutor(executor).execute();
    # Maximum number of crawler processes.
    job.max.crawler.processes=0
    # Default script language for jobs.
    job.default.script=groovy
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_pt_BR.properties

    labels.failureCountThreshold=Limite de falhas
    labels.fileConfigName=Nome da configuração de rastreamento de arquivo
    labels.fileName=Nome do arquivo
    labels.handlerName=Nome do manipulador
    labels.handlerParameter=Parâmetro
    labels.handlerScript=Script
    labels.popularWord=Palavra popular
    labels.ignoreFailureType=Tipos de falha ignorados
    labels.lastAccessTime=Data do último acesso
    labels.notificationTo=Notificar para
    labels.num=Número
    labels.pn=Número da página
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/generate-clients.md

      "version": "1.0.0",
      "description": "",
      "main": "index.js",
      "scripts": {
        "generate-client": "openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios"
      },
      "author": "",
      "license": "",
      "devDependencies": {
        "@hey-api/openapi-ts": "^0.27.38",
        "typescript": "^4.6.2"
      }
    }
    ```
    
    Depois de ter esse script NPM `generate-client` lá, você pode executá-lo com:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Jun 17 11:53:56 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_nl.properties

    labels.expires=Vervalt
    labels.failureCountThreshold=Foutdrempel
    labels.fileConfigName=Bestandscrawlconfiguratienaam
    labels.fileName=Bestandsnaam
    labels.handlerName=Handlernaam
    labels.handlerParameter=Parameter
    labels.handler_script=Script
    labels.popularWord=Populair woord
    labels.ignoreFailureType=Genegeerde fouttypen
    labels.lastAccessTime=Laatste toegangstijd
    labels.notificationTo=Melding aan
    labels.num=Aantal
    labels.pn=Paginanummer
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  5. src/main/resources/fess_message_zh_CN.properties

    constraints.NotBlank.message = {item} 不能为空。
    constraints.NotEmpty.message = {item} 不能为空。
    constraints.ParametersScriptAssert.message = 脚本表达式 "{script}" 不为 true。
    constraints.Range.message = {item} 必须在 {min} 到 {max} 之间。
    constraints.SafeHtml.message = {item} 包含危险的 HTML 内容。
    constraints.ScriptAssert.message = 脚本表达式 "{script}" 不为 true。
    constraints.URL.message = {item} 不是有效的URL。
    constraints.Required.message = {item} 是必需的。
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        public String jobName;
    
        /** Search criteria: job status */
        public String jobStatus;
    
        /** Search criteria: target */
        public String target;
    
        /** Search criteria: script type */
        public String scriptType;
    
        /** Search criteria: start time */
        public String startTime;
    
        /**
         * Clears all pagination data and search criteria.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  7. docs/ja/README.md

    ## Ingest
    
     - [Logger](https://github.com/codelibs/fess-ingest-logger)
     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    ## スクリプト
    
     - [Groovy](https://github.com/codelibs/fess-script-groovy)
     - [OGNL](https://github.com/codelibs/fess-script-ognl)
    
    ## 開発情報
    
    ### ソースコードの取得
    
    1. Fessのリポジトリをクローンします:
        ```
        $ cd ~/workspace
        $ git clone https://github.com/codelibs/fess.git
        ```
        
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String EXECUTE_TYPE_THUMBNAIL = "thumbnail";
    
        /** Execution type for Python script operations. */
        public static final String EXECUTE_TYPE_PYTHON = "python";
    
        /** Execution type for suggest operations. */
        public static final String EXECUTE_TYPE_SUGGEST = "suggest";
    
        /** Default script type (Groovy). */
        public static final String DEFAULT_SCRIPT = "groovy";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/generate-clients.md

    We could download the OpenAPI JSON to a file `openapi.json` and then we could **remove that prefixed tag** with a script like this:
    
    {* ../../docs_src/generate_clients/tutorial004.py *}
    
    //// tab | Node.js
    
    ```Javascript
    {!> ../../docs_src/generate_clients/tutorial004.js!}
    ```
    
    ////
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/ExecJobTest.java

        // Test execute with JobExecutor
        public void test_execute_withJobExecutor() {
            JobExecutor jobExecutor = new JobExecutor() {
                @Override
                public Object execute(String scriptType, String script) {
                    return "executed";
                }
            };
    
            String result = execJob.execute(jobExecutor);
            assertEquals("success", result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top