Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Strict (0.14 sec)

  1. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    `)}toString(){let e=this.showSourceCode();return e&&(e=`
    
    `+e+`
    `),this.name+": "+this.message+e}};af.exports=_t;_t.default=_t});var Si=v((UE,bs)=>{l();"use strict";bs.exports.isClean=Symbol("isClean");bs.exports.my=Symbol("my")});var vs=v((WE,lf)=>{l();"use strict";var of={colon:": ",indent:"    ",beforeDecl:`
    `,beforeRule:`
    `,beforeOpen:" ",beforeClose:`
    `,beforeComment:`
    `,after:`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

    field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                  bpfEnforceRPF:
                    description: 'BPFEnforceRPF enforce strict RPF on all host interfaces
                      with BPF programs regardless of what is the per-interfaces or global
                      setting. Possible values are Disabled, Strict or Loose. [Default:
                      Loose]'
                    pattern: ^(?i)(Disabled|Strict|Loose)?$
                    type: string
                  bpfExtToServiceConnmark:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    type PodDNSConfigOption struct {
    	// Required.
    	Name string
    	// +optional
    	Value *string
    }
    
    // PodIP represents a single IP address allocated to the pod.
    type PodIP struct {
    	// IP is the IP address assigned to the pod
    	IP string
    }
    
    // HostIP represents a single IP address allocated to the host.
    type HostIP struct {
    	// IP is the IP address assigned to the host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	IngressPorts         []*structpb.Struct    `protobuf:"bytes,36,rep,name=ingressPorts,proto3" json:"ingressPorts,omitempty"`
    	AdditionalContainers []*structpb.Struct    `protobuf:"bytes,37,rep,name=additionalContainers,proto3" json:"additionalContainers,omitempty"`
    	ConfigVolumes        []*structpb.Struct    `protobuf:"bytes,38,rep,name=configVolumes,proto3" json:"configVolumes,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	SupplementalGroupsPolicyStrict SupplementalGroupsPolicy = "Strict"
    )
    
    // PodSecurityContext holds pod-level security attributes and common container settings.
    // Some fields are also present in container.securityContext.  Field values of
    // container.securityContext take precedence over field values of PodSecurityContext.
    type PodSecurityContext struct {
    	// The SELinux context to be applied to all containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

        * `File()`
    
    * The new parameter fields are:
    
        * `default_factory`
        * `alias_priority`
        * `validation_alias`
        * `serialization_alias`
        * `discriminator`
        * `strict`
        * `multiple_of`
        * `allow_inf_nan`
        * `max_digits`
        * `decimal_places`
        * `json_schema_extra`
    
    ...you can read about them in the Pydantic docs.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"supplementalGroupsPolicy": "Defines how supplemental groups of the first container processes are calculated. Valid values are \"Merge\" and \"Strict\". If not specified, \"Merge\" is used. (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled and the container runtime must implement support for this feature. Note that this field cannot be set when spec.os.name...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated int64 supplementalGroups = 4;
    
      // Defines how supplemental groups of the first container processes are calculated.
      // Valid values are "Merge" and "Strict". If not specified, "Merge" is used.
      // (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled
      // and the container runtime must implement support for this feature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	isHead        bool
    
    	abortOnce sync.Once
    	abort     chan struct{} // closed to signal stream should end immediately
    	abortErr  error         // set if abort is closed
    
    	peerClosed chan struct{} // closed when the peer sends an END_STREAM flag
    	donec      chan struct{} // closed after the stream is in the closed state
    	on100      chan struct{} // buffered; written to if a 100 is received
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top