Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,332 for logb (0.04 sec)

  1. src/math/logb.go

    package math
    
    // Logb returns the binary exponent of x.
    //
    // Special cases are:
    //
    //	Logb(±Inf) = +Inf
    //	Logb(0) = -Inf
    //	Logb(NaN) = NaN
    func Logb(x float64) float64 {
    	// special cases
    	switch {
    	case x == 0:
    		return Inf(-1)
    	case IsInf(x, 0):
    		return Inf(1)
    	case IsNaN(x):
    		return x
    	}
    	return float64(ilogb(x))
    }
    
    // Ilogb returns the binary exponent of x as an integer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:45 UTC 2022
    - 1021 bytes
    - Viewed (0)
  2. src/math/all_test.go

    	for i := 0; i < len(vf); i++ {
    		if f := Logb(vf[i]); logb[i] != f {
    			t.Errorf("Logb(%g) = %g, want %g", vf[i], f, logb[i])
    		}
    	}
    	for i := 0; i < len(vflogbSC); i++ {
    		if f := Logb(vflogbSC[i]); !alike(logbSC[i], f) {
    			t.Errorf("Logb(%g) = %g, want %g", vflogbSC[i], f, logbSC[i])
    		}
    	}
    	for i := 0; i < len(vffrexpBC); i++ {
    		if f := Logb(vffrexpBC[i]); !alike(logbBC[i], f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  3. pkg/log/logr.go

    // limitations under the License.
    
    package log
    
    import (
    	"fmt"
    
    	"github.com/go-logr/logr"
    )
    
    // zapLogger is a logr.Logger that uses Zap to log. This is needed to get
    // libraries, namely Kubernetes/klog, that use logr, to use our standard logging.
    // This enables standard formatting, scope filtering, and options. The logr
    // interface does not have a concept of Debug/Info/Warn/Error as we do. Instead,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pkg/routes/logs.go

    package routes
    
    import (
    	"net/http"
    	"os"
    	"path"
    
    	"github.com/emicklei/go-restful/v3"
    )
    
    // Logs adds handlers for the /logs path serving log files from /var/log.
    type Logs struct{}
    
    // Install func registers the logs handler.
    func (l Logs) Install(c *restful.Container) {
    	// use restful: ws.Route(ws.GET("/logs/{logpath:*}").To(fileHandler))
    	// See github.com/emicklei/go-restful/blob/master/examples/static/restful-serve-static.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 16:25:48 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/main/webapp/images/logo.png

    logo.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 30 11:04:53 UTC 2015
    - 2.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/sampleJavaProject/groovy/src/dist/logo.png

    logo.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/copy/kotlin/distResources/images/logo.png

    logo.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  8. cluster/log-dump/log-dump.sh

    readonly master_logfiles="kube-apiserver.log kube-apiserver-audit.log kube-scheduler.log kube-controller-manager.log cloud-controller-manager.log etcd.log etcd-events.log glbc.log cluster-autoscaler.log kube-addon-manager.log konnectivity-server.log fluentd.log kubelet.cov"
    readonly node_logfiles="kube-proxy.log containers/konnectivity-agent-*.log fluentd.log node-problem-detector.log kubelet.cov kube-network-policies.log"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. logo/logo.svg

    logo.svg...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 19:17:25 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  10. .github/logo.svg

    logo.svg...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 23 05:59:13 UTC 2019
    - 978 bytes
    - Viewed (0)
Back to top