Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 431 for res1 (0.36 sec)

  1. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VCMPEQUDCC ZER, T1H, T1H
    
    	// 24 = CR6 NE
    	ISEL       $26, R0, TRUE, RES1
    	VXOR       RL, PL, T1L
    	VXOR       RH, PH, T1H         // SAVE: T1L
    	VOR        T1L, T1H, T1H
    	VCMPEQUDCC ZER, T1H, T1H
    
    	// 26 = CR6 NE
    	ISEL $26, R0, TRUE, RES2
    	OR   RES2, RES1, RES1
    	MOVD ret+24(FP), RES2
    	AND  RES2, RES1, RES1
    	MOVD RES1, ret+24(FP)
    
    	// X=H ; Y=H ; MUL; T-   // T1 = H*H
    	VOR  HL, HL, X0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads_test.go

    	resp := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{routeA}})
    	expectRoutes(resp, routeA)
    
    	xds.AdsPushAll(s.Discovery)
    	resp = ads.ExpectResponse(t)
    	expectRoutes(resp, routeA)
    
    	// Test update from A -> B
    	resp = ads.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{routeB}})
    	expectRoutes(resp, routeB)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %res1 = "tf.DivNoNan"(%arg0, %con1) {device = "/job:localhost/replica:0/task:0/device:GPU:0"} : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      %res2 = "tf.MulNoNan"(%arg0, %con2) {} : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      %res3 = "tf.DivNoNan"(%arg0, %con3) {}: (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      func.return %res1, %res2, %res3 : tensor<2xf32>, 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)
  4. tests/create_test.go

    	res := DB.FirstOrCreate(&user, "name = ?", user.Name)
    	if res.Error != nil || res.RowsAffected != 1 {
    		t.Fatalf("first or create rows affect err:%v rows:%d", res.Error, res.RowsAffected)
    	}
    
    	res = DB.FirstOrCreate(&user, "name = ?", user.Name)
    	if res.Error != nil || res.RowsAffected != 0 {
    		t.Fatalf("first or create rows affect err:%v rows:%d", res.Error, res.RowsAffected)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/net/http/clientserver_test.go

    func (tt h12Compare) normalizeRes(t *testing.T, res *Response, wantProto string) {
    	if res.Proto == wantProto || res.Proto == "HTTP/IGNORE" {
    		res.Proto, res.ProtoMajor, res.ProtoMinor = "", 0, 0
    	} else {
    		t.Errorf("got %q response; want %q", res.Proto, wantProto)
    	}
    	slurp, err := io.ReadAll(res.Body)
    
    	res.Body.Close()
    	res.Body = slurpResult{
    		ReadCloser: io.NopCloser(bytes.NewReader(slurp)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  6. src/go/types/issues_test.go

    	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
    // the LHS of an assignment is a Use nonetheless.
    func TestIssue7827(t *testing.T) {
    	const src = `
    package p
    func _() {
    	const w = 1        // defs w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho.go

    		msect.name = "__symbol_stub1"
    		msect.flag = S_ATTR_PURE_INSTRUCTIONS | S_ATTR_SOME_INSTRUCTIONS | S_SYMBOL_STUBS
    		msect.res1 = 0 //nkind[SymKindLocal];
    		msect.res2 = 6
    	}
    
    	if sect.Name == ".got" {
    		msect.name = "__nl_symbol_ptr"
    		msect.flag = S_NON_LAZY_SYMBOL_POINTERS
    		msect.res1 = uint32(ctxt.loader.SymSize(ctxt.ArchSyms.LinkEditPLT) / 4) /* offset into indirect symbol table */
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  8. 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/issues_test.go

    	res2 := defs[m.Type.ResultList[0].Name].(*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
    // the LHS of an assignment is a Use nonetheless.
    func TestIssue7827(t *testing.T) {
    	const src = `
    package p
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/encoding/base64/base64_test.go

    	dec := NewDecoder(StdEncoding, strings.NewReader(encoded))
    	res1, err := io.ReadAll(dec)
    	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")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top