- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 411 for nsub (0.02 sec)
-
docs/en/docs/async.md
- ### Sub-dependencies
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Aug 28 23:33:37 UTC 2024 - 23.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
- assertThrows(IndexOutOfBoundsException.class, () -> iia.get(-1));
- assertThrows(IndexOutOfBoundsException.class, () -> iia.get(3));
- ImmutableDoubleArray sub = iia.subArray(1, 2);
- assertThrows(IndexOutOfBoundsException.class, () -> sub.get(-1));
- }
- public void testIndexOf() {
- ImmutableDoubleArray iia = ImmutableDoubleArray.of(1, 1, 2, 3, 5, 8);
- assertThat(iia.indexOf(1)).isEqualTo(0);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 21.2K bytes - Viewed (0) -
cmd/metrics-v3-cache.go
- ioStats: map[string]driveIOStatMetrics{},
- }
- currentStats := getCurrentDriveIOStats()
- now := time.Now().UTC()
- prevDriveIOStatsMu.Lock()
- if prevDriveIOStats != nil {
- duration := now.Sub(prevDriveIOStatsRefreshedAt)
- if duration.Seconds() > 1 {
- for d, cs := range currentStats {
- if ps, found := prevDriveIOStats[d]; found {
- v.ioStats[d] = getDriveIOStatMetrics(getDiffStats(ps, cs), duration)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 09 00:51:34 UTC 2024 - 8.1K bytes - Viewed (0) -
docs/distributed/CONFIG.md
- > NOTE: MinIO environmental variables still take precedence over the `config.yaml` file, however `config.yaml` is preferred over MinIO internal config KV settings via `mc admin config set alias/ <sub-system>`.
- ### TODO
- In subsequent releases we are planning to extend this to provide things like
- - Reload() of MinIO server arguments without fully restarting the process.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 25 02:30:18 UTC 2024 - 4.2K bytes - Viewed (0) -
architecture/networking/controllers.md
- *All Istio Kubernetes usage should use this library and not operate on Kubernetes clients directly.*
- **`kclient.Client`** is a higher level wrapper around a Kubernetes resource, and is built up of sub-parts `kclient.Reader`, `kclient.Writer`, and `kclient.Informer`.
- Typically, the whole `kclient.Client` is used,though.
- Functionality offered by `kclient` includes:
- * Typed clients (via generics) and more ergonomic APIs
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Feb 09 17:41:25 UTC 2024 - 4.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
- // a*b.example.com, a.*.example.com are not permitted.
- // 2. Asterisk (*) cannot match across domain name labels.
- // For example, *.example.com matches test.example.com but does not match
- // sub.test.example.com.
- // 3. Wildcard patterns for single-label domain names are not permitted.
- if (!pattern.startsWith("*.") || pattern.indexOf('*', 1) != -1) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 14:55:09 UTC 2024 - 7.7K bytes - Viewed (0) -
internal/config/identity/plugin/config.go
- var avg float64
- if l.successRequestCount > 0 {
- avg = l.rttMsSum / float64(l.successRequestCount)
- }
- now := time.Now().UTC()
- return Metrics{
- LastReachableSecs: now.Sub(o.serviceMetrics.LastCheckSuccess).Seconds(),
- LastUnreachableSecs: now.Sub(o.serviceMetrics.LastCheckFailure).Seconds(),
- TotalRequests: l.failedRequestCount + l.successRequestCount,
- FailedRequests: l.failedRequestCount,
- AvgSuccRTTMs: avg,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 13.3K bytes - Viewed (0) -
tensorflow/api_template.__init__.py
- TensorFlow via the command `import tensorflow as tf`.
- The primary function of this module is to import all of the public TensorFlow
- interfaces into a single place. The interfaces themselves are located in
- sub-modules, as described below.
- Note that the file `__init__.py` in the TensorFlow source code tree is actually
- only a placeholder to enable test cases to run. The TensorFlow build replaces
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 6.8K bytes - Viewed (0) -
helm-releases/minio-1.0.2.tgz
standard storage class. ## If the PV uses a different storage class, specify that here. storageClass: "" VolumeName: "" accessMode: ReadWriteOnce size: 500Gi ## If subPath is set mount a sub folder of a volume instead of the root of the volume. ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). ## subPath: "" ## Expose the MinIO service to be accessed from outside the cluster (LoadBalancer service). ## or access it from within the cluster (ClusterIP...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 24 18:58:05 UTC 2021 - 13.6K bytes - Viewed (0) -
cmd/sts-handlers.go
- if v, ok := claims[subClaim]; ok {
- subFromToken, _ = v.(string)
- }
- if subFromToken == "" {
- writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue,
- errors.New("STS JWT Token has `sub` claim missing, `sub` claim is mandatory"))
- return
- }
- var issFromToken string
- if v, ok := claims[issClaim]; ok {
- issFromToken, _ = v.(string)
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 01:29:20 UTC 2024 - 33.9K bytes - Viewed (0)