Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 411 for nsub (0.02 sec)

  1. docs/en/docs/async.md

    1. ### 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)
  2. android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

    1. assertThrows(IndexOutOfBoundsException.class, () -> iia.get(-1));
    2. assertThrows(IndexOutOfBoundsException.class, () -> iia.get(3));
    3.  
    4. ImmutableDoubleArray sub = iia.subArray(1, 2);
    5. assertThrows(IndexOutOfBoundsException.class, () -> sub.get(-1));
    6. }
    7.  
    8. public void testIndexOf() {
    9. ImmutableDoubleArray iia = ImmutableDoubleArray.of(1, 1, 2, 3, 5, 8);
    10. 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)
  3. cmd/metrics-v3-cache.go

    1. ioStats: map[string]driveIOStatMetrics{},
    2. }
    3.  
    4. currentStats := getCurrentDriveIOStats()
    5. now := time.Now().UTC()
    6.  
    7. prevDriveIOStatsMu.Lock()
    8. if prevDriveIOStats != nil {
    9. duration := now.Sub(prevDriveIOStatsRefreshedAt)
    10. if duration.Seconds() > 1 {
    11. for d, cs := range currentStats {
    12. if ps, found := prevDriveIOStats[d]; found {
    13. 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)
  4. docs/distributed/CONFIG.md

    1. > 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>`.
    2.  
    3. ### TODO
    4.  
    5. In subsequent releases we are planning to extend this to provide things like
    6.  
    7. - 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)
  5. architecture/networking/controllers.md

    1. *All Istio Kubernetes usage should use this library and not operate on Kubernetes clients directly.*
    2.  
    3. **`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`.
    4. Typically, the whole `kclient.Client` is used,though.
    5.  
    6. Functionality offered by `kclient` includes:
    7. * 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)
  6. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

    1. // a*b.example.com, a.*.example.com are not permitted.
    2. // 2. Asterisk (*) cannot match across domain name labels.
    3. // For example, *.example.com matches test.example.com but does not match
    4. // sub.test.example.com.
    5. // 3. Wildcard patterns for single-label domain names are not permitted.
    6.  
    7. 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)
  7. internal/config/identity/plugin/config.go

    1. var avg float64
    2. if l.successRequestCount > 0 {
    3. avg = l.rttMsSum / float64(l.successRequestCount)
    4. }
    5. now := time.Now().UTC()
    6. return Metrics{
    7. LastReachableSecs: now.Sub(o.serviceMetrics.LastCheckSuccess).Seconds(),
    8. LastUnreachableSecs: now.Sub(o.serviceMetrics.LastCheckFailure).Seconds(),
    9. TotalRequests: l.failedRequestCount + l.successRequestCount,
    10. FailedRequests: l.failedRequestCount,
    11. 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)
  8. tensorflow/api_template.__init__.py

    1. TensorFlow via the command `import tensorflow as tf`.
    2.  
    3. The primary function of this module is to import all of the public TensorFlow
    4. interfaces into a single place. The interfaces themselves are located in
    5. sub-modules, as described below.
    6.  
    7. Note that the file `__init__.py` in the TensorFlow source code tree is actually
    8. 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)
  9. 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)
  10. cmd/sts-handlers.go

    1. if v, ok := claims[subClaim]; ok {
    2. subFromToken, _ = v.(string)
    3. }
    4.  
    5. if subFromToken == "" {
    6. writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue,
    7. errors.New("STS JWT Token has `sub` claim missing, `sub` claim is mandatory"))
    8. return
    9. }
    10.  
    11. var issFromToken string
    12. if v, ok := claims[issClaim]; ok {
    13. issFromToken, _ = v.(string)
    14. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 01:29:20 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top