Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for downstream (0.21 sec)

  1. cmd/api-errors.go

    		return ErrRequestTimedout
    	}
    
    	// Only return ErrClientDisconnected if the provided context is actually canceled.
    	// This way downstream context.Canceled will still report ErrRequestTimedout
    	if contextCanceled(ctx) && errors.Is(ctx.Err(), context.Canceled) {
    		return ErrClientDisconnected
    	}
    
    	// Unwrap the error first
    	err = unwrapAll(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	// call from salvaging an invalid IDN, when possible. As a result it may be
    	// possible to have two IDNs that appear identical to the user where the
    	// ASCII-only version causes an error downstream whereas the non-ASCII
    	// version does not.
    	// Note that for correct ASCII IDNs ToASCII will only do considerably more
    	// work, but it will not cause an allocation.
    	if ascii.Is(v) {
    		return v, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - The kubernetes repo now uses Go workspaces.  This should not impact end users at all, but does have impact for developers of downstream projects.  Switching to workspaces caused some breaking changes in the flags to the various k8s.io/code-generator tools.  Downstream consumers should look at staging/src/k8s.io/code-generator/kube_codegen.sh to see the changes. ([#123529](https://github.com/kubernetes/kubernetes/pull/123529), [@thockin](https:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

      error as the real clients; in particular, a failed Get(), Create(), etc, no longer
      returns `nil`. (It now returns a pointer to a zero-valued object, like the real
      clients do.) This will break some downstream unit tests that were testing
      `result == nil` rather than `err != nil`, and in some cases may expose bugs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    		throw("gc done but gcphase != _GCoff")
    	}
    
    	// Record heapInUse for scavenger.
    	memstats.lastHeapInUse = gcController.heapInUse.load()
    
    	// Update GC trigger and pacing, as well as downstream consumers
    	// of this pacing information, for the next cycle.
    	systemstack(gcControllerCommit)
    
    	// Update timing memstats
    	now := nanotime()
    	sec, nsec, _ := time_now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    					Mode:              networking.ServerTLSSettings_PASSTHROUGH,
    					ServerCertificate: "server-cert.crt",
    					PrivateKey:        "private-key.key",
    				},
    			},
    			result: nil,
    		},
    		{
    			name: "Downstream TLS settings for QUIC transport",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com"},
    				Port: &networking.Port{
    					Protocol: string(protocol.HTTPS),
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// elements of status) and should be consulted by components in preference to assembling
    	// that status themselves. Note that the status manager is downstream of the pod worker
    	// and components that need to check whether a pod is still running should instead directly
    	// consult the pod worker.
    	statusManager status.Manager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        //
        // RefineDynamicShapes returns ok only when it produces full static shapes.
        // It may partially succeed by producing RankedTensor shapes with dynamic
        // dimensions. Such info is still useful for the downstream. We don't need
        // to abort here.
        // TODO(b/316639984): improve RefineDynamicShapes return values to include
        // these info.
        VLOG(1) << "Failed during XlaCallModule shape refinement: " << status;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. CREDITS

    not accept this License.  Therefore, by modifying or propagating a
    covered work, you indicate your acceptance of this License to do so.
    
      10. Automatic Licensing of Downstream Recipients.
    
      Each time you convey a covered work, the recipient automatically
    receives a license from the original licensors, to run, modify and
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

              // Use a different task queue for each stream because they should be handled in parallel.
              taskRunner.newQueue().execute("$connectionName[$streamId] onStream") {
                try {
                  listener.onStream(newStream)
                } catch (e: IOException) {
                  Platform.get().log("Http2Connection.Listener failure for $connectionName", INFO, e)
                  ignoreIoExceptions {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top