Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for ScriptSource (0.17 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/DeclarativeKotlinScriptEvaluator.kt

            }
        }
    
        private
        fun runInterpretationSequence(
            scriptSource: ScriptSource,
            sequence: InterpretationSequence,
            target: Any
        ): EvaluationResult<ConversionStepResult> =
            sequence.steps.map { step ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/provider/DeclarativeDslScriptPluginFactory.kt

        override fun create(
            scriptSource: ScriptSource,
            scriptHandler: ScriptHandler,
            targetScope: ClassLoaderScope,
            baseScope: ClassLoaderScope,
            topLevelScript: Boolean
        ): ScriptPlugin =
            DeclarativeDslPlugin(scriptSource) { target ->
                when (val result = declarativeKotlinScriptEvaluator.evaluate(target, scriptSource, targetScope)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/PluginsInterpretationSequenceStep.kt

    
    internal
    class PluginsInterpretationSequenceStep(
        stepIdentifierString: String = "plugins",
        private val targetScope: ClassLoaderScope,
        private val scriptSource: ScriptSource,
        private val getTargetServices: () -> ServiceRegistry,
    ) : InterpretationSequenceStepWithConversion<PluginsTopLevelReceiver> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            private final ScriptSource scriptSource;
            private final HashCode implementationHash;
    
            ScriptClassLoader(ScriptSource scriptSource, ClassLoader parent, ClassPath classPath, HashCode implementationHash) {
                super("groovy-script-" + scriptSource.getFileName() + "-loader", parent, classPath);
                this.scriptSource = scriptSource;
                this.implementationHash = implementationHash;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

        @Override
        public ScriptPlugin create(
            ScriptSource scriptSource, ScriptHandler scriptHandler, ClassLoaderScope targetScope,
            ClassLoaderScope baseScope, boolean topLevelScript
        ) {
            scriptSourceListener.scriptSourceObserved(scriptSource);
            ScriptPlugin scriptPlugin = scriptPluginFactoryFor(scriptSource.getFileName())
                .create(scriptSource, scriptHandler, targetScope, baseScope, topLevelScript);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/GradleProcessInterpretationSchemaBuilder.kt

    }
    
    
    data class LoadedSettingsScriptContext(
        val settings: SettingsInternal,
        val targetScope: ClassLoaderScope,
        val scriptSource: ScriptSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            private final ScriptSource scriptSource;
            private final String originalClassName;
            private final String contentHash;
    
            public BuildScriptRemapper(ClassVisitor cv, ScriptSource source, String originalClassName, String contentHash) {
                super(AsmConstants.ASM_LEVEL, cv);
                this.scriptSource = source;
                this.originalClassName = originalClassName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            target: Any,
            scriptSource: ScriptSource,
            scriptHandler: ScriptHandler,
            targetScope: ClassLoaderScope,
            baseScope: ClassLoaderScope,
            topLevelScript: Boolean,
            options: EvalOptions
        ) {
            withOptions(options) {
                interpreter.eval(
                    target,
                    scriptSource,
                    scriptSourceHasher.hash(scriptSource),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsDslSchema.kt

    import org.gradle.plugin.software.internal.SoftwareTypeRegistry
    
    
    internal
    fun settingsInterpretationSequence(
        settings: SettingsInternal,
        targetScope: ClassLoaderScope,
        scriptSource: ScriptSource,
        softwareTypeRegistry: SoftwareTypeRegistry
    ): InterpretationSequence =
        DefaultInterpretationSequence(
            listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ScriptSourceExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.groovy.scripts.ScriptSource
    import java.net.URI
    
    
    /**
     * Same as `resource.location.uri`.
     */
    val ScriptSource.uri: URI?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 835 bytes
    - Viewed (0)
Back to top