Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for Strict (0.56 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				invalid("spec", "validation", "openAPIV3Schema", "properties[d]", "default", "bad"),
    				// we also expected unpruned and valid defaults under x-kubernetes-preserve-unknown-fields. We could be more
    				// strict here, but want to encourage proper specifications by forbidding other defaults.
    				invalid("spec", "validation", "openAPIV3Schema", "properties[e]", "properties[preserveUnknownFields]", "default"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    - Adds the ability to pass --strict-transport-security-directives to the kube-apiserver to set the HSTS header appropriately.  Be sure you understand the consequences to browsers before setting this field. ([#96502](https://github.com/kubernetes/kubernetes/pull/96502), [@249043822]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.25.md

    - Fixed scheduling of **CronJob** with `@every X` schedules. ([#109250](https://github.com/kubernetes/kubernetes/pull/109250), [@d-honeybadger](https://github.com/d-honeybadger))
    - Fixed strict server-side field validation treating `metadata` fields as unknown fields. ([#109268](https://github.com/kubernetes/kubernetes/pull/109268), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	SizeofNdMsg        = 0xc
    )
    
    type NlMsghdr struct {
    	Len   uint32
    	Type  uint16
    	Flags uint16
    	Seq   uint32
    	Pid   uint32
    }
    
    type NlMsgerr struct {
    	Error int32
    	Msg   NlMsghdr
    }
    
    type RtGenmsg struct {
    	Family uint8
    }
    
    type NlAttr struct {
    	Len  uint16
    	Type uint16
    }
    
    type RtAttr struct {
    	Len  uint16
    	Type uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg go/build/constraint, type OrExpr struct
    pkg go/build/constraint, type OrExpr struct, X Expr
    pkg go/build/constraint, type OrExpr struct, Y Expr
    pkg go/build/constraint, type SyntaxError struct
    pkg go/build/constraint, type SyntaxError struct, Err string
    pkg go/build/constraint, type SyntaxError struct, Offset int
    pkg go/build/constraint, type TagExpr struct
    pkg go/build/constraint, type TagExpr struct, Tag string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-57922`](https://youtrack.jetbrains.com/issue/KT-57922) kotlinx-metadata-jvm does not take into account strict semantics flag
    - [`KT-63447`](https://youtrack.jetbrains.com/issue/KT-63447) K2: stdlib buildscript error: file included in two modules
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    	T2 struct{ f [10]T2 }      // T2 contains T2 as component of an array
    	T3 struct{ T4 }            // T3 contains T3 as component of an array in struct T4
    	T4 struct{ f [10]T3 }      // T4 contains T4 as component of struct T3 in an array
    )
    
    // valid struct types
    type (
    	T5 struct{ f *T5 }         // T5 contains T5 as component of a pointer
    	T6 struct{ f func() T6 }   // T6 contains T6 as component of a function type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Add ServedVersions field to StorageVersion API ([#118386](https://github.com/kubernetes/kubernetes/pull/118386), [@Richabanker](https://github.com/Richabanker)) [SIG API Machinery and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	if !ok {
    		s.Fatalf("unhandled binary op %v %s", op, etype)
    	}
    	return x
    }
    
    type opAndTwoTypes struct {
    	op     ir.Op
    	etype1 types.Kind
    	etype2 types.Kind
    }
    
    type twoTypes struct {
    	etype1 types.Kind
    	etype2 types.Kind
    }
    
    type twoOpsAndType struct {
    	op1              ssa.Op
    	op2              ssa.Op
    	intermediateType types.Kind
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top