Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 390 for scriptId (0.47 sec)

  1. Makefile.core.mk

    	GOOS=linux GOARCH=amd64 LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    ${TARGET_OUT}/release/istioctl-linux-armv7:
    	GOOS=linux GOARCH=arm GOARM=7 LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    ${TARGET_OUT}/release/istioctl-linux-arm64:
    	GOOS=linux GOARCH=arm64 LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    ${TARGET_OUT}/release/istioctl-osx:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            }
        }
    
        /**
         *  ## Computation and sharing of type-safe accessors
         * 1. Group precompiled script plugins by the list of plugins applied in their `plugins` block.
         * 2. For each group, compute the project schema implied by the list of plugins.
         * 3. Re-group precompiled script plugins by project schema.
         * 4. For each group, emit the type-safe accessors implied by the schema to a package named after the schema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

                        commandLine "cat", "message"
                    }.standardOutput.asText.get()
                    print message
                """
            }
        }
    
        def "notices changes to settings scripts that do not change the file length"() {
            settingsFile.text = "println 'counter: __'"
            long before = settingsFile.length()
    
            expect:
            (10..40).each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScopeTest.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.groovy.scripts.TextResourceScriptSource
    import org.gradle.internal.resource.StringTextResource
    import org.gradle.plugin.management.internal.PluginRequestInternal
    import org.gradle.plugin.management.internal.autoapply.AutoAppliedDevelocityPlugin
    import org.gradle.plugin.use.PluginDependenciesSpec
    import org.gradle.plugin.use.internal.PluginRequestCollector
    import org.hamcrest.CoreMatchers.equalTo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 06:46:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_TEST_CLASS = "org/example/AppTest.groovy"
    
        @Override
        String subprojectName() { 'app' }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'groovy-application', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

        }
    
        protected static List<File> canonicalClasspathOf(KotlinDslScriptsModel model, File script) {
            return model.scriptModels[script].classPath.collect { it.canonicalFile }
        }
    
        protected static void assertHasExceptionMessage(KotlinDslScriptsModel model, TestFile script, String message) {
            assertThat(model.scriptModels[script].exceptions, hasItem(containsString(message)))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    2. *Layer 2: The Ant tasks and types*, like `javac`, `copy` or `jar`. For this layer, Gradle provides integration using Groovy and the `AntBuilder`.
    
    Since build scripts are Kotlin or Groovy scripts, you can execute an Ant build as an external process.
    Your build script may contain statements like: `"ant clean compile".execute()`.footnote:[In Groovy you can execute Strings.]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

        bind(unsupported<FileDescriptor>())
        bind(unsupported<RandomAccessFile>())
        bind(unsupported<Socket>())
        bind(unsupported<ServerSocket>())
    
        // Gradle Scripts
        bind(unsupported<GradleScript>(" Gradle script object references"))
    
        // Gradle Build Model
        bind(unsupported<Gradle>())
        bind(unsupported<Settings>())
        bind(unsupported<Project>())
        bind(unsupported<IsolatedProject>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/K2IntegrationTest.kt

        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        fun `can try k2 with included build for build logic using kotlin-dsl plugin`() {
    
            // This test doesn't use a .gradle.kts precompiled script because K2 doesn't support scripts yet
    
            withDefaultSettingsIn("build-logic")
            withBuildScriptIn("build-logic", """
                import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

        def "defaults to kotlin build scripts"() {
            when:
            run ('init', '--type', 'kotlin-application')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class)
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top