Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for menor (0.24 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    //
    // Files in the "minor changes" directory (the unique directory matching the glob
    // "*stdlib/*minor") are named after the package to which they refer, and will have
    // the package heading inserted automatically and links to other standard library
    // symbols expanded automatically. For example, if a file *stdlib/minor/bytes/f.md
    // contains the text
    //
    //	[Reader] implements [io.Reader].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    }
    
    const (
    	SizeofBpfVersion = 0x4
    	SizeofBpfStat    = 0x8
    	SizeofBpfProgram = 0x10
    	SizeofBpfInsn    = 0x8
    	SizeofBpfHdr     = 0x14
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv uint32
    	Drop uint32
    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/init.go

    		}
    		if compiler.major < 7 {
    			return fmt.Errorf("-asan is not supported with %s compiler %d.%d\n", compiler.name, compiler.major, compiler.minor)
    		}
    	case "clang":
    		if compiler.major < 9 {
    			return fmt.Errorf("-asan is not supported with %s compiler %d.%d\n", compiler.name, compiler.major, compiler.minor)
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/instantiate.go

    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    		if tparams.Len() == 0 {
    			return orig // nothing to do (minor optimization)
    		}
    
    		return check.newAliasInstance(pos, orig, targs, ctxt)
    
    	case *Signature:
    		assert(expanding == nil) // function instances cannot be reached from Named types
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query.go

    //     current is a newer version, current will be returned (see below).
    //
    //   - the literal string "patch", denoting the latest available tagged version
    //     with the same major and minor number as current (see below).
    //
    //   - v1, denoting the latest available tagged version v1.x.x.
    //
    //   - v1.2, denoting the latest available tagged version v1.2.x.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    // key generates encoded strings of Mapping to be used as a key for
    // maps.
    func (m *Mapping) key() mappingKey {
    	// Normalize addresses to handle address space randomization.
    	// Round up to next 4K boundary to avoid minor discrepancies.
    	const mapsizeRounding = 0x1000
    
    	size := m.Limit - m.Start
    	size = size + mapsizeRounding - 1
    	size = size - (size % mapsizeRounding)
    	key := mappingKey{
    		size:   size,
    		offset: m.Offset,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    const (
    	SizeofBpfVersion = 0x4
    	SizeofBpfStat    = 0x8
    	SizeofBpfProgram = 0x10
    	SizeofBpfInsn    = 0x8
    	SizeofBpfHdr     = 0x14
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv uint32
    	Drop uint32
    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	found := false
    	const LC_BUILD_VERSION = 0x32
    	checkMin := func(ver uint32) {
    		major, minor, patch := (ver>>16)&0xff, (ver>>8)&0xff, (ver>>0)&0xff
    		if major < 11 {
    			t.Errorf("LC_BUILD_VERSION version %d.%d.%d < 11.0.0", major, minor, patch)
    		}
    	}
    	for _, cmd := range exem.Loads {
    		raw := cmd.Raw()
    		type_ := exem.ByteOrder.Uint32(raw)
    		if type_ != LC_BUILD_VERSION {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/import.go

    // lexically could have provided the package but did not.
    //
    // If skipModFile is true, the go.mod file for the package is not loaded. This
    // allows 'go mod tidy' to preserve a minor checksum-preservation bug
    // (https://go.dev/issue/56222) for modules with 'go' versions between 1.17 and
    // 1.20, preventing unnecessary go.sum churn and network access in those
    // modules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    	  "go1.1" from Go version 1.1 onward, "go1.12" from Go 1.12, and so on.
    	- any additional tags given by the -tags flag (see 'go help build').
    
    There are no separate build tags for beta or minor releases.
    
    If a file's name, after stripping the extension and a possible _test suffix,
    matches any of the following patterns:
    	*_GOOS
    	*_GOARCH
    	*_GOOS_GOARCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top