Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for typexpr (0.83 sec)

  1. src/database/sql/convert.go

    	case reflect.Bool:
    		return strconv.AppendBool(buf, rv.Bool()), true
    	case reflect.String:
    		s := rv.String()
    		return append(buf, s...), true
    	}
    	return
    }
    
    var valuerReflectType = reflect.TypeFor[driver.Valuer]()
    
    // callValuerValue returns vr.Value(), with one exception:
    // If vr.Value is an auto-generated method on a pointer type and the
    // pointer is nil, it would panic at runtime in the panicwrap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                      ... }  ->  true if the value of label X is not one of \"a\", \"b\",
                      \"c\" \thas(label_name)  -> True if that label is present \t! expr
                      -> negation of expr \texpr && expr  -> Short-circuit and \texpr
                      || expr  -> Short-circuit or \t( expr ) -> parens for grouping \tall()
                      or the empty selector -> matches all endpoints. \n Label names are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    	f = newTypeEncoder(t, true)
    	wg.Done()
    	encoderCache.Store(t, f)
    	return f
    }
    
    var (
    	marshalerType     = reflect.TypeFor[Marshaler]()
    	textMarshalerType = reflect.TypeFor[encoding.TextMarshaler]()
    )
    
    // newTypeEncoder constructs an encoderFunc for a type.
    // The returned encoder only checks CanAddr when allowAddr is true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/net/rpc/server.go

    	"sync"
    )
    
    const (
    	// Defaults used by HandleHTTP
    	DefaultRPCPath   = "/_goRPC_"
    	DefaultDebugPath = "/debug/rpc"
    )
    
    // Precompute the reflect type for error.
    var typeOfError = reflect.TypeFor[error]()
    
    type methodType struct {
    	sync.Mutex // protects counters
    	method     reflect.Method
    	ArgType    reflect.Type
    	ReplyType  reflect.Type
    	numCalls   uint
    }
    
    type service struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/encoding/gob/gobencdec_test.go

    	oldNestingDepth := maxIgnoreNestingDepth
    	maxIgnoreNestingDepth = 100
    	defer func() { maxIgnoreNestingDepth = oldNestingDepth }()
    	b := new(bytes.Buffer)
    	enc := NewEncoder(b)
    	typ := reflect.TypeFor[int]()
    	nested := reflect.ArrayOf(1, typ)
    	for i := 0; i < 100; i++ {
    		nested = reflect.ArrayOf(1, nested)
    	}
    	badStruct := reflect.New(reflect.StructOf([]reflect.StructField{{Name: "F", Type: nested}}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	if ovf := TypeFor[float32]().OverflowFloat(ovfFloat32); !ovf {
    		t.Errorf("%v should overflow float32", ovfFloat32)
    	}
    	if ovf := TypeFor[float32]().OverflowFloat(-ovfFloat32); !ovf {
    		t.Errorf("%v should overflow float32", -ovfFloat32)
    	}
    
    	maxInt32 := int64(0x7fffffff)
    	if ovf := TypeFor[int32]().OverflowInt(maxInt32); ovf {
    		t.Errorf("%v wrongly overflows int32", maxInt32)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    // of the max int boundary.
    // We do it this way so the test doesn't depend on ints being 32 bits.
    var (
    	bigInt  = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeFor[int]().Bits()-1)-1))
    	bigUint = fmt.Sprintf("0x%x", uint(1<<uint(reflect.TypeFor[int]().Bits()-1)))
    )
    
    var execTests = []execTest{
    	// Trivial cases.
    	{"empty", "", "", nil, true},
    	{"text", "some text", "some text", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    // of the max int boundary.
    // We do it this way so the test doesn't depend on ints being 32 bits.
    var (
    	bigInt  = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeFor[int]().Bits()-1)-1))
    	bigUint = fmt.Sprintf("0x%x", uint(1<<uint(reflect.TypeFor[int]().Bits()-1)))
    )
    
    var execTests = []execTest{
    	// Trivial cases.
    	{"empty", "", "", nil, true},
    	{"text", "some text", "some text", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    			fn(i, "", r.Type)
    			i++
    		} else {
    			for _, n := range r.Names {
    				fn(i, n.Name, r.Type)
    				i++
    			}
    		}
    	}
    }
    
    func c(repr string, args ...interface{}) *TypeRepr {
    	return &TypeRepr{repr, args}
    }
    
    // Map predeclared Go types to Type.
    var goTypes = map[string]*Type{
    	"bool":       {Size: 1, Align: 1, C: c("GoUint8")},
    	"byte":       {Size: 1, Align: 1, C: c("GoUint8")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest-generate_test.go

    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			return fmt.Errorf("next: %v", err)
    		}
    
    		dest := filepath.Join(destination, header.Name)
    		switch header.Typeflag {
    		case tar.TypeDir:
    			if _, err := os.Stat(dest); err != nil {
    				if err := os.Mkdir(dest, 0o755); err != nil {
    					return fmt.Errorf("mkdir: %v", err)
    				}
    			}
    		case tar.TypeReg:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top