Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for gopark (3.74 sec)

  1. test/nosplit.go

    	}
    
    	dir, err := ioutil.TempDir("", "go-test-nosplit")
    	if err != nil {
    		bug()
    		fmt.Printf("creating temp dir: %v\n", err)
    		return
    	}
    	defer os.RemoveAll(dir)
    	os.Setenv("GOPATH", filepath.Join(dir, "_gopath"))
    
    	if err := ioutil.WriteFile(filepath.Join(dir, "go.mod"), []byte("module go-test-nosplit\n"), 0666); err != nil {
    		log.Panic(err)
    	}
    
    	tests = strings.Replace(tests, "\t", " ", -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    func FromSlash(path string) string {
    	return filepathlite.FromSlash(path)
    }
    
    // SplitList splits a list of paths joined by the OS-specific [ListSeparator],
    // usually found in PATH or GOPATH environment variables.
    // Unlike strings.Split, SplitList returns an empty slice when passed an empty
    // string.
    func SplitList(path string) []string {
    	return splitList(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

            StaleReason    string   // explanation for Stale==true
            Root           string   // Go root or Go path dir containing this package
            ConflictDir    string   // this directory shadows Dir in $GOPATH
            BinaryOnly     bool     // binary-only package (no longer supported)
            ForTest        string   // package is only for use in named test
            Export         string   // file containing export data (when using -export)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/parser.go

    			if g.state != gRunning {
    				return fmt.Errorf("g %d is not running while unpark (time %d)", ev.G, ev.Ts)
    			}
    			if ev.P != TimerP && p.g != ev.G {
    				return fmt.Errorf("p %d is not running g %d while unpark (time %d)", ev.P, ev.G, ev.Ts)
    			}
    			g1 := gs[ev.Args[0]]
    			if g1.state != gWaiting {
    				return fmt.Errorf("g %d is not waiting before unpark (time %d)", ev.Args[0], ev.Ts)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. pkg/test/framework/suite.go

    		// These are also used for istio.io/istio, but make help to satisfy
    		// the feature label enforcement when running with BUILD_WITH_CONTAINER=1.
    		"^/work/tests/integration/",
    		"^/work/",
    
    		// Outside of standard Istio  GOPATH
    		".*/istio/tests/integration/",
    	)
    )
    
    // getSettingsFunc is a function used to extract the default settings for the Suite.
    type getSettingsFunc func(string) (*resource.Settings, error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_netbsd_amd64.go

    	SYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }
    	SYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }
    	SYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_netbsd_arm.go

    	SYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }
    	SYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }
    	SYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }
    	SYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }
    	SYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. build/common.sh

        mkdir -p "${LOCAL_OUTPUT_GOPATH}"
        # We want this to run as root to be able to chown, so non-root users can
        # later use the result as a data container.  This run both creates the data
        # container and chowns the GOPATH.
        #
        # The data container creates volumes for all of the directories that store
        # intermediates for the Go build. This enables incremental builds across
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_netbsd_arm64.go

    	SYS___SIGTIMEDWAIT       = 431 // { int|sys|50|__sigtimedwait(const sigset_t *set, siginfo_t *info, struct timespec *timeout); }
    	SYS__LWP_PARK            = 434 // { int|sys|50|_lwp_park(const struct timespec *ts, lwpid_t unpark, const void *hint, const void *unparkhint); }
    	SYS_KEVENT               = 435 // { int|sys|50|kevent(int fd, const struct kevent *changelist, size_t nchanges, struct kevent *eventlist, size_t nevents, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
Back to top