Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 168 for syslog (0.17 sec)

  1. src/go/build/build.go

    	SFiles            []string // .s source files
    	SwigFiles         []string // .swig files
    	SwigCXXFiles      []string // .swigcxx files
    	SysoFiles         []string // .syso system object files to add to archive
    
    	// Cgo directives
    	CgoCFLAGS    []string // Cgo CFLAGS directives
    	CgoCPPFLAGS  []string // Cgo CPPFLAGS directives
    	CgoCXXFLAGS  []string // Cgo CXXFLAGS directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	SUBS:      "SUBS",
    	SUQADD:    "SUQADD",
    	SVC:       "SVC",
    	SXTB:      "SXTB",
    	SXTH:      "SXTH",
    	SXTL:      "SXTL",
    	SXTL2:     "SXTL2",
    	SXTW:      "SXTW",
    	SYS:       "SYS",
    	SYSL:      "SYSL",
    	TBL:       "TBL",
    	TBNZ:      "TBNZ",
    	TBX:       "TBX",
    	TBZ:       "TBZ",
    	TLBI:      "TLBI",
    	TRN1:      "TRN1",
    	TRN2:      "TRN2",
    	TST:       "TST",
    	UABA:      "UABA",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  3. src/runtime/os_windows.go

    	currentThread  = ^uintptr(1) // -2 = current thread
    )
    
    // in sys_windows_386.s and sys_windows_amd64.s:
    func getlasterror() uint32
    
    var timeBeginPeriodRetValue uint32
    
    // osRelaxMinNS indicates that sysmon shouldn't osRelax if the next
    // timer is less than 60 ms from now. Since osRelaxing may reduce
    // timer resolution to 15.6 ms, this keeps timer error under roughly 1
    // part in 4.
    const osRelaxMinNS = 60 * 1e6
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  4. src/runtime/time.go

    			return
    		}
    	}
    }
    
    // timeSleepUntil returns the time when the next timer should fire. Returns
    // maxWhen if there are no timers.
    // This is only called by sysmon and checkdead.
    func timeSleepUntil() int64 {
    	next := int64(maxWhen)
    
    	// Prevent allp slice changes. This is like retake.
    	lock(&allpLock)
    	for _, pp := range allp {
    		if pp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    		return curCtx, false, nil
    	}
    	state.status = go122.GoRunnable
    	state.seq = seq
    	// N.B. No context to validate. Basically anything can unblock
    	// a goroutine (e.g. sysmon).
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    func (o *ordering) advanceGoSwitch(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    		// build tools may have added. Such sections must have
    		// short names so that the suffix is not truncated.
    		if len(arhdr.name) < 16 {
    			if ext := filepath.Ext(arhdr.name); ext != ".o" && ext != ".syso" {
    				continue
    			}
    		}
    
    		pname := fmt.Sprintf("%s(%s)", lib.File, arhdr.name)
    		l = atolwhex(arhdr.size)
    		ldobj(ctxt, f, lib, l, pname, lib.File)
    	}
    }
    
    type Hostobj struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	// assistTime is the nanoseconds spent in mutator assists
    	// during this cycle. This is updated atomically, and must also
    	// be updated atomically even during a STW, because it is read
    	// by sysmon. Updates occur in bounded batches, since it is both
    	// written and read throughout the cycle.
    	assistTime atomic.Int64
    
    	// dedicatedMarkTime is the nanoseconds spent in dedicated mark workers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    					// which part of the function they are
    					// at.
    					mayBeLabeled = true
    				case "runtime.bgsweep", "runtime.bgscavenge", "runtime.forcegchelper", "runtime.gcBgMarkWorker", "runtime.runfinq", "runtime.sysmon":
    					// Runtime system goroutines or threads
    					// (such as those identified by
    					// runtime.isSystemGoroutine). These
    					// should never be labeled.
    					mustNotBeLabeled = l.Function.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. go.sum

    github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4=
    github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE=
    github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ=
    github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //		OS-native assembler (typically gcc (sic)); otherwise they
    //		will be assembled with the Go assembler.
    //	.swig, .swigcxx
    //		SWIG definition files.
    //	.syso
    //		System object files.
    //
    // Files of each of these types except .syso may contain build
    // constraints, but the go command stops scanning for build constraints
    // at the first item in the file that is not a blank line or //-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top