Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 643 for Deprecation (0.32 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

            return deprecation;
        }
    
        /**
         * Sets whether to generate deprecation information.
         */
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        /**
         * Tells whether to generate unchecked information.
         */
        @Input
        public boolean isUnchecked() {
            return unchecked;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolInfoProvider.kt

        /**
         * Gets the deprecation status of the given symbol. Returns null if the symbol is not deprecated.
         */
        public val KaSymbol.deprecationStatus: DeprecationInfo?
            get() = withValidityAssertion {
                analysisSession.symbolInfoProvider.getDeprecation(this)
            }
    
        /**
         * Gets the deprecation status of the given symbol. Returns null if the symbol is not deprecated.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

    import javax.annotation.concurrent.ThreadSafe;
    
    
    /**
     * Provides entry points for constructing and emitting deprecation messages.
     * The basic deprecation message structure is "Summary. DeprecationTimeline. Context. Advice. Documentation."
     * <p>
     * The deprecateX methods in this class return a builder that guides creation of the deprecation message.
     * Summary is populated by the deprecateX methods in this class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

        /**
         * Removes the first matching expected deprecation warning from the list of expected deprecations stored
         * in {@link #expectedDeprecationWarnings} as a side-effect; conditional on a matching deprecation warning
         * being already present in that collection.
         * <p>
         * A match means that the first n lines starting at {@code startIdx} match the lines of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

        def setup() {
            file('buildSrc/src/main/java/DeprecatedTask.java') << """
                import org.gradle.api.DefaultTask;
                import org.gradle.api.tasks.TaskAction;
                import org.gradle.internal.deprecation.DeprecationLogger;
    
                public class DeprecatedTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/ScriptApiTest.kt

            @Suppress("deprecation")
            assertScriptApiOf<KotlinBuildScript>()
    
        @Test
        fun `legacy IDE settings script template implements script api`() =
            @Suppress("deprecation")
            assertScriptApiOf<KotlinSettingsScript>()
    
        @Test
        fun `legacy IDE init script template implements script api`() =
            @Suppress("deprecation")
            assertScriptApiOf<KotlinInitScript>()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationLoggerTest.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.deprecation
    
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.api.logging.configuration.WarningMode
    import org.gradle.api.problems.internal.DefaultProblems
    import org.gradle.api.problems.internal.ProblemEmitter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:06:10 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        public boolean isDeprecation() {
            return deprecation;
        }
    
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        public boolean isUnchecked() {
            return unchecked;
        }
    
        public void setUnchecked(boolean unchecked) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/internal/deprecation/DeprecatableConfiguration.java

     * limitations under the License.
     */
    
    package org.gradle.internal.deprecation;
    
    import org.gradle.api.artifacts.Configuration;
    
    import java.util.List;
    
    /**
     * This internal interface extends {@link Configuration} adding functionality to allow plugins to deprecate
     * configurations.
     * <p>
     * This interface also contains a few methods unrelated to deprecation, but which need to be available to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 03:39:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            1 * problemEmitter.emit({ it.definition.id.displayName == 'Summary is deprecated.' }, identifier)
        }
    
        def "logs deprecation message with custom problem id"() {
            def deprecationDisplayName = "summary deprecation"
            given:
            def builder = new DeprecationMessageBuilder()
            builder.setSummary(summary)
            builder.withProblemIdDisplayName(deprecationDisplayName)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top