- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for naive (0.04 sec)
-
cmd/object-api-utils_test.go
} func concatNaive(ss ...string) string { rs := ss[0] for i := 1; i < len(ss); i++ { rs += ss[i] } return rs } func benchmark(b *testing.B, data []string) { b.Run("concat naive", func(b *testing.B) { b.ResetTimer() b.ReportAllocs() for i := 0; i < b.N; i++ { concatNaive(data...) } }) b.Run("concat fast", func(b *testing.B) { b.ResetTimer() b.ReportAllocs()
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0) -
docs/orchestration/README.md
## Why is MinIO cloud-native?
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 2.2K bytes - Viewed (0) -
docs/orchestration/kubernetes/README.md
MinIO is a high performance distributed object storage server, designed for large-scale private cloud infrastructure. MinIO is designed in a cloud-native manner to scale sustainably in multi-tenant environments. Orchestration platforms like Kubernetes provide perfect cloud-native environment to deploy and scale MinIO. ## MinIO Deployment on Kubernetes There are multiple options to deploy MinIO on Kubernetes:
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 1.6K bytes - Viewed (0) -
tests/test_ws_router.py
assert data == "Hello, router with prefix!" def test_native_prefix_router(): client = TestClient(app) with client.websocket_connect("/native/") as websocket: data = websocket.receive_text() assert data == "Hello, router with native prefix!" def test_router2(): client = TestClient(app) with client.websocket_connect("/router2") as websocket:
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Jun 11 19:08:14 UTC 2023 - 7.5K bytes - Viewed (0) -
src/packaging/deb/lintian/fess
# Ignore arch dependent warnings, we chose the right libs on start fess binary: arch-dependent-file-in-usr-share # Please check our changelog at https://github.com/codelibs/fess
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 439 bytes - Viewed (0) -
dbflute_fess/dfprop/littleAdjustmentMap.dfprop
# o isAvailableDatabaseNativeJDBC: (NotRequired - Default false) # [true] # Use classes of database native JDBC on generated classes to get best performances of DB access. # Your project needs to refer to database native JDBC. # #; isAvailableDatabaseNativeJDBC = false # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8.8K bytes - Viewed (0) -
docs/bigdata/README.md
# **Disaggregated HDP Spark and Hive with MinIO** ## **1. Cloud-native Architecture** ![cloud-native](https://github.com/minio/minio/blob/master/docs/bigdata/images/image1.png?raw=true "cloud native architecture") Kubernetes manages stateless Spark and Hive containers elastically on the compute nodes. Spark has native scheduler integration with Kubernetes. Hive, for legacy reasons, uses YARN scheduler on top of Kubernetes.
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 14.7K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
#} } # - - - - - - - - - -/ } # ----------------/ # # Default mapping as follows: # -------------------------------------------------------- # | JDBC Type | Java Native | CSharp Native | # | ------------------------------------------------------ # | CHAR | java.lang.String | String | # | VARCHAR | java.lang.String | String |
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0) -
docs/en/docs/advanced/websockets.md
And to communicate using WebSockets with your backend you would probably use your frontend's utilities. Or you might have a native mobile application that communicates with your WebSocket backend directly, in native code. Or you might have any other way to communicate with the WebSocket endpoint. ---
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.3K bytes - Viewed (0) -
cmd/bucket-listobjects-handlers.go
return checkRequestAuthType(ctx, r, action, bucket, name) } } urlValues := r.Form // Extract all the listBucketVersions query params to their native values. prefix, marker, delimiter, maxkeys, encodingType, versionIDMarker, errCode := getListBucketObjectVersionsArgs(urlValues) if errCode != ErrNone { writeErrorResponse(ctx, w, errorCodes.ToAPIErr(errCode), r.URL)
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Jun 11 03:13:30 UTC 2024 - 11.4K bytes - Viewed (0)