Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 289 for dropped (0.1 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    # have a selected version.
    cp go.mod.orig go.mod
    go mod edit -droprequire=patch.example.com/direct
    cp go.mod go.mod.dropped
    ! go get all@patch
    stderr '^go: all@patch: can''t query version "patch" of module patch.example.com/direct: no existing version is required$'
    cmp go.mod.dropped go.mod
    
    # Requesting the direct dependency with -u=patch but without an explicit version
    # should patch-update it and its dependencies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion_test.go

    			args: []kubeadmapi.Arg{
    				{Name: "a", Value: "b"},
    				{Name: "c", Value: "d"},
    			},
    			expectedArgs: map[string]string{"a": "b", "c": "d"},
    		},
    		{
    			name: "duplicates are dropped",
    			args: []kubeadmapi.Arg{
    				{Name: "a", Value: "b"},
    				{Name: "c", Value: "d1"},
    				{Name: "c", Value: "d2"},
    			},
    			expectedArgs: map[string]string{"a": "b", "c": "d2"},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pkg/registry/storage/volumeattachment/strategy_test.go

    	errs = Strategy.ValidateUpdate(ctx, newVolumeAttachment, volumeAttachment)
    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    
    	// modifying status should be dropped
    	statusVolumeAttachment = volumeAttachment.DeepCopy()
    	statusVolumeAttachment.Status = storage.VolumeAttachmentStatus{Attached: true}
    
    	Strategy.PrepareForUpdate(ctx, statusVolumeAttachment, volumeAttachment)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top