Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Tate (1.05 sec)

  1. src/cmd/dist/build.go

    	// so in non-release builds, everything now looks out-of-date due to
    	// toolchain2 having build IDs - that is, due to the go command seeing
    	// that there are new compilers. In release builds, the toolchain's reported
    	// version is used in place of the build ID, and the go command does not
    	// see that change from toolchain1 to toolchain2, so in release builds,
    	// nothing looks out of date.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    		// which means it will use the GOOS/GOARCH toolchain
    		// (installed in GOROOT/pkg/tool/GOOS_GOARCH).
    		// If these are not the same toolchain, then the entire standard library
    		// will look out of date (the compilers in those two different tool directories
    		// are built for different architectures and have different build IDs),
    		// which will cause many tests to do unnecessary rebuilds and some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	var buf [SAR_HDR]byte
    	if n, err := io.ReadFull(bp, buf[:]); err != nil {
    		if n == 0 && err != io.EOF {
    			return -1
    		}
    		return 0
    	}
    
    	a.name = artrim(buf[0:16])
    	a.date = artrim(buf[16:28])
    	a.uid = artrim(buf[28:34])
    	a.gid = artrim(buf[34:40])
    	a.mode = artrim(buf[40:48])
    	a.size = artrim(buf[48:58])
    	a.fmag = artrim(buf[58:60])
    
    	arsize := atolwhex(a.size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	return before, after, modFile, nil
    }
    
    // commitRequirements ensures go.mod and go.sum are up to date with the current
    // requirements.
    //
    // In "mod" mode, commitRequirements writes changes to go.mod and go.sum.
    //
    // In "readonly" and "vendor" modes, commitRequirements returns an error if
    // go.mod or go.sum are out of date in a semantically significant way.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	XCOFFDATABASE = 0x200000000 // Start of data address
    )
    
    // File Header
    type XcoffFileHdr64 struct {
    	Fmagic   uint16 // Target machine
    	Fnscns   uint16 // Number of sections
    	Ftimedat int32  // Time and date of file creation
    	Fsymptr  uint64 // Byte offset to symbol table start
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    	Fnsyms   int32  // Number of entries in symbol table
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    	// We use GOARM.Version=7 and !GOARM.SoftFloat to gate the use of VFPv3 vmov (imm) instructions.
    	if buildcfg.GOARM.Version < 7 || buildcfg.GOARM.SoftFloat || math.Float64bits(e) != 0 {
    		return -1
    	}
    	return 0
    }
    
    func (c *ctxt5) chipfloat5(e float64) int {
    	// We use GOARM.Version=7 and !GOARM.SoftFloat to gate the use of VFPv3 vmov (imm) instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    		} else {
    			testKillTimeout = testTimeout + testWaitDelay
    		}
    	}
    
    	// Read testcache expiration time, if present.
    	// (We implement go clean -testcache by writing an expiration date
    	// instead of searching out and deleting test result cache entries.)
    	if dir, _ := cache.DefaultDir(); dir != "off" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    	return t.extra.(*Chan)
    }
    
    type Tuple struct {
    	first  *Type
    	second *Type
    	// Any tuple with a memory type must put that memory type second.
    }
    
    // Results are the output from calls that will be late-expanded.
    type Results struct {
    	Types []*Type // Last element is memory output from call.
    }
    
    // Array contains Type fields specific to array types.
    type Array struct {
    	Elem  *Type // element type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	}
    
    	if !t.listMode {
    		if builder := os.Getenv("GO_BUILDER_NAME"); builder == "" {
    			// Ensure that installed commands are up to date, even with -no-rebuild,
    			// so that tests that run commands end up testing what's actually on disk.
    			// If everything is up-to-date, this is a no-op.
    			// We first build the toolchain twice to allow it to converge,
    			// as when we first bootstrap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    			// skip all the go command machinery.
    			// This avoids any time the go command would
    			// spend checking whether, for example, the installed
    			// package runtime is up to date.
    			// Because we run lots of trivial test programs,
    			// the time adds up.
    			pkg := filepath.Join(tempDir, "pkg.a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top