Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for rscriptType (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinScriptType.kt

    import java.io.File
    
    
    fun kotlinScriptTypeFor(candidate: File): KotlinScriptType? =
        KotlinScriptTypeMatch.forFile(candidate)?.scriptType
    
    
    enum class KotlinScriptType {
        INIT, SETTINGS, PROJECT
    }
    
    
    data class KotlinScriptTypeMatch private constructor(
        val scriptType: KotlinScriptType,
        val match: Match
    ) {
    
        companion object {
    
            internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        @Required
        @Size(max = 100)
        public String target;
    
        @Size(max = 100)
        @CronExpression
        public String cronExpression;
    
        @Required
        @Size(max = 100)
        public String scriptType;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String scriptData;
    
        public String crawler;
    
        public String jobLogging;
    
        public String available;
    
        @Required
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

                }
    
            }
        }
    
        default String getScriptType() {
            final String scriptType = getConfigParameterMap(ConfigName.CONFIG).get(Param.Config.SCRIPT_TYPE);
            if (StringUtil.isNotBlank(scriptType)) {
                return scriptType;
            }
            return Constants.DEFAULT_SCRIPT;
        }
    
        public enum ConfigType {
            WEB("W"), FILE("F"), DATA("D");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top