Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Continuation (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/integration/pilot/ingress_test.go

    					},
    					path:       "/test",
    					prefixPath: "/prefix/test",
    				},
    				{
    					// Prefix /prefix/test should NOT match /prefix/testrandom
    					name: "http-prefix-should-not-match-path-continuation",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/prefix/testrandom/",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                        Hexdump.hexdump( log, BUF, 4, n );
                    }
                }
                /* For some reason this can sometimes get broken up into another
                 * "NBSS Continuation Message" frame according to WireShark
                 */
                out.write( BUF, 0, 4 + n );
            }
        }
        protected void doSend0( Request request ) throws IOException {
            try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/repo.go

    //
    // On top of all this, it is possible for a single code repository
    // to contain multiple modules, either in branches or subdirectories,
    // as a limited kind of monorepo. For example rsc.io/qr/v2,
    // the v2.x.x continuation of rsc.io/qr, is expected to be found
    // in v2-tagged commits in https://github.com/rsc/qr, either
    // in the root or in a v2 subdirectory, disambiguated by go.mod.
    // Again the precise file tree corresponding to a module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. src/unicode/utf8/utf8.go

    	t5 = 0b11111000
    
    	maskx = 0b00111111
    	mask2 = 0b00011111
    	mask3 = 0b00001111
    	mask4 = 0b00000111
    
    	rune1Max = 1<<7 - 1
    	rune2Max = 1<<11 - 1
    	rune3Max = 1<<16 - 1
    
    	// The default lowest and highest continuation byte.
    	locb = 0b10000000
    	hicb = 0b10111111
    
    	// These names of these constants are chosen to give nice alignment in the
    	// table below. The first nibble is an index into acceptRanges or F for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			assertOnError: assertNilError,
    		},
    	})
    
    	group(t, "text string", []test{
    		{
    			name: "reject text string containing invalid utf-8 sequence",
    			in:   hex("6180"), // text string beginning with continuation byte 0x80
    			assertOnError: assertOnConcreteError(func(t *testing.T, e *cbor.SemanticError) {
    				const expected = "cbor: invalid UTF-8 string"
    				if msg := e.Error(); msg != expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top