- Sort Score
- Result 10 results
- Languages All
Results 1191 - 1200 of 4,225 for None (0.02 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt
internal var pushObserver = PushObserver.CANCEL internal var pingIntervalMillis: Int = 0 internal var flowControlListener: FlowControlListener = FlowControlListener.None @Throws(IOException::class) @JvmOverloads fun socket( socket: Socket, peerName: String = socket.peerName(), source: BufferedSource = socket.source().buffer(),
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 32.6K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
code][https_server_sample]. * **OkHttp now supports prior knowledge cleartext HTTP/2.** Enable this by setting `Protocol.H2_PRIOR_KNOWLEDGE` as the lone protocol on an `OkHttpClient.Builder`. This mode only supports `http:` URLs and is best suited in closed environments where HTTPS is inappropriate.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
istioctl/pkg/proxyconfig/proxyconfig.go
} statsConfigCmd.PersistentFlags().StringVarP(&outputFormat, "output", "o", summaryOutput, "Output format: one of json|yaml|short|prom|prom-merged") statsConfigCmd.PersistentFlags().StringVarP(&statsType, "type", "t", "server", "Where to grab the stats: one of server|clusters") statsConfigCmd.PersistentFlags().StringVarP(&labelSelector, "selector", "l", "", "Label selector")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 15:53:49 UTC 2024 - 50.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
/** * @author higa */ public class BeanUtilTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none(); /** * @throws Exception */ @Test public void testCopy_BeanToBean() throws Exception { final MyClass src = new MyClass(); src.setAaa("111"); src.setCcc("333");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 34.5K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
private fun acceptConnections() { while (true) { val socket: Socket try { socket = serverSocket!!.accept() } catch (e: SocketException) { logger.fine("${this@MockWebServer} done accepting connections: ${e.message}") return } val socketPolicy = dispatcher.peek().socketPolicy if (socketPolicy === DisconnectAtStart) { dispatchBookkeepingRequest(0, socket)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 37.4K bytes - Viewed (0) -
cmd/sts-handlers.go
// Now, we have to check that the client has provided exactly one leaf // certificate that we can map to a policy. if len(r.TLS.PeerCertificates) == 0 { writeSTSErrorResponse(ctx, w, ErrSTSMissingParameter, errors.New("No client certificate provided")) return } if len(r.TLS.PeerCertificates) > 1 { writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue, errors.New("More than one client certificate provided")) return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 01:29:20 UTC 2024 - 33.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
if ("always".equals(styleColor) || "yes".equals(styleColor) || "force".equals(styleColor)) { context.coloredOutput = true; } else if ("never".equals(styleColor) || "no".equals(styleColor) || "none".equals(styleColor)) { context.coloredOutput = false; } else if (!"auto".equals(styleColor) && !"tty".equals(styleColor) && !"if-tty".equals(styleColor)) { throw new IllegalArgumentException(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
if err != nil { return err } configClient := client.Istio() // Get all the labels for all the matching pods. We will used this to complain // if NONE of the pods match a VirtualService podsLabels := make([]klabels.Set, len(matchingPods)) for i, pod := range matchingPods { podsLabels[i] = klabels.Set(pod.ObjectMeta.Labels) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
internal/ringbuffer/ring_buffer_test.go
done := make(chan error) go func() { defer close(done) _, err := rb.Write([]byte("hello")) if err != nil { t.Errorf("got error: %q; expected none", err) } rb.CloseWriter() _, err = rb.Write([]byte("world")) done <- err err = rb.WriteByte(0) done <- err _, err = rb.TryWrite([]byte("world")) done <- err err = rb.TryWriteByte(0) done <- err }()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 15 00:11:04 UTC 2024 - 26.8K bytes - Viewed (0) -
tensorflow/BUILD
# copybara:comment_begin(OSS Windows only: DEF file for exported symbols) win_def_file = select({ "//tensorflow:windows": ":tensorflow_filtered_def_file", "//conditions:default": None, }), # copybara:comment_end deps = [ "//tensorflow/c:c_api", "//tensorflow/c:c_api_experimental", "//tensorflow/c:exported_symbols.lds",
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0)