Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Continuation (0.21 sec)

  1. src/net/textproto/reader.go

    	return line, nil
    }
    
    // ReadContinuedLine reads a possibly continued line from r,
    // eliding the final trailing ASCII white space.
    // Lines after the first are considered continuations if they
    // begin with a space or tab character. In the returned data,
    // continuation lines are separated from the previous line
    // only by a single space: the newline and leading white space
    // are removed.
    //
    // For example, consider this input:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  8. tensorflow/compiler/jit/kernels/xla_ops.cc

          xla_compiler_args, DeviceCompileMode::kStrict,
          /*may_alias_resource_update=*/true, &client, &compilation_result,
          &executable);
      OP_REQUIRES_OK_ASYNC(ctx, status, done);
    
      // Continuation of the execution, may be run in a different thread.
      auto run_xla_cluster = [ctx, client, executable, compilation_result, done,
                              inputs, resources = resources_]() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. src/runtime/trace.go

    				throw("unexpected trace reader")
    			}
    
    			return true
    		}, nil, waitReasonTraceReaderBlocked, traceBlockSystemGoroutine, 2)
    		goto top
    	}
    
    	return buf
    }
    
    // readTrace0 is ReadTrace's continuation on g0. This must run on the
    // system stack because it acquires trace.lock.
    //
    //go:systemstack
    func readTrace0() (buf []byte, park bool) {
    	if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top