Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for default1 (0.25 sec)

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

    		obj.ReinvocationPolicy = &never
    	}
    }
    
    // SetDefaults_Rule sets defaults for webhook rule
    func SetDefaults_Rule(obj *admissionregistrationv1.Rule) {
    	if obj.Scope == nil {
    		s := admissionregistrationv1.AllScopes
    		obj.Scope = &s
    	}
    }
    
    // SetDefaults_ServiceReference sets defaults for Webhook's ServiceReference
    func SetDefaults_ServiceReference(obj *admissionregistrationv1.ServiceReference) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3.5K 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. pkg/volume/flexvolume/expander-defaults.go

    	klog.Warning(logPrefix(e.plugin), "using default expand for volume ", spec.Name(), ", to size ", newSize, " from ", oldSize)
    	return newSize, nil
    }
    
    // the defaults for NodeExpand return a generic resize indicator that will trigger the operation executor to go ahead with
    // generic filesystem resize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2K bytes
    - Viewed (0)
  4. pkg/apis/extensions/v1beta1/defaults.go

    		}
    		if updateStrategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 1 by default.
    			maxUnavailable := intstr.FromInt32(1)
    			updateStrategy.RollingUpdate.MaxUnavailable = &maxUnavailable
    		}
    		if updateStrategy.RollingUpdate.MaxSurge == nil {
    			// Set default MaxSurge as 0 by default.
    			maxSurge := intstr.FromInt32(0)
    			updateStrategy.RollingUpdate.MaxSurge = &maxSurge
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/default.go

    package cache
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"sync"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"internal/goexperiment"
    )
    
    // Default returns the default cache to use.
    // It never returns nil.
    func Default() Cache {
    	defaultOnce.Do(initDefaultCache)
    	return defaultCache
    }
    
    var (
    	defaultOnce  sync.Once
    	defaultCache Cache
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/default-match-http.yaml

    # specified, CRD defaults adds a default PathPrefix match on the path "/". This
    # matches every HTTP request and ensures that route rules always have at
    # least one valid match.
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: default-match-route
      labels:
        app: default-match
    spec:
      parentRefs:
      - name: default-match-gw
      hostnames:
      - default-match.com
      rules:
      - matches:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/apis/flowcontrol/v1beta1/defaults.go

    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	"k8s.io/api/flowcontrol/v1beta1"
    )
    
    // 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: Fri Jul 14 00:47:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. 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)
Back to top