Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 391 for testOrg (0.16 sec)

  1. src/runtime/crash_test.go

    	if testprog.target == nil {
    		testprog.target = make(map[string]*buildexe)
    	}
    	name := binary
    	if len(flags) > 0 {
    		name += "_" + strings.Join(flags, "_")
    	}
    	target, ok := testprog.target[name]
    	if !ok {
    		target = &buildexe{}
    		testprog.target[name] = target
    	}
    
    	dir := testprog.dir
    
    	// Unlock testprog while actually building, so that other
    	// tests can look up executables that were already built.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    				testPkg(t, []string{path}, colDelta, manual)
    			})
    		}
    	}
    }
    
    func testDir(t *testing.T, dir string, colDelta uint, manual bool) {
    	fis, err := os.ReadDir(dir)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    
    	var filenames []string
    	for _, fi := range fis {
    		filenames = append(filenames, filepath.Join(dir, fi.Name()))
    	}
    
    	t.Run(filepath.Base(dir), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/runtime/gc_test.go

    func TestMemoryLimitNoGCPercent(t *testing.T) {
    	if testing.Short() {
    		t.Skip("stress test that takes time to run")
    	}
    	if runtime.NumCPU() < 4 {
    		t.Skip("want at least 4 CPUs for this test")
    	}
    	got := runTestProg(t, "testprog", "GCMemoryLimitNoGCPercent")
    	want := "OK\n"
    	if got != want {
    		t.Fatalf("expected %q, but got %q", want, got)
    	}
    }
    
    func TestMyGenericFunc(t *testing.T) {
    	runtime.MyGenericFunc[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	bufio, bytes, internal/cpu, io, os, strings, sync
    	< internal/sysinfo;
    
    	# Test-only
    	log
    	< testing/iotest
    	< testing/fstest;
    
    	FMT, flag, math/rand
    	< testing/quick;
    
    	FMT, DEBUG, flag, runtime/trace, internal/sysinfo, math/rand
    	< testing;
    
    	log/slog, testing
    	< testing/slogtest;
    
    	FMT, crypto/sha256, encoding/json, go/ast, go/parser, go/token,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableListTest.java

    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.collect.testing.Helpers;
    import com.google.common.collect.testing.ListTestSuiteBuilder;
    import com.google.common.collect.testing.MinimalCollection;
    import com.google.common.collect.testing.MinimalIterable;
    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.google.ListGenerators.BuilderAddAllListGenerator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/encoding/base32/base32_test.go

    	"Twas brillig, and the slithy toves",
    	"KR3WC4ZAMJZGS3DMNFTSYIDBNZSCA5DIMUQHG3DJORUHSIDUN53GK4Y=",
    }
    
    func testEqual(t *testing.T, msg string, args ...any) bool {
    	t.Helper()
    	if args[len(args)-2] != args[len(args)-1] {
    		t.Errorf(msg, args...)
    		return false
    	}
    	return true
    }
    
    func TestEncode(t *testing.T) {
    	for _, p := range pairs {
    		got := StdEncoding.EncodeToString([]byte(p.decoded))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate_test.go

    func TestManifestGenerateHelmValues(t *testing.T) {
    	runTestGroup(t, testGroup{
    		{
    			desc:       "helm_values_enablement",
    			diffSelect: "Deployment:*:istio-egressgateway, Service:*:istio-egressgateway",
    		},
    	})
    }
    
    func TestManifestGenerateOrdered(t *testing.T) {
    	// Since this is testing the special case of stable YAML output order, it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    }
    
    func TestLargeSymName(t *testing.T) {
    	// The compiler generates a symbol name using the string form of the
    	// type. This tests that the linker can read symbol names larger than
    	// the bufio buffer. Issue #15104.
    	_ = AuthorPaidByTheColumnInch
    }
    
    func TestIssue21703(t *testing.T) {
    	t.Parallel()
    
    	testenv.MustHaveGoBuild(t)
    	testenv.MustInternalLink(t, false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

    import com.google.common.collect.testing.ListTestSuiteBuilder;
    import com.google.common.collect.testing.NavigableSetTestSuiteBuilder;
    import com.google.common.collect.testing.features.CollectionFeature;
    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.google.SetGenerators.ImmutableSortedSetAsListGenerator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  10. src/encoding/binary/binary_test.go

    			buf, err := enc.fn(order, s1)
    			checkResult(t, enc.name, order, err, buf, b)
    		})
    	}
    }
    
    func TestLittleEndianRead(t *testing.T)     { testRead(t, LittleEndian, little, s) }
    func TestLittleEndianWrite(t *testing.T)    { testWrite(t, LittleEndian, little, s) }
    func TestLittleEndianPtrWrite(t *testing.T) { testWrite(t, LittleEndian, little, &s) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top