Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 601 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. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/featurelifecycle/DeprecatedUsageProgressDetails.java

        /**
         * See {@code org.gradle.internal.deprecation.DeprecatedFeatureUsage#getSummary()}
         */
        String getSummary();
    
        /**
         * See {@code org.gradle.internal.deprecation.DeprecatedFeatureUsage#getRemovalDetails()}
         */
        String getRemovalDetails();
    
        /**
         * See {@code org.gradle.internal.deprecation.DeprecatedFeatureUsage#getAdvice()}
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top