Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,953 for qtext (0.07 sec)

  1. src/internal/runtime/atomic/atomic_mipsx.s

    TEXT ·Storeint32(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-12
    	JMP	·Store64(SB)
    
    TEXT ·Storeuintptr(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·Xadduintptr(SB),NOSPLIT,$0-12
    	JMP	·Xadd(SB)
    
    TEXT ·Loadint32(SB),NOSPLIT,$0-8
    	JMP	·Load(SB)
    
    TEXT ·Loadint64(SB),NOSPLIT,$0-12
    	JMP	·Load64(SB)
    
    TEXT ·Xaddint32(SB),NOSPLIT,$0-12
    	JMP	·Xadd(SB)
    
    TEXT ·Xaddint64(SB),NOSPLIT,$0-20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                                td().classAttr(baseVersion.getMedian().compareTo(currentVersion.getMedian()) >= 0 ? "text-success" : "text-danger").text(currentVersion.getMedian().format()).end();
                                td().classAttr("text-muted").text("se: " + currentVersion.getStandardError().format()).end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginDslSupport.groovy

            def text = buildFile.text
            int idx = text.indexOf('allprojects')
            text = """${text.substring(0, idx)}
                plugins {
                    $block
                }
    
    ${text.substring(idx)}
            """
            buildFile.text = text
        }
    
        void withPlugins(Map<String, String> plugins, Map<String, String> aliases = [:]) {
            def text = buildFile.text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top