Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 102 for ret2 (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK-NEXT: %[[RES2:.*]] = "tf.MulNoNan"(%[[ARG0]], %[[CON2]]) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      // CHECK-NEXT: return %[[RES1]], %[[RES2]], %[[CON3]] : tensor<2xf32>, tensor<2xf32>, tensor<2xf32>
      %con1 = "tf.Const"() { value = dense<[1.0, 2.0]> : tensor<2xf32> } : () -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/prog.go

    	writeMu sync.Mutex
    }
    
    // ProgCmd is a command that can be issued to a child process.
    //
    // If the interface needs to grow, we can add new commands or new versioned
    // commands like "get2".
    type ProgCmd string
    
    const (
    	cmdGet   = ProgCmd("get")
    	cmdPut   = ProgCmd("put")
    	cmdClose = ProgCmd("close")
    )
    
    // ProgRequest is the JSON-encoded message that's sent from cmd/go to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/go/types/issues_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	m := f.Decls[0].(*ast.FuncDecl)
    	res1 := defs[m.Name].(*Func).Signature().Results().At(0)
    	res2 := defs[m.Type.Results.List[0].Names[0]].(*Var)
    
    	if res1 != res2 {
    		t.Errorf("got %s (%p) != %s (%p)", res1, res2, res1, res2)
    	}
    }
    
    // This tests that uses of existing vars on the LHS of an assignment
    // are Uses, not Defs; and also that the (illegal) use of a non-var on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadmacho/ldmacho.go

    }
    
    type ldMachoSect struct {
    	name    string
    	segname string
    	addr    uint64
    	size    uint64
    	off     uint32
    	align   uint32
    	reloff  uint32
    	nreloc  uint32
    	flags   uint32
    	res1    uint32
    	res2    uint32
    	sym     loader.Sym
    	rel     []ldMachoRel
    }
    
    type ldMachoRel struct {
    	addr      uint32
    	symnum    uint32
    	pcrel     uint8
    	length    uint8
    	extrn     uint8
    	type_     uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    				counter.Add(1)
    				cancel2()
    			}()
    			req2, idle2a := qs.StartRequest(ctx2, &fcrequest.WorkEstimate{InitialSeats: 1}, 2, "", "fs2", "test", "two", queueNoteFn(2))
    			if idle2a {
    				t.Error("2nd StartRequest returned idle")
    			}
    			if req2 != nil {
    				idle2b := req2.Finish(func() {
    					t.Error("Executing req2")
    				})
    				if idle2b {
    					t.Error("2nd Finish returned idle")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/ServerTruncatesRequestTest.kt

      @Test
      fun serverDisconnectsBeforeSecondRequestHttp1() {
        enableProtocol(Protocol.HTTP_1_1)
    
        server.enqueue(MockResponse(code = 200, body = "Req1"))
        server.enqueue(MockResponse(code = 200, body = "Req2"))
    
        val eventListener =
          object : EventListener() {
            var socket: SSLSocket? = null
            var closed = false
    
            override fun connectionAcquired(
              call: Call,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/encoding/base32/base32_test.go

    	if err != nil {
    		t.Errorf("ReadAll failed: %v", err)
    	}
    
    	dec = NewDecoder(StdEncoding, strings.NewReader(encodedShort))
    	var res2 []byte
    	res2, err = io.ReadAll(dec)
    	if err != nil {
    		t.Errorf("ReadAll failed: %v", err)
    	}
    
    	if !bytes.Equal(res1, res2) {
    		t.Error("Decoded results not equal")
    	}
    }
    
    func BenchmarkEncode(b *testing.B) {
    	data := make([]byte, 8192)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    }
    
    type MachoSect struct {
    	name    string
    	segname string
    	addr    uint64
    	size    uint64
    	off     uint32
    	align   uint32
    	reloc   uint32
    	nreloc  uint32
    	flag    uint32
    	res1    uint32
    	res2    uint32
    }
    
    type MachoSeg struct {
    	name       string
    	vsize      uint64
    	vaddr      uint64
    	fileoffset uint64
    	filesize   uint64
    	prot1      uint32
    	prot2      uint32
    	nsect      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/math/big/rat_test.go

    		if !ok {
    			continue
    		}
    		s := x.Sign()
    		e := x.Cmp(zero)
    		if s != e {
    			t.Errorf("got %d; want %d for z = %v", s, e, &x)
    		}
    	}
    }
    
    var ratCmpTests = []struct {
    	rat1, rat2 string
    	out        int
    }{
    	{"0", "0/1", 0},
    	{"1/1", "1", 0},
    	{"-1", "-2/2", 0},
    	{"1", "0", 1},
    	{"0/1", "1/1", -1},
    	{"-5/1434770811533343057144", "-5/1434770811533343057145", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/inl_test.go

    			"(*mspan).base",
    			"(*mspan).markBitsForBase",
    			"(*mspan).markBitsForIndex",
    			"(*mspan).writeUserArenaHeapBits",
    			"(*muintptr).set",
    			"(*puintptr).set",
    			"(*wbBuf).get1",
    			"(*wbBuf).get2",
    
    			// Trace-related ones.
    			"traceLocker.ok",
    			"traceEnabled",
    		},
    		"runtime/internal/sys": {},
    		"runtime/internal/math": {
    			"MulUintptr",
    		},
    		"bytes": {
    			"(*Buffer).Bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top