Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for extended (0.15 sec)

  1. src/cmd/link/internal/loader/loader.go

    		return false
    	}
    	return l.attrVisibilityHidden.Has(l.extIndex(i))
    }
    
    // SetAttrVisibilityHidden sets the "hidden visibility" property for a
    // symbol (see AttrVisibilityHidden).
    func (l *Loader) SetAttrVisibilityHidden(i Sym, v bool) {
    	if !l.IsExternal(i) {
    		panic("tried to set visibility attr on non-external symbol")
    	}
    	if v {
    		l.attrVisibilityHidden.Set(l.extIndex(i))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	XMC_DB     = 2  // Debug dictionary table
    	XMC_TC     = 3  // TOC entry
    	XMC_UA     = 4  // Unclassified
    	XMC_RW     = 5  // Read/Write data
    	XMC_GL     = 6  // Global linkage
    	XMC_XO     = 7  // Extended operation
    	XMC_SV     = 8  // 32-bit supervisor call descriptor
    	XMC_BS     = 9  // BSS class
    	XMC_DS     = 10 // Function descriptor
    	XMC_UC     = 11 // Unnamed FORTRAN common
    	XMC_TC0    = 15 // TOC anchor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    		if macAndPaddingGood != 1 {
    			return nil, 0, alertBadRecordMAC
    		}
    
    		plaintext = payload[:n]
    	}
    
    	hc.incSeq()
    	return plaintext, typ, nil
    }
    
    // sliceForAppend extends the input slice by n bytes. head is the full extended
    // slice, while tail is the appended part. If the original slice has sufficient
    // capacity no allocation is performed.
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/time/format.go

    	} else {
    		b = make([]byte, 0, max)
    	}
    	b = t.AppendFormat(b, layout)
    	return string(b)
    }
    
    // AppendFormat is like [Time.Format] but appends the textual
    // representation to b and returns the extended buffer.
    func (t Time) AppendFormat(b []byte, layout string) []byte {
    	// Optimize for RFC3339 as it accounts for over half of all representations.
    	switch layout {
    	case RFC3339:
    		return t.appendFormatRFC3339(b, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [NOTE]
    ====
    Presently, a `Platform` consists of a defined operating system and architecture.
    As we continue to develop the native binary support in Gradle, the concept of Platform will be extended to include things like C-runtime version, Windows SDK, ABI, etc.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Ctz16NonZero x) && buildcfg.GOAMD64 <  3 => (BSFL x)
    (Ctz8NonZero  x) && buildcfg.GOAMD64 <  3 => (BSFL x)
    
    // BitLen64 of a 64 bit value x requires checking whether x == 0, since BSRQ is undefined when x == 0.
    // However, for zero-extended values, we can cheat a bit, and calculate
    // BSR(x<<1 + 1), which is guaranteed to be non-zero, and which conveniently
    // places the index of the highest set bit where we want it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        difficult we will backport critical fixes to the 3.12.x branch through December 31, 2021. (This
        commitment was originally through December 31, 2020; we have since extended it.)
    
     *  **TLSv1 and TLSv1.1 are no longer enabled by default.** Major web browsers are working towards
        removing these versions altogether in early 2020. If your servers aren't ready yet you can
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * link:{javadocPath}/org/gradle/api/provider/ListProperty.html[ListProperty] no longer extends link:{javadocPath}/org/gradle/api/provider/Property.html[Property].
    
    [[changes_4.4]]
    == Upgrading from 4.3 and earlier
    
    === Potential breaking changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    		// so the run ends inside this word.
    		run = uint(sys.LeadingZeros64(x << z1))
    	} else {
    		// After shifting out z1 bits, we have no more 1s.
    		// This means the run extends to the bottom of the
    		// word so it may extend into further words.
    		run = 64 - z1
    		for j := i - 1; j >= 0; j-- {
    			x := fillAligned(m.scavenged[j]|m.pallocBits[j], uint(minimum))
    			run += uint(sys.LeadingZeros64(x))
    			if x != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/asm0.go

    		a := AOR
    		if p.As == AMOVW && c.ctxt.Arch.Family == sys.MIPS64 {
    			// on MIPS64, most of the 32-bit instructions have unpredictable behavior,
    			// but SLL is special that the result is always sign-extended to 64-bit.
    			a = ASLL
    		}
    		o1 = OP_RRR(c.oprrr(a), p.From.Reg, REGZERO, p.To.Reg)
    
    	case 2: /* add/sub r1,[r2],r3 */
    		r := p.Reg
    		if p.As == ANEGW || p.As == ANEGV {
    			r = REGZERO
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top