Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for startUp (0.23 sec)

  1. gradlew.bat

    @rem limitations under the License.
    @rem
    @rem SPDX-License-Identifier: Apache-2.0
    @rem
    
    @if "%DEBUG%"=="" @echo off
    @rem ##########################################################################
    @rem
    @rem  Gradle startup script for Windows
    @rem
    @rem ##########################################################################
    
    @rem Set local scope for the variables with windows NT shell
    if "%OS%"=="Windows_NT" setlocal
    
    set DIRNAME=%~dp0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:31:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    }
    
    configurations {
        create("gradleScriptsElements") {
            isVisible = false
            isCanBeResolved = false
            isCanBeConsumed = true
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts"))
            outgoing.artifact(startScripts)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. gradlew

            then
                arg=$( cygpath --path --ignore --mixed "$arg" )
            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginBuildScriptIntegrationTest.groovy

                if (file.endsWith(".gradle.kts")) {
                    withProblem("Settings file '${relativePath(file)}': external process started")
                } else {
                    withProblem("Settings file '${relativePath(file)}': line 5: external process started")
                }
            }
    
            where:
            snippetsFactory             | file
            exec().groovy               | "included/settings.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            }
    
            override fun dispose(): WritingState {
                return this
            }
        }
    
        private
        var writingState: WritingState = Idle()
    
        // Start fingerprinting if not already started and not already committed
        // This should be strict but currently this method may be called multiple times when a
        // build invocation both runs tasks and queries models
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

                }
            }
        }
    
        static PrintProcessOutput processBuilder() {
            return new ProcessApiPrintOutput("new ProcessBuilder(command).start()", "ProcessBuilder(*command).start()", "new ProcessBuilder(command).start()")
        }
    
        static PrintProcessOutput stringArrayExecute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

            buffer.append(value);
            scanner.next();
        }
    
        private void parseJavadocTag(TokenVisitor visitor) {
            // start of tag marker
            scanner.next(2);
    
            // tag name
            scanner.mark();
            scanner.find(END_TAG_NAME);
            String tagName = scanner.region();
            visitor.onStartJavadocTag(tagName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocBuilder.java

            extensionsBuilder = new ClassDocExtensionsBuilder(model, listener);
            superTypeBuilder = new ClassDocSuperTypeBuilder(model, listener);
        }
    
        void build(ClassDoc classDoc) {
            listener.start(String.format("class %s", classDoc.getName()));
            try {
                superTypeBuilder.build(classDoc);
                commentBuilder.build(classDoc);
                propertiesBuilder.build(classDoc);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/PerformanceTestReport.kt

        @get:Input
        abstract val projectName: Property<String>
    
        @get:Input
        abstract val dependencyBuildIds: Property<String>
    
        @get:Option(option = "debug-jvm", description = "Debug the JVM started for report generation.")
        @get:Input
        abstract val debugReportGeneration: Property<Boolean>
    
        @get:Inject
        abstract val fileOperations: FileSystemOperations
    
        @get:Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 15:27:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocRenderer.java

            memberRenderers.add(new BlocksRenderer(linkRenderer, listener));
        }
    
        public void mergeContent(ClassDoc classDoc, Element parent) {
            listener.start(String.format("class %s", classDoc.getName()));
            try {
                Element chapter = parent.getOwnerDocument().createElement("chapter");
                parent.appendChild(chapter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top