Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,244 for logb (0.05 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/log.xml

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 343 bytes
    - Viewed (0)
  2. src/math/log.go

    // to produce the hexadecimal values shown.
    
    // Log returns the natural logarithm of x.
    //
    // Special cases are:
    //
    //	Log(+Inf) = +Inf
    //	Log(0) = -Inf
    //	Log(x < 0) = NaN
    //	Log(NaN) = NaN
    func Log(x float64) float64 {
    	if haveArchLog {
    		return archLog(x)
    	}
    	return log(x)
    }
    
    func log(x float64) float64 {
    	const (
    		Ln2Hi = 6.93147180369123816490e-01 /* 3fe62e42 fee00000 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. src/math/cmplx/log.go

    // In IEEE arithmetic the peak absolute error is 5.2e-16, rms
    // absolute error 1.0e-16.
    
    // Log returns the natural logarithm of x.
    func Log(x complex128) complex128 {
    	return complex(math.Log(Abs(x)), Phase(x))
    }
    
    // Log10 returns the decimal logarithm of x.
    func Log10(x complex128) complex128 {
    	z := Log(x)
    	return complex(math.Log10E*real(z), math.Log10E*imag(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/testdata/output/format_json_with_time_filter.log

    Siyi Wang <******@****.***> 1684532673 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 565 bytes
    - Viewed (0)
  5. tools/bug-report/pkg/testdata/output/format_txt_no_time_filter.log

    Siyi Wang <******@****.***> 1684532673 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    Martin Ostrowski <******@****.***> 1598993753 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. releasenotes/notes/desc-to-admin-log-scope.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
        **Added** description to `admin log`
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 08:31:29 UTC 2022
    - 186 bytes
    - Viewed (0)
  8. pkg/test/framework/components/istioctl/kube.go

    func (c *kubeComponent) InvokeOrFail(t test.Failer, args []string) (string, string) {
    	output, stderr, err := c.Invoke(args)
    	if err != nil {
    		t.Logf("Unwanted exception for 'istioctl %s': %v", strings.Join(args, " "), err)
    		t.Logf("Output:\n%v", output)
    		t.Logf("Error:\n%v", stderr)
    		t.FailNow()
    	}
    	return output, stderr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/testprog/annotations-stress.go

    	t3.End()
    	trace.Stop()
    	t2.End()
    	t0.End()
    }
    
    func do(ctx context.Context, k int) {
    	trace.Log(ctx, "log", "before do")
    
    	var t *trace.Task
    	ctx, t = trace.NewTask(ctx, "do")
    	defer t.End()
    
    	trace.Log(ctx, "log2", "do")
    
    	// Create a region and spawn more tasks and more workers.
    	trace.WithRegion(ctx, "fanout", func() {
    		for i := 0; i < k; i++ {
    			go func(i int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/Logger.java

        void log(LogLevel level, String message);
    
        /**
         * Logs the given message at the given log level.
         *
         * @param level the log level.
         * @param message the log message.
         * @param objects the log message parameters.
         */
        void log(LogLevel level, String message, Object... objects);
    
        /**
         * Logs the given message at the given log level.
         *
         * @param level the log level.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top