Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for Continuation (0.31 sec)

  1. src/cmd/vendor/rsc.io/markdown/list.go

    		list = c
    	}
    	if list == nil || list.bullet != rune(bullet) {
    		// “When the first list item in a list interrupts a paragraph—that is,
    		// when it starts on a line that would otherwise count as
    		// paragraph continuation text—then (a) the lines Ls must
    		// not begin with a blank line,
    		// and (b) if the list item is ordered, the start number must be 1.”
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/tables15.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
    - 106.5K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_amd64.s

    	ADJSP	$-16
    
    	POP_REGS_HOST_TO_ABI0()
    	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.
    // R8 and R9 are set above at the end of sigtrampgo
    // in the context that starts executing at sigresume.
    TEXT runtime·sigresume(SB),NOSPLIT|NOFRAME,$0
    	MOVQ	R8, SP
    	JMP	R9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. JavadocStyleGuide.md

     * @param name the location of the image, relative to the url argument
     * @return the image at the specified URL
     * @see Image
     */
    ```
    
    When a block tag doesn't fit on a single line, continuation lines are indented four (or more) spaces from the position of the `@`:
    
    ```java
    /**
     * @param url an absolute URL giving the base location of the image, and 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    				Resource: "events",
    			},
    			countErr:             ObjectCountNotFoundErr,
    			maxSeats:             10,
    			initialSeatsExpected: 1,
    		},
    		{
    			name:       "request verb is list, continuation is set",
    			requestURI: "http://server/apis/foo.bar/v1/events?continue=token&limit=399",
    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "list",
    				APIGroup: "foo.bar",
    				Resource: "events",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/compress/bzip2/bzip2.go

    			if err != nil {
    				if err == io.EOF {
    					err = io.ErrUnexpectedEOF
    				}
    				br.err = err
    				return 0, err
    			}
    			if b != 'B' || z != 'Z' {
    				return 0, StructuralError("bad magic value in continuation file")
    			}
    			if err := bz2.setup(false); err != nil {
    				return 0, err
    			}
    		}
    	}
    }
    
    // readBlock reads a bzip2 block. The magic number should already have been consumed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    func (s *store) resolveGetListRev(continueKey string, continueRV int64, opts storage.ListOptions) (int64, error) {
    	var withRev int64
    	// Uses continueRV if this is a continuation request.
    	if len(continueKey) > 0 {
    		if len(opts.ResourceVersion) > 0 && opts.ResourceVersion != "0" {
    			return withRev, apierrors.NewBadRequest("specifying resource version is not allowed when using continue")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/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 := nfcIndex[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 = nfcIndex[o]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.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 := nfcIndex[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 = nfcIndex[o]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
  10. src/mime/multipart/formdata_test.go

    	for _, test := range []struct {
    		name   string
    		prefix string
    	}{{
    		name:   "name",
    		prefix: "X-",
    	}, {
    		name:   "value",
    		prefix: "X-Header: ",
    	}, {
    		name:   "continuation",
    		prefix: "X-Header: foo\r\n  ",
    	}} {
    		t.Run(test.name, func(t *testing.T) {
    			const eol = "\r\n"
    			s := `--boundary` + eol
    			s += `Content-Disposition: form-data; name="a"` + eol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top