Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,147 for DEPRECATED (0.12 sec)

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

    		Names: k8sext.CustomResourceDefinitionNames{Kind: "ServiceRoleBinding"},
    	},
    }
    
    // Currently we don't have an Istio API that tells which Istio API fields are deprecated.
    // Run `find . -name "*.proto" -exec grep -i "deprecated=true" \{\} \; -print`
    // to see what is deprecated.  This analyzer is hand-crafted.
    
    // Metadata implements analyzer.Analyzer
    func (*FieldAnalyzer) Metadata() analysis.Metadata {
    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. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BooleanCommandLineOptionConfigurationTest.groovy

            configuration.incubating
        }
    
        def "can mark option as deprecated"() {
            when:
            BooleanCommandLineOptionConfiguration configuration = BooleanCommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, ENABLED_DESCRIPTION, DISABLED_DESCRIPTION)
            configuration.deprecated()
    
            then:
            configuration.deprecated
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/io/ioutil/ioutil.go

    // NopCloser returns a ReadCloser with a no-op Close method wrapping
    // the provided Reader r.
    //
    // Deprecated: As of Go 1.16, this function simply calls [io.NopCloser].
    func NopCloser(r io.Reader) io.ReadCloser {
    	return io.NopCloser(r)
    }
    
    // Discard is an io.Writer on which all Write calls succeed
    // without doing anything.
    //
    // Deprecated: As of Go 1.16, this value is simply [io.Discard].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. .idea/inspectionProfiles/Gradle.xml

          <replaceConfiguration name="Treat some Guava Collection factory methods as Deprecated" uuid="82f9f9ab-9c3b-367f-99ad-40841dc13819" description="Many no-argument Guava Collection factory methods are marked in their javadoc &quot;Should be treated as deprecated&quot;.  These should not be used." suppressId="guava-collection-factory" problemDescriptor="Treat some Guava Collection factory methods as Deprecated" text="com.google.common.collect.Lists.newArrayList()" recursive="false" caseInsensitive="false"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/features/features_test.go

    		"deprecated": {FeatureSpec: featuregate.FeatureSpec{Default: true, PreRelease: featuregate.Deprecated}, DeprecationMessage: dummyMessage},
    	}
    
    	var tests = []struct {
    		name        string
    		features    map[string]bool
    		expectedMsg map[string]string
    	}{
    		{
    			name:        "deprecated feature",
    			features:    map[string]bool{"deprecated": true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 04:57:22 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public abstract val int: KaType
    
        @Deprecated("Use 'int' instead.", replaceWith = ReplaceWith("int"))
        public val INT: KaType
            get() = int
    
        public abstract val long: KaType
    
        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

    
        /**
         * Retrieves the [customConvention][org.gradle.kotlin.dsl.accessors.tasks.PrintAccessorsTest.CustomConvention] convention.
         *
         * @deprecated The concept of conventions is deprecated. Use extensions instead.
         */
        val org.gradle.api.Project.`customConvention`: org.gradle.kotlin.dsl.accessors.tasks.PrintAccessorsTest.CustomConvention get() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/script-plugin/src/main/groovy/reporters.script.plugin.gradle

    def gradleInternal = gradle as GradleInternal
    def problems = gradleInternal.services.get(Problems)
    
    problems.forNamespace('buildscript').reporting {
        it.id('adhoc-script-deprecation', 'Deprecated script plugin')
            .contextualLabel("Deprecated script plugin 'demo-script-plugin'")
            .severity(Severity.WARNING)
            .solution("Please use 'standard-plugin-2' instead of this plugin")
    }
    
    tasks.register('warningTask') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

      @JvmName("-deprecated_bodyLimit")
      @Deprecated(
        message = "moved to var",
        replaceWith =
          ReplaceWith(
            expression = "run { this.bodyLimit = bodyLimit }",
          ),
        level = DeprecationLevel.ERROR,
      )
      fun setBodyLimit(bodyLimit: Long) {
        delegate.bodyLimit = bodyLimit
      }
    
      @JvmName("-deprecated_protocolNegotiationEnabled")
      @Deprecated(
        message = "moved to var",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

            } else {
                progressContent = []
            }
        }
    
        @Deprecated
        boolean downloadProgressLogged(URI url) {
            downloadProgressLogged(url.toASCIIString())
        }
    
        @Deprecated
        boolean downloadProgressLogged(String url) {
            return progressLogged("Download $url")
        }
    
        @Deprecated
        boolean uploadProgressLogged(URI url) {
            uploadProgressLogged(url.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top