Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for REQUEST_COUNT (7.06 sec)

  1. tensorflow/compiler/jit/device_compilation_cache_test.cc

      Cache::Value cache_value = cache->LookupOrCreate(key);
      EXPECT_EQ(cache_value.request_count, 1);
    
      cache_value = cache->LookupOrCreate(key);
      EXPECT_EQ(cache_value.request_count, 2);
    
      cache_value = cache->LookupOrCreate(key);
      EXPECT_EQ(cache_value.request_count, 3);
    }
    
    TEST(DeviceCompilationCacheTest, RequestCountUnchangedOnStore) {
      auto cache = std::make_unique<Cache>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/customize_metrics_test.go

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: ns-default
    spec:
      metrics:
      - providers:
        - name: prometheus
        overrides:
        - match:
            metric: REQUEST_COUNT
          tagOverrides:
            response_code:
              value: "istio_responseClass"
            request_operation: 
              value: istio_operationId
            grpc_response_status: 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry.go

    					// Next, get all matches.
    					// This is a bit funky because the matches are oneof of ENUM and customer metric. We normalize
    					// these to strings, so we may end up with a list like [REQUEST_COUNT, my-customer-metric].
    					// TODO: we always flatten ALL_METRICS into each metric mode. For some stats providers (prometheus),
    					// we are able to apply overrides to all metrics directly rather than duplicating the config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      Valid Options: ALL_METRICS, REQUEST_COUNT, REQUEST_DURATION, REQUEST_SIZE, RESPONSE_SIZE, TCP_OPENED_CONNECTIONS, TCP_CLOSED_CONNECTIONS, TCP_SENT_BYTES, TCP_RECEIVED_BYTES, GRPC_REQUEST_MESSAGES, GRPC_RESPONSE_MESSAGES
                                    enum:
                                    - ALL_METRICS
                                    - REQUEST_COUNT
                                    - REQUEST_DURATION
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                      Valid Options: ALL_METRICS, REQUEST_COUNT, REQUEST_DURATION, REQUEST_SIZE, RESPONSE_SIZE, TCP_OPENED_CONNECTIONS, TCP_CLOSED_CONNECTIONS, TCP_SENT_BYTES, TCP_RECEIVED_BYTES, GRPC_REQUEST_MESSAGES, GRPC_RESPONSE_MESSAGES
                                    enum:
                                    - ALL_METRICS
                                    - REQUEST_COUNT
                                    - REQUEST_DURATION
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top