Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 180 for isto (0.26 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    		Build the listed main package, plus all packages it imports,
    		into a C shared library. The only callable symbols will
    		be those functions exported using a cgo //export comment.
    		Requires exactly one main package to be listed.
    
    	-buildmode=default
    		Listed main packages are built into executables and listed
    		non-main packages are built into .a files (the default
    		behavior).
    
    	-buildmode=shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/op.go

    	usesScratch       bool      // this op requires scratch memory space
    	hasSideEffects    bool      // for "reasons", not to be eliminated.  E.g., atomic store, #19182.
    	zeroWidth         bool      // op never translates into any machine code. example: copy, which may sometimes translate to machine code, is not zero-width.
    	unsafePoint       bool      // this op is an unsafe point, i.e. not safe for async preemption
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Write(r.f, r.order, data)
    }
    
    // machoCombineDwarf merges dwarf info generated by dsymutil into a macho executable.
    //
    // With internal linking, DWARF is embedded into the executable, this lets us do the
    // same for external linking.
    // exef is the file of the executable with no DWARF. It must have enough room in the macho
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. doc/README.md

    As a release cycle nears completion, run `relnote todo` to get a list of
    unfinished release note work.
    
    To prepare the release notes for a release, run `relnote generate`.
    That will merge the `.md` files in `next` into a single file.
    Atomically (as close to it as possible) add that file to `_content/doc` directory
    of the website repository and remove the `doc/next` directory in this repository.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/compiler_internal.go

    // does not have a name and if the result in the signature also does not have a name,
    // then the signature and field are renamed to
    //
    //	fmt.Sprintf("#rv%d", i+1)`
    //
    // the newly named object is inserted into the signature's scope,
    // and the object and new field name are returned.
    //
    // The intended use for RenameResult is to allow rangefunc to assign results within a closure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    	// of the real definition. This hooks the typedef into any
    	// circular definition loops, so that gdb can understand them.
    	die := d.newdie(parent, dwarf.DW_ABRV_TYPEDECL, name)
    
    	d.newrefattr(die, dwarf.DW_AT_type, tds)
    
    	return die
    }
    
    // Define gotype, for composite ones recurse into constituents.
    func (d *dwctxt) defgotype(gotype loader.Sym) loader.Sym {
    	if gotype == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/abi.go

    	fn.ABI = wrapperABI
    	typecheck.DeclFunc(fn)
    
    	fn.SetABIWrapper(true)
    	fn.SetDupok(true)
    
    	// ABI0-to-ABIInternal wrappers will be mainly loading params from
    	// stack into registers (and/or storing stack locations back to
    	// registers after the wrapped call); in most cases they won't
    	// need to allocate stack space, so it should be OK to mark them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    // license that can be found in the LICENSE file.
    
    // Package relnote supports working with release notes.
    //
    // Its main feature is the ability to merge Markdown fragments into a single
    // document. (See [Merge].)
    //
    // This package has minimal imports, so that it can be vendored into the
    // main go repo.
    package relnote
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"path"
    	"regexp"
    	"slices"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/assign.go

    	if mk.Cap != nil {
    		return false
    	}
    
    	// y must be either an integer constant or the largest possible positive value
    	// of variable y needs to fit into a uint.
    
    	// typecheck made sure that constant arguments to make are not negative and fit into an int.
    
    	// The care of overflow of the len argument to make will be handled by an explicit check of int(len) < 0 during runtime.
    	y := mk.Len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	}
    }
    
    // HTTPServerArgs contains arguments needed by an HTTP server that
    // is exporting a pprof web interface.
    type HTTPServerArgs plugin.HTTPServerArgs
    
    // Options groups all the optional plugins into pprof.
    type Options struct {
    	Writer        Writer
    	Flagset       FlagSet
    	Fetch         Fetcher
    	Sym           Symbolizer
    	Obj           ObjTool
    	UI            UI
    	HTTPServer    func(*HTTPServerArgs) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top