Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DeprecatedIsStillUsed (2.2 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/GroovyCallInterceptorsProvider.java

         * Kept to support old case where we loaded a class directly.
         */
        @NonNullApi
        @Deprecated
        @SuppressWarnings("DeprecatedIsStillUsed")
        class ClassSourceGroovyCallInterceptorsProvider implements GroovyCallInterceptorsProvider {
    
            private final Lazy<List<FilterableCallInterceptor>> interceptors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPluginConvention.java

    /**
     * <p>The {@link Convention} used for configuring the {@link ApplicationPlugin}.</p>
     *
     * @deprecated Use {@link JavaApplication} instead. This class is scheduled for removal in Gradle 9.0.
     */
    @SuppressWarnings("DeprecatedIsStillUsed")
    @Deprecated
    public abstract class ApplicationPluginConvention {
        /**
         * The name of the application.
         */
        public abstract String getApplicationName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * is still under debate. However, in general, we should try to split up configurations which
         * have this role into separate resolvable and dependency scope configurations.
         */
        @SuppressWarnings("DeprecatedIsStillUsed")
        @Deprecated
        Configuration maybeCreateResolvableDependencyScopeUnlocked(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top