Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 361 for _case (0.11 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    		return
    	}
    
    	// determine token string
    	var tok string
    	switch p.tok {
    	case _Name:
    		tok = "name " + p.lit
    	case _Semi:
    		tok = p.lit
    	case _Literal:
    		tok = "literal " + p.lit
    	case _Operator:
    		tok = p.op.String()
    	case _AssignOp:
    		tok = p.op.String() + "="
    	case _IncOp:
    		tok = p.op.String()
    		tok += tok
    	default:
    		tok = tokstring(p.tok)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/regexp/testdata/testregex.c

    				*t = c;
    				break;
    			case '0': case '1': case '2': case '3':
    			case '4': case '5': case '6': case '7':
    				c = *s - '0';
    				q = s + 2;
    				while (s < q)
    				{
    					switch (*++s)
    					{
    					case '0': case '1': case '2': case '3':
    					case '4': case '5': case '6': case '7':
    						c = (c << 3) + *s - '0';
    						break;
    					default:
    						q = --s;
    						break;
    					}
    				}
    				*t = c;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/asm0.go

    	case AMOVVD:
    		return FPV(4, 1)
    	case AMOVFW:
    		return FPF(4, 4)
    	case AMOVDW:
    		return FPD(4, 4)
    	case AMOVWF:
    		return FPW(4, 0)
    	case AMOVDF:
    		return FPD(4, 0)
    	case AMOVWD:
    		return FPW(4, 1)
    	case AMOVFD:
    		return FPF(4, 1)
    	case AABSF:
    		return FPF(0, 5)
    	case AABSD:
    		return FPD(0, 5)
    	case AMOVF:
    		return FPF(0, 6)
    	case AMOVD:
    		return FPD(0, 6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    	case ASUBU, ANEGW:
    		return 0x22 << 15
    	case ANOR:
    		return 0x28 << 15
    	case ASLL:
    		return 0x2e << 15
    	case ASRL:
    		return 0x2f << 15
    	case ASRA:
    		return 0x30 << 15
    	case AROTR:
    		return 0x36 << 15
    	case ASLLV:
    		return 0x31 << 15
    	case ASRLV:
    		return 0x32 << 15
    	case ASRAV:
    		return 0x33 << 15
    	case AROTRV:
    		return 0x37 << 15
    	case AADDV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    		return o | 0x1<<21 | 0x9<<4
    	case AMULLU:
    		return o | 0x4<<21 | 0x9<<4
    	case AMULL:
    		return o | 0x6<<21 | 0x9<<4
    	case AMULALU:
    		return o | 0x5<<21 | 0x9<<4
    	case AMULAL:
    		return o | 0x7<<21 | 0x9<<4
    	case AAND:
    		return o | 0x0<<21
    	case AEOR:
    		return o | 0x1<<21
    	case ASUB:
    		return o | 0x2<<21
    	case ARSB:
    		return o | 0x3<<21
    	case AADD:
    		return o | 0x4<<21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    	switch aop {
    	default:
    		return nil
    
    	case arg_Da:
    		return D0 + Reg((x>>10)&(1<<5-1))
    
    	case arg_Dd:
    		return D0 + Reg(x&(1<<5-1))
    
    	case arg_Dm:
    		return D0 + Reg((x>>16)&(1<<5-1))
    
    	case arg_Dn:
    		return D0 + Reg((x>>5)&(1<<5-1))
    
    	case arg_Hd:
    		return H0 + Reg(x&(1<<5-1))
    
    	case arg_Hn:
    		return H0 + Reg((x>>5)&(1<<5-1))
    
    	case arg_IAddSub:
    		imm12 := (x >> 10) & (1<<12 - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.GRPCRoute:
    		return c.GatewayAPI().GatewayV1().GRPCRoutes(namespace).Delete(context.TODO(), name, deleteOptions)
    	case gvk.Gateway:
    		return c.Istio().NetworkingV1alpha3().Gateways(namespace).Delete(context.TODO(), name, deleteOptions)
    	case gvk.GatewayClass:
    		return c.GatewayAPI().GatewayV1beta1().GatewayClasses().Delete(context.TODO(), name, deleteOptions)
    	case gvk.HTTPRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  8. cmd/bucket-stats_gen.go

    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "ReplicatedSize":
    			z.ReplicatedSize, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicatedSize")
    				return
    			}
    		case "ReplicaSize":
    			z.ReplicaSize, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ReplicaSize")
    				return
    			}
    		case "FailStats":
    			err = z.FailStats.DecodeMsg(dc)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    		case ASUBW:
    			p.As, p.From.Offset = AADDIW, -p.From.Offset
    		case ASLLW:
    			p.As = ASLLIW
    		case ASRLW:
    			p.As = ASRLIW
    		case ASRAW:
    			p.As = ASRAIW
    		case AROR:
    			p.As = ARORI
    		case ARORW:
    			p.As = ARORIW
    		case ABCLR:
    			p.As = ABCLRI
    		case ABEXT:
    			p.As = ABEXTI
    		case ABINV:
    			p.As = ABINVI
    		case ABSET:
    			p.As = ABSETI
    		}
    	}
    
    	switch p.As {
    	case obj.AJMP:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    	case PrefixAccessDenied:
    		apiErr = ErrAccessDenied
    	case BucketNameInvalid:
    		apiErr = ErrInvalidBucketName
    	case BucketNotFound:
    		apiErr = ErrNoSuchBucket
    	case BucketAlreadyOwnedByYou:
    		apiErr = ErrBucketAlreadyOwnedByYou
    	case BucketNotEmpty:
    		apiErr = ErrBucketNotEmpty
    	case BucketAlreadyExists:
    		apiErr = ErrBucketAlreadyExists
    	case BucketExists:
    		apiErr = ErrBucketAlreadyOwnedByYou
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top