Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,927 for DEPRECATED (0.14 sec)

  1. cmd/kube-scheduler/app/options/deprecated.go

    */
    
    package options
    
    import (
    	"time"
    
    	"github.com/spf13/pflag"
    	componentbaseconfig "k8s.io/component-base/config"
    )
    
    // DeprecatedOptions contains deprecated options and their flags.
    // TODO remove these fields once the deprecated flags are removed.
    type DeprecatedOptions struct {
    	componentbaseconfig.DebuggingConfiguration
    	componentbaseconfig.ClientConnectionConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 13:24:38 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. pkg/config/xds/deprecated.go

    // limitations under the License.
    
    package xds
    
    import "istio.io/istio/pkg/wellknown"
    
    var (
    	// DeprecatedFilterNames is to support both canonical filter names
    	// and deprecated filter names for backward compatibility. Istiod
    	// generates canonical filter names.
    	DeprecatedFilterNames = map[string]string{
    		wellknown.Buffer:                      "envoy.buffer",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. releasenotes/notes/deprecated-envoy-filter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes: 
    - |
      **Removed** the support for deprecated envoy filter names in Envoy API name maches. Envoy filter will only be matched with canonical naming standard. See https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.14.0#deprecated
    
    upgradeNotes:
      - title: Use the canonical filter names for EnvoyFilter
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 622 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated.png

    java-library-ignore-deprecated.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.png

    java-library-ignore-deprecated-main.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.png

    java-library-ignore-deprecated-test.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.dot

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.dot

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/deprecationFromLibrary.kt

    // FILE: lib.kt
    package one
    
    @Deprecated("Deprecated class")
    class MyDeprecatedClass {
        @property:Deprecated("Deprecated property")
        @get:Deprecated("Deprecated getter")
        @set:Deprecated("Deprecated setter")
        var deprecatedProperty: Int = 0
            get() = field
            set(value) {
                field = value
            }
    
        @Deprecated("Deprecated function")
        fun deprecatedFunction() {
    
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 06 16:13:09 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list_deprecated.txt

    stdout '^example.com/deprecated/a v1.9.0 \(deprecated\)$'
    
    # 'go list -m -u -f' exposes the deprecation message.
    go list -m -u -f {{.Deprecated}} example.com/deprecated/a
    stdout '^in example.com/deprecated/a@v1.9.0$'
    
    # This works even if we use an old version that does not have the deprecation
    # message in its go.mod file.
    go get example.com/deprecated/a@v1.0.0
    ! grep Deprecated: $WORK/gopath/pkg/mod/cache/download/example.com/deprecated/a/@v/v1.0.0.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top