Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,244 for logb (0.17 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .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)
  8. src/main/webapp/images/logo-head.png

    logo-head.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 30 11:04:53 UTC 2015
    - 907 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/kotlin/images/gradle-logo.svg

    gradle-logo.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 990 bytes
    - Viewed (0)
  10. docs/en/docs/img/logo-teal.svg

    logo-teal.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top