Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 179 for _default_ (0.32 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
        }
    
        def "uses dependency management section from imported POM in active profile to define defaults for main POM body dependency"() {
            given:
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. istioctl/pkg/writer/compare/testdata/configdump.json

                "name": "inbound-vip|9080|http|ratings.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
                  "eds_config": {
                    "ads": {},
                    "initial_fetch_timeout": "0s",
                    "resource_api_version": "V3"
                  },
                  "service_name": "inbound-vip|9080|http|ratings.default.svc.cluster.local"
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top