Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Ward (0.17 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    			}
    		}
    
    		if argProps&ActualExprIsConcreteConvIface != 0 {
    			// FIXME: ideally here it would be nice to make a
    			// distinction between the inlinable case and the
    			// non-inlinable case, but this is hard to do. Example:
    			//
    			//    type I interface { Tiny() int; Giant() }
    			//    type Conc struct { x int }
    			//    func (c *Conc) Tiny() int { return 42 }
    			//    func (c *Conc) Giant() { <huge amounts of code> }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. tests/joins_test.go

    	if len(users4) != 0 {
    		t.Errorf("should find no user when searching with unexisting credit card, but got %v", len(users4))
    	}
    
    	var users5 []User
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    				sumErrs[i] = err
    			}
    		})
    	}
    
    	<-r.work.Idle()
    
    	// Report deprecations, then retractions, then errors fetching sums.
    	// Only errors fetching sums are hard errors.
    	for _, mm := range deprecations {
    		if mm.message != "" {
    			fmt.Fprintf(os.Stderr, "go: module %s is deprecated: %s\n", mm.m.Path, mm.message)
    		}
    	}
    	var retractPath string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/lex/slice.go

    	//	#define A #define B(x) x
    	// and
    	//	#define A #define B (x) x
    	// The first definition of B has an argument, the second doesn't. Because we let
    	// text/scanner strip the blanks for us, this is extremely rare, hard to fix, and not worth it.
    	return s.pos
    }
    
    func (s *Slice) Close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/proxy.go

    				goproxy = goproxy[i+1:]
    			} else {
    				url = goproxy
    				goproxy = ""
    			}
    
    			url = strings.TrimSpace(url)
    			if url == "" {
    				continue
    			}
    			if url == "off" {
    				// "off" always fails hard, so can stop walking list.
    				proxyOnce.list = append(proxyOnce.list, proxySpec{url: "off"})
    				break
    			}
    			if url == "direct" {
    				proxyOnce.list = append(proxyOnce.list, proxySpec{url: "direct"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/modfile.go

    //
    // If the given string is empty, ShortMessage returns the given default. If the
    // given string is too long or contains non-printable characters, ShortMessage
    // returns a hard-coded string.
    func ShortMessage(message, emptyDefault string) string {
    	const maxLen = 500
    	if i := strings.Index(message, "\n"); i >= 0 {
    		message = message[:i]
    	}
    	message = strings.TrimSpace(message)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/switch.go

    	have := make(map[string]bool)
    	var list []string
    	for _, dir := range pathDirs() {
    		if dir == "" || !filepath.IsAbs(dir) {
    			// Refuse to use local directories in $PATH (hard-coding exec.ErrDot).
    			continue
    		}
    		entries, err := os.ReadDir(dir)
    		if err != nil {
    			continue
    		}
    		for _, de := range entries {
    			if de.IsDir() || !strings.HasPrefix(de.Name(), "go1.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/archive/tar/common.go

    const (
    	// Type '0' indicates a regular file.
    	TypeReg = '0'
    
    	// Deprecated: Use TypeReg instead.
    	TypeRegA = '\x00'
    
    	// Type '1' to '6' are header-only flags and may not have a data body.
    	TypeLink    = '1' // Hard link
    	TypeSymlink = '2' // Symbolic link
    	TypeChar    = '3' // Character device node
    	TypeBlock   = '4' // Block device node
    	TypeDir     = '5' // Directory
    	TypeFifo    = '6' // FIFO node
    
    	// Type '7' is reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcs/vcs.go

    type RepoRoot struct {
    	Repo     string // repository URL, including scheme
    	Root     string // import path corresponding to root of repo
    	IsCustom bool   // defined by served <meta> tags (as opposed to hard-coded pattern)
    	VCS      *Cmd
    }
    
    func httpPrefix(s string) string {
    	for _, prefix := range [...]string{"http:", "https:"} {
    		if strings.HasPrefix(s, prefix) {
    			return prefix
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		// changed here.
    		vetFlags = []string{"-unsafeptr=false"}
    
    		// Also turn off -unreachable checks during go test.
    		// During testing it is very common to make changes
    		// like hard-coded forced returns or panics that make
    		// code unreachable. It's unreasonable to insist on files
    		// not having any unreachable code during "go test".
    		// (buildall.bash still has -unreachable enabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top