Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 406 for Builds (0.11 sec)

  1. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

    import org.gradle.internal.Actions
    import org.gradle.internal.build.BuildAddedListener
    import org.gradle.internal.build.BuildLifecycleController
    import org.gradle.internal.build.BuildModelControllerServices
    import org.gradle.internal.build.BuildState
    import org.gradle.internal.build.BuildStateRegistry
    import org.gradle.internal.build.IncludedBuildFactory
    import org.gradle.internal.build.IncludedBuildState
    import org.gradle.internal.build.PublicBuildPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    [[sec:environment_options]]
    == Environment options
    You can <<build_environment.adoc#build_environment,customize>> many aspects of build scripts, settings, caches, and so on through the options below.
    
    `-b`, `--build-file` (deprecated)::
    Specifies the build file. For example: `gradle --build-file=foo.gradle`. The default is `build.gradle`, then `build.gradle.kts`.
    
    `-c`, `--settings-file` (deprecated)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    func (lb *ListenerBuilder) buildInboundListeners() []*listener.Listener {
    	// All listeners we build
    	var listeners []*listener.Listener
    	// virtualInboundFilterChains builds up all of the filter chains for the virtual inbound listener
    	var virtualInboundFilterChains []*listener.FilterChain
    	// For each chain config we will build required filter chain(s)
    	for _, cc := range lb.buildInboundChainConfigs() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Use of dynamic dependency versions (e.g. `1.+` or `[1.0,2.0)`) makes builds non-deterministic.
    This causes builds to break without any obvious change, and worse, can be caused by a transitive dependency that the build author has no control over.
    
    To achieve https://reproducible-builds.org/[reproducible builds], it is necessary to _lock_ versions of dependencies and transitive dependencies such that a build with the same inputs will always resolve the same module versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/idea/IdeaModelBuilderTest.groovy

        Project child1
        Project child2
    
        def setup() {
            child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
            child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
            [project, child1, child2].each { it.pluginManager.apply(IdeaPlugin) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 11:38:46 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    = Important concepts
    
    How much of your build gets loaded from the cache depends on many factors.
    In this section you will see some of the tools that are essential for well-cached builds.
    https://gradle.com/build-scans[Build scans] are part of that toolchain and will be used throughout this guide.
    
    == Build cache key
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    ├── settings.gradle.kts // <7>
    ├── subproject-one  // <8>
    |   └── build.gradle.kts    // <9>
    ├── subproject-two  // <8>
    |   └── build.gradle.kts    // <9>
    └── ⋮
    ----
    <1> Project-specific cache directory generated by Gradle.
    <2> Version-specific caches (e.g., to support incremental builds).
    <3> The build directory of this project into which Gradle generates all build artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    ----
    .
    ├── buildSrc
    │   ├── src
    │   │   └──...
    │   └── build.gradle.kts
    ├── data-model
    │   ├── src
    │   │   └──...
    │   └── build.gradle.kts
    ├── database-logic
    │   ├── src
    │   │   └──...
    │   └── build.gradle.kts
    ├── app
    │   ├── src
    │   │   └──...
    │   └── build.gradle.kts
    └── settings.gradle.kts
    ----
    
    The build file of the `database-logic` subproject is as follows:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            def build1 = singleProjectBuild("build1") {
                buildFile << "task foo1"
            }
            def build2 = singleProjectBuild("build2") {
                buildFile << "task foo2"
            }
    
            when:
            def allProgress = new CopyOnWriteArrayList<String>()
    
            concurrent.start {
                def connector = toolingApi.connector(build1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsIntegrationTest.groovy

            """
    
            then:
            succeeds("build")
            executed(":${build.buildName}:compileJava")
            executed(":compileJava")
            build.assertSettingsPluginApplied()
            build.assertProjectPluginApplied()
        }
    
        def "library build included in plugin build can be used in settings plugin when such settings plugin is included in another build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top