Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for _default_ (0.19 sec)

  1. pkg/kube/inject/testdata/inputs/default.template.gen.yaml

            service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote }}
          annotations: {
            istio.io/rev: {{ .Revision | default "default" | quote }},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    queue_dir            (path)               staging dir for undelivered messages e.g. '/home/events'
    queue_limit          (number)             maximum limit for undelivered messages, defaults to '100000'
    max_open_connections (number)             maximum number of open connections to the database, defaults to '2'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// Defaults to 0 (pod will be considered available as soon as it is ready)
    	// +optional
    	MinReadySeconds int32 `json:"minReadySeconds,omitempty" protobuf:"varint,5,opt,name=minReadySeconds"`
    
    	// The number of old ReplicaSets to retain to allow rollback.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// Defaults to 10.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				continue
    			}
    
    			if isRequired[k] == false && obj.Default == nil {
    				allErrs = append(allErrs, field.Required(fldPath.Child("items").Child("properties").Key(k).Child("default"), "this property is in x-kubernetes-list-map-keys, so it must have a default or be a required property"))
    			}
    
    			if obj.Nullable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	c := new(CaseClause)
    	c.pos = p.pos()
    
    	switch p.tok {
    	case _Case:
    		p.next()
    		c.Cases = p.exprList()
    
    	case _Default:
    		p.next()
    
    	default:
    		p.syntaxError("expected case or default or }")
    		p.advance(_Colon, _Case, _Default, _Rbrace)
    	}
    
    	c.Colon = p.pos()
    	p.want(_Colon)
    	c.Body = p.stmtList()
    
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	//
    	// When failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions
    	// define how failures are enforced.
    	//
    	// Allowed values are Ignore or Fail. Defaults to Fail.
    	// +optional
    	FailurePolicy *FailurePolicyType `json:"failurePolicy,omitempty" protobuf:"bytes,4,opt,name=failurePolicy,casttype=FailurePolicyType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    	HeaderScheme    = ":scheme"
    )
    
    // DefaultRouteName is the name assigned to a route generated by default in absence of a virtual service.
    const DefaultRouteName = "default"
    
    var Notimeout = durationpb.New(0)
    
    // DefaultMaxDirectResponseBodySizeBytes is 1mb, the same limit the control plane validates via webhook. Set this to increase from envoy default of 4k
    var DefaultMaxDirectResponseBodySizeBytes = wrapperspb.UInt32(1024 * 1024)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default void setSearchLog(final boolean value) {
            setSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, value);
        }
    
        default boolean isSearchLog() {
            return getSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, true);
        }
    
        default void setUserInfo(final boolean value) {
            setSystemPropertyAsBoolean(Constants.USER_INFO_PROPERTY, value);
        }
    
        default boolean isUserInfo() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    const (
    	// NamespaceDefault means the object is in the default namespace which is applied when not specified by clients
    	NamespaceDefault = "default"
    	// NamespaceAll is the default argument to specify on a context when you want to list or filter resources across all namespaces
    	NamespaceAll = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    While the `c` plugin defines these default locations for each link:{groovyDslPath}/org.gradle.language.c.CSourceSet.html[CSourceSet], it is possible to extend or override these defaults to allow for a different project layout.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top