Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,482 for qtext (0.06 sec)

  1. test/codegen/stack.go

    // This file contains code generation tests related to the use of the
    // stack.
    
    // Check that stack stores are optimized away.
    
    // 386:"TEXT\t.*, [$]0-"
    // amd64:"TEXT\t.*, [$]0-"
    // arm:"TEXT\t.*, [$]-4-"
    // arm64:"TEXT\t.*, [$]0-"
    // mips:"TEXT\t.*, [$]-4-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    func StackStore() int {
    	var x int
    	return *(&x)
    }
    
    type T struct {
    	A, B, C, D int // keep exported fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_invalid_version.txt

    cd ..
    go get golang.org/x/text@upgrade
    go list -m golang.org/x/text
    stdout 'golang.org/x/text v1.999999.0 => golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c'
    
    # A pseudo-version derived from a non-ancestor tag is invalid.
    cp go.mod.orig go.mod
    go mod edit -require golang.org/x/text@v0.2.1-0.20170915032832-14c0d48ead0c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocOptionsIntegrationTest.groovy

            text =~ GROOVY_DOC_PROTECTED_PATTERN
            text =~ GROOVY_DOC_PUBLIC_PATTERN
        }
    
        def "package scope can be enabled"() {
            when:
            buildFile << "groovydoc { access = GroovydocAccess.PACKAGE }"
            run "groovydoc"
    
            then:
            def text = file('build/docs/groovydoc/options/Thing.html').text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata/head.txt

    because text follows it.
    
    Because text precedes it,
    # not a heading.
    
    ## Not a heading either.
    
    -- text --
    Some text.
    
    # An Old Heading
    
    Not An Old Heading.
    
    And some text.
    
    # A New Heading.
    
    And some more text.
    
    # Not a heading, because text follows it.
    
    Because text precedes it, # not a heading.
    
    ## Not a heading either.
    
    -- markdown --
    Some text.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_arm64.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Casint32(SB), NOSPLIT, $0-17
    	B	·Cas(SB)
    
    TEXT ·Casint64(SB), NOSPLIT, $0-25
    	B	·Cas64(SB)
    
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	B	·Cas64(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	B	·Cas(SB)
    
    TEXT ·Loadint32(SB), NOSPLIT, $0-12
    	B	·Load(SB)
    
    TEXT ·Loadint64(SB), NOSPLIT, $0-16
    	B	·Load64(SB)
    
    TEXT ·Loaduintptr(SB), NOSPLIT, $0-16
    	B	·Load64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_ppc64x.s

    TEXT ·Storeint32(SB), NOSPLIT, $0-12
    	BR	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-16
    	BR	·Store64(SB)
    
    TEXT ·Storeuintptr(SB), NOSPLIT, $0-16
    	BR	·Store64(SB)
    
    TEXT ·StoreReluintptr(SB), NOSPLIT, $0-16
    	BR	·StoreRel64(SB)
    
    TEXT ·Xadduintptr(SB), NOSPLIT, $0-24
    	BR	·Xadd64(SB)
    
    TEXT ·Loadint32(SB), NOSPLIT, $0-12
    	BR	·Load(SB)
    
    TEXT ·Loadint64(SB), NOSPLIT, $0-16
    	BR	·Load64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/note.go

    	msg = append(msg, text...)
    	msg = append(msg, '\n')
    	return msg, nil
    }
    
    // isValidRecordText reports whether text is syntactically valid record text.
    func isValidRecordText(text []byte) bool {
    	var last rune
    	for i := 0; i < len(text); {
    		r, size := utf8.DecodeRune(text[i:])
    		if r < 0x20 && r != '\n' || r == utf8.RuneError && size == 1 || last == '\n' && r == '\n' {
    			return false
    		}
    		i += size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

            .addEqualityGroup(
                MediaType.create("text", "plain"),
                MediaType.create("TEXT", "PLAIN"),
                MediaType.parse("text/plain"),
                MediaType.parse("TEXT/PLAIN"),
                MediaType.parse("text /plain"),
                MediaType.parse("TEXT/ plain"),
                MediaType.parse("text / plain"),
                MediaType.create("text", "plain").withParameter("a", "1").withoutParameters())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s

    TEXT libc_wait4_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	libc_wait4(SB)
    GLOBL	·libc_wait4_trampoline_addr(SB), RODATA, $4
    DATA	·libc_wait4_trampoline_addr(SB)/4, $libc_wait4_trampoline<>(SB)
    
    TEXT libc_accept_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	libc_accept(SB)
    GLOBL	·libc_accept_trampoline_addr(SB), RODATA, $4
    DATA	·libc_accept_trampoline_addr(SB)/4, $libc_accept_trampoline<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s

    TEXT libc_wait4_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	libc_wait4(SB)
    GLOBL	·libc_wait4_trampoline_addr(SB), RODATA, $8
    DATA	·libc_wait4_trampoline_addr(SB)/8, $libc_wait4_trampoline<>(SB)
    
    TEXT libc_accept_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	libc_accept(SB)
    GLOBL	·libc_accept_trampoline_addr(SB), RODATA, $8
    DATA	·libc_accept_trampoline_addr(SB)/8, $libc_accept_trampoline<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 26.7K bytes
    - Viewed (0)
Back to top