Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 584 for setString (0.29 sec)

  1. src/crypto/rsa/pss_test.go

    		t.Fatal(err)
    	}
    	err = VerifyPSS(&key.PublicKey, crypto.SHA256, digest[:], signature, nil)
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    func bigFromHex(hex string) *big.Int {
    	n, ok := new(big.Int).SetString(hex, 16)
    	if !ok {
    		panic("bad hex: " + hex)
    	}
    	return n
    }
    
    func intFromHex(hex string) int {
    	i, err := strconv.ParseInt(hex, 16, 32)
    	if err != nil {
    		panic(err)
    	}
    	return int(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    				if err := d.literalStore(item, kv, true); err != nil {
    					return err
    				}
    				kv = kv.Elem()
    			} else {
    				switch kt.Kind() {
    				case reflect.String:
    					kv = reflect.New(kt).Elem()
    					kv.SetString(string(key))
    				case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    					s := string(key)
    					n, err := strconv.ParseInt(s, 10, 64)
    					if err != nil || kt.OverflowInt(n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    					}
    				}
    				return Quantity{i: int64Amount{value: result, scale: Scale(scale)}, Format: format}, nil
    			}
    		}
    	}
    
    	amount := new(inf.Dec)
    	if _, ok := amount.SetString(value); !ok {
    		return Quantity{}, ErrNumeric
    	}
    
    	// So that no one but us has to think about suffixes, remove it.
    	if base == 10 {
    		amount.SetScale(amount.Scale() + Scale(exponent).infScale())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. src/math/big/float_test.go

    		"0",
    		"1",
    		"-1",
    		"1234567890",
    		"123456789012345678901234567890",
    		"123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890",
    	} {
    		var x Int
    		_, ok := x.SetString(want, 0)
    		if !ok {
    			t.Errorf("invalid integer %s", want)
    			continue
    		}
    		n := x.BitLen()
    
    		var f Float
    		f.SetInt(&x)
    
    		// check precision
    		if n < 64 {
    			n = 64
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	}
    }
    
    func bigFromString(s string) *big.Int {
    	ret := new(big.Int)
    	ret.SetString(s, 10)
    	return ret
    }
    
    func fromBase10(base10 string) *big.Int {
    	i := new(big.Int)
    	i.SetString(base10, 10)
    	return i
    }
    
    func bigFromHexString(s string) *big.Int {
    	ret := new(big.Int)
    	ret.SetString(s, 16)
    	return ret
    }
    
    var rsaPrivateKey = &rsa.PrivateKey{
    	PublicKey: rsa.PublicKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/text/template/exec.go

    	panic("not reached")
    }
    
    func (s *state) evalString(typ reflect.Type, n parse.Node) reflect.Value {
    	s.at(n)
    	if n, ok := n.(*parse.StringNode); ok {
    		value := reflect.New(typ).Elem()
    		value.SetString(n.Text)
    		return value
    	}
    	s.errorf("expected string; found %s", n)
    	panic("not reached")
    }
    
    func (s *state) evalInteger(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)
  7. src/reflect/value.go

    func (v Value) SetPointer(x unsafe.Pointer) {
    	v.mustBeAssignable()
    	v.mustBe(UnsafePointer)
    	*(*unsafe.Pointer)(v.ptr) = x
    }
    
    // SetString sets v's underlying value to x.
    // It panics if v's Kind is not [String] or if [Value.CanSet] returns false.
    func (v Value) SetString(x string) {
    	v.mustBeAssignable()
    	v.mustBe(String)
    	*(*string)(v.ptr) = x
    }
    
    // Slice returns v[i:j].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	shouldPanic("call of reflect.Value.SetLen on string Value", func() { vo(new(string)).Elem().SetLen(0) })
    	shouldPanic("call of reflect.Value.SetString on int Value", func() { vo(new(int)).Elem().SetString("") })
    	shouldPanic("reflect.Value.SetUint using unaddressable value", func() { vo(0.0).SetUint(0) })
    	shouldPanic("call of reflect.Value.Slice on bool Value", func() { vo(true).Slice(1, 2) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    		LabelKey:           viper.GetString(constants.RepairLabelKey),
    		LabelValue:         viper.GetString(constants.RepairLabelValue),
    		NodeName:           viper.GetString(constants.RepairNodeName),
    		SidecarAnnotation:  viper.GetString(constants.RepairSidecarAnnotation),
    		InitContainerName:  viper.GetString(constants.RepairInitContainerName),
    		InitTerminationMsg: viper.GetString(constants.RepairInitTerminationMsg),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. doc/godebug.md

    The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.
    There are no runtime metrics for this change,
    This setting may be removed in a future release, Go 1.27 at the earliest.
    
    Go 1.23 changed the mode bits reported by [`os.Lstat`](/pkg/os#Lstat) and [`os.Stat`](/pkg/os#Stat)
    for reparse points, which can be controlled with the `winsymlink` setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top