Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 185 for casePC (0.13 sec)

  1. 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)
  2. src/cmd/compile/internal/types2/api_test.go

    			switch node.(type) {
    			case *syntax.File:
    				kind = "file"
    			case *syntax.FuncType:
    				kind = "func"
    			case *syntax.BlockStmt:
    				kind = "block"
    			case *syntax.IfStmt:
    				kind = "if"
    			case *syntax.SwitchStmt:
    				kind = "switch"
    			case *syntax.SelectStmt:
    				kind = "select"
    			case *syntax.CaseClause:
    				kind = "case"
    			case *syntax.CommClause:
    				kind = "comm"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    	case "skip":
    		if *runSkips {
    			break
    		}
    		t.Skip("skip")
    	default:
    		t.Fatalf("unknown pattern: %q", action)
    	}
    
    	goexp := goExperiment
    	godebug := goDebug
    
    	// collect flags
    	for len(args) > 0 && strings.HasPrefix(args[0], "-") {
    		switch args[0] {
    		case "-1":
    			wantError = true
    		case "-0":
    			wantError = false
    		case "-s":
    			singlefilepkgs = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/httproute_test.go

    					{
    						Destination: &networking.Destination{
    							Host: "test-service.default.svc.cluster.local",
    						},
    					},
    				},
    			},
    		},
    	}
    
    	// TODO(ramaraochavali): Add more test cases.
    	cases := []struct {
    		name                  string
    		services              []*model.Service
    		config                []config.Config
    		expectStatefulSession *statefulsession.StatefulSessionPerRoute
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				addSubst = false
    			}
    		}
    	case 'O', 'P', 'R', 'C', 'G':
    		st.advance(1)
    		t := st.demangleType(isCast)
    		switch c {
    		case 'O':
    			ret = &RvalueReferenceType{Base: t}
    		case 'P':
    			ret = &PointerType{Base: t}
    		case 'R':
    			ret = &ReferenceType{Base: t}
    		case 'C':
    			ret = &ComplexType{Base: t}
    		case 'G':
    			ret = &ImaginaryType{Base: t}
    		}
    	case 'U':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

          switch (c) {
            case '\t':
            case '\n':
            case '\013':
            case '\f':
            case '\r':
            case ' ':
            case '\u0085':
            case '\u1680':
            case '\u2028':
            case '\u2029':
            case '\u205f':
            case '\u3000':
              return true;
            case '\u2007':
              return false;
            default:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. pkg/apis/storage/validation/validation_test.go

    			Parameters: longParameters,
    		},
    	}
    
    	// Error cases are not expected to pass validation.
    	for testName, v := range errorCases {
    		if errs := ValidateVolumeAttributesClass(&v); len(errs) == 0 {
    			t.Errorf("Expected failure for test: %s", testName)
    		}
    	}
    }
    
    func TestValidateVolumeAttributesClassUpdate(t *testing.T) {
    	cases := map[string]struct {
    		oldClass      *storage.VolumeAttributesClass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	k := t.Kind()
    	switch k {
    	case Complex64:
    		return overflowFloat32(real(x)) || overflowFloat32(imag(x))
    	case Complex128:
    		return false
    	}
    	panic("reflect: OverflowComplex of non-complex type " + t.String())
    }
    
    func (t *rtype) OverflowFloat(x float64) bool {
    	k := t.Kind()
    	switch k {
    	case Float32:
    		return overflowFloat32(x)
    	case Float64:
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    	// If you want a backspace, embed a literal backspace
    	// character or use \x08.
    	case 'a':
    		return '\a', t, err
    	case 'f':
    		return '\f', t, err
    	case 'n':
    		return '\n', t, err
    	case 'r':
    		return '\r', t, err
    	case 't':
    		return '\t', t, err
    	case 'v':
    		return '\v', t, err
    	}
    	return 0, "", &Error{ErrInvalidEscape, s[:len(s)-len(t)]}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    			p.expectSemi()
    		}
    	case token.GO:
    		s = p.parseGoStmt()
    	case token.DEFER:
    		s = p.parseDeferStmt()
    	case token.RETURN:
    		s = p.parseReturnStmt()
    	case token.BREAK, token.CONTINUE, token.GOTO, token.FALLTHROUGH:
    		s = p.parseBranchStmt(p.tok)
    	case token.LBRACE:
    		s = p.parseBlockStmt()
    		p.expectSemi()
    	case token.IF:
    		s = p.parseIfStmt()
    	case token.SWITCH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top