Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 271 for t0 (0.02 sec)

  1. src/runtime/rt0_linux_riscv64.s

    	MOV	A1, _rt0_riscv64_linux_lib_argv<>(SB)
    
    	// Synchronous initialization.
    	MOV	$runtime·libpreinit(SB), T0
    	JALR	RA, T0
    
    	// Create a new thread to do the runtime initialization and return.
    	MOV	_cgo_sys_thread_create(SB), T0
    	BEQZ	T0, nocgo
    	MOV	$_rt0_riscv64_linux_lib_go(SB), A0
    	MOV	$0, A1
    	JALR	RA, T0
    	JMP	restore
    
    nocgo:
    	MOV	$0x800000, A0                     // stacksize = 8192KB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 03 09:23:34 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/generate.go

    	z3.Sub(z3, t0)                           // Z3 := Z3 - t0
    	t3.Add(z3, z3)                           // t3 := Z3 + Z3
    	z3.Add(z3, t3)                           // Z3 := Z3 + t3
    	t3.Add(t0, t0)                           // t3 := t0 + t0
    	t0.Add(t3, t0)                           // t0 := t3 + t0
    	t0.Sub(t0, t2)                           // t0 := t0 - t2
    	t0.Mul(t0, z3)                           // t0 := t0 * Z3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    	MOV	buf+0(FP), T0
    	MOV	gobuf_g(T0), T1
    	MOV	0(T1), ZERO // make sure g != nil
    	JMP	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOV	T1, g
    	CALL	runtime·save_g(SB)
    
    	MOV	gobuf_sp(T0), X2
    	MOV	gobuf_lr(T0), RA
    	MOV	gobuf_ret(T0), A0
    	MOV	gobuf_ctxt(T0), CTXT
    	MOV	ZERO, gobuf_sp(T0)
    	MOV	ZERO, gobuf_ret(T0)
    	MOV	ZERO, gobuf_lr(T0)
    	MOV	ZERO, gobuf_ctxt(T0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. pkg/queue/delay_test.go

    	"container/heap"
    	"fmt"
    	"sync"
    	"testing"
    	"time"
    )
    
    func TestPriorityQueue(t *testing.T) {
    	pq := &pq{}
    
    	t0 := time.Now()
    	t1 := &delayTask{runAt: t0.Add(0)}
    	t2 := &delayTask{runAt: t0.Add(1 * time.Hour)}
    	t3 := &delayTask{runAt: t0.Add(2 * time.Hour)}
    	t4 := &delayTask{runAt: t0.Add(3 * time.Hour)}
    	sorted := []*delayTask{t1, t2, t3, t4}
    	// fill in an unsorted order
    	unsorted := []*delayTask{t4, t2, t3, t1}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue49296.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _[
            T0 any,
            T1 []int,
            T2 ~float64 | ~complex128 | chan int,
    ]() {
            _ = T0(nil /* ERROR "cannot convert nil to type T0" */ )
            _ = T1(1 /* ERRORx `cannot convert 1 .* to type T1` */ )
            _ = T2(2 /* ERRORx `cannot convert 2 .* to type T2` */ )
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 560 bytes
    - Viewed (0)
  6. src/html/template/examplefiles_test.go

    	err = second.ExecuteTemplate(os.Stdout, "T0.tmpl", "second")
    	if err != nil {
    		log.Fatalf("second execution: %s", err)
    	}
    	err = first.ExecuteTemplate(os.Stdout, "T0.tmpl", "first")
    	if err != nil {
    		log.Fatalf("first: execution: %s", err)
    	}
    
    	// Output:
    	// T0 (second version) invokes T1: (T1 invokes T2: (T2, version B))
    	// T0 (first version) invokes T1: (T1 invokes T2: (T2, version A))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  7. test/typeparam/issue48962.dir/b.go

    	A3i a.A[a.S[a.S[A3i]]] // ERROR "invalid recursive type"
    
    	T2 a.S[T0[T2]] // ERROR "invalid recursive type"
    	T3 T0[Ai]      // no follow-on error here
    )
    
    // test case from issue
    
    type T0[P any] struct {
    	f P
    }
    
    type T1 struct { // ERROR "invalid recursive type"
    	_ T0[T1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls4.go

    // license that can be found in the LICENSE file.
    
    // type aliases
    
    package decls4
    
    type (
    	T0 [10]int
    	T1 []byte
    	T2 struct {
    		x int
    	}
    	T3 interface{
    		m() T2
    	}
    	T4 func(int, T0) chan T2
    )
    
    type (
    	Ai = int
    	A0 = T0
    	A1 = T1
    	A2 = T2
    	A3 = T3
    	A4 = T4
    
    	A10 = [10]int
    	A11 = []byte
    	A12 = struct {
    		x int
    	}
    	A13 = interface{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    	if err != nil {
    		t.Error(err)
    	}
    	exerciseTimingRatioHistogram(t, testHistogramName, t0, clk, registry, tro)
    }
    
    func TestTimingRatioHistogramVecElementSafeEarly(t *testing.T) {
    	testHistogramName := "vec_element_safe_early"
    	t0 := time.Now()
    	clk := testclock.NewFakePassiveClock(t0)
    	buckets := []float64{0, 1}
    	vec := NewTestableTimingRatioHistogramVec(clk.Now,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_test.go

    		{call: "Setegid(0)", fn: func() error { return syscall.Setegid(0) }, filter: "Gid:", expect: "\t0\t0\t0\t0"},
    
    		{call: "Seteuid(1)", fn: func() error { return syscall.Seteuid(1) }, filter: "Uid:", expect: "\t0\t1\t0\t1"},
    		{call: "Setuid(0)", fn: func() error { return syscall.Setuid(0) }, filter: "Uid:", expect: "\t0\t0\t0\t0"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top