Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 697 for Deprecation (0.28 sec)

  1. src/cmd/go/testdata/script/mod_list_deprecated.txt

    # 'go list pkg' does not show deprecation.
    go list example.com/deprecated/a
    stdout '^example.com/deprecated/a$'
    
    # 'go list -m' does not show deprecation.
    go list -m example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.9.0$'
    
    # 'go list -m -versions' does not show deprecation.
    go list -m -versions example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.0.0 v1.9.0$'
    
    # 'go list -m -u' shows deprecation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_deprecated.txt

    # 'go get pkg' should not show a deprecation message for an unrelated module.
    go get ./use/nothing
    ! stderr 'module.*is deprecated'
    
    # 'go get pkg' should show a deprecation message for the module providing pkg.
    go get example.com/deprecated/a
    stderr '^go: module example.com/deprecated/a is deprecated: in example.com/deprecated/a@v1.9.0$'
    go get example.com/deprecated/a@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top