- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 1,035 for select (0.12 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt
} /** * will also strip BOM from the source */ @Throws(IOException::class) internal fun BufferedSource.readBomAsCharset(default: Charset): Charset { return when (select(UNICODE_BOMS)) { // a mapping from the index of encoding methods in UNICODE_BOMS to its corresponding encoding method 0 -> UTF_8 1 -> UTF_16BE 2 -> UTF_32LE 3 -> UTF_16LE 4 -> UTF_32BE
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon May 13 13:42:37 UTC 2024 - 10.7K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/OkHttpClientTest.kt
} @Test fun sharesRouteDatabase() { val client = OkHttpClient.Builder() .build() val proxySelector: ProxySelector = object : ProxySelector() { override fun select(uri: URI): List<Proxy> = listOf() override fun connectFailed( uri: URI, socketAddress: SocketAddress, e: IOException, ) {} }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 13.2K bytes - Viewed (0) -
istioctl/pkg/version/version.go
istioctl x version --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs # Retrieve version information via XDS from specific control plane in multi-control plane in-cluster configuration # (Select a specific control plane in an in-cluster canary Istio configuration.) istioctl x version --xds-label istio.io/rev=default ` versionCmd.Flags().VisitAll(func(flag *pflag.Flag) { if flag.Name == "short" {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 21:11:35 UTC 2024 - 8.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt
assertThat(routeSelector.hasNext()).isFalse() dns.assertRequests(bogusHostname) proxySelector.assertRequests() // No proxy selector requests! } @Test fun proxySelectorReturnsNull() { val nullProxySelector: ProxySelector = object : ProxySelector() { override fun select(uri: URI): List<Proxy>? { assertThat(uri.host).isEqualTo(uriHost) return null }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Mar 06 17:33:38 UTC 2024 - 20.8K bytes - Viewed (0) -
internal/logger/target/kafka/kafka.go
_, err := h.store.Put(entry) return err } h.logChMu.RLock() defer h.logChMu.RUnlock() if h.logCh == nil { // We are closing... return nil } select { case h.logCh <- entry: case <-ctx.Done(): // return error only for context timedout. if errors.Is(ctx.Err(), context.DeadlineExceeded) { return ctx.Err() } return nil default:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 10.2K bytes - Viewed (0) -
docs/en/docs/how-to/custom-docs-ui-assets.md
│ ├── __init__.py │ ├── main.py └── static/ ``` ### Download the files Download the static files needed for the docs and put them on that `static/` directory. You can probably right-click each link and select an option similar to `Save link as...`. **Swagger UI** uses the files: * <a href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js" class="external-link" target="_blank">`swagger-ui-bundle.js`</a>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 10:42:34 UTC 2024 - 7.3K bytes - Viewed (0) -
ci/official/README.md
# click to "Invocation Details" and find BUILD_CONFIG, which will contain a # "build_file" item that indicates the script used. ci/official/wheel.sh # Advanced: Select specific build/test targets with "any.sh". # TF_ANY_TARGETS=":your/target" TF_ANY_MODE="test" ci/official/any.sh # Afterwards: Examine the results, which will include: The bazel cache,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 8K bytes - Viewed (0) -
doc/go1.17_spec.html
</li> <li> The statement list of the selected case is executed. </li> </ol> <p> Since communication on <code>nil</code> channels can never proceed, a select with only <code>nil</code> channels and no default case blocks forever. </p> <pre> var a []int var c, c1, c2, c3, c4 chan int var i1, i2 int select { case i1 = <-c1: print("received ", i1, " from c1\n")
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
association.go
switch reflectValue.Kind() { case reflect.Slice, reflect.Array: for i := 0; i < reflectValue.Len(); i++ { association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue.Index(i), reflect.Zero(rel.Field.FieldType).Interface()) } case reflect.Struct: association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue, reflect.Zero(rel.Field.FieldType).Interface()) }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 12 10:49:45 UTC 2024 - 21.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/sql-databases.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:25:29 UTC 2024 - 15.8K bytes - Viewed (0)