Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of about 10,000 for FUNC (0.11 sec)

  1. src/runtime/signal_freebsd_arm64.go

    func (c *sigctxt) r5() uint64  { return c.regs().mc_gpregs.gp_x[5] }
    func (c *sigctxt) r6() uint64  { return c.regs().mc_gpregs.gp_x[6] }
    func (c *sigctxt) r7() uint64  { return c.regs().mc_gpregs.gp_x[7] }
    func (c *sigctxt) r8() uint64  { return c.regs().mc_gpregs.gp_x[8] }
    func (c *sigctxt) r9() uint64  { return c.regs().mc_gpregs.gp_x[9] }
    func (c *sigctxt) r10() uint64 { return c.regs().mc_gpregs.gp_x[10] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) t1() uint64  { return uint64(c.regs().sc_t[1]) }
    func (c *sigctxt) t2() uint64  { return uint64(c.regs().sc_t[2]) }
    func (c *sigctxt) s0() uint64  { return uint64(c.regs().sc_s[0]) }
    func (c *sigctxt) s1() uint64  { return uint64(c.regs().sc_s[1]) }
    func (c *sigctxt) a0() uint64  { return uint64(c.regs().sc_a[0]) }
    func (c *sigctxt) a1() uint64  { return uint64(c.regs().sc_a[1]) }
    func (c *sigctxt) a2() uint64  { return uint64(c.regs().sc_a[2]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_s390x.go

    //go:noescape
    func Or8(ptr *uint8, val uint8)
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    func And32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    func Or32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    func And64(ptr *uint64, val uint64) uint64
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/target.go

    }
    
    func (t *Target) IsMIPS64() bool {
    	return t.Arch.Family == sys.MIPS64
    }
    
    func (t *Target) IsLOONG64() bool {
    	return t.Arch.Family == sys.Loong64
    }
    
    func (t *Target) IsPPC64() bool {
    	return t.Arch.Family == sys.PPC64
    }
    
    func (t *Target) IsRISCV64() bool {
    	return t.Arch.Family == sys.RISCV64
    }
    
    func (t *Target) IsS390X() bool {
    	return t.Arch.Family == sys.S390X
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_gpu_cc_70.mlir

             padding = "VALID",
             strides = [1, 1, 1, 1]
           } : (tensor<1x28x28x64xf32>, tensor<3x3x64x64xf32>)
            -> tensor<1x26x26x64xf32>
    
      func.return %0 : tensor<1x26x26x64xf32>
    }
    
    // CHECK-LABEL: func @transposeConv2D_1x1_f32
    func.func @transposeConv2D_1x1_f32(%input: tensor<1x64x28x28xf32>, %filter: tensor<1x1x64x64xf32>) -> tensor<1x64x28x28xf32> {
      // 1x1 convolution can be computed as a GEMM in NHWC data format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 21 08:41:18 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/gotos.go

    func _() {
    L:
    	if false {
    	} else {
    		goto L
    	}
    }
    
    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	if true {
    	L:
    	}
    }
    
    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	if true {
    	L:
    	} else {
    	}
    }
    
    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	if true {
    	} else {
    	L:
    	}
    }
    
    func _() {
    	if false {
    	L:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops.mlir

      {
        "tf.some_call"() {callee = @f} : () -> ()
        func.return %arg0 : tensor<f32>
      }
    
      func.func private @f() attributes {
        func.return
      }
    
      // Representation for init functions
      // CHECK: func @init
      // CHECK-SAME: exported_names = ["__tf_saved_model_session_initializer"]
      func.func @init(
        %arg0: tensor<!tf_type.string> {tf_saved_model.bound_input = @asset_sym_name},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_stub.go

    }
    
    func (cm *containerManagerStub) GetMountedSubsystems() *CgroupSubsystems {
    	return &CgroupSubsystems{}
    }
    
    func (cm *containerManagerStub) GetQOSContainersInfo() QOSContainersInfo {
    	return QOSContainersInfo{}
    }
    
    func (cm *containerManagerStub) UpdateQOSCgroups() error {
    	return nil
    }
    
    func (cm *containerManagerStub) Status() Status {
    	return Status{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 02:26:59 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. test/zerodivide.go

    	ErrorTest{"float64 0/0", func() { use(f64 / g64) }, ""},
    
    	ErrorTest{"float64 1/0", func() { use(h / g) }, ""},
    	ErrorTest{"float32 1/0", func() { use(h32 / g32) }, ""},
    	ErrorTest{"float64 1/0", func() { use(h64 / g64) }, ""},
    	ErrorTest{"float64 inf/0", func() { use(inf / g64) }, ""},
    	ErrorTest{"float64 -inf/0", func() { use(negInf / g64) }, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top