Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for participating (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/build_lifecycle.adoc

    - Creates a link:{groovyDslPath}/org.gradle.api.Project.html[`Project`] instance for every project.
    Phase 2. Configuration::
    - Evaluates the build scripts, `build.gradle(.kts)`, of every project participating in the build.
    - Creates a task graph for requested tasks.
    Phase 3. Execution::
    - Schedules and executes the selected tasks.
    - Dependencies between tasks determine execution order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 11:17:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. cmd/rebalance-admin.go

    			ID:     i,
    			Status: ps.Info.Status.String(),
    			Used:   float64(diskStats[i].TotalSpace-diskStats[i].AvailableSpace) / float64(diskStats[i].TotalSpace),
    		}
    		if !ps.Participating {
    			continue
    		}
    		// for participating pools, total bytes to be rebalanced by this pool is given by,
    		// pf_c = (f_i + x)/c_i,
    		// pf_c - percentage free space across pools, f_i - ith pool's free space, c_i - ith pool's capacity
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/StandAloneNestedBuild.java

     * limitations under the License.
     */
    
    package org.gradle.internal.build;
    
    /**
     * A stand alone nested build, which is a nested build that runs as part of some containing build as a single atomic step, without participating in task execution of the containing build.
     */
    public interface StandAloneNestedBuild extends NestedBuildState, BuildActionTarget {
        BuildState getOwner();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 963 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictResolutionResult.java

    public interface ConflictResolutionResult {
    
        /**
         * Performs an action on all conflicting modules.
         * @param action the action to execute on each participating module
         */
        void withParticipatingModules(Action<? super ModuleIdentifier> action);
    
        /**
         * The actual selected component.
         */
        ComponentState getSelected();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentableClosure.java

    package org.gradle.internal.classpath;
    
    import org.gradle.api.NonNullApi;
    
    /**
     * Represents a closure that can participate in dynamic calls instrumentation.
     * Initially, such a closure may not be completely prepared for participating in dynamic call interception,
     * which is a performance optimization. <p>
     *
     * Upon an invocation of {@link InstrumentableClosure#makeEffectivelyInstrumented} the instance must perform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/internal/bytealg/count_ppc64x.s

    	BLT	tail_2
    	MOVWZ	(R3), R12
    	CMPB	R12, R5, R12
    	SLD	$32, R12, R12	// Remove non-participating matches.
    	POPCNTD	R12, R12
    	ADD	R12, R18, R18
    	ADD	$4, R3, R3
    	ADD	$-4, R4, R4
    
    tail_2:	// Count the remaining 0 - 3 bytes.
    	CMP	R4, $2
    	BLT	tail_1
    	MOVHZ	(R3), R12
    	CMPB	R12, R5, R12
    	SLD	$48, R12, R12	// Remove non-participating matches.
    	POPCNTD	R12, R12
    	ADD	R12, R18, R18
    	ADD	$2, R3, R3
    	ADD	$-2, R4, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/PotentialConflict.java

    public interface PotentialConflict {
        /**
         * Executes an action with each module that participates in the conflict.
         * In a typical version conflict, e.g. org:foo:1.0 VS org:foo:2.0 there is only one participating module: org:foo.
         */
        void withParticipatingModules(Action<ModuleIdentifier> action);
    
        /**
         * informs whether the conflict exists
         */
        boolean conflictExists();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

         *
         * @since 1.11
         */
        boolean isExpected();
    
        /**
         * Informs whether the selected component is a project substitute from a build participating in a composite build.
         *
         * @since 4.5
         */
        boolean isCompositeSubstitution();
    
        /**
         * Informs whether the selected component version has been influenced by a dependency constraint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. README.md

    to contribute to Gradle or provide a patch/pull request, you can find more info [here](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    
    This project adheres to the [Gradle Code of Conduct](https://gradle.org/conduct/). By participating, you are expected to uphold this code....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    [[configuration_and_execution]]
    = Configuration On Demand
    
    Configuration-on-demand attempts to configure only the relevant projects for the requested tasks, i.e., it only evaluates the build script file of projects participating in the build.
    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.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top