Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for biglen (0.13 sec)

  1. src/math/big/ratconv_test.go

    			// float64 become -0, but Rat obviously cannot
    			// preserve the sign from SetString("-0").
    			switch {
    			case math.Float32bits(e) == math.Float32bits(f):
    				// Ok: bitwise equal.
    			case f == 0 && r.Num().BitLen() == 0:
    				// Ok: Rat(0) is equivalent to both +/- float64(0).
    			default:
    				t.Errorf("strconv.ParseFloat(%q) = %g (%b), want %g (%b); delta = %g", input, e, e, f, f, f-e)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/magic.go

    func umagic(n uint, c int64) umagicData {
    	// Convert from ConstX auxint values to the real uint64 constant they represent.
    	d := uint64(c) << (64 - n) >> (64 - n)
    
    	C := new(big.Int).SetUint64(d)
    	s := C.BitLen()
    	M := big.NewInt(1)
    	M.Lsh(M, n+uint(s))     // 2^(n+s)
    	M.Add(M, C)             // 2^(n+s)+c
    	M.Sub(M, big.NewInt(1)) // 2^(n+s)+c-1
    	M.Div(M, C)             // ⎡2^(n+s)/c⎤
    	if M.Bit(int(n)) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/go/constant/value.go

    		return makeRat(x)
    	case *big.Float:
    		return makeFloat(x)
    	default:
    		return unknownVal{}
    	}
    }
    
    // BitLen returns the number of bits required to represent
    // the absolute value x in binary representation; x must be an [Int] or an [Unknown].
    // If x is [Unknown], the result is 0.
    func BitLen(x Value) int {
    	switch x := x.(type) {
    	case int64Val:
    		u := uint64(x)
    		if x < 0 {
    			u = uint64(-x)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    			pod:         testPod5,
    			expectedCPU: 5,
    		},
    		{
    			name:        "TestCase06: The number of CPUs requested By app is bigger than the number of CPUs requested by init",
    			pod:         testPod6,
    			expectedCPU: 5,
    		},
    		{
    			name:        "TestCase07: The number of CPUs requested By init is bigger than the number of CPUs requested by app",
    			pod:         testPod7,
    			expectedCPU: 5,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. test/64bit.go

    			var div, mod Int64
    			dodiv := false
    			var zero Int64
    			if b.Cmp(zero) != 0 {	// b != 0
    				// Can't divide by zero but also can't divide -0x8000...000 by -1.
    				var bigneg = Int64{-0x80000000, 0}
    				var minus1 = Int64{-1, ^uint32(0)}
    				if a.Cmp(bigneg) != 0 || b.Cmp(minus1) != 0 {	// a != -1<<63 || b != -1
    					div, mod = a.DivMod(b)
    					dodiv = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                    /*
                     * This is purely for backward-compat with 2.x where <extensions> consisting of a single artifact where
                     * loaded into the core and hence available to plugins, in contrast to bigger extensions that were
                     * loaded into a dedicated realm which is invisible to plugins (MNG-2749).
                     */
                    publicArtifacts.addAll(artifacts);
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    			// invert and subtract 1. If the most-significant-bit isn't set then
    			// we'll need to pad the beginning with 0xff in order to keep the number
    			// negative.
    			nMinus1 := new(big.Int).Neg(n)
    			nMinus1.Sub(nMinus1, bigOne)
    			bytes := nMinus1.Bytes()
    			for i := range bytes {
    				bytes[i] ^= 0xff
    			}
    			if len(bytes) == 0 || bytes[0]&0x80 == 0 {
    				c.add(0xff)
    			}
    			c.add(bytes...)
    		} else if n.Sign() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/settings.md

    # Einstellungen und Umgebungsvariablen
    
    In vielen Fällen benötigt Ihre Anwendung möglicherweise einige externe Einstellungen oder Konfigurationen, zum Beispiel geheime Schlüssel, Datenbank-Anmeldeinformationen, Anmeldeinformationen für E-Mail-Dienste, usw.
    
    Die meisten dieser Einstellungen sind variabel (können sich ändern), wie z. B. Datenbank-URLs. Und vieles könnten schützenswerte, geheime Daten sein.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/decompose.go

    				f.NamedValues[*dataName] = append(f.NamedValues[*dataName], v.Args[1])
    				toDelete = append(toDelete, namedVal{i, j})
    			}
    		case t.IsFloat():
    			// floats are never decomposed, even ones bigger than RegSize
    		case t.Size() > f.Config.RegSize:
    			f.Fatalf("undecomposed named type %s %v", name, t)
    		}
    	}
    
    	deleteNamedVals(f, toDelete)
    	f.Names = append(f.Names, newNames...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/rulegen.go

    			f := f.(*Func)
    			fmt.Fprintf(w, "func rewrite%s%s%s%s(", f.Kind, n.Arch.name, n.Suffix, f.Suffix)
    			fmt.Fprintf(w, "%c *%s) bool {\n", strings.ToLower(f.Kind)[0], f.Kind)
    			if f.Kind == "Value" && f.ArgLen > 0 {
    				for i := f.ArgLen - 1; i >= 0; i-- {
    					fmt.Fprintf(w, "v_%d := v.Args[%d]\n", i, i)
    				}
    			}
    			for _, n := range f.List {
    				fprint(w, n)
    
    				if rr, ok := n.(*RuleRewrite); ok {
    					k := [3]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top