Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 245 for cmdtest (0.24 sec)

  1. src/cmd/go/internal/test/testflag.go

    // our command line are for us, and some are for the test binary, and
    // some are for both.
    
    func init() {
    	work.AddBuildFlags(CmdTest, work.OmitVFlag)
    
    	cf := CmdTest.Flag
    	cf.BoolVar(&testC, "c", false, "")
    	cf.StringVar(&testO, "o", "", "")
    	work.AddCoverFlags(CmdTest, &testCoverProfile)
    	cf.Var((*base.StringsFlag)(&work.ExecCmd), "exec", "")
    	cf.BoolVar(&testJSON, "json", false, "")
    	cf.Var(&testVet, "vet", "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/dist/main.go

    var commands = map[string]func(){
    	"banner":    cmdbanner,
    	"bootstrap": cmdbootstrap,
    	"clean":     cmdclean,
    	"env":       cmdenv,
    	"install":   cmdinstall,
    	"list":      cmdlist,
    	"test":      cmdtest,
    	"version":   cmdversion,
    }
    
    // main takes care of OS-specific startup and dispatches to xmain.
    func main() {
    	os.Setenv("TERM", "dumb") // disable escape codes in clang errors
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    		doc.CmdDoc,
    		envcmd.CmdEnv,
    		fix.CmdFix,
    		fmtcmd.CmdFmt,
    		generate.CmdGenerate,
    		modget.CmdGet,
    		work.CmdInstall,
    		list.CmdList,
    		modcmd.CmdMod,
    		workcmd.CmdWork,
    		run.CmdRun,
    		telemetrycmd.CmdTelemetry,
    		test.CmdTest,
    		tool.CmdTool,
    		version.CmdVersion,
    		vet.CmdVet,
    
    		help.HelpBuildConstraint,
    		help.HelpBuildmode,
    		help.HelpC,
    		help.HelpCache,
    		help.HelpEnvironment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    				// TODO(#56629): Why does this fail on netbsd-arm?
    				cgoTest("static", "testtls", "external", "static", staticCheck)
    			}
    			cgoTest("external", "testnocgo", "external", "", staticCheck)
    			if goos != "android" {
    				cgoTest("static", "testnocgo", "external", "static", staticCheck)
    				cgoTest("static", "test", "external", "static", staticCheck)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	"cmd/go/internal/work"
    	"cmd/internal/test2json"
    
    	"golang.org/x/mod/module"
    )
    
    // Break init loop.
    func init() {
    	CmdTest.Run = runTest
    }
    
    const testUsage = "go test [build/test flags] [packages] [build/test flags & test binary flags]"
    
    var CmdTest = &base.Command{
    	CustomFlags: true,
    	UsageLine:   testUsage,
    	Short:       "test packages",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmp/cmp_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cmp_test
    
    import (
    	"cmp"
    	"fmt"
    	"math"
    	"slices"
    	"sort"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    var negzero = math.Copysign(0, -1)
    var nonnilptr uintptr = uintptr(unsafe.Pointer(&negzero))
    var nilptr uintptr = uintptr(unsafe.Pointer(nil))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/cmd_test.go

    Kuat <******@****.***> 1712361112 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 935 bytes
    - Viewed (0)
  8. maven-model/src/test/java/org/apache/maven/model/ScmTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Scm}.
     *
     */
    class ScmTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Scm().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Scm().equals(null));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/crypto/cipher/gcm_test.go

    Michael Stapelberg <******@****.***> 1698246285 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  10. pilot/pkg/xds/vm_test.go

    John Howard <******@****.***> 1705083636 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top