Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,743 for scriptId (0.17 sec)

  1. hack/make-rules/update.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A single script that runs a predefined set of update-* scripts, as they often go together.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SILENT=${SILENT:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    [[sec:customizing_start_script_generation]]
    === Customizing start script generation
    
    The application plugin can generate Unix (suitable for Linux, macOS etc.) and Windows start scripts out of the box.
    The start scripts launch a JVM with the specified settings defined as part of the original build and runtime environment (e.g. `JAVA_OPTS` env var).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/GeneratePluginAdaptersTask.java

                writer.println("            BasicScript script = precompiledScriptClass.getDeclaredConstructor().newInstance();");
                writer.println("            script.setScriptSource(scriptSource(precompiledScriptClass));");
                writer.println("            script.init(target, target.getServices());");
                writer.println("            script.run();");
                writer.println("        } catch (Exception e) {");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 22:50:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/BuildProgressCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.tooling.ProjectConnection
    
    class BuildProgressCrossVersionSpec extends ToolingApiSpecification {
        def "generates init script operation when there are init scripts"() {
            file("init.gradle") << "println 'init'"
    
            when:
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <4> Does the same as the previous line but allows the property to have a null value
    
    This approach works for all Gradle scripts: project build scripts, script plugins, settings scripts and initialization scripts.
    
    You can also access extra properties on a root project from a subproject using the following syntax:
    
    .my-sub-project/build.gradle.kts
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    ## Level 2: Container diagram
    
    When used for the compilation of scripts of a Gradle build, the Kotlin DSL Provider compiles scripts using an embedded Kotlin compiler.
    
    When used for the compilation of Kotlin source sets, e.g. in `buildSrc`, the `kotlin-dsl` plugin provide Kotlin DSL features to source sets and compiles Kotlin code using the Kotlin Gradle Plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

        def "init script file is a dotfile"() {
            def initScript = file('.empty')
            initScript << 'println "greetings from empty init script"'
            executer.withArguments('--init-script', initScript.absolutePath)
    
            when:
            run()
    
            then:
            output.contains("greetings from empty init script")
        }
    
        private def createExternalJar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocOptionsIntegrationTest.groovy

        }
    
        def "scripts can be disabled"() {
            assumeTrue(supportsScriptsInGroovydoc())
            when:
            buildFile << "groovydoc { processScripts = false }"
            run "groovydoc"
    
            then:
            def doc = file('build/docs/groovydoc/DefaultPackage/Script.html')
            !doc.exists()
        }
    
        def "main method can be disabled for scripts"() {
            assumeTrue(supportsScriptsInGroovydoc())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

            lock.lock();
            try {
                scripts.clear();
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void childScopeCreated(ClassLoaderScopeId parentId, ClassLoaderScopeId childId, @javax.annotation.Nullable ClassLoaderScopeOrigin origin) {
            if (origin instanceof ClassLoaderScopeOrigin.Script) {
                ClassLoaderScopeOrigin.Script scriptOrigin = (ClassLoaderScopeOrigin.Script) origin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. .idea/runConfigurations/run_IR_test_in_node_js.xml

      <configuration default="false" name="run IR test in node.js" type="js.build_tools.npm">
        <package-json value="$PROJECT_DIR$/js/js.translator/testData/package.json" />
        <command value="run" />
        <scripts>
          <script value="runIrTestInNode" />
        </scripts>
        <arguments value="$FilePath$" />
        <node-interpreter value="project" />
        <envs />
        <method v="2" />
      </configuration>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 12 10:57:03 UTC 2018
    - 463 bytes
    - Viewed (0)
Back to top