Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for t0 (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    template <GTEST_1_TYPENAMES_(T)>
    inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) {
      return GTEST_1_TUPLE_(T)(f0);
    }
    
    template <GTEST_2_TYPENAMES_(T)>
    inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) {
      return GTEST_2_TUPLE_(T)(f0, f1);
    }
    
    template <GTEST_3_TYPENAMES_(T)>
    inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) {
      return GTEST_3_TUPLE_(T)(f0, f1, f2);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.s

    	VXOR  XL, XL3, XL
    	VXOR  XM, XM3, XM
    	VXOR  XH, XH3, XH
    	VPERM IN2, IN3, LOPERM, T0
    	VPERM IN2, IN3, HIPERM, T1
    
    	VPMSUMD XL, XC2, T2   // 1st reduction phase
    	VPMSUMD T0, H21L, XL3 // H.lo·Xi+3.lo  +H^2.lo·Xi+2.lo
    	VPMSUMD T1, H21H, XH3 // H.hi·Xi+3.hi  +H^2.hi·Xi+2.hi
    
    	VSLDOI $8, XM, ZERO, T0
    	VSLDOI $8, ZERO, XM, T1
    	VXOR   XL, T0, XL
    	VXOR   XH, T1, XH
    
    	VSLDOI $8, XL, XL, XL
    	VXOR   XL, T2, XL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    	s := acquireSudog()
    	root := semtable.rootFor(addr)
    	t0 := int64(0)
    	s.releasetime = 0
    	s.acquiretime = 0
    	s.ticket = 0
    	if profile&semaBlockProfile != 0 && blockprofilerate > 0 {
    		t0 = cputicks()
    		s.releasetime = -1
    	}
    	if profile&semaMutexProfile != 0 && mutexprofilerate > 0 {
    		if t0 == 0 {
    			t0 = cputicks()
    		}
    		s.acquiretime = t0
    	}
    	for {
    		lockWithRank(&root.lock, lockRankRoot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/time/sleep_test.go

    		<-tmp
    	}
    	<-c
    }
    
    func testReset(d Duration) error {
    	t0 := NewTimer(2 * d)
    	Sleep(d)
    	if !t0.Reset(3 * d) {
    		return errors.New("resetting unfired timer returned false")
    	}
    	Sleep(2 * d)
    	select {
    	case <-t0.C:
    		return errors.New("timer fired early")
    	default:
    	}
    	Sleep(2 * d)
    	select {
    	case <-t0.C:
    	default:
    		return errors.New("reset timer did not fire")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/issues0.go

    type (
    	I0 interface{}
    	I1 interface{ foo() }
    	I2 interface{ foo(x int) }
    	T0 struct{}
    	T1 struct{}
    	T2 struct{}
    )
    
    func (*T1) foo() {}
    func (*T2) foo(x int) {}
    
    func issue10260() {
    	var (
    		i0 I0
    		i1 I1
    		i2 I2
    		t0 *T0
    		t1 *T1
    		t2 *T2
    	)
    
    	var x I1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/path/filepath/path.go

    	}
    	// Position base[b0:bi] and targ[t0:ti] at the first differing elements.
    	bl := len(base)
    	tl := len(targ)
    	var b0, bi, t0, ti int
    	for {
    		for bi < bl && base[bi] != Separator {
    			bi++
    		}
    		for ti < tl && targ[ti] != Separator {
    			ti++
    		}
    		if !sameWord(targ[t0:ti], base[b0:bi]) {
    			break
    		}
    		if bi < bl {
    			bi++
    		}
    		if ti < tl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/text/template/doc.go

    		nil pointer or interface value, and any array, slice, map, or
    		string of length zero.
    		Dot is unaffected.
    
    	{{if pipeline}} T1 {{else}} T0 {{end}}
    		If the value of the pipeline is empty, T0 is executed;
    		otherwise, T1 is executed. Dot is unaffected.
    
    	{{if pipeline}} T1 {{else if pipeline}} T0 {{end}}
    		To simplify the appearance of if-else chains, the else action
    		of an if may include another if directly; the effect is exactly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/net/timeout_test.go

    			c, err := Dial(ls.Listener.Addr().Network(), ls.Listener.Addr().String())
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			t0 := time.Now()
    			if err := c.SetDeadline(t0.Add(timeout)); err != nil {
    				t.Error(err)
    			}
    			n, err := io.Copy(io.Discard, c)
    			dt := time.Since(t0)
    			c.Close()
    
    			if nerr, ok := err.(Error); ok && nerr.Timeout() {
    				t.Logf("%v: good timeout after %v; %d bytes", name, dt, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. src/runtime/select.go

    		pcs = pc1[:ncases:ncases]
    	}
    	casePC := func(casi int) uintptr {
    		if pcs == nil {
    			return 0
    		}
    		return pcs[casi]
    	}
    
    	var t0 int64
    	if blockprofilerate > 0 {
    		t0 = cputicks()
    	}
    
    	// The compiler rewrites selects that statically have
    	// only 0 or 1 cases plus default into simpler constructs.
    	// The only way we can end up with such small sel.ncase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/runtime/chan.go

    	// chanrecv() and closechan() to update this thread's view of c.closed and full().
    	if !block && c.closed == 0 && full(c) {
    		return false
    	}
    
    	var t0 int64
    	if blockprofilerate > 0 {
    		t0 = cputicks()
    	}
    
    	lock(&c.lock)
    
    	if c.closed != 0 {
    		unlock(&c.lock)
    		panic(plainError("send on closed channel"))
    	}
    
    	if sg := c.recvq.dequeue(); sg != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top