Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,194 for _default_ (0.18 sec)

  1. pkg/apis/flowcontrol/v1/defaults.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	v1 "k8s.io/api/flowcontrol/v1"
    	"k8s.io/utils/ptr"
    )
    
    // Default settings for flow-schema
    const (
    	FlowSchemaDefaultMatchingPrecedence int32 = 1000
    )
    
    // Default settings for priority-level-configuration
    const (
    	PriorityLevelConfigurationDefaultHandSize                 int32 = 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults.go

    	}
    	if obj.ImageMinimumGCAge == zeroDuration {
    		obj.ImageMinimumGCAge = metav1.Duration{Duration: 2 * time.Minute}
    	}
    	if obj.ImageGCHighThresholdPercent == nil {
    		// default is below docker's default dm.min_free_space of 90%
    		obj.ImageGCHighThresholdPercent = utilpointer.Int32(85)
    	}
    	if obj.ImageGCLowThresholdPercent == nil {
    		obj.ImageGCLowThresholdPercent = utilpointer.Int32(80)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. manifests/charts/base/templates/default.yaml

    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/default.yaml

    {{- if .Values.global.configCluster }}
    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults.go

    				obj.Default[key] = value.DeepCopy()
    			}
    		}
    		// If a default limit is specified, but the default request is not, default request to limit
    		for key, value := range obj.Default {
    			if _, exists := obj.DefaultRequest[key]; !exists {
    				obj.DefaultRequest[key] = value.DeepCopy()
    			}
    		}
    		// If a default request is not specified, but the min is provided, default request to the min
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    						Queues:           128,
    						HandSize:         6,
    						QueueLengthLimit: 50,
    					},
    				},
    			},
    		})
    	// global-default priority-level
    	SuggestedPriorityLevelConfigurationGlobalDefault = newPriorityLevelConfiguration(
    		"global-default",
    		flowcontrol.PriorityLevelConfigurationSpec{
    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    `libDirName` — `String`::
    The name of the lib directory inside the generated EAR. _Default value: `lib`_.
    
    `deploymentDescriptor` — link:{javadocPath}/org/gradle/plugins/ear/descriptor/DeploymentDescriptor.html[DeploymentDescriptor]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/v1alpha1/defaults.go

    		obj.ClientConnection.Burst = 10
    	}
    	if obj.FeatureGates == nil {
    		obj.FeatureGates = make(map[string]bool)
    	}
    	// Use the Default LoggingConfiguration option
    	logsapi.SetRecommendedLoggingConfiguration(&obj.Logging)
    }
    
    // getDefaultAddresses returns default address of healthz and metrics server
    // based on the given bind address. IPv6 addresses are enclosed in square
    // brackets for appending port.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/crypto/tls/defaults.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package tls
    
    import (
    	"internal/godebug"
    	"slices"
    	_ "unsafe" // for linkname
    )
    
    // Defaults are collected in this file to allow distributions to more easily patch
    // them to apply local policies.
    
    var tlskyber = godebug.New("tlskyber")
    
    func defaultCurvePreferences() []CurveID {
    	if tlskyber.Value() == "0" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/apis/batch/v1/defaults.go

    Dejan Zele Pejchev <******@****.***> 1697057500 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 20:51:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top