Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 406 for Builds (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    At this point, you should be able to switch to using proper project dependencies attached to the appropriate dependency configurations.
     7. Clean up projects once no part of the Ant build depends on them.
    +
    We mentioned in step 5 that you might need to add copy tasks to satisfy the requirements of dependent Ant builds.
    Once those builds have been migrated, such build logic will no longer be needed and should be removed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    This will create all the Gradle build files you need, even for <<migmvn:multimodule_builds,multi-module builds>>.
    For simpler Maven projects, the Gradle build will be ready to run!
    +
     . link:https://scans.gradle.com[Create a build scan for the Gradle build].
    +
    A build scan will make it easier to visualize what's happening in the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    	return push.Telemetry.TCPFilters(proxy, class, svc)
    }
    
    // setAccessLogAndBuildTCPFilter sets the AccessLog configuration in the given
    // TcpProxy instance and builds a TCP filter out of it.
    func setAccessLogAndBuildTCPFilter(push *model.PushContext, node *model.Proxy,
    	config *tcp.TcpProxy, class istionetworking.ListenerClass, svc *model.Service,
    ) *listener.Filter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    == Finding problems with task output caching
    
    Below we describe a step-by-step process that should help shake out any problems with caching in your build.
    
    === Ensure incremental build works
    
    First, make sure your build does the right thing without the cache.
    Run a build twice without enabling the Gradle build cache.
    The expected outcome is that all actionable tasks that produce file outputs are up-to-date.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *       {@code "META-INF/versions/{n}/"} subdirectory, builds a singleton map with
         *       the module name declared in that descriptor.</li>
         *   <li>Otherwise if an {@code "Automatic-Module-Name"} attribute is declared in the
         *       {@code META-INF/MANIFEST.MF} file, builds a singleton map with the value of that attribute.</li>
         * </ul>
         *
         * Otherwise builds an empty map.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    == Step 7. Understanding the Build script
    Each subproject contains its own `build.gradle(.kts)` file.
    
    The `build.gradle(.kts)` file is the core component of the build process and defines the tasks necessary to build the project.
    
    The `build.gradle(.kts)` file is read and executed by Gradle.
    
    Take a closer look at the build file in your `app` subproject (under the `app` directory):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            when:
            def build = executer.withTasks("help").withArguments("--info").start()
    
            then:
            build.waitForFinish()
    
            and:
            daemons.daemons.size() == 2
    
            and:
            !build.standardOutput.contains(DaemonMessages.WAITING_ON_CANCELED)
        }
    
        def "starts a new daemon when daemons with canceled builds do not become available"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                    }
                    configurations['default'].outgoing.artifact(jar)
                }
            '''
            fixture.prepare()
        }
    
        @ToBeFixedForConfigurationCache
        def "selects and builds from master for latest.integration selector"() {
            given:
            buildFile << """
                dependencies { compile 'test:test:latest.integration' }
            """
            repo.commit("v1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

        }
    
        /**
         * Pause between builds for the following reasons:
         *
         * <ul>
         * <li>better simulate a normal development lifecycle where builds are rarely executed
         * back-to-back, as there is typically some work being done between the builds,</li>
         * <li>give file system events a chance to arrive; otherwise we might detect them during
         * the build, and invalidating the VFS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top