Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for vsrb (0.15 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	case AVSLO:
    		return OPVX(4, 1036, 0, 0) /* vsl - v2.03 */
    	case AVSRB:
    		return OPVX(4, 516, 0, 0) /* vsrb - v2.03 */
    	case AVSRH:
    		return OPVX(4, 580, 0, 0) /* vsrh - v2.03 */
    	case AVSRW:
    		return OPVX(4, 644, 0, 0) /* vsrw - v2.03 */
    	case AVSR:
    		return OPVX(4, 708, 0, 0) /* vsr - v2.03 */
    	case AVSRO:
    		return OPVX(4, 1100, 0, 0) /* vsro - v2.03 */
    	case AVSLD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			{name: "post-ignore-validation", path: "/namespaces/default/simples", verb: "POST", data: validJSONDataPost, queryParams: ignoreFieldValidation, expectedStatusCode: http.StatusCreated},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    }
    
    func (m *NonResourceAttributes) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.Verb)
    	copy(dAtA[i:], m.Verb)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verb)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Path)
    	copy(dAtA[i:], m.Path)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Path)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    }
    
    func (m *NonResourceAttributes) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.Verb)
    	copy(dAtA[i:], m.Verb)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verb)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Path)
    	copy(dAtA[i:], m.Path)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Path)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	YxrEvex       // X0..X31
    	Yxm
    	YxmEvex       // YxrEvex+Ym
    	Yxvm          // VSIB vector array; vm32x/vm64x
    	YxvmEvex      // Yxvm which permits High-16 X register as index.
    	YyrEvexMulti4 // [ Y<n> - Y<n+3> ]; multisource YyrEvex
    	Yyr           // Y0..Y15
    	YyrEvex       // Y0..Y31
    	Yym
    	YymEvex   // YyrEvex+Ym
    	Yyvm      // VSIB vector array; vm32y/vm64y
    	YyvmEvex  // Yyvm which permits High-16 Y register as index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

            },
            "type": "object"
          },
          "io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule": {
            "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
            "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

            },
            "type": "object"
          },
          "io.k8s.api.flowcontrol.v1.NonResourcePolicyRule": {
            "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
            "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	go func() {
    		_, err := tr.RoundTrip(req)
    		errc <- err
    	}()
    
    	sc := <-serverConnCh
    	verb := make([]byte, 3)
    	if _, err := io.ReadFull(sc, verb); err != nil {
    		t.Errorf("Error reading HTTP verb from server: %v", err)
    	}
    	if string(verb) != "GET" {
    		t.Errorf("server received %q; want GET", verb)
    	}
    	defer sc.Close()
    
    	test.cancel(tr, req)
    
    	err := <-errc
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    func ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) {
    	r1, _, e1 := syscall.Syscall6(procShellExecuteW.Addr(), 6, uintptr(hwnd), uintptr(unsafe.Pointer(verb)), uintptr(unsafe.Pointer(file)), uintptr(unsafe.Pointer(args)), uintptr(unsafe.Pointer(cwd)), uintptr(showCmd))
    	if r1 <= 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    }
    
    func fakeRequestInfo(resource, apiGroup string) *genericapirequest.RequestInfo {
    	return &genericapirequest.RequestInfo{
    		IsResourceRequest: true,
    		Path:              "/api/v1/test",
    		Verb:              "test",
    		APIPrefix:         "api",
    		APIGroup:          apiGroup,
    		APIVersion:        "v1",
    		Namespace:         "",
    		Resource:          resource,
    		Subresource:       "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top