Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for syslog (0.17 sec)

  1. 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)
  2. src/runtime/trace.go

    	// the world and see an unpaired sweep 'end' event. Other parts of the tracer rely on this.
    	stw := stopTheWorld(stwStartTrace)
    
    	// Prevent sysmon from running any code that could generate events.
    	lock(&sched.sysmonlock)
    
    	// Grab the minimum page heap address. All Ps are stopped, so it's safe to read this since
    	// nothing can allocate heap memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/runtime/gc_test.go

    			z []string
    		})
    		hugeSink = new(struct {
    			x float64
    			y [n]uintptr
    			z []string
    		})
    	}
    }
    
    func TestPeriodicGC(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("no sysmon on wasm yet")
    	}
    
    	// Make sure we're not in the middle of a GC.
    	runtime.GC()
    
    	var ms1, ms2 runtime.MemStats
    	runtime.ReadMemStats(&ms1)
    
    	// Make periodic GC run continuously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                }
            }
    
            if (mojo instanceof Mojo) {
                Logger mojoLogger = LoggerFactory.getLogger(mojoDescriptor.getImplementation());
                ((Mojo) mojo).setLog(new MojoLogWrapper(mojoLogger));
            }
    
            if (mojo instanceof Contextualizable) {
                pluginValidationManager.reportPluginMojoValidationIssue(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	link        puintptr
    	schedtick   uint32     // incremented on every scheduler call
    	syscalltick uint32     // incremented on every system call
    	sysmontick  sysmontick // last tick observed by sysmon
    	m           muintptr   // back-link to associated m (nil if idle)
    	mcache      *mcache
    	pcache      pageCache
    	raceprocctx uintptr
    
    	deferpool    []*_defer // pool of available defer structs (see panic.go)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    	// context of just emitting this event alone. There are two cases. Either we're trying to steal
    	// the P just to get its attention (e.g. STW or sysmon retake) or we're trying to steal a P for
    	// ourselves specifically to keep running. The two contexts look different, but can be summarized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/help/helpdoc.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
    - 36.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top