Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 8,475 for FUNC (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tfrt/tests/ifrt/tf_identity_propagation.mlir

    // CHECK-LABEL: func @identity
    // CHECK-SAME:    (%[[ARG0:.*]]: tensor<i32>)
    func.func @identity(%arg0: tensor<i32>) -> tensor<i32> {
      // CHECK-NOT: "tf.Identity"
      %0 = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
      // CHECK: return %[[ARG0]]
      func.return %0 : tensor<i32>
    }
    
    // CHECK-LABEL: func @identity_terminator
    // CHECK-SAME:    (%[[ARG0:.*]]: tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Mar 23 23:34:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/convert_launch_func_to_tf_call.mlir

          %3 = "tf_device.launch_func"(%2) {device = "/device:test_device:0", func = @_func} : (tensor<?xf32>) -> tensor<?xf32>
    
          // CHECK: tf_executor.yield %[[CALL_OUTPUT]]
          tf_executor.yield %3 : tensor<?xf32>
        }
        tf_executor.fetch %1#0 : tensor<?xf32>
      }
      func.return %0 : tensor<?xf32>
    }
    
    func.func @_func(%arg0: tensor<?xf32>) -> tensor<?xf32> {
      func.return %arg0 : tensor<?xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/syscall/syscall_js.go

    type WaitStatus uint32
    
    func (w WaitStatus) Exited() bool       { return false }
    func (w WaitStatus) ExitStatus() int    { return 0 }
    func (w WaitStatus) Signaled() bool     { return false }
    func (w WaitStatus) Signal() Signal     { return 0 }
    func (w WaitStatus) CoreDump() bool     { return false }
    func (w WaitStatus) Stopped() bool      { return false }
    func (w WaitStatus) Continued() bool    { return false }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top