Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 697 for Deprecation (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/deprecation/deprecation.go

    		return false
    	}
    
    	deprecatedMajor, deprecatedMinor := deprecated.APILifecycleDeprecated()
    	// no deprecation version expressed
    	if deprecatedMajor == 0 && deprecatedMinor == 0 {
    		return false
    	}
    	// no current version info available
    	if currentMajor == 0 && currentMinor == 0 {
    		return true
    	}
    	// compare deprecation version to current version
    	if deprecatedMajor > currentMajor {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. pkg/config/analysis/analyzers/testdata/deprecation.yaml

    Mitch Connors <******@****.***> 1637152085 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top