Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 269 for dropped (0.11 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/fixtures/ScalaCoverage.groovy

                return VersionCoverage.versionsAtLeast(SCALA_2, "2.13.0")
            }
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_8)) {
                // Java 8 support not dropped yet
                return SCALA_2
            }
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_6)) {
                // 2.12+ requires Java 8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. doc/next/7-ports.md

    The `GORISCV64` environment variable defaults to `rva20u64`.
    
    ### Wasm {#wasm}
    
    <!-- go.dev/issue/63718 -->
    The `go_wasip1_wasm_exec` script in `GOROOT/misc/wasm` has dropped support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pkg/controller/deployment/rollback.go

    	setRollbackTo(d, nil)
    	_, err := dc.client.AppsV1().Deployments(d.Namespace).Update(ctx, d, metav1.UpdateOptions{})
    	return err
    }
    
    // TODO: Remove this when extensions/v1beta1 and apps/v1beta1 Deployment are dropped.
    func getRollbackTo(d *apps.Deployment) *extensions.RollbackConfig {
    	// Extract the annotation used for round-tripping the deprecated RollbackTo field.
    	revision := d.Annotations[apps.DeprecatedRollbackTo]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top