Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for feature_lifecycle (0.25 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

    import org.gradle.api.problems.internal.GradleCoreProblemGroup
    import org.gradle.api.problems.internal.ProblemEmitter
    import org.gradle.internal.Describables
    import org.gradle.internal.featurelifecycle.DeprecatedUsageProgressDetails
    import org.gradle.internal.featurelifecycle.LoggingDeprecatedFeatureHandler
    import org.gradle.internal.logging.CollectingTestOutputEventListener
    import org.gradle.internal.logging.ConfigureLogging
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @NonNullApi
    package org.gradle.internal.featurelifecycle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 710 bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/SimulatedJavaCallLocation.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;
    
    /**
     * This class is used to test proper call stack evaluation of Java classes.
     */
    public class SimulatedJavaCallLocation {
    
        static SimulatedSingleMessageLogger.TestFeatureUsage create() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/FeatureUsage.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;
    
    /**
     * An immutable description of the usage of a deprecated feature.
     */
    public abstract class FeatureUsage {
        private final String summary;
        private final Class<?> calledFrom;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/FeatureHandler.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;
    
    /**
     * Notified when a deprecated feature is used.
     *
     * <p>Implementations need not be thread-safe.
     */
    public interface FeatureHandler<T extends FeatureUsage> {
        void featureUsed(T usage);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 860 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/test/groovy/org/gradle/internal/featurelifecycle/StackTraceSanitizerTest.groovy

     * 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 spock.lang.Specification
    import spock.lang.Subject
    
    import static SimulatedSingleMessageLogger.DIRECT_CALL
    import static SimulatedSingleMessageLogger.INDIRECT_CALL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/IncubatingFeatureUsage.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;
    
    public class IncubatingFeatureUsage extends FeatureUsage {
        public IncubatingFeatureUsage(String summary, Class<?> calledFrom) {
            super(summary, calledFrom);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 840 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/SimulatedSingleMessageLogger.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;
    
    public class SimulatedSingleMessageLogger {
    
        public static final String DIRECT_CALL = "direct call";
        public static final String INDIRECT_CALL = "indirect call";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/SimulatedGroovyCallLocation.groovy

     * 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
    
    /**
     * This class is used to test proper call stack evaluation of Groovy classes.
     */
    class SimulatedGroovyCallLocation {
        static FeatureUsage create() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top