Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for REQUEST_COUNT (4.81 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. tensorflow/compiler/jit/device_compilation_cache.h

        Status compilation_status;
        int64_t request_count = 0;
        const XlaCompiler::CompilationResult* compilation_result = nullptr;
        ExecutableType* executable = nullptr;
      };
    
      // Returns std::nullopt if value for the supplied key is not found. If a value
      // is found, `request_count` is incremented before returning the value.
      std::optional<Value> Lookup(const Key& key) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

              - /monitor
              - --stackdriver-prefix={{ prometheus_to_sd_prefix }}/addons
              - --api-override={{ prometheus_to_sd_endpoint }}
              - --source=metadata_proxy:http://127.0.0.1:989?whitelisted=request_count
              - --pod-id=$(POD_NAME)
              - --namespace-id=$(POD_NAMESPACE)
            env:
              - name: POD_NAME
                valueFrom:
                  fieldRef:
                    fieldPath: metadata.name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_metric_test.go

    			expected: map[string]metricsConfig{
    				"prometheus": {
    					ClientMetrics: metricConfig{
    						Disabled: false,
    						Overrides: []metricsOverride{
    							{
    								Name: "REQUEST_COUNT",
    								Tags: []tagOverride{
    									{Name: "destination_canonical_service", Remove: true},
    								},
    							},
    						},
    					},
    					ServerMetrics: metricConfig{
    						Disabled: true,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. 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)
Back to top