Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Clulow (0.57 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Second, it would be nice to allow Unicode marks as well as letters,
    // but marks include combining marks, and then we must deal not
    // only with case folding but also normalization: both U+00E9 ('é')
    // and U+0065 U+0301 ('e' followed by combining acute accent)
    // look the same on the page and are treated by some file systems
    // as the same path. If we do allow Unicode marks in paths, there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/cmd/go/script_test.go

    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    	"LIBRARY_PATH",       // allow override of non-standard static library paths
    	"C_INCLUDE_PATH",     // allow override non-standard include paths
    	"CC",                 // don't lose user settings when invoking cgo
    	"GO_TESTING_GOTOOLS", // for gccgo testing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    			// a direct call, we could also inline (in which case
    			// we'd want to decrease the score even more).
    			//
    			// One thing we could do (not yet implemented) is iterate
    			// through all of the methods of "*Conc" that allow it to
    			// satisfy I, and if all are inlinable, then exploit that.
    			if pflag&ParamMayFeedInterfaceMethodCall != 0 {
    				score, tmask = adjustScore(passConcreteToNestedItfCallAdj, score, tmask)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cfg/cfg.go

    func Getenv(key string) string {
    	if !CanGetenv(key) {
    		switch key {
    		case "CGO_TEST_ALLOW", "CGO_TEST_DISALLOW", "CGO_test_ALLOW", "CGO_test_DISALLOW":
    			// used by internal/work/security_test.go; allow
    		default:
    			panic("internal error: invalid Getenv " + key)
    		}
    	}
    	val := os.Getenv(key)
    	if val != "" {
    		return val
    	}
    	envCache.once.Do(initEnvCache)
    	return envCache.m[key]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	}
    
    	vk := v.kind
    	vs := v.size
    	vt := v.typ
    	switch vk {
    	case asmInterface, asmEmptyInterface, asmString, asmSlice:
    		// allow reference to first word (pointer)
    		vk = v.inner[0].kind
    		vs = v.inner[0].size
    		vt = v.inner[0].typ
    	case asmComplex:
    		// Allow a single instruction to load both parts of a complex.
    		if int(kind) == vs {
    			kind = asmComplex
    		}
    	}
    	if addr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/inline.go

    			text := s[i+n : estart]
    			text = strings.ReplaceAll(text, "\n", " ")
    
    			// If enclosed text starts and ends with a space and is not all spaces,
    			// one space is removed from start and end, to allow `` ` `` to quote a single backquote.
    			if len(text) >= 2 && text[0] == ' ' && text[len(text)-1] == ' ' && trimSpace(text) != "" {
    				text = text[1 : len(text)-1]
    			}
    
    			return &Code{text}, start, end, true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    To allow additional flags, set CGO_CFLAGS_ALLOW to a regular expression
    matching the new flags. To disallow flags that would otherwise be allowed,
    set CGO_CFLAGS_DISALLOW to a regular expression matching arguments
    that must be disallowed. In both cases the regular expression must match
    a full argument: to allow -mfoo=bar, use CGO_CFLAGS_ALLOW='-mfoo.*',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/compile.go

    				printFunc(f)
    			}
    			f.HTMLWriter.WritePhase(phaseName, fmt.Sprintf("%s <span class=\"stats\">%s</span>", phaseName, stats))
    		}
    		if p.time || p.mem {
    			// Surround timing information w/ enough context to allow comparisons.
    			time := tEnd.Sub(tStart).Nanoseconds()
    			if p.time {
    				f.LogStat("TIME(ns)", time)
    			}
    			if p.mem {
    				var mEnd runtime.MemStats
    				runtime.ReadMemStats(&mEnd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    // occurs, it will report the error.
    func removeFile(f string) {
    	err := os.Remove(f)
    	if err == nil || os.IsNotExist(err) {
    		return
    	}
    	// Windows does not allow deletion of a binary file while it is executing.
    	if runtime.GOOS == "windows" {
    		// Remove lingering ~ file from last attempt.
    		if _, err2 := os.Stat(f + "~"); err2 == nil {
    			os.Remove(f + "~")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/edit.go

    		}
    	})
    }
    
    // allowedVersionArg returns whether a token may be used as a version in go.mod.
    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    func allowedVersionArg(arg string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top