Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 906 for dropped (0.66 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker_test.go

    	// - seconds elapsed (as computed since the initial time)
    	// - requests that will be recorded as dropped in a current second
    	steps := []struct {
    		secondsElapsed int
    		// droppedRequests is the number of requests to drop, after
    		// secondsElapsed.
    		droppedRequests int
    		// retryAfter is the expected retryAfter after all dropped
    		// requests are recorded via RecordDroppedRequest.
    		retryAfter int64
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    	}
    }
    
    // updateRetryAfterIfNeededLocked updates the retryAfter based on the number of
    // dropped requests in the last `retryAfter` seconds:
    //   - if there were less than `retryAfter` dropped requests, it decreases
    //     retryAfter
    //   - if there were at least 3*`retryAfter` dropped requests, it increases
    //     retryAfter
    //
    // The rationale behind these numbers being fairly low is that APF is queuing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. api/openapi-spec/swagger.json

    containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/algorithm.go

    // If opts.ReturnUnknownFieldPaths is true, it will return the paths of any fields that are not a part of the
    // schema that are dropped when unmarshaling.
    // If opts.DropInvalidFields is true, fields of wrong type will be dropped.
    func CoerceWithOptions(pth *field.Path, obj interface{}, s *structuralschema.Structural, isResourceRoot bool, opts CoerceOptions) (*field.Error, []string) {
    	if isResourceRoot {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_1x.md

    =====================
    
    ## Version 1.6.0
    
    _2014-05-23_
    
     * Offer bridges to make it easier to migrate from OkHttp 1.x to OkHttp 2.0.
       This adds `OkUrlFactory`, `Cache`, and `@Deprecated` annotations for APIs
       dropped in 2.0.
    
    ## Version 1.5.4
    
    _2014-04-14_
    
     * Drop ALPN support in Android. There's a concurrency bug in all
       currently-shipping versions.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/math.mlir

      %0 = "tfl.pseudo_const" () {value = dense<1.0> : tensor<4xf32>} : () -> tensor<4xf32> loc("Const")
      // Confirm that attributes that cannot be stored in the flatbuffer options
      // for a given operator are dropped silently.
      %1 = "tfl.squared_difference"(%arg0, %0) {fused_activation_function = "NONE"} : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32> loc("squared_difference")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/aliasing_arg_attr.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -tf-graph-as-function -o - | FileCheck %s
    
    // Verify tf.aliasing_output attributes on args are dropped during export.
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 121 : i32}} {
      func.func @main(%arg0: tensor<*xf32> {tf.aliasing_output = 0 : i64}, %arg1: tensor<2x4x6x8xi32>) -> (tensor<*xf32>, tensor<2x4x6x8xi32> {tf.device = "/CPU:1"})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 958 bytes
    - Viewed (0)
  8. pkg/api/pod/warnings_test.go

    				`spec.containers[0].env[1]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[2]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[3]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[4]: hides previous definition of "b", which may be dropped when using apply`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubeletconfig/util/codec/codec.go

    	if err != nil {
    		// Try strict decoding first. If that fails decode with a lenient
    		// decoder, which has only v1beta1 registered, and log a warning.
    		// The lenient path is to be dropped when support for v1beta1 is dropped.
    		if !runtime.IsStrictDecodingError(err) {
    			return nil, fmt.Errorf("failed to decode: %w", err)
    		}
    
    		var lenientErr error
    		_, lenientCodecs, lenientErr := codec.NewLenientSchemeAndCodecs(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repair_test.go

    			},
    		},
    		// outside CIDR, will be dropped
    		&corev1.Service{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "x5", Name: "out-v4"},
    			Spec: corev1.ServiceSpec{
    				ClusterIP:  "192.168.0.1",
    				ClusterIPs: []string{"192.168.0.1"},
    				IPFamilies: []corev1.IPFamily{corev1.IPv4Protocol},
    			},
    		},
    		&corev1.Service{ // outside CIDR, will be dropped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top