Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,743 for scriptId (0.14 sec)

  1. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/UnixStartScriptGeneratorTest.groovy

    import org.gradle.jvm.application.scripts.JavaAppStartScriptGenerationDetails
    import org.gradle.util.internal.TextUtil
    import org.gradle.util.internal.WrapUtil
    import spock.lang.Specification
    
    class UnixStartScriptGeneratorTest extends Specification {
    
        UnixStartScriptGenerator generator = new UnixStartScriptGenerator()
    
        def "classpath for unix script uses slashes as path separator"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinSettingsScriptTemplate.kt

    import org.gradle.plugin.use.PluginDependenciesSpec
    import kotlin.script.experimental.annotations.KotlinScript
    import kotlin.script.experimental.api.baseClass
    import kotlin.script.experimental.api.filePathPattern
    import kotlin.script.experimental.api.implicitReceivers
    import kotlin.script.templates.ScriptTemplateDefinition
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/provider/DeclarativeDslPlugin.kt

    import org.gradle.configuration.ScriptPlugin
    import org.gradle.groovy.scripts.ScriptSource
    
    
    internal
    class DeclarativeDslPlugin(
        private val scriptSource: ScriptSource,
        private val script: (Any) -> Unit
    ) : ScriptPlugin {
    
        override fun getSource() =
            scriptSource
    
        override fun apply(target: Any) {
            script(target)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 08:18:16 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    The choice between script, precompiled script, or binary plugins depends on your specific requirements and preferences.
    
    *Script Plugins* are simple and easy to write.
    They are written in Kotlin DSL or Groovy DSL.
    They are suitable for small, one-off tasks or for quick experimentation.
    However, they can become hard to maintain as the build script grows in size and complexity.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. MIGRATION.md

    [Fess Site Search](https://github.com/codelibs/fess-site-search) provides [scripts](https://fss-generator.codelibs.org/docs/manual) (see below) to help you migrate from GSS/CSE.
    Using the, you can replace existing GSS/CSE JavaScript codes with:
    
    ```
    <script>
      (function() {
        var fess = document.createElement('script');
        fess.type = 'text/javascript';
        fess.async = true;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 05 06:12:02 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    ├── shared
    │   ├── src
    │   │   └──...
    │   └── build.gradle
    └── settings.gradle
    ----
    <1> Create the `MyCustomTask` task.
    <2> A shared build script.
    <3> Uses the `MyCustomTask` task and shared build script.
    =====
    
    In the `buildSrc`, the build script `shared.gradle(.kts)` is created.
    It contains dependencies and other build information that is common to multiple subprojects:
    
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ExtractPrecompiledScriptPluginPluginsTest.kt

        }
    
        @Test
        fun `can extract plugins block from script with only plugins`() {
    
            extractPluginsFrom(
                scriptPlugin(
                    "plugins-only.gradle.kts",
                    """
                    // this comment will be removed
                    plugins {
                        java
                    }
                    // and so will the rest of the script
                    """
                )
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildScriptChangesContinuousBuildIntegrationTest.groovy

            when:
            succeeds(":myTask")
            then:
            executedAndNotSkipped(":myTask")
    
            when:
            file(buildFileName) << """
                println("Hello from Build Script")
            """
            then:
            // TODO: Script compilation happens to early to be detected as an input.
            //   That is why the change is not yet picked up.
            noBuildTriggered()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/templates/index.html

            padding: .5em;
        }
    
        table th,
        table td {
            padding: .5em;
            border: 1px solid lightgrey;
        }
    </style>
    {% endblock %}
    
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    {% endblock %}
    
    {% block content %}
    <div class="mx-auto px-4 sm:px-6 lg:px-8">
        <div class="flex flex-col space-y-5 py-32 mx-auto max-w-7xl">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    // limitations under the License.
    
    [[implemention_precompiled_plugins]]
    = Implementing Pre-compiled Script Plugins
    
    A *precompiled script plugin* is typically a Kotlin script that has been compiled and distributed as Java class files packaged in a library.
    These scripts are intended to be consumed as binary Gradle plugins and are recommended for use as convention plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top