Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for cmdtest (0.19 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    	}
    	p.PodSandboxStatus.Id = strings.ReplaceAll(string(uuid.NewUUID()), "-", "")
    	return p
    }
    
    func makeFakeContainer(sandbox *critest.FakePodSandbox, name string, attempt uint32, terminated bool) *critest.FakeContainer {
    	sandboxID := sandbox.PodSandboxStatus.Id
    	c := &critest.FakeContainer{
    		SandboxID: sandboxID,
    		ContainerStatus: runtimeapi.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

                .withFeatures(
                    CollectionSize.ANY, CollectionFeature.KNOWN_ORDER, CollectionFeature.SERIALIZABLE)
                .createTestSuite());
    
        suite.addTest(testsForFilter());
        suite.addTest(testsForFilterNoNulls());
        suite.addTest(testsForFilterFiltered());
    
        return suite;
      }
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      private static Test testsForFilter() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	var b bytes.Buffer
    	err = tmpl.Execute(&b, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    type cmpTest struct {
    	expr  string
    	truth string
    	ok    bool
    }
    
    var cmpTests = []cmpTest{
    	{"eq true true", "true", true},
    	{"eq true false", "false", true},
    	{"eq 1+2i 1+2i", "true", true},
    	{"eq 1+2i 1+3i", "false", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	var b bytes.Buffer
    	err = tmpl.Execute(&b, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    type cmpTest struct {
    	expr  string
    	truth string
    	ok    bool
    }
    
    var cmpTests = []cmpTest{
    	{"eq true true", "true", true},
    	{"eq true false", "false", true},
    	{"eq 1+2i 1+2i", "true", true},
    	{"eq 1+2i 1+3i", "false", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		}
    	}
    }
    
    // Version prints the Go version.
    func cmdversion() {
    	xflagparse(0)
    	xprintf("%s\n", findgoversion())
    }
    
    // cmdlist lists all supported platforms.
    func cmdlist() {
    	jsonFlag := flag.Bool("json", false, "produce JSON output")
    	brokenFlag := flag.Bool("broken", false, "include broken ports")
    	xflagparse(0)
    
    	var plats []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    public class IteratorsTest extends TestCase {
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite(IteratorsTest.class.getSimpleName());
        suite.addTest(testsForRemoveAllAndRetainAll());
        suite.addTestSuite(IteratorsTest.class);
        return suite;
      }
    
      @SuppressWarnings("DoNotCall")
      public void testEmptyIterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
Back to top