Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for feature_lifecycle (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

                    "The feature flag is no longer relevant, please remove it from your settings file. " +
                    "See https://docs.gradle.org/current/userguide/feature_lifecycle.html#feature_preview for more details.")
    
            then:
            succeeds()
    
            where:
            feature << FeaturePreviewsActivationFixture.inactiveFeatures()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    include::about_manual.adoc[leveloffset=+2]
    
    '''
    
    [[part:releases]]
    == **RELEASES**
    
    include::installation.adoc[leveloffset=+2]
    include::compatibility.adoc[leveloffset=+2]
    include::feature_lifecycle.adoc[leveloffset=+2]
    
    [[part:running_builds]]
    == **RUNNING GRADLE BUILDS**
    
    == CORE CONCEPTS
    
    include::gradle_basics.adoc[leveloffset=+2]
    include::gradle_wrapper_basics.adoc[leveloffset=+2]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

                    .withAdvice("The feature flag is no longer relevant, please remove it from your settings file.")
                    .willBeRemovedInGradle9()
                    .withUserManual("feature_lifecycle", "feature_preview")
                    .nagUser();
            }
        }
    
        @Override
        public void preventFromFurtherMutation() {
            dependencyResolutionManagement.preventFromFurtherMutation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    for multi-repo setups.
    
    NOTE: This sample shows how to adopt an link:sample_publishing_convention_plugins.html[existing sample] for use with Test Suites.
    
    IMPORTANT: Test Suites are an link:{userManualPath}/feature_lifecycle.html#sec:incubating_state[incubating] feature, and the details described here may change.
    
    == Use case
    
    As an example, let's say an organization produces two types of Java software - services and libraries.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    for multi-repo setups.
    
    NOTE: There is also a link:sample_incubating_publishing_convention_plugins.html[new sample] demonstrating how to use the link:{userManualPath}/feature_lifecycle.html#sec:incubating_state[incubating] link:{userManualPath}/jvm_test_suite_plugin.html[Test Suite Plugin] in this scenario.
    
    == Use case
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    If the `--incubating` option is provided, Gradle will generate build scripts which may use the latest versions of APIs, which are marked `@Incubating` and remain <<feature_lifecycle.adoc#feature_lifecycle,subject to change>>. To disable this behavior, use `--no-incubating`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[sec:daemon_jvm_criteria]]
    == Configuring the JVM to be used
    
    NOTE: Daemon JVM discovery and criteria are <<feature_lifecycle.adoc#sec:incubating_state,incubating>> features and are subject to change in a future release.
    
    By default, the Gradle daemon runs on the same JVM installation that started the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    For instance, this plugin can be used to define a group of Integration Tests, which might run much longer than unit tests and have different environmental requirements.
    
    NOTE: The JVM Test Suite plugin is an <<feature_lifecycle.adoc#sec:incubating_state,incubating>> API and is subject to change in a future release.
    
    [[sec:jvm_test_suite_usage]]
    == Usage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/main/resources/header.html

                    <li><a href="../userguide/troubleshooting.html">Troubleshooting</a></li>
                    <li><a href="../userguide/compatibility.html">Compatibility Notes</a></li>
                    <li><a href="../userguide/feature_lifecycle.html">Gradle's Feature Lifecycle</a></li>
                </ul>
    
                <h3 id="running-gradle-builds">Running Gradle Builds</h3>
                <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/IncubationLogger.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.util.internal;
    
    import org.gradle.internal.featurelifecycle.IncubatingFeatureUsage;
    import org.gradle.internal.featurelifecycle.LoggingIncubatingFeatureHandler;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    @ThreadSafe
    public class IncubationLogger {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top