Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for gretbool (0.16 sec)

  1. src/encoding/json/decode.go

    			} else {
    				d.saveError(&UnmarshalTypeError{Value: "bool", Type: v.Type(), Offset: int64(d.readIndex())})
    			}
    		case reflect.Bool:
    			v.SetBool(value)
    		case reflect.Interface:
    			if v.NumMethod() == 0 {
    				v.Set(reflect.ValueOf(value))
    			} else {
    				d.saveError(&UnmarshalTypeError{Value: "bool", Type: v.Type(), Offset: int64(d.readIndex())})
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. src/fmt/scan.go

    		ptr := val
    		if ptr.Kind() != reflect.Pointer {
    			s.errorString("type not a pointer: " + val.Type().String())
    			return
    		}
    		switch v := ptr.Elem(); v.Kind() {
    		case reflect.Bool:
    			v.SetBool(s.scanBool(verb))
    		case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    			v.SetInt(s.scanInt(verb, v.Type().Bits()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		} else {
    			typedmemmove(v.typ(), v.ptr, x.ptr)
    		}
    	} else {
    		*(*unsafe.Pointer)(v.ptr) = x.ptr
    	}
    }
    
    // SetBool sets v's underlying value.
    // It panics if v's Kind is not [Bool] or if [Value.CanSet] returns false.
    func (v Value) SetBool(x bool) {
    	v.mustBeAssignable()
    	v.mustBe(Bool)
    	*(*bool)(v.ptr) = x
    }
    
    // SetBytes sets v's underlying value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/text/template/exec.go

    	panic("not reached")
    }
    
    func (s *state) evalBool(typ reflect.Type, n parse.Node) reflect.Value {
    	s.at(n)
    	if n, ok := n.(*parse.BoolNode); ok {
    		value := reflect.New(typ).Elem()
    		value.SetBool(n.True)
    		return value
    	}
    	s.errorf("expected bool; found %s", n)
    	panic("not reached")
    }
    
    func (s *state) evalString(typ reflect.Type, n parse.Node) reflect.Value {
    	s.at(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            public void setPrimitive(int primitive) {
                this.primitive = primitive;
            }
    
            public boolean isBool() {
                return bool;
            }
    
            public void setBool(boolean bool) {
                this.bool = bool;
            }
    
            public final String getFinalGetter() {
                return finalGetter;
            }
    
            public void setFinalGetter(String value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  6. src/encoding/gob/decode.go

    		}
    		v = v.Elem()
    	}
    	return v
    }
    
    // decBool decodes a uint and stores it as a boolean in value.
    func decBool(i *decInstr, state *decoderState, value reflect.Value) {
    	value.SetBool(state.decodeUint() != 0)
    }
    
    // decInt8 decodes an integer and stores it as an int8 in value.
    func decInt8(i *decInstr, state *decoderState, value reflect.Value) {
    	v := state.decodeInt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	shouldPanic("value of type string is not assignable to type bool", func() { vo(new(bool)).Elem().Set(vo("")) })
    	shouldPanic("call of reflect.Value.SetBool on string Value", func() { vo(new(string)).Elem().SetBool(false) })
    	shouldPanic("reflect.Value.SetBytes using unaddressable value", func() { vo("").SetBytes(nil) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Value).OverflowUint", Method, 0},
    		{"(Value).Pointer", Method, 0},
    		{"(Value).Recv", Method, 0},
    		{"(Value).Send", Method, 0},
    		{"(Value).Set", Method, 0},
    		{"(Value).SetBool", Method, 0},
    		{"(Value).SetBytes", Method, 0},
    		{"(Value).SetCap", Method, 2},
    		{"(Value).SetComplex", Method, 0},
    		{"(Value).SetFloat", Method, 0},
    		{"(Value).SetInt", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg reflect, method (Value) Pointer() uintptr
    pkg reflect, method (Value) Recv() (Value, bool)
    pkg reflect, method (Value) Send(Value)
    pkg reflect, method (Value) Set(Value)
    pkg reflect, method (Value) SetBool(bool)
    pkg reflect, method (Value) SetBytes([]uint8)
    pkg reflect, method (Value) SetComplex(complex128)
    pkg reflect, method (Value) SetFloat(float64)
    pkg reflect, method (Value) SetInt(int64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top