Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for REQUEST_COUNT (0.21 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)
  6. tensorflow/compiler/jit/device_compiler.h

      // cache eviction.
      mutex_lock cluster_compile_lock(*cluster_mutex);
      auto cache_value = cache_->LookupOrCreate(signature);
    
      int64_t current_request_count = cache_value.request_count;
      VLOG(2) << "Compilation cache entry hit: "
              << static_cast<int>(cache_value.compile_state)
              << " signature: " << human_signature << " with request count "
              << current_request_count;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      Metrics.
                                    enum:
                                    - ALL_METRICS
                                    - REQUEST_COUNT
                                    - REQUEST_DURATION
                                    - REQUEST_SIZE
                                    - RESPONSE_SIZE
                                    - TCP_OPENED_CONNECTIONS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
Back to top