Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 581 for Builds (0.4 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

        /**
         * Invokes the given action when the Daemon becomes unhealthy in way that requires it be terminated at the end of the build.
         * <p>
         * The action will be invoked at-most once during a build.
         * It will only be invoked for the build in which it was registered (i.e. not subsequent builds).
         * Each action provided to each invocation of this message will be notified.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

    @TargetGradleVersion('>=3.3')
    class DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion('>=3.3 <6.8')
        def "Can't launch tasks from included builds via launchables obtained from GradleProject model"() {
            setup:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    includeBuild 'includedBuild'
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val builds = mutableMapOf<BuildState, BuildToStore>()
            host.visitBuilds { build ->
                val state = build.state
                builds[state] = BuildToStore(build, build.hasScheduledWork, build.isRootBuild)
                if (build.hasScheduledWork && state is StandAloneNestedBuild) {
                    // Also require the owner of a buildSrc build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. .teamcity/test-buckets.json

    					"jacoco",
    					"launcher",
    					"plugins-java",
    					"antlr",
    					"base-services",
    					"build-cache",
    					"build-cache-http",
    					"build-cache-local",
    					"build-cache-spi",
    					"build-configuration",
    					"build-events",
    					"build-init",
    					"build-profile",
    					"composite-builds",
    					"configuration-cache",
    					"core",
    					"core-api",
    					"declarative-dsl-core",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/build.gradle.kts

    }
    
    // You can have a faster feedback loop by running `configuration-cache-report` as an included build
    // See https://github.com/gradle/configuration-cache-report#development-with-gradlegradle-and-composite-build
    dependencies {
        configurationCacheReportPath(libs.configurationCacheReport)
    }
    
    tasks.processResources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/build.gradle.kts

        api(project(":build-events"))
        api(project(":build-operations"))
        api(project(":core"))
        api(project(":daemon-protocol"))
        api(project(":enterprise-operations"))
        api(project(":stdlib-java-extensions"))
        api(project(":problems-api"))
        api(project(":service-provider"))
        api(project(":tooling-api"))
    
        runtimeOnly(project(":composite-builds"))
        runtimeOnly(libs.groovy) // for 'Closure'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonReuseIntegrationTest.groovy

            result.groupedOutput.task(compileTaskPath('main')).assertOutputContains("Worker requested to be persistent, but the JVM argument '-javaagent:${file("javaagent/build/libs/javaagent.jar")}' may make the worker unreliable when reused across multiple builds. Worker will expire at the end of the build session.")
            assertTwoCompilerDaemonsAreRunning()
    
            when:
            executer.withWorkerDaemonsExpirationDisabled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. .bazelrc

    #     dbg:              Build with debug info
    #
    # TF version options;
    #     v2: Build TF v2
    #
    # Feature and Third party library support options:
    #     xla:          Build TF with XLA
    #     tpu:          Build TF with TPU support
    #     cuda:         Build with CUDA support.
    #     cuda_clang    Build with CUDA Clang support.
    #     rocm:         Build with AMD GPU support (rocm)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    === Faster CI builds
    
    CI builds benefit particularly from the build cache.
    A typical CI build starts with a `clean`, which means that pre-existing build outputs are deleted and none of the tasks that make up the build will be `UP-TO-DATE`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiSymbol.kt

    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    
    /**
     * A [KaFirSymbol] that is backed by some [PsiElement] and builds [firSymbol] lazily (by convention), allowing some properties to be
     * calculated without the need to build a [firSymbol].
     */
    internal interface KaFirPsiSymbol<P : PsiElement, out S : FirBasedSymbol<*>> : KaFirSymbol<S> {
        override val psi: P
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 881 bytes
    - Viewed (0)
Back to top