Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for FUNC (0.11 sec)

  1. src/internal/types/testdata/spec/range.go

    type MyString string
    type MyFunc1 func(func(int) bool)
    type MyFunc2 func(int) bool
    type MyFunc3 func(MyFunc2)
    
    type T struct{}
    
    func (*T) PM() {}
    func (T) M()   {}
    
    func f1()                             {}
    func f2(func())                       {}
    func f4(func(int) bool)               {}
    func f5(func(int, string) bool)       {}
    func f7(func(int) MyBool)             {}
    func f8(func(MyInt, MyString) MyBool) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 04:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/tests/trim-functions-tf.mlir

    func.func @foo(%arg0: tensor<1x4xf32>, %arg1: tensor<1x4xf32>) -> tensor<1x4xf32> {
      func.return %arg0 : tensor<1x4xf32>
    }
    
    func.func @bar(%arg0: tensor<2x4xf32>, %arg1: tensor<2x4xf32>) -> tensor<2x4xf32> {
      func.return %arg0 : tensor<2x4xf32>
    }
    
    func.func @foobar(%arg0: tensor<1x4xf32>, %arg1: tensor<1x4xf32>) -> tensor<1x4xf32> {
      func.return %arg0 : tensor<1x4xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 565 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/data_test.go

    func (t *testInitData) KubeConfigDir() string                                { return "" }
    func (t *testInitData) KubeConfigPath() string                               { return "" }
    func (t *testInitData) ManifestDir() string                                  { return "" }
    func (t *testInitData) KubeletDir() string                                   { return "" }
    func (t *testInitData) ExternalCA() bool                                     { return false }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 2.7K 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. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/tests/get-arithmetic-count.mlir

      func.return %0 : tensor<10x10x10xf32>
    }
    
    func.func @testLogistic(%arg0: tensor<10x10xf32>) -> tensor<10x10xf32> {
      // CHECK: _arithmetic_count = 6400 : i64
      %0 = "tfl.logistic"(%arg0) : (tensor<10x10xf32>) -> tensor<10x10xf32>
      func.return %0 : tensor<10x10xf32>
    }
    
    func.func @testLogSoftmax(%arg0: tensor<10x10xf32>) -> tensor<10x10xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 14 04:58:17 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  10. 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)
Back to top