Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 770 for inf (0.05 sec)

  1. test/cmplxdivide1.go

    	{complex(nan, inf), complex(nan, inf), complex(nan, nan)},
    	{complex(nan, inf), complex(nan, -inf), complex(nan, nan)},
    	{complex(nan, inf), complex(1, zero), complex(nan, inf)},
    	{complex(nan, inf), complex(1, -zero), complex(nan, inf)},
    	{complex(nan, inf), complex(1, 1), complex(inf, inf)},
    	{complex(nan, inf), complex(1, -1), complex(-inf, inf)},
    	{complex(nan, inf), complex(1, 2), complex(inf, inf)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 240.7K bytes
    - Viewed (0)
  2. src/math/cmplx/cmath_test.go

    		complex(inf, math.Pi)},
    	{complex(inf, 1.0),
    		complex(inf, zero)},
    	{complex(-inf, inf),
    		complex(inf, 3*math.Pi/4)},
    	{complex(inf, inf),
    		complex(inf, math.Pi/4)},
    	{complex(inf, nan),
    		complex(inf, nan)},
    	{complex(-inf, nan),
    		complex(inf, nan)},
    	{complex(nan, 1.0),
    		NaN()},
    	{complex(nan, inf),
    		complex(inf, nan)},
    	{NaN(),
    		NaN()},
    }
    var asinSC = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  3. src/math/big/floatexample_test.go

    	//   -0  +Inf   -1
    	//
    	//    0  -Inf    1
    	//    0  -1.2    1
    	//    0    -0    0
    	//    0     0    0
    	//    0   1.2   -1
    	//    0  +Inf   -1
    	//
    	//  1.2  -Inf    1
    	//  1.2  -1.2    1
    	//  1.2    -0    1
    	//  1.2     0    1
    	//  1.2   1.2    0
    	//  1.2  +Inf   -1
    	//
    	// +Inf  -Inf    1
    	// +Inf  -1.2    1
    	// +Inf    -0    1
    	// +Inf     0    1
    	// +Inf   1.2    1
    	// +Inf  +Inf    0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. .gitignore

    /target/
    /work/
    /bin/
    /mydbflute/
    /solr/data/
    /src/main/webapp/WEB-INF/classes/
    /src/main/webapp/WEB-INF/lib/
    /src/main/webapp/WEB-INF/site/
    /src/main/webapp/WEB-INF/plugin/
    /src/main/webapp/WEB-INF/env/crawler/lib/
    /src/main/webapp/WEB-INF/env/suggest/lib/
    /src/main/webapp/WEB-INF/env/thumbnail/lib/
    /src/main/webapp/WEB-INF/thumbnails/
    /src/main/webapp/jar/
    /dbflute_fess/extlib/*
    /dbflute_fess/log/*.log
    /dbflute_h2/log/*.log
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 17 01:48:33 UTC 2022
    - 983 bytes
    - Viewed (0)
  5. pkg/kube/kclient/delayed.go

    func (s *delayedClient[T]) set(inf Informer[T]) {
    	if inf != nil {
    		s.inf.Swap(&inf)
    		s.hm.Lock()
    		defer s.hm.Unlock()
    		for _, h := range s.handlers {
    			inf.AddEventHandler(h)
    		}
    		s.handlers = nil
    		if s.started != nil {
    			inf.Start(s.started)
    		}
    	}
    }
    
    type delayedFilter struct {
    	Watcher  kubetypes.CrdWatcher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 31 02:32:59 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/math/atan2.go

    //	Atan2(-0, x<=-0) = -Pi
    //	Atan2(y>0, 0) = +Pi/2
    //	Atan2(y<0, 0) = -Pi/2
    //	Atan2(+Inf, +Inf) = +Pi/4
    //	Atan2(-Inf, +Inf) = -Pi/4
    //	Atan2(+Inf, -Inf) = 3Pi/4
    //	Atan2(-Inf, -Inf) = -3Pi/4
    //	Atan2(y, +Inf) = 0
    //	Atan2(y>0, -Inf) = +Pi
    //	Atan2(y<0, -Inf) = -Pi
    //	Atan2(+Inf, x) = +Pi/2
    //	Atan2(-Inf, x) = -Pi/2
    func Atan2(y, x float64) float64 {
    	if haveArchAtan2 {
    		return archAtan2(y, x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue27718.go

    	return x + 0
    }
    
    func testAdd64() {
    	var zero float64
    	inf := 1.0 / zero
    	negZero := -1 / inf
    	if 1/add64(negZero) != inf {
    		panic("negZero+0 != posZero (64 bit)")
    	}
    }
    
    //go:noinline
    func sub64(x float64) float64 {
    	return x - 0
    }
    
    func testSub64() {
    	var zero float64
    	inf := 1.0 / zero
    	negZero := -1 / inf
    	if 1/sub64(negZero) != -inf {
    		panic("negZero-0 != negZero (64 bit)")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 28 02:29:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. src/math/all_test.go

    	{+Pi, NaN()},
    	{Inf(1), Inf(-1)},
    	{Inf(1), -Pi},
    	{Inf(1), 0},
    	{Inf(1), +Pi},
    	{Inf(1), Inf(1)},
    	{Inf(1), NaN()},
    	{NaN(), NaN()},
    }
    var atan2SC = []float64{
    	-3 * Pi / 4,     // atan2(-Inf, -Inf)
    	-Pi / 2,         // atan2(-Inf, -Pi)
    	-Pi / 2,         // atan2(-Inf, +0)
    	-Pi / 2,         // atan2(-Inf, +Pi)
    	-Pi / 4,         // atan2(-Inf, +Inf)
    	NaN(),           // atan2(-Inf, NaN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

            int start = bufferIndex;
            FileInformation inf = createFileInformation();
            if ( inf != null ) {
                bufferIndex += inf.decode(buffer, bufferIndex, getDataCount());
                this.info = inf;
            }
            return bufferIndex - start;
        }
    
    
        private FileInformation createFileInformation () {
            FileInformation inf;
            switch ( this.informationLevel ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/duplicatehost/admin_duplicatehost_details.jsp

                key="labels.duplicate_host_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="crawl"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
Back to top