Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for emptyfunc (0.54 sec)

  1. src/runtime/stubs_arm.go

    func udiv()
    func _div()
    func _divu()
    func _mod()
    func _modu()
    
    // Called from assembly only; declared for go vet.
    func usplitR0()
    func load_g()
    func save_g()
    func emptyfunc()
    func _initcgo()
    func read_tls_fallback()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 689 bytes
    - Viewed (0)
  2. src/runtime/stubs_386.go

    // stackcheck checks that SP is in range [g->stack.lo, g->stack.hi).
    func stackcheck()
    
    // Called from assembly only; declared for go vet.
    func setldt(slot uintptr, base unsafe.Pointer, size uintptr)
    func emptyfunc()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 708 bytes
    - Viewed (0)
  3. src/runtime/stubs_arm64.go

    package runtime
    
    import "unsafe"
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    func emptyfunc()
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 700 bytes
    - Viewed (0)
  4. src/runtime/sys_freebsd_riscv64.s

    #define SYS_thr_self		432
    #define SYS_thr_kill		433
    #define SYS__umtx_op		454
    #define SYS_thr_new		455
    #define SYS_mmap		477
    #define SYS_cpuset_getaffinity	487
    #define SYS_pipe2 		542
    #define SYS_kevent		560
    
    TEXT emptyfunc<>(SB),0,$0-0
    	RET
    
    // func sys_umtx_op(addr *uint32, mode int32, val uint32, uaddr1 uintptr, ut *umtx_time) int32
    TEXT runtime·sys_umtx_op(SB),NOSPLIT,$0
    	MOV	addr+0(FP), A0
    	MOVW	mode+8(FP), A1
    	MOVW	val+12(FP), A2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/runtime/sys_freebsd_arm64.s

    #define SYS_thr_self		432
    #define SYS_thr_kill		433
    #define SYS__umtx_op		454
    #define SYS_thr_new		455
    #define SYS_mmap		477
    #define SYS_cpuset_getaffinity	487
    #define SYS_pipe2 		542
    #define SYS_kevent		560
    
    TEXT emptyfunc<>(SB),0,$0-0
    	RET
    
    // func sys_umtx_op(addr *uint32, mode int32, val uint32, uaddr1 uintptr, ut *umtx_time) int32
    TEXT runtime·sys_umtx_op(SB),NOSPLIT,$0
    	MOVD	addr+0(FP), R0
    	MOVW	mode+8(FP), R1
    	MOVW	val+12(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/runtime/race/testdata/mop_test.go

    	s = 3.1415
    	S = 1 + s*(sa1+s*(sa2+s*(sa3+s*(sa4+s*(sa5+s*(sa6+s*(sa7+s*sa8)))))))
    	s = S
    }
    
    // emptyFunc should not be inlined.
    func emptyFunc(x int) {
    	if false {
    		fmt.Println(x)
    	}
    }
    
    func TestRaceFuncArgument(t *testing.T) {
    	var x int
    	ch := make(chan bool, 1)
    	go func() {
    		emptyFunc(x)
    		ch <- true
    	}()
    	x = 1
    	<-ch
    }
    
    func TestRaceFuncArgument2(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// given that memory allocation may trigger GC and block the thread.
    	// Also note that emptyFunc is a placeholder, until we will be able
    	// to compute watcher.forget function (which has to happen under lock).
    	watcher := newCacheWatcher(
    		chanSize,
    		filterWithAttrsFunction(key, pred),
    		emptyFunc,
    		c.versioner,
    		deadline,
    		pred.AllowWatchBookmarks,
    		c.groupResource,
    		identifier,
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	}
    
    	deadline := time.Now().Add(time.Hour)
    	// After that, verifies the cacheWatcher.process goroutine works correctly.
    	for i := 0; i < maxRetriesToProduceTheRaceCondition; i++ {
    		w = newCacheWatcher(2, filter, emptyFunc, storage.APIObjectVersioner{}, deadline, false, schema.GroupResource{Resource: "pods"}, "")
    		w.input <- &watchCacheEvent{Object: &v1.Pod{}, ResourceVersion: uint64(i + 1)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/testdata/empty_func.mlir

    Mason Chang <******@****.***> 1697560680 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 16:43:16 UTC 2023
    - 152 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/testdata/empty_func.mlir

    Mason Chang <******@****.***> 1696344104 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 14:48:16 UTC 2023
    - 152 bytes
    - Viewed (0)
Back to top