Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for FUNC (0.05 sec)

  1. src/runtime/signal_openbsd_arm64.go

    func (c *sigctxt) r5() uint64  { return (uint64)(c.regs().sc_x[5]) }
    func (c *sigctxt) r6() uint64  { return (uint64)(c.regs().sc_x[6]) }
    func (c *sigctxt) r7() uint64  { return (uint64)(c.regs().sc_x[7]) }
    func (c *sigctxt) r8() uint64  { return (uint64)(c.regs().sc_x[8]) }
    func (c *sigctxt) r9() uint64  { return (uint64)(c.regs().sc_x[9]) }
    func (c *sigctxt) r10() uint64 { return (uint64)(c.regs().sc_x[10]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/rewrite_tpu_embedding_ops.mlir

      func.return
    }
    
    // CHECK-LABEL: func @no_embedding_ops
    func.func @no_embedding_ops(%arg0: tensor<2x2xf32>) -> (tensor<2x2xf32>) {
      // CHECK: tf.Add
      %0 = "tf.Add"(%arg0, %arg0) : (tensor<2x2xf32>, tensor<2x2xf32>) -> tensor<2x2xf32>
      func.return %0 : tensor<2x2xf32>
    }
    
    // CHECK-LABEL: func @nested_embedding_op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top