Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for vsrb (0.06 sec)

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

    	"VPMSUMH",
    	"VPMSUMW",
    	"VPMSUMD",
    	"VMSUMUDM",
    	"VR",
    	"VRLB",
    	"VRLH",
    	"VRLW",
    	"VRLD",
    	"VS",
    	"VSLB",
    	"VSLH",
    	"VSLW",
    	"VSL",
    	"VSLO",
    	"VSRB",
    	"VSRH",
    	"VSRW",
    	"VSR",
    	"VSRO",
    	"VSLD",
    	"VSRD",
    	"VSA",
    	"VSRAB",
    	"VSRAH",
    	"VSRAW",
    	"VSRAD",
    	"VSOI",
    	"VSLDOI",
    	"VCLZ",
    	"VCLZB",
    	"VCLZH",
    	"VCLZW",
    	"VCLZD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	VRLD V1, V2, V3                 // 106110c4
    	VSLB V1, V2, V3                 // 10611104
    	VSLH V1, V2, V3                 // 10611144
    	VSLW V1, V2, V3                 // 10611184
    	VSL V1, V2, V3                  // 106111c4
    	VSLO V1, V2, V3                 // 1061140c
    	VSRB V1, V2, V3                 // 10611204
    	VSRH V1, V2, V3                 // 10611244
    	VSRW V1, V2, V3                 // 10611284
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/anames.go

    	"VREPB",
    	"VREPH",
    	"VREPF",
    	"VREPG",
    	"VREPI",
    	"VREPIB",
    	"VREPIH",
    	"VREPIF",
    	"VREPIG",
    	"VSCEF",
    	"VSCEG",
    	"VSEL",
    	"VSL",
    	"VSLB",
    	"VSLDB",
    	"VSRA",
    	"VSRAB",
    	"VSRL",
    	"VSRLB",
    	"VSEG",
    	"VSEGB",
    	"VSEGH",
    	"VSEGF",
    	"VST",
    	"VSTEH",
    	"VSTEF",
    	"VSTEG",
    	"VSTEB",
    	"VSTM",
    	"VSTL",
    	"VSTRC",
    	"VSTRCB",
    	"VSTRCH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    }
    
    // CanonicalVerb distinguishes LISTs from GETs (and HEADs). It assumes verb is
    // UPPERCASE.
    func CanonicalVerb(verb string, scope string) string {
    	switch verb {
    	case "GET", "HEAD":
    		if scope != "resource" && scope != "" {
    			return "LIST"
    		}
    		return "GET"
    	default:
    		return verb
    	}
    }
    
    // CleanVerb returns a normalized verb, so that it is easy to tell WATCH from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			maxSeats:             10,
    			initialSeatsExpected: 10,
    		},
    		{
    			name:       "request verb is not list",
    			requestURI: "http://server/apis/",
    			requestInfo: &apirequest.RequestInfo{
    				Verb: "get",
    			},
    			maxSeats:             10,
    			initialSeatsExpected: 1,
    		},
    		{
    			name:       "request verb is list, conversion to ListOptions returns error",
    			requestURI: "http://server/apis/foo.bar/v1/events?limit=invalid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/fmt/print.go

    	switch f := arg.(type) {
    	case bool:
    		p.fmtBool(f, verb)
    	case float32:
    		p.fmtFloat(float64(f), 32, verb)
    	case float64:
    		p.fmtFloat(f, 64, verb)
    	case complex64:
    		p.fmtComplex(complex128(f), 64, verb)
    	case complex128:
    		p.fmtComplex(f, 128, verb)
    	case int:
    		p.fmtInteger(uint64(f), signed, verb)
    	case int8:
    		p.fmtInteger(uint64(f), signed, verb)
    	case int16:
    		p.fmtInteger(uint64(f), signed, verb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/jvm/ClassDirectoryBinaryNamingScheme.java

        }
    
        public String getTaskName(@Nullable String verb) {
            return getTaskName(verb, null);
        }
    
        public String getTaskName(@Nullable String verb, @Nullable String target) {
            String name = baseName;
            if (target != null) {
                name = collapsedName;
            }
            return GUtil.toLowerCamelCase(nullToEmpty(verb) + " " + name + " " + nullToEmpty(target));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/fmt.go

    //	%S	Short syntax: Name only, no matter what.
    func (s *Sym) Format(f fmt.State, verb rune) {
    	mode := fmtGo
    	switch verb {
    	case 'v', 'S':
    		if verb == 'v' && f.Flag('+') {
    			mode = fmtDebug
    		}
    		fmt.Fprint(f, sconv(s, verb, mode))
    
    	default:
    		fmt.Fprintf(f, "%%!%c(*types.Sym=%p)", verb, s)
    	}
    }
    
    func (s *Sym) String() string {
    	return sconv(s, 0, fmtGo)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			name:   "allowed configmap",
    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "configmaps", Name: "configmap0-pod0-node0", Namespace: "ns0"},
    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "allowed secret via pod",
    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "secrets", Name: "secret0-pod0-node0", Namespace: "ns0"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top