Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,335 for FUNC (0.09 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    func.func @invalid_island(%arg0: tensor<*xf32>, %ctl: !tf_executor.control) {
      tf_executor.graph {
        "tf_executor.island"() ({
    // expected-error@+1 {{'func.return' op invalid tf_executor.island terminator, yield expected}}
          func.return
        }) : () -> (!tf_executor.control)
      }
      func.return
    }
    
    // -----
    
    // Check that a tf_executor.yield parent is a tf_executor.island.
    func.func @parent_is_island() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/shift_test.go

    		{64, true, 8, false, func(n int64, s uint8) int64 { return n >> s }},
    		{64, false, 8, false, func(n uint64, s uint8) uint64 { return n >> s }},
    
    		{32, true, 64, true, func(n int32, s uint64) int32 { return n << s }},
    		{32, true, 64, false, func(n int32, s uint64) int32 { return n >> s }},
    		{32, false, 64, false, func(n uint32, s uint64) uint32 { return n >> s }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/runtime/os_netbsd.go

    func lwp_kill(tid int32, sig int)
    
    //go:noescape
    func getcontext(ctxt unsafe.Pointer)
    
    //go:noescape
    func lwp_create(ctxt unsafe.Pointer, flags uintptr, lwpid unsafe.Pointer) int32
    
    //go:noescape
    func lwp_park(clockid, flags int32, ts *timespec, unpark int32, hint, unparkhint unsafe.Pointer) int32
    
    //go:noescape
    func lwp_unpark(lwp int32, hint unsafe.Pointer) int32
    
    func lwp_self() int32
    
    func osyield()
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/archive/tar/format.go

    func (h *headerV7) name() []byte     { return h[000:][:100] }
    func (h *headerV7) mode() []byte     { return h[100:][:8] }
    func (h *headerV7) uid() []byte      { return h[108:][:8] }
    func (h *headerV7) gid() []byte      { return h[116:][:8] }
    func (h *headerV7) size() []byte     { return h[124:][:12] }
    func (h *headerV7) modTime() []byte  { return h[136:][:12] }
    func (h *headerV7) chksum() []byte   { return h[148:][:8] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

        }) : () -> ()
        func.return
    }
    
    // CHECK-LABEL: func @set_bound
    func.func @set_bound(%arg0: tensor<i32>) -> tensor<i32> {
      %bound = "tf.Const"() {value = dense<16> : tensor<i32>} : () -> tensor<i32>
      // CHECK: tf.XlaSetBound
      // CHECK-NOT: _xla_outside_compilation
      %bounded = "tf.XlaSetBound"(%arg0, %bound) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      func.return %bounded : tensor<i32>
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. src/go/types/builtins_test.go

    	{"new", `_ = new(int)`, `func(int) *int`},
    	{"new", `type T struct{}; _ = new(T)`, `func(p.T) *p.T`},
    
    	{"panic", `panic(0)`, `func(interface{})`},
    	{"panic", `panic("foo")`, `func(interface{})`},
    
    	{"print", `print()`, `func()`},
    	{"print", `print(0)`, `func(int)`},
    	{"print", `print(1, 2.0, "foo", true)`, `func(int, float64, string, bool)`},
    
    	{"println", `println()`, `func()`},
    	{"println", `println(0)`, `func(int)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      void ConvertTFImplements(func::FuncOp func, StringAttr attr);
      void ConvertTFImplementsWithAttributes(func::FuncOp func, FuncAttr attr);
      void ConvertTFAPIImplements(func::FuncOp func, StringAttr attr,
                                  ModuleOp module);
      void runOnOperation() override;
    };
    
    LogicalResult CheckFusableLayerNormalizedLstmCellSimple(
        func::FuncOp lstm_func) {
      for (int i = 0; i < 5; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/runtime/defer_test.go

    	}
    }
    
    func TestIssue43920(t *testing.T) {
    	var steps int
    
    	defer func() {
    		expect(t, 1, recover())
    	}()
    	defer func() {
    		defer func() {
    			defer func() {
    				expect(t, 5, recover())
    			}()
    			defer panic(5)
    			func() {
    				panic(4)
    			}()
    		}()
    		defer func() {
    			expect(t, 3, recover())
    		}()
    		defer panic(3)
    	}()
    	func() {
    		defer step(t, &steps, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/embedding_sequencing.mlir

    module {
      func.func @main() {
        %cst_main = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %0 = "tf.While"(%cst_main) {body = @while_body, cond = @while_cond, is_stateless = false} : (tensor<i32>) -> (tensor<i32>)
        return
      }
      func.func private @while_body(%arg0: tensor<i32>) -> (tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 01 21:27:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top