Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,722 for stats (0.25 sec)

  1. guava-tests/test/com/google/common/cache/CacheStatsTest.java

      public void testEmpty() {
        CacheStats stats = new CacheStats(0, 0, 0, 0, 0, 0);
        assertEquals(0, stats.requestCount());
        assertEquals(0, stats.hitCount());
        assertEquals(1.0, stats.hitRate());
        assertEquals(0, stats.missCount());
        assertEquals(0.0, stats.missRate());
        assertEquals(0, stats.loadSuccessCount());
        assertEquals(0, stats.loadExceptionCount());
        assertEquals(0.0, stats.loadExceptionRate());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Sun Jun 30 14:58:49 GMT 2019
    - 4.6K bytes
    - Viewed (0)
  2. cmd/metrics-resource.go

    			}
    			if hm.Mem != nil && len(hm.Mem.Info.Addr) > 0 {
    				labels := map[string]string{}
    				stats := hm.Mem.Info
    				updateResourceMetrics(memSubsystem, total, float64(stats.Total), labels, false)
    				updateResourceMetrics(memSubsystem, memUsed, float64(stats.Used), labels, false)
    				perc := math.Round(float64(stats.Used*100*100)/float64(stats.Total)) / 100
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Apr 17 05:10:25 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/PairedStats.java

            BYTES,
            byteArray.length);
        ByteBuffer buffer = ByteBuffer.wrap(byteArray).order(ByteOrder.LITTLE_ENDIAN);
        Stats xStats = Stats.readFrom(buffer);
        Stats yStats = Stats.readFrom(buffer);
        double sumOfProductsOfDeltas = buffer.getDouble();
        return new PairedStats(xStats, yStats, sumOfProductsOfDeltas);
      }
    
      private static final long serialVersionUID = 0;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

        // GET /api/admin/stats
        @Execute
        public JsonResponse<ApiResult> index() {
            final HashMap<String, Object> stats = new HashMap<>();
            stats.put("jvm", getJvmObj());
            stats.put("os", getOsObj());
            stats.put("process", getProcessObj());
            stats.put("engine", getEngineObj());
            stats.put("fs", getFsObj());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  5. docs/select/select.py

            print("Stats details bytesScanned: ")
            print(statsDetails['BytesScanned'])
            print("Stats details bytesProcessed: ")
    Python
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Aug 18 00:11:39 GMT 2018
    - 1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.txt

    ECDS NAME                                                     TYPE
    istio.io/telemetry/stats/prometheus/sidecar/Inbound/HTTP      
    istio.io/telemetry/stats/prometheus/sidecar/Inbound/TCP       
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP     
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/TCP      
    default.display-metadata                                      envoy.extensions.filters.http.wasm.v3.Wasm
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 528 bytes
    - Viewed (0)
  7. istioctl/pkg/authz/testdata/configdump.yaml

                   },
                   "shadow_rules_stat_prefix": "istio_dry_run_allow_"
                  }
                 },
                 {
                  "name": "envoy.filters.http.grpc_stats",
                  "typed_config": {
                   "@type": "type.googleapis.com/envoy.extensions.filters.http.grpc_stats.v3.FilterConfig",
                   "emit_filter_state": true,
                   "stats_for_all_methods": false
                  }
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  8. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

    /**
     * Tests for {@link StatsAccumulator}. This tests the stats methods for instances built with {@link
     * StatsAccumulator#add} and {@link StatsAccumulator#addAll}, and various error cases of the {@link
     * StatsAccumulator#add} and {@link StatsAccumulator#addAll} methods. For tests of the {@link
     * StatsAccumulator#snapshot} method which returns {@link Stats} instances, see {@link StatsTest}.
     *
     * @author Pete Gillin
     */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 34K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

                    "name": "istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP"
                },
                "lastUpdated": "2023-12-23T13:46:00.701Z"
            },
            {
                "ecdsFilter": {
                    "@type": "type.googleapis.com/envoy.config.core.v3.TypedExtensionConfig",
                    "name": "istio.io/telemetry/stats/prometheus/sidecar/Inbound/HTTP"
                },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/c/env.cc

      ::tensorflow::Set_TF_Status_from_Status(status, s);
      if (s.ok()) {
        stats->length = cc_stats.length;
        stats->mtime_nsec = cc_stats.mtime_nsec;
        stats->is_directory = cc_stats.is_directory;
      }
    }
    
    void TF_NewWritableFile(const char* filename, TF_WritableFileHandle** handle,
                            TF_Status* status) {
      std::unique_ptr<::tensorflow::WritableFile> f;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 11 01:20:50 GMT 2021
    - 7K bytes
    - Viewed (0)
Back to top