Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 168 for syslog (0.1 sec)

  1. src/runtime/testdata/testprogcgo/pprof_callback.go

    //
    // This is a regression test for issue 50936.
    
    /*
    #include <unistd.h>
    
    void goCallbackPprof();
    
    static void callGo() {
    	// Spent >20us in C so this thread is eligible for sysmon to retake its
    	// P.
    	usleep(50);
    	goCallbackPprof();
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/testdata/ignore_non_source/a.syso

    Michael Matloob <******@****.***> 1664988840 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 05 18:59:21 UTC 2022
    - 26 bytes
    - Viewed (0)
  3. src/cmd/link/testdata/pe-binutils/rsrc_386.syso

    rsrc_386.syso...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 228 bytes
    - Viewed (0)
  4. src/cmd/link/testdata/pe-llvm/rsrc_386.syso

    Jason A. Donenfeld <******@****.***> 1612393872 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 352 bytes
    - Viewed (0)
  5. src/crypto/internal/boring/syso/goboringcrypto_linux_amd64.syso

    Filippo Valsorda <******@****.***> 1706307765 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.4M bytes
    - Viewed (0)
  6. src/crypto/internal/boring/syso/goboringcrypto_linux_arm64.syso

    Filippo Valsorda <******@****.***> 1706307765 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.9M bytes
    - Viewed (0)
  7. src/runtime/race/internal/amd64v1/race_openbsd.syso

    Keith Randall <******@****.***> 1660600682 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 14:08:12 UTC 2022
    - 672.6K bytes
    - Viewed (0)
  8. src/runtime/race/race_linux_arm64.syso

    Cherry Mui <******@****.***> 1700148203 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 566.4K bytes
    - Viewed (0)
  9. src/log/slog/internal/benchmarks/handlers.go

    	case slog.KindUint64:
    		*buf = strconv.AppendUint(*buf, v.Uint64(), 10)
    	case slog.KindFloat64:
    		*buf = strconv.AppendFloat(*buf, v.Float64(), 'g', -1, 64)
    	case slog.KindBool:
    		*buf = strconv.AppendBool(*buf, v.Bool())
    	case slog.KindDuration:
    		*buf = strconv.AppendInt(*buf, v.Duration().Nanoseconds(), 10)
    	case slog.KindTime:
    		h.appendTime(buf, v.Time())
    	case slog.KindAny:
    		a := v.Any()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:33:37 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/log/slog/example_test.go

    package slog_test
    
    import (
    	"log/slog"
    	"net/http"
    	"os"
    	"time"
    )
    
    func ExampleGroup() {
    	r, _ := http.NewRequest("GET", "localhost", nil)
    	// ...
    
    	logger := slog.New(
    		slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
    			ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr {
    				if a.Key == slog.TimeKey && len(groups) == 0 {
    					return slog.Attr{}
    				}
    				return a
    			},
    		}),
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 14:56:30 UTC 2023
    - 857 bytes
    - Viewed (0)
Back to top