Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for syslog (0.14 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

    [PARSER]
        Name        syslog-rfc5424
        Format      regex
        Regex       ^\<(?<pri>[0-9]{1,5})\>1 (?<time>[^ ]+) (?<host>[^ ]+) (?<ident>[^ ]+) (?<pid>[-0-9]+) (?<msgid>[^ ]+) (?<extradata>(\[(.*?)\]|-)) (?<message>.+)$
        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
        Time_Keep   On
    
    [PARSER]
        Name        syslog-rfc3164-local
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. go.sum

    github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU=
    github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU=
    github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4=
    github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.parallel()
    	tg.tempDir("src/syso")
    	tg.tempFile("src/syso/a.syso", ``)
    	tg.tempFile("src/syso/b.go", `package syso`)
    	tg.setenv("GOPATH", tg.path("."))
    
    	// We should see the .syso file regardless of the setting of
    	// CGO_ENABLED.
    
    	tg.setenv("CGO_ENABLED", "1")
    	tg.run("list", "-f", "{{.SysoFiles}}", "syso")
    	tg.grepStdout("a.syso", "missing syso file with CGO_ENABLED=1")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	lock mutex
    
    	// g is the goroutine the scavenger is bound to.
    	g *g
    
    	// timer is the timer used for the scavenger to sleep.
    	timer *timer
    
    	// sysmonWake signals to sysmon that it should wake the scavenger.
    	sysmonWake atomic.Uint32
    
    	// parked is whether or not the scavenger is parked.
    	parked bool
    
    	// printControllerReset instructs printScavTrace to signal that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/test/test.go

    	// "-copylocks",
    	"-directive",
    	"-errorsas",
    	// "-httpresponse",
    	"-ifaceassert",
    	// "-lostcancel",
    	// "-methods",
    	"-nilfunc",
    	"-printf",
    	// "-rangeloops",
    	// "-shift",
    	"-slog",
    	"-stringintconv",
    	// "-structtags",
    	// "-tests",
    	// "-unreachable",
    	// "-unsafeptr",
    	// "-unusedresult",
    }
    
    func runTest(ctx context.Context, cmd *base.Command, args []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top