Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for IsSwitch (0.21 sec)

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

    		}
    		return p.simpleStmt(lhs, 0)
    	}
    
    	switch p.tok {
    	case _Var:
    		return p.declStmt(p.varDecl)
    
    	case _Const:
    		return p.declStmt(p.constDecl)
    
    	case _Type:
    		return p.declStmt(p.typeDecl)
    	}
    
    	p.clearPragma()
    
    	switch p.tok {
    	case _Lbrace:
    		return p.blockStmt("")
    
    	case _Operator, _Star:
    		switch p.op {
    		case Add, Sub, Mul, And, Xor, Not:
    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/go/types/expr.go

    		goto Error
    	}
    
    	// check if comparison is defined for operands
    	code = UndefinedOp
    	switch op {
    	case token.EQL, token.NEQ:
    		// spec: "The equality operators == and != apply to operands that are comparable."
    		switch {
    		case x.isNil() || y.isNil():
    			// Comparison against nil requires that the other operand type has nil.
    			typ := x.typ
    			if x.isNil() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    		goto Error
    	}
    
    	// check if comparison is defined for operands
    	code = UndefinedOp
    	switch op {
    	case syntax.Eql, syntax.Neq:
    		// spec: "The equality operators == and != apply to operands that are comparable."
    		switch {
    		case x.isNil() || y.isNil():
    			// Comparison against nil requires that the other operand type has nil.
    			typ := x.typ
    			if x.isNil() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    func (j xlMetaV2Version) getDataDir() string {
    	if j.Valid() {
    		switch j.Type {
    		case LegacyType:
    			return j.ObjectV1.DataDir
    		case ObjectType:
    			return uuid.UUID(j.ObjectV2.DataDir).String()
    		}
    	}
    	return ""
    }
    
    // Valid xl meta xlMetaV2Version is valid
    func (j xlMetaV2Version) Valid() bool {
    	if !j.Type.valid() {
    		return false
    	}
    	switch j.Type {
    	case LegacyType:
    		return j.ObjectV1 != nil &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func globalCDtorName(name string, options ...Option) (AST, error) {
    	if len(name) < 4 {
    		return nil, ErrNotMangledName
    	}
    	switch name[0] {
    	case '.', '_', '$':
    	default:
    		return nil, ErrNotMangledName
    	}
    
    	var ctor bool
    	switch name[1] {
    	case 'I':
    		ctor = true
    	case 'D':
    		ctor = false
    	default:
    		return nil, ErrNotMangledName
    	}
    
    	if name[2] != '_' {
    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. src/cmd/cgo/gcc.go

    		} else {
    			n.Type = conv.Type(types[i], pos)
    			switch n.Kind {
    			case "iconst":
    				if i < len(ints) {
    					if _, ok := types[i].(*dwarf.UintType); ok {
    						n.Const = fmt.Sprintf("%#x", uint64(ints[i]))
    					} else {
    						n.Const = fmt.Sprintf("%#x", ints[i])
    					}
    				}
    			case "fconst":
    				if i >= len(floats) {
    					break
    				}
    				switch base(types[i]).(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    		return nil
    	}
    	if len(data) <= 4 {
    		return fmt.Errorf("%s: no data", ri.JobType)
    	}
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case format:
    	default:
    		return fmt.Errorf("%s: unknown format: %d", ri.JobType, binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case version:
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	if compiler == "gccgo" {
    		return true
    	}
    
    	platform := goos + "/" + goarch
    
    	switch buildmode {
    	case "archive":
    		return true
    
    	case "c-archive":
    		switch goos {
    		case "aix", "darwin", "ios", "windows":
    			return true
    		case "linux":
    			switch goarch {
    			case "386", "amd64", "arm", "armbe", "arm64", "arm64be", "loong64", "ppc64le", "riscv64", "s390x":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    			}
    		}
    	}
    
    	if redirect.Scheme != "" {
    		action.Redirect.SchemeRewriteSpecifier = &route.RedirectAction_SchemeRedirect{SchemeRedirect: redirect.Scheme}
    	}
    
    	if redirect.RedirectPort != nil {
    		switch rp := redirect.RedirectPort.(type) {
    		case *networking.HTTPRedirect_DerivePort:
    			if rp.DerivePort == networking.HTTPRedirect_FROM_REQUEST_PORT {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. src/os/os_test.go

    		t.Fatal(err)
    	}
    	return n
    }
    
    func equal(name1, name2 string) (r bool) {
    	switch runtime.GOOS {
    	case "windows":
    		r = strings.EqualFold(name1, name2)
    	default:
    		r = name1 == name2
    	}
    	return
    }
    
    // localTmp returns a local temporary directory not on NFS.
    func localTmp() string {
    	switch runtime.GOOS {
    	case "android", "ios", "windows":
    		return TempDir()
    	}
    	return "/tmp"
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top