Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ch4 (0.02 sec)

  1. src/internal/types/testdata/fixedbugs/issue51229.go

    	ch2[myChan]()
    
    	// P can be inferred as there's a single specific type and no tilde.
    	var e int
    	ch3(e)
    
    	// P cannot be inferred as there's more than one specific type and a tilde.
    	ch4 /* ERROR "cannot infer P" */ (e)
    	_ = ch4[chan int]
    
    	// P cannot be inferred as there's more than one specific type.
    	ch5 /* ERROR "cannot infer P" */ ()
    	ch5[chan<- int]()
    }
    
    // test case from issue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/async_op_thread.mlir

             "tf.TestAsyncTfrtAsyncThread"() {T = i32} num_args(1)
      %ch3 = tfrt_fallback_async.createop(%ch2) key(2) device("/CPU:0")
             "tf.TestPrintThreadName"() num_args(0)
    
      %ch4, %0 = tfrt_fallback_async.executeop.seq(%ch3) key(0) cost(100)
                 device("/CPU:0") "tf.Const"()
                 { dtype = i32, value = dense<[2]> : tensor<1xi32> } : 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. test/typeparam/issue48191.go

    	}(G2(672.5), int32(35)) < m3[<-m5[func(int64, int64) G1 {
    		return i8_1
    	}(*pi64_0, int64(50))]][15&i1^i2^i2].m0[G2(895.3)] || (func(int64, uint) uint {
    		return uint(94)
    	}(int64(30), uint(95))&^<-ch2^<-ch4)&<-ch2^<-ch4 == <-ch2 {
    		var f0 float64
    		var pf2 *float64
    		var ch5, ch6 chan int16
    		var fnc0 func(*int64, G2, struct {
    			i8_0  G1
    			m1    map[float64]bool
    			i64_2 int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

      %s = "tfrt_test.get_string"() { value = "Running @matmul_cpu" } : () -> !tfrt.string
      %ch4 = "tfrt_test.print_string"(%s, %ch3) : (!tfrt.string, !tfrt.chain) -> (!tfrt.chain)
    
      %ch5 = "tfrt_fallback_async.print_tensor"(%result, %ch4) : (!tfrt_fallback.tf_tensor, !tfrt.chain) -> !tfrt.chain
    
      tfrt.return %ch5, %result : !tfrt.chain, !tfrt_fallback.tf_tensor
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/expr0.go

    	ch chan int
    	rc <-chan float64
    	sc chan <- string
    	ch0 = +ch /* ERROR "not defined" */
    	ch1 = -ch /* ERROR "not defined" */
    	ch2 = !ch /* ERROR "not defined" */
    	ch3 = ^ch /* ERROR "not defined" */
    	ch4 = *ch /* ERROR "cannot indirect" */
    	ch5 = &ch
    	ch6 = *ch5
    	ch7 = <-ch
    	ch8 = <-rc
    	ch9 = <-sc /* ERROR "cannot receive" */
    	ch10, ok = <-ch
    	// ok is of type bool
    	ch11, myok = <-ch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

     * $FreeBSD: src/sys/powerpc/include/elf.h,v 1.7 2004/11/02 09:47:01 ssouhlal Exp $
     * $FreeBSD: src/sys/sparc64/include/elf.h,v 1.12 2003/09/25 01:10:26 peter Exp $
     * "System V ABI" (http://www.sco.com/developers/gabi/latest/ch4.eheader.html)
     * "ELF for the ARMĀ® 64-bit Architecture (AArch64)" (ARM IHI 0056B)
     * "RISC-V ELF psABI specification" (https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top