Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,998 for Builds (0.13 sec)

  1. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/README.adoc

    The build is then included in the root project's _settings_ file as seen in the above snippet.
    For more details about included builds, see link:{userManualPath}/composite_builds.html[Composing Builds] chapter.
    
    The `myproject.java-conventions` plugin is then applied to the `buildSrc` build:
    ====
    include::sample[dir="kotlin",files="buildSrc/build.gradle.kts[tags=plugins]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/plugins/CompositeBuildPluginResolverContributor.java

            private PluginResolution resolveFromIncludedPluginBuilds(PluginId requestedPluginId) {
                for (IncludedBuildState build : buildIncluder.getRegisteredPluginBuilds()) {
                    buildIncluder.prepareForPluginResolution(build);
                    Optional<PluginResolution> pluginResolution = build.withState(gradleInternal -> LocalPluginResolution.resolvePlugin(gradleInternal, requestedPluginId));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildActionExecuter.java

         *
         * <p>If the target Gradle version is &gt;=6.8 then you can execute tasks from included builds. You can target tasks from included builds by specifying the task identity path (i.e. {@code
         * ':included-build-name:subproject-name:taskName'}).</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:31:25 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            when:
            run ":projects"
    
            then:
            outputContains """
    Root project 'my-root-project'
    No sub-projects
    
    Included builds:
    
    +--- Included build ':another'
    \\--- Included build ':third'"""
        }
    
        def "included builds are only shown in the context of the root project"() {
            given:
            createDirs("p1", "p1/p11", "another")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    This way, the configuration time of a large multi-project build can be reduced.
    
    The configuration-on-demand feature is _incubating_, so only some builds are guaranteed to work correctly.
    The feature works well for <<#sec:decoupled_projects,decoupled>> multi-project builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pkg/scheduler/profile/profile.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    // RecorderFactory builds an EventRecorder for a given scheduler name.
    type RecorderFactory func(string) events.EventRecorder
    
    // newProfile builds a Profile for the given configuration.
    func newProfile(ctx context.Context, cfg config.KubeSchedulerProfile, r frameworkruntime.Registry, recorderFact RecorderFactory,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 06 01:11:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. tools/docker-builder/crane.go

    				b.Args = append(b.Args, args)
    			}
    			builds = append(builds, b)
    		}
    	}
    
    	// Warm up our base images while we are building everything. This isn't pulling them -- we actually
    	// never pull them -- but it is pulling the config file from the remote registry.
    	builder.WarmBase(ctx, a.Architectures, sets.SortedList(bases)...)
    
    	// Build all dependencies
    	makeStart := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/daemon/ScalaCompilerDaemonReuseIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @UnsupportedWithConfigurationCache(because = "parallel by default")
        def "reuses compiler daemons within a multi-project build across multiple builds when enabled"() {
            withMultiProjectSources()
            withPersistentScalaCompilerDaemons()
    
            when:
            succeeds("compileAll")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    == Step 4. Understanding Remote Caching
    In addition to the local build cache present on a developer's machine, Gradle can make use of remote build caches which can be used by multiple developers.
    
    The idea of a remote cache is to share commonly built task outputs across remote builds to improve build times.
    
    When both remote and local caches are enabled, then the build output is first checked in the local cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top