Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for syslog (0.24 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Removed comments in json config when using kubectl edit with -o json ([#31685](https://github.com/kubernetes/kubernetes/pull/31685), [@jellonek](https://github.com/jellonek))
    * fixes invalid null selector issue in sysdig example yaml ([#31393](https://github.com/kubernetes/kubernetes/pull/31393), [@baldwinSPC](https://github.com/baldwinSPC))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top