Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,082 for realm (0.22 sec)

  1. src/cmd/compile/internal/test/truncconst_test.go

    	const r53 = complex(1+1.0/(1<<53), 0)
    
    	if got := real(r52 - 1); got != f52want {
    		t.Errorf("real(r52-1) = %g, want %g", got, f52want)
    	}
    	if got := real(complex128(r52) - 1); got != f52want {
    		t.Errorf("real(complex128(r52)-1) = %g, want %g", got, f52want)
    	}
    	if got := real(r53 - 1); got != f53want {
    		t.Errorf("real(r53-1) = %g, want %g", got, f53want)
    	}
    	if got := real(complex128(r53) - 1); got != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/math/cmplx/asin.go

    	}
    	ct := complex(-imag(x), real(x)) // i * x
    	xx := x * x
    	x1 := complex(1-real(xx), -imag(xx)) // 1 - x*x
    	x2 := Sqrt(x1)                       // x2 = sqrt(1 - x*x)
    	w := Log(ct + x2)
    	return complex(imag(w), -real(w)) // -i * w
    }
    
    // Asinh returns the inverse hyperbolic sine of x.
    func Asinh(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case im == 0 && math.Abs(re) <= 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  3. test/ken/cplx2.go

    	ce := cd * c6
    	if ce != Ce {
    		println("opcode x", ce, Ce)
    		panic("fail")
    	}
    	
    	r32 := real(complex64(ce))
    	if r32 != float32(real(Ce)) {
    		println("real(complex64(ce))", r32, real(Ce))
    		panic("fail")
    	}
    	
    	r64 := real(complex128(ce))
    	if r64 != real(Ce) {
    		println("real(complex128(ce))", r64, real(Ce))
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.9K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    ranzan.saitama.jp rar.ve ras.ru rauma.no ravendb.cloud ravendb.community ravendb.me ravendb.run ravenna.it ravpage.co.il rawa-maz.pl rc.it rdv.to re re.it re.kr read read-books.org readmyblog.org readthedocs.io readymade.jp realestate realestate.pl realm.cz realtor realty rebun.hokkaido.jp rec.br rec.co rec.nf rec.ro rec.ve recht.pro recife.br recipes recreation.aero red red.sv redirectme.net redstone redumbrella reg.dk reggio-calabria.it reggio-emilia.it reggiocalabria.it reggioemilia.it rehab reise...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/images/images_test.go

    			cfg: &kubeadmapi.ClusterConfiguration{
    				ImageRepository: "real.repo",
    			},
    			expectedImages: []string{
    				"real.repo/kube-apiserver:",
    				"real.repo/kube-controller-manager:",
    				"real.repo/kube-scheduler:",
    				"real.repo/kube-proxy:",
    				"real.repo/coredns:" + constants.CoreDNSVersion,
    				"real.repo/pause:" + constants.PauseVersion,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. test/fixedbugs/issue4252.dir/main.go

    package main
    
    import "./a"
    
    func main() {
    	if a.InlinedFakeTrue() {
    		panic("returned true was the real one")
    	}
    	if !a.InlinedFakeFalse() {
    		panic("returned false was the real one")
    	}
    	if a.InlinedFakeNil() == nil {
    		panic("returned nil was the real one")
    	}
    	a.Test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 435 bytes
    - Viewed (0)
  7. test/fixedbugs/bug491.go

    		if len(a) != 1 || len(c) != 3 {
    			bug()
    			println("make call not ordered:", len(a), b, len(c))
    		}
    	}
    
    	// real
    	{
    		x := 1 + 0i
    		f := func() int { x = 3; return 2 }
    		a, b, c := real(x), f(), real(x)
    		if a != 1 || c != 3 {
    			bug()
    			println("real call not ordered:", a, b, c)
    		}
    	}
    }
    
    var bugged = false
    
    func bug() {
    	if !bugged {
    		println("BUG")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/graceful_termination.go

    )
    
    const (
    	rsCheckDeleteInterval = 1 * time.Minute
    )
    
    // listItem stores real server information and the process time.
    // If nothing special happened, real server will be delete after process time.
    type listItem struct {
    	VirtualServer *utilipvs.VirtualServer
    	RealServer    *utilipvs.RealServer
    }
    
    // String return the unique real server name(with virtual server information)
    func (g *listItem) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. test/cmplxdivide.go

    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    func calike(a, b complex128) bool {
    	if imag(a) != imag(b) && !(math.IsNaN(imag(a)) && math.IsNaN(imag(b))) {
    		return false
    	}
    
    	if real(a) != real(b) && !(math.IsNaN(real(a)) && math.IsNaN(real(b))) {
    		return false
    	}
    
    	return true
    }
    
    func main() {
    	bad := false
    	for _, t := range tests {
    		x := t.f / t.g
    		if !calike(x, t.out) {
    			if !bad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 868 bytes
    - Viewed (0)
  10. src/math/cmplx/isnan.go

    // license that can be found in the LICENSE file.
    
    package cmplx
    
    import "math"
    
    // IsNaN reports whether either real(x) or imag(x) is NaN
    // and neither is an infinity.
    func IsNaN(x complex128) bool {
    	switch {
    	case math.IsInf(real(x), 0) || math.IsInf(imag(x), 0):
    		return false
    	case math.IsNaN(real(x)) || math.IsNaN(imag(x)):
    		return true
    	}
    	return false
    }
    
    // NaN returns a complex “not-a-number” value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 598 bytes
    - Viewed (0)
Back to top