Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for IsField (0.18 sec)

  1. src/runtime/sys_linux_loong64.s

    	MOVV	new+0(FP), R4
    	MOVV	old+8(FP), R5
    	MOVV	$SYS_sigaltstack, R11
    	SYSCALL
    	MOVW	$-4096, R5
    	BGEU	R5, R4, 2(PC)
    	MOVV	R0, 0xf1(R0)	// crash
    	RET
    
    // func osyield()
    TEXT runtime·osyield(SB),NOSPLIT|NOFRAME,$0
    	MOVV	$SYS_sched_yield, R11
    	SYSCALL
    	RET
    
    // func sched_getaffinity(pid, len uintptr, buf *uintptr) int32
    TEXT runtime·sched_getaffinity(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/runtime/os_windows.go

    	return stdcall(fn)
    }
    
    // These must run on the system stack only.
    
    //go:nosplit
    func osyield_no_g() {
    	stdcall_no_g(_SwitchToThread, 0, 0)
    }
    
    //go:nosplit
    func osyield() {
    	systemstack(func() {
    		stdcall0(_SwitchToThread)
    	})
    }
    
    //go:nosplit
    func usleep_no_g(us uint32) {
    	timeout := uintptr(us) / 1000 // ms units
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Union).Underlying", Method, 18},
    		{"(*Var).Anonymous", Method, 5},
    		{"(*Var).Embedded", Method, 11},
    		{"(*Var).Exported", Method, 5},
    		{"(*Var).Id", Method, 5},
    		{"(*Var).IsField", Method, 5},
    		{"(*Var).Name", Method, 5},
    		{"(*Var).Origin", Method, 19},
    		{"(*Var).Parent", Method, 5},
    		{"(*Var).Pkg", Method, 5},
    		{"(*Var).Pos", Method, 5},
    		{"(*Var).String", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    	//
    	// The critical section on each goroutine here is going to be quite short, so the likelihood
    	// that we observe a zero value is high.
    	for trace.exitingSyscall.Load() != 0 {
    		osyield()
    	}
    
    	// Record some initial pieces of information.
    	//
    	// N.B. This will also emit a status event for this goroutine.
    	tl := traceAcquire()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. src/runtime/syscall_windows_test.go

    			<-ch1
    			ch2 <- 1
    		}
    	}()
    	for i := 0; i < n; i++ {
    		ch1 <- 1
    		<-ch2
    	}
    }
    
    func BenchmarkOsYield(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		runtime.OsYield()
    	}
    }
    
    func BenchmarkRunningGoProgram(b *testing.B) {
    	tmpdir := b.TempDir()
    
    	src := filepath.Join(tmpdir, "main.go")
    	err := os.WriteFile(src, []byte(benchmarkRunningGoProgram), 0666)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  6. src/runtime/mgcsweep.go

    	// OK, it will be swept fairly soon.
    	for {
    		spangen := atomic.Load(&s.sweepgen)
    		if spangen == sl.sweepGen || spangen == sl.sweepGen+3 {
    			break
    		}
    		osyield()
    	}
    }
    
    // sweep frees or collects finalizers for blocks not marked in the mark phase.
    // It clears the mark bits in preparation for the next GC round.
    // Returns true if the span was returned to heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    t:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shower:before{conte...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (2)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"shark":                                "\U0001f988",
    	"shaved_ice":                           "\U0001f367",
    	"sheep":                                "\U0001f411",
    	"shell":                                "\U0001f41a",
    	"shield":                               "\U0001f6e1\ufe0f",
    	"shinto_shrine":                        "\u26e9\ufe0f",
    	"ship":                                 "\U0001f6a2",
    	"shirt":                                "\U0001f455",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    		}
    		if i == 0 {
    			nextYield = nanotime() + yieldDelay
    		}
    		if nanotime() < nextYield {
    			for x := 0; x < 10 && gp.atomicstatus.Load() != oldval; x++ {
    				procyield(1)
    			}
    		} else {
    			osyield()
    			nextYield = nanotime() + yieldDelay/2
    		}
    	}
    
    	if oldval == _Grunning {
    		// Track every gTrackingPeriod time a goroutine transitions out of running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/main/webapp/css/font-awesome.min.css

    content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
Back to top