Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for Continuation (0.18 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c1), 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return 0, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = bidiIndex[o]
    		c2 := s[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/test2json.go

    				l.line(l.b[i:e])
    			}
    			i = e
    		}
    
    		// Whatever's left in l.b is a line fragment.
    		if i == 0 && len(l.b) == cap(l.b) {
    			// The whole buffer is a fragment.
    			// Emit it as the beginning (or continuation) of a partial line.
    			t := trimUTF8(l.b)
    			l.part(l.b[:t])
    			l.b = l.b[:copy(l.b, l.b[t:])]
    			l.mid = true
    		}
    
    		// There's room for more input.
    		// Slide it down in hope of completing the line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  3. doc/next/9-todo.md

    CL 570681 ("os: make FindProcess use pidfd on Linux") mentions accepted proposal go.dev/issue/51246 (described as fully implemented in Go 1.22) and NeedsInvestigation continuation issue go.dev/issue/62654.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_arm64.s

    	RESTORE_F8_TO_F15(8*14)
    	MOVD	R7, LR
    	RET
    
    // Trampoline to resume execution from exception handler.
    // This is part of the control flow guard workaround.
    // It switches stacks and jumps to the continuation address.
    // R0 and R1 are set above at the end of sigtrampgo
    // in the context that starts executing at sigresume.
    TEXT runtime·sigresume(SB),NOSPLIT|NOFRAME,$0
    	// Important: do not smash LR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. src/runtime/sys_windows_386.s

    	BYTE $0xC2; WORD $4
    	RET // unreached; make assembler happy
    
    // Trampoline to resume execution from exception handler.
    // This is part of the control flow guard workaround.
    // It switches stacks and jumps to the continuation address.
    // DX and CX are set above at the end of sigtrampgo
    // in the context that starts executing at sigresume.
    TEXT runtime·sigresume(SB),NOSPLIT,$0
    	MOVL	DX, SP
    	JMP	CX
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c1), 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return 0, 0
    		}
    		i := caseIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = caseIndex[o]
    		c2 := s[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/errors.go

    // The position of the first call to addf determines the position of the reported Error.
    // Subsequent calls to addf provide additional information in the form of additional lines
    // in the error message (types2) or continuation errors identified by a tab-indented error
    // message (go/types).
    func (err *error_) addf(at poser, format string, args ...interface{}) {
    	err.desc = append(err.desc, errorDesc{atPos(at), err.check.sprintf(format, args...)})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_arm.s

    	B	(R14)				// return
    
    // Trampoline to resume execution from exception handler.
    // This is part of the control flow guard workaround.
    // It switches stacks and jumps to the continuation address.
    // R0 and R1 are set above at the end of sigtrampgo
    // in the context that starts executing at sigresume.
    TEXT runtime·sigresume(SB),NOSPLIT|NOFRAME,$0
    	// Important: do not smash LR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go

    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c1), 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return 0, 0
    		}
    		i := bidiIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = bidiIndex[o]
    		c2 := s[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 118.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/tables11.0.0.go

    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c1), 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return 0, 0
    		}
    		i := caseIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = caseIndex[o]
    		c2 := s[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 97.5K bytes
    - Viewed (0)
Back to top