Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for QPS (0.24 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// with any Kubernetes object. It allows autoscaling based on information
    	// coming from components running outside of cluster
    	// (for example length of queue in cloud messaging service, or
    	// QPS from loadbalancer running outside of cluster).
    	// +optional
    	External *ExternalMetricSource `json:"external,omitempty" protobuf:"bytes,5,opt,name=external"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. pkg/test/echo/proto/echo.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	Count         int32     `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
    	Qps           int32     `protobuf:"varint,2,opt,name=qps,proto3" json:"qps,omitempty"`
    	TimeoutMicros int64     `protobuf:"varint,3,opt,name=timeout_micros,json=timeoutMicros,proto3" json:"timeout_micros,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// with any Kubernetes object. It allows autoscaling based on information
    	// coming from components running outside of cluster
    	// (for example length of queue in cloud messaging service, or
    	// QPS from loadbalancer running outside of cluster).
    	// +optional
    	External *ExternalMetricSource `json:"external,omitempty" protobuf:"bytes,5,opt,name=external"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    }
    
    var map_ExternalMetricSource = map[string]string{
    	"":                   "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
    	"metricName":         "metricName is the name of the metric in question.",
    	"metricSelector":     "metricSelector is used to identify a specific time series within a given metric.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

      // +optional
      optional string apiVersion = 3;
    }
    
    // ExternalMetricSource indicates how to scale on a metric not associated with
    // any Kubernetes object (for example length of queue in cloud
    // messaging service, or QPS from loadbalancer running outside of cluster).
    // Exactly one "target" type should be set.
    message ExternalMetricSource {
      // metricName is the name of the metric in question.
      optional string metricName = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. pkg/controller/certificates/certificate_controller.go

    		queue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.NewTypedMaxOfRateLimiter[string](
    				workqueue.NewTypedItemExponentialFailureRateLimiter[string](200*time.Millisecond, 1000*time.Second),
    				// 10 qps, 100 bucket size.  This is only for retry speed and its only the overall factor (not per item)
    				&workqueue.TypedBucketRateLimiter[string]{Limiter: rate.NewLimiter(rate.Limit(10), 100)},
    			),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	//
    	// evictCount should not overflow in any remotely practical situation. In
    	// practice, we will have one dynamic table per HTTP/2 connection. If we
    	// assume a very powerful server that handles 1M QPS per connection and each
    	// request adds (then evicts) 100 entries from the table, it would still take
    	// 2M years for evictCount to overflow.
    	ents       []HeaderField
    	evictCount uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/webhook/client.go

    	complete := func(cfg *rest.Config) (*rest.Config, error) {
    		// Avoid client-side rate limiting talking to the webhook backend.
    		// Rate limiting should happen when deciding how many requests to serve.
    		cfg.QPS = -1
    
    		// Combine CAData from the config with any existing CA bundle provided
    		if len(cfg.TLSClientConfig.CAData) > 0 {
    			cfg.TLSClientConfig.CAData = append(cfg.TLSClientConfig.CAData, '\n')
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 09:09:10 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    	)
    }
    
    func kubeClientConfigOverrides(s *options.KubeletServer, clientConfig *restclient.Config) {
    	setContentTypeForClient(clientConfig, s.ContentType)
    	// Override kubeconfig qps/burst settings from flags
    	clientConfig.QPS = float32(s.KubeAPIQPS)
    	clientConfig.Burst = int(s.KubeAPIBurst)
    }
    
    // getNodeName returns the node name according to the cloud provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    			}
    			return nil, nil
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("failed to get delegated authentication kubeconfig: %v", err)
    	}
    
    	// set high qps/burst limits since this will effectively limit API server responsiveness
    	clientConfig.QPS = 200
    	clientConfig.Burst = 400
    	// do not set a timeout on the http client, instead use context for cancellation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
Back to top