Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for Deprecation (0.14 sec)

  1. testing/performance/src/templates/generateLotsOfDeprecationWarnings/build.gradle

            // every 10th deprecation should have a different message
            if (i % 10 == 0) {
                nagUserOfDeprecated("Some unique deprecation No #\$i")
            }
            nagUserOfDeprecated("Some repetitive Deprecation")
        }
    }
    
    
    @groovy.transform.CompileStatic
    void nagUserOfDeprecated(String thing) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/DefaultDeprecatedUsageProgressDetails.java

            Map<String, Object> deprecation = new LinkedHashMap<String, Object>();
            deprecation.put("summary", getSummary());
            deprecation.put("removalDetails", getRemovalDetails());
            deprecation.put("advice", getAdvice());
            deprecation.put("contextualAdvice", getContextualAdvice());
            deprecation.put("documentationUrl", getDocumentationUrl());
            deprecation.put("type", getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

                }
                assert !line.contains("has been deprecated"), "Found an unexpected deprecation warning on line ${lineIndex + 1}: $line"
            }
            remainingWarnings.removeAll(maybeExpectedDeprecationWarnings)
            assert remainingWarnings.empty, "Expected ${totalExpectedDeprecations} deprecation warnings, found ${foundDeprecations} deprecation warnings. Did not match the following:\n${remainingWarnings.collect { " - $it" }.join("\n")}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/deprecationFromLibrary.txt

        DEPRECATION      text ranges: [(302,320)]
          PSI: KtNameReferenceExpression at (71,21-39)
      for PSI element of type KtNameReferenceExpression at (72,21-39)
        DEPRECATION      text ranges: [(352,370)]
          PSI: KtNameReferenceExpression at (72,21-39)
      for PSI element of type KtNameReferenceExpression at (74,21-40)
        DEPRECATION      text ranges: [(396,415)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

                apply plugin: SomePlugin
    
                org.gradle.internal.deprecation.DeprecationLogger.deprecateBuildInvocationFeature('Some invocation feature').withAdvice("Don't do custom invocation.").willBeRemovedInGradle9().undocumented().nagUser()
                org.gradle.internal.deprecation.DeprecationLogger.deprecateIndirectUsage('Some indirect deprecation').withAdvice('Some advice.').willBeRemovedInGradle9().undocumented().nagUser()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

    import org.jetbrains.kotlin.resolve.DescriptorUtils
    import org.jetbrains.kotlin.resolve.deprecation.DeprecationInfo
    import org.jetbrains.kotlin.resolve.deprecation.DeprecationLevelValue
    import org.jetbrains.kotlin.resolve.deprecation.DeprecationResolver
    import org.jetbrains.kotlin.resolve.deprecation.SimpleDeprecationInfo
    import org.jetbrains.kotlin.resolve.jvm.annotations.hasJvmFieldAnnotation
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top