Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,045 for switch3 (0.11 sec)

  1. tensorflow/c/eager/dlpack.cc

      switch (dtype.code) {
        case DLDataTypeCode::kDLBool:
          if (dtype.bits != 8) {
            return tensorflow::errors::InvalidArgument(
                "Only DLPack bools of bitwidth 8 are supported, got: ", dtype.bits);
          }
          *tf_dtype = TF_DataType::TF_BOOL;
          return absl::OkStatus();
    
        case DLDataTypeCode::kDLUInt:
          switch (dtype.bits) {
            case 8:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/const.go

    		conf = check.conf
    	}
    
    	sizeof := func(T Type) int64 {
    		s := conf.sizeof(T)
    		return s
    	}
    
    	switch {
    	case isInteger(typ):
    		x := constant.ToInt(x)
    		if x.Kind() != constant.Int {
    			return false
    		}
    		if rounded != nil {
    			*rounded = x
    		}
    		if x, ok := constant.Int64Val(x); ok {
    			switch typ.kind {
    			case Int:
    				var s = uint(sizeof(typ)) * 8
    				return int64(-1)<<(s-1) <= x && x <= int64(1)<<(s-1)-1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/text/template/parse/parse.go

    	for t.peekNonSpace().typ != itemEOF {
    		n := t.textOrAction()
    		switch n.Type() {
    		case nodeEnd, nodeElse:
    			return list, n
    		}
    		list.append(n)
    	}
    	t.errorf("unexpected EOF")
    	return
    }
    
    // textOrAction:
    //
    //	text | comment | action
    func (t *Tree) textOrAction() Node {
    	switch token := t.nextNonSpace(); token.typ {
    	case itemText:
    		return t.newText(token.pos, token.val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. pkg/config/schema/codegen/templates/kind.go.tmpl

    	{{- else }}
    	{{.Resource.Identifier}}
    	{{- end }}
    {{- end }}
    )
    
    func (k Kind) String() string {
    	switch k {
    {{- range .Entries }}
    	case {{.Resource.Identifier}}:
    		return "{{.Resource.Kind}}"
    {{- end }}
    	default:
    		return "Unknown"
    	}
    }
    
    func MustFromGVK(g config.GroupVersionKind) Kind {
    	switch g {
    {{- range .Entries }}
    	{{- if not (or (eq .Resource.Identifier "Address") (eq .Resource.Identifier "DNSName")) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 862 bytes
    - Viewed (0)
  5. src/net/udpsock_posix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix || js || wasip1 || windows
    
    package net
    
    import (
    	"context"
    	"net/netip"
    	"syscall"
    )
    
    func sockaddrToUDP(sa syscall.Sockaddr) Addr {
    	switch sa := sa.(type) {
    	case *syscall.SockaddrInet4:
    		return &UDPAddr{IP: sa.Addr[0:], Port: sa.Port}
    	case *syscall.SockaddrInet6:
    		return &UDPAddr{IP: sa.Addr[0:], Port: sa.Port, Zone: zoneCache.name(int(sa.ZoneId))}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/regexp/syntax/prog.go

    // at the end of the text.
    func EmptyOpContext(r1, r2 rune) EmptyOp {
    	var op EmptyOp = EmptyNoWordBoundary
    	var boundary byte
    	switch {
    	case IsWordChar(r1):
    		boundary = 1
    	case r1 == '\n':
    		op |= EmptyBeginLine
    	case r1 < 0:
    		op |= EmptyBeginText | EmptyBeginLine
    	}
    	switch {
    	case IsWordChar(r2):
    		boundary ^= 1
    	case r2 == '\n':
    		op |= EmptyEndLine
    	case r2 < 0:
    		op |= EmptyEndText | EmptyEndLine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    	nodeFilter := []ast.Node{
    		(*ast.CallExpr)(nil),
    		(*ast.StarExpr)(nil),
    		(*ast.UnaryExpr)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		switch x := n.(type) {
    		case *ast.CallExpr:
    			if len(x.Args) == 1 &&
    				hasBasicType(pass.TypesInfo, x.Fun, types.UnsafePointer) &&
    				hasBasicType(pass.TypesInfo, x.Args[0], types.Uintptr) &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/html/template/transition.go

    		c.jsCtx = nextJSCtx(s, c.jsCtx)
    		return c, len(s)
    	}
    	c.jsCtx = nextJSCtx(s[:i], c.jsCtx)
    	switch s[i] {
    	case '"':
    		c.state, c.jsCtx = stateJSDqStr, jsCtxRegexp
    	case '\'':
    		c.state, c.jsCtx = stateJSSqStr, jsCtxRegexp
    	case '`':
    		c.state, c.jsCtx = stateJSTmplLit, jsCtxRegexp
    	case '/':
    		switch {
    		case i+1 < len(s) && s[i+1] == '/':
    			c.state, i = stateJSLineCmt, i+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/strconv/ftoa.go

    	}
    
    	neg := bits>>(flt.expbits+flt.mantbits) != 0
    	exp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)
    	mant := bits & (uint64(1)<<flt.mantbits - 1)
    
    	switch exp {
    	case 1<<flt.expbits - 1:
    		// Inf, NaN
    		var s string
    		switch {
    		case mant != 0:
    			s = "NaN"
    		case neg:
    			s = "-Inf"
    		default:
    			s = "+Inf"
    		}
    		return append(dst, s...)
    
    	case 0:
    		// denormalized
    		exp++
    
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/text/template/funcs.go

    			switch {
    			case k1 == intKind && k2 == uintKind:
    				truth = arg1.Int() >= 0 && uint64(arg1.Int()) == arg.Uint()
    			case k1 == uintKind && k2 == intKind:
    				truth = arg.Int() >= 0 && arg1.Uint() == uint64(arg.Int())
    			default:
    				if arg1.IsValid() && arg.IsValid() {
    					return false, errBadComparison
    				}
    			}
    		} else {
    			switch k1 {
    			case boolKind:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top