Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for rscriptType (0.23 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/JobLogDbm.java

                false, 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
    - 11K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProvider.kt

            // If the script file is known, determine its type
            val scriptType = scriptFile?.let {
                KotlinScriptTypeMatch.forFile(it)?.scriptType
            }
    
            // We also add the "buildSrc" sources onto the source path.
            val projectBuildSrcRoots = when (scriptType) {
                KotlinScriptType.INIT, KotlinScriptType.SETTINGS -> emptyList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 12:20:51 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        public String target;
    
        @Required
        public String scriptType;
    
        public String scriptData;
    
        public String scriptResult;
    
        @Required
        public String startTime;
    
        public String endTime;
    
        public void initialize() {
            id = null;
            jobName = null;
            jobStatus = null;
            target = null;
            scriptType = null;
            scriptData = null;
            scriptResult = null;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "target": {
            "type": "keyword"
          },
          "cronExpression": {
            "type": "keyword"
          },
          "scriptType": {
            "type": "keyword"
          },
          "scriptData": {
            "type": "keyword"
          },
          "crawler": {
            "type": "boolean"
          },
          "jobLogging": {
            "type": "boolean"
          },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 753 bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  6. src/main/config/es/fess_config_scheduled_job.json

                "type" : "boolean"
              },
              "name" : {
                "type" : "keyword"
              },
              "scriptData" : {
                "type" : "keyword"
              },
              "scriptType" : {
                "type" : "keyword"
              },
              "sortOrder" : {
                "type" : "integer"
              },
              "target" : {
                "type" : "keyword"
              },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java

            return "JobLog [scheduledJob=" + scheduledJob + ", endTime=" + endTime + ", jobName=" + jobName + ", jobStatus=" + jobStatus
                    + ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime="
                    + startTime + ", target=" + target + ", docMeta=" + docMeta + "]";
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskCustomTypesInputPropertyIntegrationTest.groovy

    }
    ext.pluginValue = new ScriptPluginType("abc")
    """
    
            buildFile << """
    class ScriptType extends CustomType {
        ScriptType(String value) { super(value) }
    }
    
    apply from: 'other.gradle'
    
    task someTask {
        inputs.property("v", [new CustomType('123'), new ScriptType('abc'), pluginValue] as $type)
        outputs.file file("build/out")
        doLast ${Actions.name}.doNothing()
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 16:04:50 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/DefaultScriptPluginFactory.java

                Class<? extends BasicScript> scriptType = initialPassScriptTarget.getScriptClass();
                ScriptRunner<? extends BasicScript, ?> initialRunner = compiler.compile(scriptType, target, baseScope, initialOperation, Actions.doNothing());
                initialRunner.run(target, services);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top