Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Assembles (0.19 sec)

  1. cluster/gce/gci/configure-helper.sh

       if [[ "${DISABLE_DOCKER_LIVE_RESTORE:-false}" == "true" ]]; then
          addockeropt "\"live-restore\": false,"
       else
          addockeropt "\"live-restore\": true,"
       fi
    }
    
    function assemble-docker-flags {
      echo "Assemble docker options"
    
        # log the contents of the /etc/docker/daemon.json if already exists
      if [ -f /etc/docker/daemon.json ]; then
        echo "Contents of the old docker config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		fmt.Fprintf(h, "pkgpath %s\n", gccgoPkgpath(p))
    		fmt.Fprintf(h, "ar %q\n", BuildToolchain.(gccgoToolchain).ar())
    		if len(p.SFiles) > 0 {
    			id, _, _ = b.gccToolID(BuildToolchain.compiler(), "assembler-with-cpp")
    			// Ignore error; different assembler versions
    			// are unlikely to make any difference anyhow.
    			fmt.Fprintf(h, "asm %q\n", id)
    		}
    	}
    
    	// Input files.
    	inputFiles := str.StringList(
    		p.GoFiles,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	var ab AsmBuf
    	var n int
    	var c int32
    	errors := ctxt.Errors
    	var nops []nopPad // Padding for a particular assembly (reuse slice storage if multiple assemblies)
    	nrelocs0 := len(s.R)
    	for {
    		// This loop continues while there are reasons to re-assemble
    		// whole block, like the presence of long forward jumps.
    		reAssemble := false
    		for i := range s.R[nrelocs0:] {
    			s.R[nrelocs0+i] = obj.Reloc{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //		Objective-C source files. Only useful with cgo, and always
    //		compiled with the OS-native compiler.
    //	.s, .S, .sx
    //		Assembler source files.
    //		If the package uses cgo or SWIG, these will be assembled with the
    //		OS-native assembler (typically gcc (sic)); otherwise they
    //		will be assembled with the Go assembler.
    //	.swig, .swigcxx
    //		SWIG definition files.
    //	.syso
    //		System object files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    	"log"
    	"math"
    	"math/bits"
    	"sort"
    )
    
    // ctxt9 holds state while assembling a single function.
    // Each function gets a fresh ctxt9.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt9 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    	pc         int64
    }
    
    // Instruction layout.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    		return false
    	}
    	// If p is a multi-instruction sequence with uses REGTMP inserted by
    	// the assembler in order to materialize a large constant/offset, we
    	// can restart p (at the start of the instruction sequence), recompute
    	// the content of REGTMP, upon async preemption. Currently, all cases
    	// of assembler-inserted REGTMP fall into this category.
    	// If p doesn't use REGTMP, it can be simply preempted, so we don't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	if !cfg.BuildContext.CgoEnabled {
    		p.CFiles = nil
    		p.CXXFiles = nil
    		p.MFiles = nil
    		p.SwigFiles = nil
    		p.SwigCXXFiles = nil
    		// Note that SFiles are okay (they go to the Go assembler)
    		// and HFiles are okay (they might be used by the SFiles).
    		// Also Sysofiles are okay (they might not contain object
    		// code; see issue #16050).
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    	"fmt"
    	"log"
    	"math"
    	"sort"
    )
    
    // ctxtz holds state while assembling a single function.
    // Each function gets a fresh ctxtz.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxtz struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    	pc         int64
    }
    
    // instruction layout.
    const (
    	funcAlign = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    does not exist, <code>delete</code> is a no-op.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    The built-in function <code>complex</code> constructs a complex
    value from a floating-point real and imaginary part, while
    <code>real</code> and <code>imag</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top