Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 538 for plfeature (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

        def "emits deprecation warnings when enabling inactive #feature feature"() {
            given:
            settingsFile << """
                enableFeaturePreview('$feature')
            """
    
            when:
            executer.expectDocumentedDeprecationWarning("enableFeaturePreview('$feature') has been deprecated. This is scheduled to be removed in Gradle 8.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    	}{
    		{
    			description:                  "oldPod.FSGroupChangePolicy=nil, feature=true, newPod.FSGroupChangePolicy=true",
    			pod:                          nofsGroupPod,
    			newPodHasFSGroupChangePolicy: true,
    			expectPolicyInPod:            true,
    		},
    		{
    			description:                  "oldPod=nil, feature=true, newPod.FSGroupChangePolicy=true",
    			pod:                          func() *api.Pod { return nil },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. releasenotes/notes/otel-builtin-labels.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    var options []option
    
    // Option names should be lower case. e.g. avx instead of AVX.
    type option struct {
    	Name      string
    	Feature   *bool
    	Specified bool // whether feature value was specified in GODEBUG
    	Enable    bool // whether feature should be enabled
    	Required  bool // whether feature is mandatory and can not be disabled
    }
    
    func processOptions() {
    	env := os.Getenv("GODEBUG")
    field:
    	for env != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. releasenotes/notes/56781.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/feature/feature_gate.go

    limitations under the License.
    */
    
    package feature
    
    import (
    	"k8s.io/component-base/featuregate"
    )
    
    var (
    	// DefaultMutableFeatureGate is a mutable version of DefaultFeatureGate.
    	// Only top-level commands/options setup and the k8s.io/component-base/featuregate/testing package should make use of this.
    	// Tests that need to modify feature gates for the duration of their test should use:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            useLocation("<long>", 123)
    
            when:
            handler.featureUsed(deprecatedFeatureUsage('feature'))
    
            then:
            def events = outputEventListener.events
            events.size() == 1
            events[0].message == TextUtil.toPlatformLineSeparators('<long>: line 123\nfeature removal')
        }
    
        def 'logs deprecation warning once for each unique Gradle script location that appears first in the stack trace'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types_test.go

    		expectedResult EncryptionAlgorithmType
    	}{
    		{
    			name: "feature gate is set to true, return ECDSA-P256",
    			cfg: &ClusterConfiguration{
    				FeatureGates: map[string]bool{
    					features.PublicKeysECDSA: true,
    				},
    				EncryptionAlgorithm: EncryptionAlgorithmRSA4096,
    			},
    			expectedResult: EncryptionAlgorithmECDSAP256,
    		},
    		{
    			name: "feature gate is set to false, return the default RSA-2048",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 09:39:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/volume/csimigration/plugin_manager.go

    // 1. Enable CSIMigrationXX for the plugin
    // 2. Unregister the in-tree plugin by setting the InTreePluginXXUnregister feature gate
    func (pm PluginManager) IsMigrationCompleteForPlugin(pluginName string) bool {
    	// CSIMigration feature and plugin specific InTreePluginUnregister feature flags should
    	// be enabled for plugin specific migration completion to be take effect
    	if !pm.IsMigrationEnabledForPlugin(pluginName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/controller/job/success_policy.go

    import (
    	"fmt"
    
    	batch "k8s.io/api/batch/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    func matchSuccessPolicy(logger klog.Logger, successPolicy *batch.SuccessPolicy, completions int32, succeededIndexes orderedIntervals) (string, bool) {
    	if !feature.DefaultFeatureGate.Enabled(features.JobSuccessPolicy) || successPolicy == nil || len(succeededIndexes) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top