Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,720 for reserve (2.96 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	Osntdata    int16    // Section Number For Tdata Section
    	Osntbss     int16    // Section Number For Tbss Section
    	Ox64flags   uint16   // Additional Flags For 64-Bit Objects
    	Oresv3a     int16    // Reserved
    	Oresv3      [2]int32 // Reserved
    }
    
    // Section Header
    type XcoffScnHdr64 struct {
    	Sname    [8]byte // Section Name
    	Spaddr   uint64  // Physical Address
    	Svaddr   uint64  // Virtual Address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

     * $FreeBSD: src/sys/sparc64/include/elf.h,v 1.12 2003/09/25 01:10:26 peter Exp $
     *
     * Copyright (c) 1996-1998 John D. Polstra.  All rights reserved.
     * Copyright (c) 2001 David E. O'Brien
     * Portions Copyright 2009 The Go Authors. All rights reserved.
     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions
     * are met:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/cache.go

    	// and we will be able to detect (some) incomplete writes as files containing trailing NUL bytes.
    	if err := f.Truncate(0); err != nil {
    		return err
    	}
    	// Reserve the final size and zero-fill.
    	if err := f.Truncate(int64(buf.Len())); err != nil {
    		return err
    	}
    	// Write the actual contents. If this fails partway through,
    	// the remainder of the file should remain as zeroes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_source_order.txt

    [short] skip
    
    # Control
    ! go test example2_test.go example1_test.go
    
    # This test only passes if the source order is preserved
    go test example1_test.go example2_test.go
    
    -- example1_test.go --
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure that go test runs Example_Z before Example_A, preserving source order.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 20:40:29 UTC 2020
    - 992 bytes
    - Viewed (0)
  5. src/cmd/cover/testdata/directives.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is processed by the cover command, then a test verifies that
    // all compiler directives are preserved and positioned appropriately.
    
    //go:a
    
    //go:b
    package main
    
    //go:c1
    
    //go:c2
    //doc
    func c() {
    }
    
    //go:d1
    
    //doc
    //go:d2
    type d int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 23:38:38 UTC 2017
    - 502 bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/script.go

    		"HGRCPATH=" + filepath.Join(homeDir, ".hgrc"),
    		"HGENCODING=utf-8",
    	}
    	// Preserve additional environment variables that may be needed by VCS tools.
    	for _, k := range []string{
    		pathEnvName(),
    		tempEnvName(),
    		"SYSTEMROOT",        // must be preserved on Windows to find DLLs; golang.org/issue/25210
    		"WINDIR",            // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    	// the function entry map is index 0. Conveniently, layout
    	// already ensured that the entry block is first.
    	if lv.f.Entry != lv.f.Blocks[0] {
    		lv.f.Fatalf("entry block must be first")
    	}
    
    	{
    		// Reserve an entry for function entry.
    		live := bitvec.New(nvars)
    		lv.livevars = append(lv.livevars, live)
    	}
    
    	for _, b := range lv.f.Blocks {
    		be := lv.blockEffects(b)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/trim.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import "cmd/internal/src"
    
    // trim removes blocks with no code in them.
    // These blocks were inserted to remove critical edges.
    func trim(f *Func) {
    	n := 0
    	for _, b := range f.Blocks {
    		if !trimmableBlock(b) {
    			f.Blocks[n] = b
    			n++
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/dcl.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package typecheck
    
    import (
    	"fmt"
    	"sync"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    )
    
    var funcStack []*ir.Func // stack of previous values of ir.CurFunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. doc/go_mem.html

    <p>
    A read <i>r</i> of a memory location <i>x</i>
    holding a value
    that is not larger than a machine word must observe
    some write <i>w</i> such that <i>r</i> does not happen before <i>w</i>
    and there is no write <i>w'</i> such that <i>w</i> happens before <i>w'</i>
    and <i>w'</i> happens before <i>r</i>.
    That is, each read must observe a value written by a preceding or concurrent write.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top