Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 945 for prior (0.06 sec)

  1. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/tests/badConfNames.out

    the usage of configuration myCodeCompileClasspath to match the expected usage. This may cause unexpected behavior. Creating configurations with reserved names has been deprecated. This will fail with an error in Gradle 9.0. Create source set myCode prior to creating or accessing the configurations associated with it. For more information, please refer to https://docs.gradle.org/0.0.0/userguide/building_java_projects.html#sec:implicit_sourceset_configurations in the Gradle documentation....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/mvs.go

    		}
    		versions = allowedVersions
    		origin = allVersions.Origin
    		return nil
    	})
    	return versions, origin, err
    }
    
    // previousVersion returns the tagged version of m.Path immediately prior to
    // m.Version, or version "none" if no prior version is tagged.
    //
    // Since the version of a main module is not found in the version list,
    // it has no previous version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/GoalTask.java

     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    /**
     * A task that is a goal.
     * <p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public final class GoalTask extends Task {
        public GoalTask(String pluginGoal) {
            super(pluginGoal);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/configuration/ProjectsPreparer.java

    /**
     * Responsible for creating and configuring the projects of a `Gradle` instance. The result is passed to a {@link org.gradle.initialization.TaskExecutionPreparer} to prepare for task execution. Prior to project preparation, the `Gradle` instance has its settings object configured by a {@link org.gradle.initialization.SettingsPreparer}.
     *
     * <p>This stage includes running the build script for each project.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 03:05:02 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/BuildWorkExecutor.java

    import org.gradle.api.internal.GradleInternal;
    import org.gradle.execution.plan.FinalizedExecutionPlan;
    import org.gradle.internal.build.ExecutionResult;
    
    /**
     * Executes the work scheduled for a build. Prior to execution, the work will be prepared by a {@link org.gradle.initialization.TaskExecutionPreparer}.
     */
    public interface BuildWorkExecutor {
        /**
         * Executes the given work and returns the failures.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/util/helpers.go

    type FlowSchemaSequence []*flowcontrol.FlowSchema
    
    func (s FlowSchemaSequence) Len() int {
    	return len(s)
    }
    
    func (s FlowSchemaSequence) Less(i, j int) bool {
    	// the flow-schema w/ lower matching-precedence is prior
    	if ip, jp := s[i].Spec.MatchingPrecedence, s[j].Spec.MatchingPrecedence; ip != jp {
    		return ip < jp
    	}
    	// sort alphabetically
    	return s[i].Name < s[j].Name
    }
    
    func (s FlowSchemaSequence) Swap(i, j int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 29 04:26:12 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/CommandLineToolConfiguration.java

    /**
     * An executable tool that forms part of a tool chain.
     */
    @Incubating
    public interface CommandLineToolConfiguration {
        /**
         * Adds an action that will be applied to the command-line arguments prior to execution.
         */
        void withArguments(Action<? super List<String>> arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

            listener.onAccess(o);
            listener.onRemove(o);
            return delegate.remove(o);
        }
    
        @Override
        public boolean removeAll(Collection<?> collection) {
            // We cannot perform modification before notifying because the listener may want to query the state of the delegate prior to that.
            for (Object o : collection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/FlushableEncoder.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    import java.io.Flushable;
    import java.io.IOException;
    
    /**
     * Represents an {@link Encoder} that buffers encoded data prior to writing to the backing stream.
     */
    public interface FlushableEncoder extends Encoder, Flushable {
        /**
         * Ensures that all buffered data has been written to the backing stream. Does not flush the backing stream.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/FailureContainer.java

     * @since 8.7
     */
    @Incubating
    public interface FailureContainer {
    
        /**
         * Failure that caused the problem.
         * <p>
         * The method will always return <code>null</code> if run against a Gradle version prior to 8.8.
         * @since 8.7
         */
        @Nullable
        Failure getFailure();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top