Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 524 for Deprecation (0.16 sec)

The limit of a search time was exceeded. The partial result might be displayed.

  1. pkg/config/analysis/analyzers/deprecation/deprecation.go

    // 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 deprecation
    
    import (
    	"fmt"
    
    	k8sext "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  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. 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)
Back to top