Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for feature_lifecycle (0.25 sec)

  1. platforms/documentation/docs/src/docs/release/notes.md

    ## Promoted features
    Promoted features are features that were incubating in previous versions of Gradle but are now supported and subject to backward compatibility.
    See the User Manual section on the “[Feature Lifecycle](userguide/feature_lifecycle.html)” for more information.
    
    The following are the features that have been promoted in this Gradle release.
    
    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/release/notes-template.md

    ## Promoted features
    Promoted features are features that were incubating in previous versions of Gradle but are now supported and subject to backward compatibility.
    See the User Manual section on the “[Feature Lifecycle](userguide/feature_lifecycle.html)” for more information.
    
    The following are the features that have been promoted in this Gradle release.
    
    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/logging/build.gradle.kts

        testFixturesImplementation(libs.slf4jApi)
    
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/internal/featurelifecycle/**")
        excludePatterns.add("org/gradle/util/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingIncubatingFeatureHandler.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.featurelifecycle;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.HashSet;
    import java.util.Set;
    
    public class LoggingIncubatingFeatureHandler implements FeatureHandler<IncubatingFeatureUsage> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/InitDeprecationLoggingActionExecutor.java

    import org.gradle.StartParameter;
    import org.gradle.api.logging.configuration.ShowStacktrace;
    import org.gradle.api.problems.Problems;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.featurelifecycle.LoggingDeprecatedFeatureHandler;
    import org.gradle.internal.invocation.BuildAction;
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter;
    import org.gradle.problems.buildtree.ProblemStream;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

    import com.google.common.base.Preconditions;
    import org.gradle.api.problems.internal.DeprecationData;
    import org.gradle.api.problems.internal.DocLink;
    import org.gradle.internal.featurelifecycle.FeatureUsage;
    
    import javax.annotation.Nullable;
    
    import static org.apache.commons.lang.StringUtils.isNotEmpty;
    
    public class DeprecatedFeatureUsage extends FeatureUsage {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.featurelifecycle;
    
    import org.gradle.api.Action;
    import org.gradle.api.GradleException;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.api.logging.configuration.WarningMode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top