Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Assembles (0.14 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. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    shore.
    
    
    
                               CHAPTER III
    
                      A Caucus-Race and a Long Tale
    
    
      They were indeed a queer-looking party that assembled on the
    bank--the birds with draggled feathers, the animals with their
    fur clinging close to them, and all dripping wet, cross, and
    uncomfortable.
    
      The first question of course was, how to get dry again:  they
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    shore.
    
    
    
                               CHAPTER III
    
                      A Caucus-Race and a Long Tale
    
    
      They were indeed a queer-looking party that assembled on the
    bank--the birds with draggled feathers, the animals with their
    fur clinging close to them, and all dripping wet, cross, and
    uncomfortable.
    
      The first question of course was, how to get dry again:  they
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top