Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for switch3 (0.16 sec)

  1. src/vendor/golang.org/x/net/idna/tables9.0.0.go

    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return idnaValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 263.4K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-62657`](https://youtrack.jetbrains.com/issue/KT-62657) K/Wasm: switch to json repots for Kotlin Wasm Benchmarks
    - [`KT-62147`](https://youtrack.jetbrains.com/issue/KT-62147) [Kotlin/Wasm] Nothing typed when expression cause a backend error
    - [`KT-61958`](https://youtrack.jetbrains.com/issue/KT-61958) Update SpiderMonkey and return its usage in box tests when they switch to the final opcodes for GC and FTR proposals
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/tables12.0.0.go

    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return idnaValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 273.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/tables13.0.0.go

    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return idnaValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 284.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/tables15.0.0.go

    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return idnaValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 297.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

    - Kubernetes is now built with Go 1.19.2 ([#112900](https://github.com/kubernetes/kubernetes/pull/112900), [@xmudrii](https://github.com/xmudrii)) [SIG Release and Testing]
    - Switch kubectl to use `github.com/russross/blackfriday/v2` ([#112731](https://github.com/kubernetes/kubernetes/pull/112731), [@pacoxu](https://github.com/pacoxu)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.23.md

    - Kubeadm: switch the preflight check (called 'Swap') that verifies if swap is enabled on Linux hosts to report a warning instead of an error. This is related to the graduation of the NodeSwap feature gate in the kubelet to Beta and being enabled by default in 1.23...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite386.go

    // Code generated from _gen/386.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "math"
    import "cmd/compile/internal/types"
    
    func rewriteValue386(v *Value) bool {
    	switch v.Op {
    	case Op386ADCL:
    		return rewriteValue386_Op386ADCL(v)
    	case Op386ADDL:
    		return rewriteValue386_Op386ADDL(v)
    	case Op386ADDLcarry:
    		return rewriteValue386_Op386ADDLcarry(v)
    	case Op386ADDLconst:
    		return rewriteValue386_Op386ADDLconst(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.17.md

    ### Instrumentation
    - Bump version of event-exporter to 0.3.1, to switch it to protobuf. ([#83396](https://github.com/kubernetes/kubernetes/pull/83396), [@loburm](https://github.com/loburm))
    - Bumps metrics-server version to v0.3.6 with following bugfix:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

    - Support correct sorting for cpu, memory, storage, ephemeral-storage, hugepages, and attachable-volumes. ([#100435](https://github.com/kubernetes/kubernetes/pull/100435), [@lauchokyip](https://github.com/lauchokyip))
    - Switch scheduler to generate the merge patch on pod status instead of the full pod ([#103133](https://github.com/kubernetes/kubernetes/pull/103133), [@marwanad](https://github.com/marwanad)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top