Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for rscriptType (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScriptCompilerFactory.java

            }
    
            @Override
            public <T extends Script, M> ScriptRunner<T, M> compile(Class<T> scriptType, Object target, ClassLoaderScope targetScope, CompileOperation<M> extractingTransformer, Action<? super ClassNode> verifier) {
                CompiledScript<T, M> compiledScript = scriptClassCompiler.compile(source, scriptType, target, targetScope, extractingTransformer, verifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ScheduledJobDbm.java

                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnScriptType = cci("scriptType", "scriptType", null, null, String.class, "scriptType", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java

        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String name;
    
        public String target;
    
        public String cronExpression;
    
        public String scriptType;
    
        public String crawler;
    
        public String jobLogging;
    
        public String available;
    
        public String sortOrder;
    
        public String createdBy;
    
        public String createdTime;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_job_log.json

                "type" : "long"
              },
              "scriptData" : {
                "type" : "keyword"
              },
              "scriptResult" : {
                "type" : "keyword"
              },
              "scriptType" : {
                "type" : "keyword"
              },
              "startTime" : {
                "type" : "long"
              },
              "target" : {
                "type" : "keyword"
              }
            }
          }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp

                                        <tr>
                                            <th><la:message key="labels.joblog_scriptType"/></th>
                                            <td>${f:h(scriptType)}<la:hidden property="scriptType"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.joblog_scriptData"/></th>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsScheduledJobCA.java

        public void setScriptType_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setScriptType_Terms("scriptType", opLambda, null);
        }
    
        public void setScriptType_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsScheduledJobCA> aggsLambda) {
            setScriptType_Terms("scriptType", opLambda, aggsLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/score/ScoreBooster.java

    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.action.update.UpdateRequestBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.script.Script;
    import org.opensearch.script.ScriptType;
    import org.opensearch.search.SearchHit;
    
    public abstract class ScoreBooster {
        private static final Logger logger = LogManager.getLogger(ScoreBooster.class);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptCompiler.java

         *
         * @return a {@code ScriptRunner} for the script.
         * @throws ScriptCompilationException On compilation failure.
         */
        <T extends Script, M> ScriptRunner<T, M> compile(Class<T> scriptType, Object target, ClassLoaderScope targetScope, CompileOperation<M> extractingTransformer, Action<? super ClassNode> verifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

        protected Object convertValue(final String scriptType, final String template, final Map<String, Object> paramMap) {
            if (StringUtil.isEmpty(template)) {
                return StringUtil.EMPTY;
            }
    
            if (paramMap.containsKey(template)) {
                return paramMap.get(template);
            }
    
            return ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(template, paramMap);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/JobExecutor.java

     */
    package org.codelibs.fess.job;
    
    public abstract class JobExecutor {
        protected ShutdownListener shutdownListener;
    
        public abstract Object execute(String scriptType, String script);
    
        public void shutdown() {
            shutdownListener.onShutdown();
        }
    
        public void addShutdownListener(final ShutdownListener listener) {
            shutdownListener = listener;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top