Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for jsTest (0.11 sec)

  1. src/cmd/go/internal/modload/load.go

    func (af *atomicLoadPkgFlags) has(cond loadPkgFlags) bool {
    	return loadPkgFlags(af.bits.Load())&cond == cond
    }
    
    // isTest reports whether pkg is a test of another package.
    func (pkg *loadPkg) isTest() bool {
    	return pkg.testOf != nil
    }
    
    // fromExternalModule reports whether pkg was loaded from a module other than
    // the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    	"net"
    	"net/http"
    	. "net/http"
    	"net/http/httptest"
    	"net/url"
    	"os"
    	"os/exec"
    	"path"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    const (
    	testFile    = "testdata/file"
    	testFileLen = 11
    )
    
    type wantRange struct {
    	start, end int64 // range [start,end)
    }
    
    var ServeFileRangeTests = []struct {
    	r      string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. src/go/build/build.go

    		if info.parsed != nil {
    			pkg = info.parsed.Name.Name
    			if pkg == "documentation" {
    				p.IgnoredGoFiles = append(p.IgnoredGoFiles, name)
    				continue
    			}
    		}
    
    		isTest := strings.HasSuffix(name, "_test.go")
    		isXTest := false
    		if isTest && strings.HasSuffix(pkg, "_test") && p.Name != pkg {
    			isXTest = true
    			pkg = pkg[:len(pkg)-len("_test")]
    		}
    
    		if p.Name == "" {
    			p.Name = pkg
    			firstFile = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	"internal/testenv"
    	"io"
    	"io/fs"
    	"log"
    	. "os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"runtime/debug"
    	"slices"
    	"strings"
    	"sync"
    	"syscall"
    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    func TestMain(m *testing.M) {
    	if Getenv("GO_OS_TEST_DRAIN_STDIN") == "1" {
    		Stdout.Close()
    		io.Copy(io.Discard, Stdin)
    		Exit(0)
    	}
    
    	log.SetFlags(log.LstdFlags | log.Lshortfile)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. kotlin-js-store/yarn.lock

      integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
    
    jest-worker@^27.4.5:
      version "27.5.1"
      resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
      integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
Back to top