Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for vsrb (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	}
    
    	var directive string
    	if e.ModPath != "" {
    		directive = fmt.Sprintf("%s %s: ", e.Verb, e.ModPath)
    	} else if e.Verb != "" {
    		directive = fmt.Sprintf("%s: ", e.Verb)
    	}
    
    	return pos + directive + e.Err.Error()
    }
    
    func (e *Error) Unwrap() error { return e.Err }
    
    func parseVersion(verb string, path string, s *string, fix VersionFixer) (string, error) {
    	t, err := parseString(s)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="450000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="550000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="650000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="750000"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. src/fmt/errors.go

    //
    // If the format specifier includes a %w verb with an error operand,
    // the returned error will implement an Unwrap method returning the operand.
    // If there is more than one %w verb, the returned error will implement an
    // Unwrap method returning a []error containing all the %w operands in the
    // order they appear in the arguments.
    // It is invalid to supply the %w verb with an operand that does not implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. build/pause/CHANGELOG.md

    # 3.1
    
    * The pause container gains a signal handler to clean up orphaned zombie processes. ([#36853](https://prs.k8s.io/36853), [@verb](https://github.com/verb))
    * `pause -v` will return build information for the pause binary. ([#56762](https://prs.k8s.io/56762), [@verb](https://github.com/verb))
    
    # 3.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    		line = line[:i]
    	}
    
    	verb := line
    	if i := strings.IndexFunc(verb, unicode.IsSpace); i >= 0 {
    		verb = verb[:i]
    		if line[i] != ' ' && line[i] != '\t' && line[i] != '\n' {
    			r, _ := utf8.DecodeRuneInString(line[i:])
    			check.pass.Reportf(pos, "invalid space %#q in %s directive", r, verb)
    		}
    	}
    
    	switch verb {
    	default:
    		// TODO: Use the go language version for the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    	// +optional
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,1,opt,name=namespace"`
    	// Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
    	// +optional
    	Verb string `json:"verb,omitempty" protobuf:"bytes,2,opt,name=verb"`
    	// Group is the API Group of the Resource.  "*" means all.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_pod_control.go

    		message := fmt.Sprintf("%s Pod %s in StatefulSet %s successful",
    			strings.ToLower(verb), pod.Name, set.Name)
    		spc.recorder.Event(set, v1.EventTypeNormal, reason, message)
    	} else {
    		reason := fmt.Sprintf("Failed%s", strings.Title(verb))
    		message := fmt.Sprintf("%s Pod %s in StatefulSet %s failed error: %s",
    			strings.ToLower(verb), pod.Name, set.Name, err)
    		spc.recorder.Event(set, v1.EventTypeWarning, reason, message)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top