Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Continuation (0.24 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  </p>
     *  <p><code>WriteContext.write(object)</code> then delegates to {@link org.gradle.internal.serialize.graph.Codec#encode(WriteContext, java.lang.Object, kotlin.coroutines.Continuation) Codec.encode(WriteContext, Object)}.</p>
     *  <p>A codec implementation will, generally:
     *  <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		// ResourceVersion should be unset when setting continuation token.
    		ResourceVersion: "",
    		Predicate:       pred(0, continueFromSecondItem),
    		Recursive:       true,
    	}
    	if err := store.GetList(ctx, "/pods", options, out); err != nil {
    		t.Fatalf("Unable to get second page: %v", err)
    	}
    	if len(out.Continue) != 0 {
    		t.Fatalf("Unexpected continuation token set")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K 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/net/http/h2_bundle.go

    	// TODO: track which type of frame & with which flags was sent
    	// last. Then return an error (unless AllowIllegalWrites) if
    	// we're in the middle of a header block and a
    	// non-Continuation or Continuation on a different stream is
    	// attempted to be written.
    
    	logReads, logWrites bool
    
    	debugFramer       *http2Framer // only use for logging written writes
    	debugFramerBuf    *bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. 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)
  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. cmd/api-errors.go

    		Description:    "Remote backend is unreachable",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncorrectContinuationToken: {
    		Code:           "InvalidArgument",
    		Description:    "The continuation token provided is incorrect",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	// S3 Select API Errors
    	ErrEmptyRequestBody: {
    		Code:           "EmptyRequestBody",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    					flag = append(flag, '\\', c)
    					escaped = false
    					continue
    				}
    			}
    
    			if c == '\n' {
    				// “If a <newline> follows the <backslash>, the shell shall interpret
    				// this as line continuation.”
    			} else {
    				flag = append(flag, c)
    			}
    			escaped = false
    			continue
    		}
    
    		if quote != 0 && c == quote {
    			quote = 0
    			continue
    		}
    		switch quote {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    * ✨ Support `dataclasses` in responses. PR [#3576](https://github.com/tiangolo/fastapi/pull/3576) by [@tiangolo](https://github.com/tiangolo), continuation from initial PR [#2722](https://github.com/tiangolo/fastapi/pull/2722) by [@amitlissack](https://github.com/amitlissack).
    
    ### Docs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Serve consistent reads from storage if ConsistentListFromCache is disabled
    	consistentReadFromStorage := resourceVersion == "" && !(consistentListFromCacheEnabled && requestWatchProgressSupported)
    	// Watch cache doesn't support continuations, so serve them from etcd.
    	hasContinuation := len(pred.Continue) > 0
    	// Serve paginated requests about revision "0" from watch cache to avoid overwhelming etcd.
    	hasLimit := pred.Limit > 0 && resourceVersion != "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top