Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,304 for nature (0.56 sec)

  1. pkg/serviceaccount/claims.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	// Injected bound service account token expiration which triggers monitoring of its time-bound feature.
    	WarnOnlyBoundTokenExpirationSeconds = 60*60 + 7
    
    	// Extended expiration for those modified tokens involved in safe rollout if time-bound feature.
    	ExpirationExtensionSeconds = 24 * 365 * 60 * 60
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. pkg/serviceaccount/claims_test.go

    				},
    			},
    		},
    		{
    			// node with feature gate disabled
    			sa:   sa,
    			node: node,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    			err: "token bound to Node object requested, but \"ServiceAccountTokenNodeBinding\" feature gate is disabled",
    		},
    		{
    			// node & pod with feature gate disabled
    			sa:   sa,
    			node: node,
    			pod:  pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/amd64/versions_test.go

    	dst.Chmod(0500) // make executable
    
    	// Clobber all the non-v1 opcodes.
    	opcodes := map[string]bool{}
    	var features []string
    	for feature, opcodeList := range featureToOpcodes {
    		if runtimeFeatures[feature] {
    			features = append(features, fmt.Sprintf("cpu.%s=off", feature))
    		}
    		for _, op := range opcodeList {
    			opcodes[op] = true
    		}
    	}
    	clobber(t, os.Args[0], dst, opcodes)
    	if err = dst.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    	} else if args.Shape != nil {
    		// When the feature is off, return an error if the config is not nil.
    		// This prevents unexpected configuration from taking effect when the
    		// feature turns on in the future.
    		allErrs = append(allErrs, field.Invalid(path.Child("shape"), args.Shape, "unexpected field `shape`, remove it or turn on the feature gate VolumeCapacityPriority"))
    	}
    	return allErrs.ToAggregate()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	// a persistent volume defined by a pod's inline VolumeSource. This field
    	// is populated only for the CSIMigration feature. It contains
    	// translated fields from a pod's inline VolumeSource to a
    	// PersistentVolumeSpec. This field is beta-level and is only
    	// honored by servers that enabled the CSIMigration feature.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    Support for other toolchains criteria will be added in a future release.
    
    On the next execution of Gradle, the launcher will use this file to locate a compatible JVM installation and start the daemon with it.
    
    === Daemon JVM discovery
    
    To locate a compatible JVM installation, Gradle re-uses the mechanism provided by the <<toolchains.adoc#toolchains,Java Toolchains>> feature.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// a persistent volume defined by a pod's inline VolumeSource. This field
    	// is populated only for the CSIMigration feature. It contains
    	// translated fields from a pod's inline VolumeSource to a
    	// PersistentVolumeSpec. This field is beta-level and is only
    	// honored by servers that enabled the CSIMigration feature.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    		"If true, Istio will enable the Dual Stack feature.").Get()
    
    	EnableOptimizedServicePush = env.RegisterBoolVar("ISTIO_ENABLE_OPTIMIZED_SERVICE_PUSH", true,
    		"If enabled, Istiod will not push changes on arbitrary annotation change.").Get()
    
    	// This is used in injection templates, it is not unused.
    	EnableNativeSidecars = env.Register("ENABLE_NATIVE_SIDECARS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pkg/apis/resource/types.go

    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    type ResourceClaim struct {
    	metav1.TypeMeta
    	// Standard object metadata
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec describes the desired attributes of a resource that then needs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.proto

      // a persistent volume defined by a pod's inline VolumeSource. This field
      // is populated only for the CSIMigration feature. It contains
      // translated fields from a pod's inline VolumeSource to a
      // PersistentVolumeSpec. This field is beta-level and is only
      // honored by servers that enabled the CSIMigration feature.
      // +optional
      optional .k8s.io.api.core.v1.PersistentVolumeSpec inlineVolumeSpec = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top