Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for nmPath (0.17 sec)

  1. src/math/big/float_test.go

    		0,
    		1,
    		2,
    		12345,
    		1e10,
    		1e100,
    		3.14159265e10,
    		2.718281828e-123,
    		1.0 / 3,
    		math.MaxFloat32,
    		math.MaxFloat64,
    		math.SmallestNonzeroFloat32,
    		math.SmallestNonzeroFloat64,
    		math.Inf(-1),
    		math.Inf(0),
    		-math.Inf(1),
    	} {
    		for i := range [2]int{} {
    			if i&1 != 0 {
    				want = -want
    			}
    			var f Float
    			f.SetFloat64(want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    }
    
    var opMin = map[Op]int64{
    	OpAdd64: math.MinInt64, OpSub64: math.MinInt64,
    	OpAdd32: math.MinInt32, OpSub32: math.MinInt32,
    }
    
    var opMax = map[Op]int64{
    	OpAdd64: math.MaxInt64, OpSub64: math.MaxInt64,
    	OpAdd32: math.MaxInt32, OpSub32: math.MaxInt32,
    }
    
    var opUMax = map[Op]uint64{
    	OpAdd64: math.MaxUint64, OpSub64: math.MaxUint64,
    	OpAdd32: math.MaxUint32, OpSub32: math.MaxUint32,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    func (r *resolver) initialSelected(mPath string) (version string) {
    	v, ok := r.initialVersion[mPath]
    	if !ok {
    		return "none"
    	}
    	return v
    }
    
    // selected returns the version of the module with the given path that is
    // selected in the resolver's current build list.
    func (r *resolver) selected(mPath string) (version string) {
    	v, ok := r.buildListVersion[mPath]
    	if !ok {
    		return "none"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			obj:    objs(math.MaxInt64, math.MaxInt64, math.MaxInt32, math.MaxInt32, math.MaxInt64, math.MaxInt64),
    			schema: schemas(integerType, integerType, int32Type, int32Type, int64Type, int64Type),
    			expectCost: map[string]int64{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", fmt.Sprintf("%d", math.MaxInt64)): 11,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    		// Check the list is in dependency order.
    		tg.run("list", "-deps", "math")
    		want := "unsafe\ninternal/cpu\nmath/bits\nmath\n"
    		out := tg.stdout.String()
    		if !strings.Contains(out, "internal/cpu") {
    			// Some systems don't use internal/cpu.
    			want = "unsafe\nmath/bits\nmath\n"
    		}
    		if tg.stdout.String() != want {
    			t.Fatalf("list -deps math: wrong order\nhave %q\nwant %q", tg.stdout.String(), want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/s390x"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"io"
    	"math"
    	"math/bits"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    type deadValueChoice bool
    
    const (
    	leaveDeadValues  deadValueChoice = false
    	removeDeadValues                 = true
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    			"511852109168640000000000000000000000", // -99!
    	},
    
    	// overflow situations
    	{math.MaxInt64 - 0, math.MaxInt64, "9223372036854775807"},
    	{math.MaxInt64 - 1, math.MaxInt64, "85070591730234615838173535747377725442"},
    	{math.MaxInt64 - 2, math.MaxInt64, "784637716923335094969050127519550606919189611815754530810"},
    	{math.MaxInt64 - 3, math.MaxInt64, "7237005577332262206126809393809643289012107973151163787181513908099760521240"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resource
    
    import (
    	"encoding/json"
    	"fmt"
    	"math"
    	"math/big"
    	"math/rand"
    	"os"
    	"strings"
    	"testing"
    	"unicode"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	"github.com/spf13/pflag"
    	inf "gopkg.in/inf.v0"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm.s

    	MOVB	R0, math·Exp(SB)     // MOVB R0, math.Exp(SB)
    	MOVB	math·Exp(SB), R0     // MOVB math.Exp(SB), R0
    	MOVBS	R0, math·Exp(SB)     // MOVBS R0, math.Exp(SB)
    	MOVBS	math·Exp(SB), R0     // MOVBS math.Exp(SB), R0
    	MOVBU	R0, math·Exp(SB)     // MOVBU R0, math.Exp(SB)
    	MOVBU	math·Exp(SB), R0     // MOVBU math.Exp(SB), R0
    	MOVB	R2, R0>>28(R1)                                    // 202ec1e7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	x0 := float64NaNTo0(x)
    	y0 := float64NaNTo0(y)
    	diff := math.Abs(x0 - y0)
    	den := math.Max(math.Abs(x0), math.Abs(y0))
    	return den == 0 || diff/den < 1e-10
    }
    
    func uint64max(a, b uint64) uint64 {
    	if b > a {
    		return b
    	}
    	return a
    }
    
    func float64NaNTo0(x float64) float64 {
    	if math.IsNaN(x) {
    		return 0
    	}
    	return x
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top