Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for tstf (0.13 sec)

  1. tools/go-compile-verbose

          mod="$(<<< "$base" cut -d@ -f1)"
          rest="$(<<< "$base" cut -d@ -f2 | cut -d/ -f2-)"
          log "${ls}\t${mod}\t${rest}"
        elif [[ "$f" =~ "$GROOT" ]]; then
            base="${f/"$GROOT"\//}"
            log "${ls}\tstd\t${base}"
        elif [[ "$f" =~ "$ROOT" ]]; then
            base="${f/"$ROOT"\//}"
            log "${ls}\tlocal\t${base}"
        else
            log "${ls}\tunknown\t${f}"
        fi
        ;;
      vet)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_cgo.txt

    package p
    
    /*
    void
    f(void)
    {
    }
    */
    import "C"
    
    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    -- p_test.go --
    package p
    
    import "testing"
    
    func TestF(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 423 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_cgo_xtest.txt

    f(void)
    {
    }
    */
    import "C"
    
    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    -- x_test.go --
    package p_test
    
    import (
    	. "cgocover2"
    	"testing"
    )
    
    func TestF(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 464 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_relative_import.txt

    package p
    
    func F() int { return 1 }
    -- testimport/p1/p1.go --
    package p1
    
    func F() int { return 1 }
    -- testimport/p_test.go --
    package p
    
    import (
    	"./p1"
    
    	"testing"
    )
    
    func TestF(t *testing.T) {
    	if F() != p1.F() {
    		t.Fatal(F())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 443 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_xtestonly_works.txt

    -- go.mod --
    module xtestonly
    
    go 1.16
    -- f.go --
    package xtestonly
    
    func F() int { return 42 }
    -- f_test.go --
    package xtestonly_test
    
    import (
    	"testing"
    	"xtestonly"
    )
    
    func TestF(t *testing.T) {
    	if x := xtestonly.F(); x != 42 {
    		t.Errorf("f.F() = %d, want 42", x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 357 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_atomic_pkgall.txt

    [!race] stop
    
    go test -coverpkg=all -race x
    stdout ok[\s\S]+?coverage
    
    -- x/x.go --
    package x
    
    import _ "sync/atomic"
    
    func F() {}
    
    -- x/x_test.go --
    package x
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 316 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/value_test.go

    	}
    	for i, tc := range tests {
    		idx := i
    		tst := tc
    		t.Run(fmt.Sprintf("[%d]", i), func(t *testing.T) {
    			dv := testValue(t, int64(idx), tst.val)
    			ev := dv.ExprValue()
    			if ev.ConvertToType(types.TypeType).(ref.Type).TypeName() != tst.typ.TypeName() {
    				t.Errorf("got %v, wanted %v type", ev.ConvertToType(types.TypeType), tst.typ)
    			}
    			if ev.ConvertToType(tst.typ).Equal(ev) != types.True {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/flags_arm64_test.s

    	CMP	R1, R0
    	WORD	$0xd53b4200 //	MOVD	NZCV, R0
    	MOVD	R0, ret+16(FP)
    	RET
    
    TEXT ·asmAndFlags(SB),NOSPLIT,$0-24
    	MOVD	x+0(FP), R0
    	MOVD	y+8(FP), R1
    	TST	R1, R0
    	WORD	$0xd53b4200 //	MOVD	NZCV, R0
    	BIC	$0x30000000, R0 // clear C, V bits, as TST does not change those flags
    	MOVD	R0, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 09:12:17 UTC 2021
    - 699 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_dedup_packages.txt

    -- wantstdout --
    xtestonly
    -- f.go --
    package xtestonly
    
    func F() int { return 42 }
    -- f_test.go --
    package xtestonly_test
    
    import (
    	"testing"
    	"xtestonly"
    )
    
    func TestF(t *testing.T) {
    	if x := xtestonly.F(); x != 42 {
    		t.Errorf("f.F() = %d, want 42", x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 613 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_cgo_extra_test.txt

    import "C"
    
    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    -- p_test.go --
    package p
    -- x_test.go --
    package p_test
    
    import (
    	. "cgocover3"
    	"testing"
    )
    
    func TestF(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 584 bytes
    - Viewed (0)
Back to top