Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for unsupportedOp (1.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Configuration cache implementation packages now under `org.gradle.internal`
    
    References to Gradle types that are not part of the public API should be avoided, as their direct use is unsupported,
    and Gradle internal implementation classes may suffer breaking changes (or be renamed or removed) from one version to another without warning.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			errMessage: ErrFormatWrong.Error(),
    		},
    		{
    			name:       "empty text string",
    			in:         []byte{0x60},
    			errMessage: ErrFormatWrong.Error(),
    		},
    		{
    			name:       "unsupported input type",
    			in:         []byte{0x07}, // 7
    			errMessage: "cbor: cannot unmarshal positive integer into Go value of type string",
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			var got Quantity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    			}
    
    			if (kubeletConfig.KubeletCgroups != "" && kubeletConfig.KubeReservedCgroup != "") && (strings.Index(kubeletConfig.KubeletCgroups, kubeletConfig.KubeReservedCgroup) != 0) {
    				klog.InfoS("unsupported configuration:KubeletCgroups is not within KubeReservedCgroup")
    			}
    
    			// construct a KubeletServer from kubeletFlags and kubeletConfig
    			kubeletServer := &options.KubeletServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * ### If it works on the web, it should work in your application
     *
     * The `java.net.URI` class is strict around what URLs it accepts. It rejects URLs like
     * `http://example.com/abc|def` because the `|` character is unsupported. This class is more
     * forgiving: it will automatically percent-encode the `|'` yielding `http://example.com/abc%7Cdef`.
     * This kind behavior is consistent with web browsers. `HttpUrl` prefers consistency with major web
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    				}
    				if !thearch.Xcoffreloc1(ctxt.Arch, ctxt.Out, ldr, s, rr, int64(uint64(ldr.SymValue(s)+int64(r.Off()))-base)) {
    					ldr.Errorf(s, "unsupported obj reloc %d(%s)/%d to %s", r.Type(), r.Type(), r.Siz(), ldr.SymName(r.Sym()))
    				}
    			}
    		}
    		sect.Rellen = uint64(ctxt.Out.Offset()) - sect.Reloff
    		return uint32(sect.Rellen) / RELSZ_64
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top