Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for syslog (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_TANHL                           = 0x644 // 1604
    	SYS_LOG10F                          = 0x645 // 1605
    	SYS_LOG10L                          = 0x646 // 1606
    	SYS_LOGF                            = 0x647 // 1607
    	SYS_LOGL                            = 0x648 // 1608
    	SYS_POWF                            = 0x649 // 1609
    	SYS_POWL                            = 0x64A // 1610
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/load/pkg.go

    	SwigFiles         []string `json:",omitempty"` // .swig files
    	SwigCXXFiles      []string `json:",omitempty"` // .swigcxx files
    	SysoFiles         []string `json:",omitempty"` // .syso system object files added to package
    
    	// Embedded files
    	EmbedPatterns []string `json:",omitempty"` // //go:embed patterns
    	EmbedFiles    []string `json:",omitempty"` // files matched by EmbedPatterns
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    				_, _, line, _ := runtime.Caller(0)
    				lastLine <- line
    				<-exitHandler
    			})
    
    			if !tt.mustTimeout {
    				exitHandler <- true
    			}
    
    			logBuf := new(strings.Builder)
    			srvLog := log.New(logBuf, "", 0)
    			// When expecting to timeout, we'll keep the duration short.
    			dur := 20 * time.Millisecond
    			if !tt.mustTimeout {
    				// Otherwise, make it arbitrarily long to reduce the risk of flakes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    api.stdlib.com
    
    // Storj Labs Inc. : https://storj.io/
    // Submitted by Philip Hutchins <******@****.***>
    storj.farm
    
    // Studenten Net Twente : http://www.snt.utwente.nl/
    // Submitted by Silke Hofstra <syscom@snt.utwente.nl>
    utwente.io
    
    // Student-Run Computing Facility : https://www.srcf.net/
    // Submitted by Edwin Balani <******@****.***>
    soc.srcf.net
    user.srcf.net
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top