Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for unsupportedOp (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		},
    		{
    			desc:    "Invalid API version",
    			config:  "testdata/invalid-configs/kms/invalid-apiversion.yaml",
    			want:    nil,
    			wantErr: `resources[0].providers[0].kms.apiVersion: Invalid value: "v3": unsupported apiVersion apiVersion for KMS provider, only v1 and v2 are supported`,
    		},
    	}
    
    	for _, tt := range testCases {
    		t.Run(tt.desc, func(t *testing.T) {
    			config, _, err := loadConfig(tt.config, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	// an SSLv2 client.
    	if !handshakeComplete && typ == 0x80 {
    		c.sendAlert(alertProtocolVersion)
    		return c.in.setErrorLocked(c.newRecordHeaderError(nil, "unsupported SSLv2 handshake received"))
    	}
    
    	vers := uint16(hdr[1])<<8 | uint16(hdr[2])
    	expectedVers := c.vers
    	if expectedVers == VersionTLS13 {
    		// All TLS 1.3 records are expected to have 0x0303 (1.2) after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    	} else {
    		// Different 32-bit systems disgaree about whether distToMove starts 8-byte aligned.
    		switch runtime.GOARCH {
    		default:
    			panic("unsupported 32-bit architecture")
    		case "386":
    			// distToMove is a LARGE_INTEGER, which is 64 bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			pvcStatusSize:   resource.MustParse("10G"),
    			newPVSize:       resource.MustParse("15G"),
    			oldPVSize:       resource.MustParse("13G"),
    		},
    		{
    			name:            "expand-fs-volume with unsupported error",
    			volumeMode:      &fsMode,
    			expansionFailed: false,
    			pvName:          volumetesting.FailWithUnSupportedVolumeName,
    			pvcSize:         resource.MustParse("10G"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  5. src/time/time_test.go

    		}
    		b.Reset()
    	}
    }
    
    var invalidEncodingTests = []struct {
    	bytes []byte
    	want  string
    }{
    	{[]byte{}, "Time.UnmarshalBinary: no data"},
    	{[]byte{0, 2, 3}, "Time.UnmarshalBinary: unsupported version"},
    	{[]byte{1, 2, 3}, "Time.UnmarshalBinary: invalid length"},
    }
    
    func TestInvalidTimeGob(t *testing.T) {
    	for _, tt := range invalidEncodingTests {
    		var ignored Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. internal/s3select/select_test.go

    			if cpuid.CPU.Supports(cpuid.AVX2) {
    				cpuid.CPU.Disable(cpuid.AVX2)
    				defer cpuid.CPU.Enable(cpuid.AVX2)
    			}
    			if simdjson.SupportedCPU() {
    				t.Fatal("setup error: expected cpu to be unsupported")
    			}
    			testReq := testCase.requestXML
    			if len(testReq) == 0 {
    				var escaped bytes.Buffer
    				xml.EscapeText(&escaped, []byte(testCase.query))
    				testReq = []byte(fmt.Sprintf(defRequest, escaped.String()))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	case pruned:
    		return updatePrunedRoots(ctx, direct, rs, pkgs, add, rootsImported)
    	case workspace:
    		return updateWorkspaceRoots(ctx, direct, rs, add)
    	default:
    		panic(fmt.Sprintf("unsupported pruning mode: %v", rs.pruning))
    	}
    }
    
    func updateWorkspaceRoots(ctx context.Context, direct map[string]bool, rs *Requirements, add []module.Version) (*Requirements, error) {
    	if len(add) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	// here and track whether we believe this chunk is backed by huge pages.
    	// In the past we've attempted to use sysHugePageCollapse (which uses
    	// MADV_COLLAPSE on Linux, and is unsupported elswhere) for this purpose,
    	// but that caused performance issues in production environments.
    	s.chunks[ci].store(sc)
    }
    
    // free updates metadata for chunk at index ci with the fact that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    			default: // 1 component: "386"
    				os, arch, subarch = "linux", archspec[0], ""
    				if arch == "wasm" {
    					os = "js"
    				}
    			}
    
    			if _, ok := archVariants[arch]; !ok {
    				t.Fatalf("%s:%d: unsupported architecture: %v", t.goFileName(), i+1, arch)
    			}
    
    			// Create the build environments corresponding the above specifiers
    			envs := make([]buildEnv, 0, 4)
    			arches := []string{arch}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    	ErrInvalidEscape         ErrorCode = "invalid escape sequence"
    	ErrInvalidNamedCapture   ErrorCode = "invalid named capture"
    	ErrInvalidPerlOp         ErrorCode = "invalid or unsupported Perl syntax"
    	ErrInvalidRepeatOp       ErrorCode = "invalid nested repetition operator"
    	ErrInvalidRepeatSize     ErrorCode = "invalid repeat count"
    	ErrInvalidUTF8           ErrorCode = "invalid UTF-8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top