Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for FUNC (0.05 sec)

  1. src/internal/types/testdata/check/stmt1.go

    // terminating statements
    
    package stmt1
    
    func _() {}
    
    func _() int {} /* ERROR "missing return" */
    
    func _() int { panic(0) }
    func _() int { (panic(0)) }
    
    // block statements
    func _(x, y int) (z int) {
    	{
    		return
    	}
    }
    
    func _(x, y int) (z int) {
    	{
    		return; ; ; // trailing empty statements are ok
    	}
    	; ; ;
    }
    
    func _(x, y int) (z int) {
    	{
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    func (*TypeAssertExpr) exprNode() {}
    func (*CallExpr) exprNode()       {}
    func (*StarExpr) exprNode()       {}
    func (*UnaryExpr) exprNode()      {}
    func (*BinaryExpr) exprNode()     {}
    func (*KeyValueExpr) exprNode()   {}
    
    func (*ArrayType) exprNode()     {}
    func (*StructType) exprNode()    {}
    func (*FuncType) exprNode()      {}
    func (*InterfaceType) exprNode() {}
    func (*MapType) exprNode()       {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. src/math/stubs.go

    func archCos(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCosh = false
    
    func archCosh(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchErf = false
    
    func archErf(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchErfc = false
    
    func archErfc(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchExpm1 = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_amd64.go

    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_bind_trampoline()
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_arm64.go

    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_bind_trampoline()
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_ppc64.go

    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_bind_trampoline()
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_quantized_functions_weight_only.mlir

    // Empty module
    module {
      func.func @simple_fn(%arg0: tensor<*xf32>) -> tensor<*xf32> {
        func.return %arg0 : tensor<*xf32>
      }
    }
    
    // CHECK-NOT: func private @internal_dequantize_f32
    // CHECK-NOT: func private @internal_conv3d_fn
    // CHECK-NOT: func private @internal_batch_matmul_fn
    // CHECK-NOT: func private @internal_depthwise_conv2d_fn
    // CHECK-NOT: func private @internal_matmul_fn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 16 03:34:36 UTC 2023
    - 843 bytes
    - Viewed (0)
  8. src/runtime/os_dragonfly.go

    func raiseproc(sig uint32)
    
    func lwp_gettid() int32
    func lwp_kill(pid, tid int32, sig int)
    
    //go:noescape
    func sys_umtx_sleep(addr *uint32, val, timeout int32) int32
    
    //go:noescape
    func sys_umtx_wakeup(addr *uint32, val int32) int32
    
    func osyield()
    
    //go:nosplit
    func osyield_no_g() {
    	osyield()
    }
    
    func kqueue() int32
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. src/runtime/testdata/testexithooks/testexithooks.go

    	exithook.Add(exithook.Hook{F: f1})
    	exithook.Add(exithook.Hook{F: f2})
    	// no explicit call to os.Exit
    }
    
    func testGoodExit() {
    	f1 := func() { println("apple") }
    	f2 := func() { println("orange") }
    	exithook.Add(exithook.Hook{F: f1})
    	exithook.Add(exithook.Hook{F: f2})
    	// explicit call to os.Exit
    	os.Exit(0)
    }
    
    func testBadExit() {
    	f1 := func() { println("blog") }
    	f2 := func() { println("blix") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/runtime/mfinal_test.go

    		{func(x *int) any { return Tintptr(x) }, func(v Tintptr) { finalize(v) }},
    		{func(x *int) any { return Tintptr(x) }, func(v *int) { finalize(v) }},
    		{func(x *int) any { return (*Tint)(x) }, func(v *Tint) { finalize((*int)(v)) }},
    		{func(x *int) any { return (*Tint)(x) }, func(v Tinter) { finalize((*int)(v.(*Tint))) }},
    		// Test case for argument spill slot.
    		// If the spill slot was not counted for the frame size, it will (incorrectly) choose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top