Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 320 for dropped (0.14 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/duration_test.go

    		{"d: 0s\n", Duration{}},
    		{"d: 5s\n", Duration{5 * time.Second}},
    		{"d: 2m0s\n", Duration{2 * time.Minute}},
    		{"d: 1h0m0.003s\n", Duration{time.Hour + 3*time.Millisecond}},
    
    		// Units with zero values can optionally be dropped
    		{"d: 2m\n", Duration{2 * time.Minute}},
    		{"d: 1h0.003s\n", Duration{time.Hour + 3*time.Millisecond}},
    	}
    
    	for _, c := range cases {
    		var result DurationHolder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 07 18:17:32 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/mod_get_indirect.txt

    # indirect tag should be added by go mod tidy
    cp $WORK/tmp/usequote.go x.go
    go mod tidy
    grep 'rsc.io/quote v1.5.2$' go.mod
    grep 'golang.org/x/text [v0-9a-f\.-]+ // indirect' go.mod
    
    # requirement should be dropped entirely if not needed
    cp $WORK/tmp/uselang.go x.go
    go mod tidy
    ! grep rsc.io/quote go.mod
    grep 'golang.org/x/text [v0-9a-f\.-]+$' go.mod
    
    -- go.mod --
    module x
    require rsc.io/quote v1.5.1
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-if-ops.mlir

    }
    
    // Verify that If op is mapped to TensorFlow StatelessIf op if the is_stateless
    // attribute is present and otherwise it is mapped to TensorFlow If op. In both
    // cases, the additional attribute should be dropped.
    
    // CHECK: name: "StatefulIf"
    // CHECK-NOT: name:
    // CHECK: op: "If"
    // CHECK-NOT: is_stateless
    // CHECK:  attr {
    // CHECK:    key: "output_shapes"
    // CHECK:    value {
    // CHECK:      list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-while-ops.mlir

    }
    
    // Verify that While op is mapped to TensorFlow StatelessWhile op if the
    // is_stateless attribute is present and otherwise it is mapped to TensorFlow
    // While op. In both cases, the additional attribute should be dropped.
    
    // CHECK: name: "StatefulWhile"
    // CHECK-NOT: name:
    // CHECK: op: "While"
    // CHECK-NOT: is_stateless
    // CHECK-NOT: shape_invariant
    // CHECK:  attr {
    // CHECK:    key: "output_shapes"
    // CHECK:    value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top