Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for livable (0.09 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package mips
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		c = append(c,
    			"-ferror-limit=0",
    			// Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn)
    			// doesn't have -Wno-unneeded-internal-declaration, so we need yet another
    			// flag to disable the warning. Yes, really good diagnostics, clang.
    			"-Wno-unknown-warning-option",
    			"-Wno-unneeded-internal-declaration",
    			"-Wno-unused-function",
    			"-Qunused-arguments",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    		scavenge.memoryLimitGoal.Store(^uint64(0))
    	} else {
    		scavenge.memoryLimitGoal.Store(memoryLimitGoal)
    	}
    
    	// Now handle the gcPercent goal.
    
    	// If we're called before the first GC completed, disable scavenging.
    	// We never scavenge before the 2nd GC cycle anyway (we don't have enough
    	// information about the heap yet) so this is fine, and avoids a fault
    	// or garbage data later.
    	if lastHeapGoal == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenThread(desiredAccess uint32, inheritHandle bool, threadId uint32) (handle Handle, err error)
    //sys	SetProcessPriorityBoost(process Handle, disable bool) (err error) = kernel32.SetProcessPriorityBoost
    //sys	GetProcessWorkingSetSizeEx(hProcess Handle, lpMinimumWorkingSetSize *uintptr, lpMaximumWorkingSetSize *uintptr, flags *uint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	//   in the same local repository.
    	// - We know the VCS commands needed to get the status.
    	setVCSError := func(err error) {
    		setPkgErrorf("error obtaining VCS status: %v\n\tUse -buildvcs=false to disable VCS stamping.", err)
    	}
    
    	var repoDir string
    	var vcsCmd *vcs.Cmd
    	var err error
    	const allowNesting = true
    
    	wantVCS := false
    	switch cfg.BuildBuildvcs {
    	case "true":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/internal/bisect/bisect.go

    // enable and report. If a pattern is prefixed by a “!”, the meaning
    // changes: the pattern specifies the changes to DISABLE and report. This
    // mode of operation is needed when a program passes with all changes
    // enabled but fails with no changes enabled. In this case, bisect
    // searches for minimal sets of changes to disable.
    // Put another way, the leading “!” inverts the result from [Matcher.ShouldEnable]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/sync/pool.go

    func (p *Pool) Put(x any) {
    	if x == nil {
    		return
    	}
    	if race.Enabled {
    		if runtime_randn(4) == 0 {
    			// Randomly drop x on floor.
    			return
    		}
    		race.ReleaseMerge(poolRaceAddr(x))
    		race.Disable()
    	}
    	l, _ := p.pin()
    	if l.private == nil {
    		l.private = x
    	} else {
    		l.shared.pushHead(x)
    	}
    	runtime_procUnpin()
    	if race.Enabled {
    		race.Enable()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/check.go

    	// Single live memory checks.
    	// These checks only work if there are no memory copies.
    	// (Memory copies introduce ambiguity about which mem value is really live.
    	// probably fixable, but it's easier to avoid the problem.)
    	// For the same reason, disable this check if some memory ops are unused.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if (v.Op == OpCopy || v.Uses == 0) && v.Type.IsMemory() {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/cmd/covdata/covdata.go

    				fatal("%v", err)
    			}
    			if err = f.Close(); err != nil {
    				fatal("error closing memory profile: %v", err)
    			}
    		})
    	} else {
    		// Not doing memory profiling; disable it entirely.
    		runtime.MemProfileRate = 0
    	}
    
    	// Mode-dependent setup.
    	op.Setup()
    
    	// ... off and running now.
    	dbgtrace(1, "starting perform")
    
    	indirs := strings.Split(*indirsflag, ",")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar.go

    //     THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    //     PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design,
    //     Inc. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    //     EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    //     PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top