Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for relPath (0.23 sec)

  1. docs/en/docs/async.md

    ### Concurrency and Burgers
    
    This idea of **asynchronous** code described above is also sometimes called **"concurrency"**. It is different from **"parallelism"**.
    
    **Concurrency** and **parallelism** both relate to "different things happening more or less at the same time".
    
    But the details between *concurrency* and *parallelism* are quite different.
    
    To see the difference, imagine the following story about burgers:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/net/url/url.go

    		}
    	}
    	if ref.Path == "" && u.Opaque != "" {
    		url.Opaque = u.Opaque
    		url.User = nil
    		url.Host = ""
    		url.Path = ""
    		return &url
    	}
    	// The "abs_path" or "rel_path" cases.
    	url.Host = u.Host
    	url.User = u.User
    	url.setPath(resolvePath(u.EscapedPath(), ref.EscapedPath()))
    	return &url
    }
    
    // Query parses RawQuery and returns the corresponding values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	secretboxTransformerPrefixV1 = "k8s:enc:secretbox:v1:"
    	kmsTransformerPrefixV1       = "k8s:enc:kms:v1:"
    	kmsTransformerPrefixV2       = "k8s:enc:kms:v2:"
    
    	// these constants relate to how the KMS v2 plugin status poll logic
    	// and the DEK/seed generation logic behave.  In particular, the positive
    	// interval and max TTL are closely related as the difference between
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. src/internal/poll/fd_windows.go

    		}
    
    		// Sometimes we see WSAECONNRESET and ERROR_NETNAME_DELETED is
    		// returned here. These happen if connection reset is received
    		// before AcceptEx could complete. These errors relate to new
    		// connection, not to AcceptEx, so ignore broken connection and
    		// try AcceptEx again for more connections.
    		errno, ok := err.(syscall.Errno)
    		if !ok {
    			return syscall.InvalidHandle, nil, 0, errcall, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

    LOG_LEVEL=${LOG_LEVEL:-3}
    # Use to increase verbosity on particular files, e.g. LOG_SPEC=token_controller*=5,other_controller*=4
    LOG_SPEC=${LOG_SPEC:-""}
    LOG_DIR=${LOG_DIR:-"/tmp"}
    TMP_DIR=${TMP_DIR:-$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")}
    CONTAINER_RUNTIME_ENDPOINT=${CONTAINER_RUNTIME_ENDPOINT:-"unix:///run/containerd/containerd.sock"}
    RUNTIME_REQUEST_TIMEOUT=${RUNTIME_REQUEST_TIMEOUT:-"2m"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc.go

    	// close to the L1 cache line width on many systems. Also, a value of 3 fits 4 tree
    	// levels perfectly into the 21-bit pallocBits summary field at the root level.
    	//
    	// The following equation explains how each of the constants relate:
    	// summaryL0Bits + (summaryLevels-1)*summaryLevelBits + logPallocChunkBytes = heapAddrBits
    	//
    	// summaryLevels is an architecture-dependent value defined in mpagealloc_*.go.
    	summaryLevelBits = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // FieldManager is required for apply requests.
    // ApplyOptions is equivalent to PatchOptions. It is provided as a convenience with documentation
    // that speaks specifically to how the options fields relate to apply.
    message ApplyOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
      // result in an error response and no further processing of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // FieldManager is required for apply requests.
    // ApplyOptions is equivalent to PatchOptions. It is provided as a convenience with documentation
    // that speaks specifically to how the options fields relate to apply.
    message ApplyOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
      // result in an error response and no further processing of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	c := ts.Client()
    
    	cases := []struct {
    		reqPath string
    		path    string // If empty we want a 404.
    		rawPath string
    	}{
    		{"/foo/bar/qux", "/qux", ""},
    		{"/foo/bar%2Fqux", "/qux", "%2Fqux"},
    		{"/foo%2Fbar/qux", "", ""}, // Escaped prefix does not match.
    		{"/bar", "", ""},           // No prefix match.
    	}
    	for _, tc := range cases {
    		t.Run(tc.reqPath, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // FieldManager is required for apply requests.
    // ApplyOptions is equivalent to PatchOptions. It is provided as a convenience with documentation
    // that speaks specifically to how the options fields relate to apply.
    type ApplyOptions struct {
    	TypeMeta `json:",inline"`
    
    	// When present, indicates that modifications should not be
    	// persisted. An invalid or unrecognized dryRun directive will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
Back to top