Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 168 for syslog (0.17 sec)

  1. src/cmd/vendor/modules.txt

    golang.org/x/tools/go/analysis/passes/nilfunc
    golang.org/x/tools/go/analysis/passes/printf
    golang.org/x/tools/go/analysis/passes/shift
    golang.org/x/tools/go/analysis/passes/sigchanyzer
    golang.org/x/tools/go/analysis/passes/slog
    golang.org/x/tools/go/analysis/passes/stdmethods
    golang.org/x/tools/go/analysis/passes/stdversion
    golang.org/x/tools/go/analysis/passes/stringintconv
    golang.org/x/tools/go/analysis/passes/structtag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/log/slog/value_test.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package slog
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    func TestKindString(t *testing.T) {
    	if got, want := KindGroup.String(), "Group"; got != want {
    		t.Errorf("got %q, want %q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/log/slog/record.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package slog
    
    import (
    	"runtime"
    	"slices"
    	"time"
    )
    
    const nAttrsInline = 5
    
    // A Record holds information about a log event.
    // Copies of a Record share state.
    // Do not modify a Record after handing out a copy to it.
    // Call [NewRecord] to create a new Record.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:30:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/log/slog/handler_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // TODO: verify that the output of Marshal{Text,JSON} is suitably escaped.
    
    package slog
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"io"
    	"path/filepath"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    )
    
    func TestDefaultHandle(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. src/runtime/mstats.go

    		// * memstats.totalAlloc == totalAlloc
    		// * memstats.totalFree == totalFree
    		//
    		// Check if that's actually true.
    		//
    		// Prevent sysmon and the tracer from skewing the stats since they can
    		// act without synchronizing with a STW. See #64401.
    		lock(&sched.sysmonlock)
    		lock(&trace.lock)
    		if gcController.heapInUse.load() != uint64(consStats.inHeap) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	case AMSR:
    		return SYSOP(0, 0, 0, 4, 0, 0, 0x1F) /* MSR (immediate) */
    
    	case AAT,
    		ADC,
    		AIC,
    		ATLBI,
    		ASYS:
    		return SYSOP(0, 1, 0, 0, 0, 0, 0)
    
    	case ASYSL:
    		return SYSOP(1, 1, 0, 0, 0, 0, 0)
    
    	case ATBZ:
    		return 0x36 << 24
    
    	case ATBNZ:
    		return 0x37 << 24
    
    	case ADSB:
    		return SYSOP(0, 0, 3, 3, 0, 4, 0x1F)
    
    	case ADMB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TimeValue", Func, 21},
    		{"Uint64", Func, 21},
    		{"Uint64Value", Func, 21},
    		{"Value", Type, 21},
    		{"Warn", Func, 21},
    		{"WarnContext", Func, 21},
    		{"With", Func, 21},
    	},
    	"log/syslog": {
    		{"(*Writer).Alert", Method, 0},
    		{"(*Writer).Close", Method, 0},
    		{"(*Writer).Crit", Method, 0},
    		{"(*Writer).Debug", Method, 0},
    		{"(*Writer).Emerg", Method, 0},
    		{"(*Writer).Err", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    var needSysmonWorkaround bool = false
    
    // haveSysmon indicates whether there is sysmon thread support.
    //
    // No threads on wasm yet, so no sysmon.
    const haveSysmon = GOARCH != "wasm"
    
    // Always runs without a P, so write barriers are not allowed.
    //
    //go:nowritebarrierrec
    func sysmon() {
    	lock(&sched.lock)
    	sched.nmsys++
    	checkdead()
    	unlock(&sched.lock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    		return "", "", err
    	}
    
    	// Gather .syso files from this package and all (transitive) dependencies.
    	var syso []string
    	seen := make(map[*Action]bool)
    	var gatherSyso func(*Action)
    	gatherSyso = func(a1 *Action) {
    		if seen[a1] {
    			return
    		}
    		seen[a1] = true
    		if p1 := a1.Package; p1 != nil {
    			syso = append(syso, mkAbsFiles(p1.Dir, p1.SysoFiles)...)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		h.Preds[i] = Edge{test, 1}
    		headerMemPhi.SetArg(i, mem0)
    
    		test.Likely = BranchUnlikely
    
    		// sched:
    		//    mem1 := call resched (mem0)
    		//    goto header
    		resched := f.fe.Syslook("goschedguarded")
    		call := sched.NewValue1A(bb.Pos, OpStaticCall, types.TypeResultMem, StaticAuxCall(resched, bb.Func.ABIDefault.ABIAnalyzeTypes(nil, nil)), mem0)
    		mem1 := sched.NewValue1I(bb.Pos, OpSelectN, types.TypeMem, 0, call)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
Back to top