Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 655 for scav (0.27 sec)

  1. src/cmd/internal/obj/mips/anames.go

    	"TLBWI",
    	"TLBWR",
    	"TNE",
    	"WORD",
    	"WSBH",
    	"XOR",
    	"MOVV",
    	"MOVVL",
    	"MOVVR",
    	"SLLV",
    	"SRAV",
    	"SRLV",
    	"DIVV",
    	"DIVVU",
    	"REMV",
    	"REMVU",
    	"MULV",
    	"MULVU",
    	"ADDV",
    	"ADDVU",
    	"SUBV",
    	"SUBVU",
    	"DSBH",
    	"DSHD",
    	"TRUNCFV",
    	"TRUNCDV",
    	"TRUNCFW",
    	"TRUNCDW",
    	"MOVWU",
    	"MOVFV",
    	"MOVDV",
    	"MOVVF",
    	"MOVVD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/anames.go

    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"SC",
    	"SCV",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"ROTR",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    	"SUBW",
    	"DBAR",
    	"SYSCALL",
    	"TEQ",
    	"TNE",
    	"WORD",
    	"XOR",
    	"MASKEQZ",
    	"MASKNEZ",
    	"MOVV",
    	"MOVVL",
    	"MOVVR",
    	"SLLV",
    	"SRAV",
    	"SRLV",
    	"ROTRV",
    	"DIVV",
    	"DIVVU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    		scan.scan()
    		for last := []byte{}; len(scan.token) > 2; scan.scan() {
    			if bytes.Compare(scan.token, last) != -1 {
    				// Attributes are unsorted. Start over from scratch.
    				p := attrStart + 1
    				scan.next = p
    				attrs := [][]byte{}
    				for scan.scan(); len(scan.token) > 2; scan.scan() {
    					attrs = append(attrs, scan.token)
    					end = scan.end
    				}
    				sort.Sort(bytesSort{attrs, 3})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

        }
    
        def "warns if scan requested but no scan plugin applied"() {
            given:
            scanPlugin.collectConfig = false
    
            when:
            succeeds "t", "--scan"
    
            then:
            scanPlugin.issuedNoPluginWarning(output)
        }
    
        def "does not warns if scan requested but no scan plugin unsupported"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfig.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan.config;
    
    import org.gradle.StartParameter;
    
    /**
     * Represents the aspects of build scan configuration that Gradle contributes.
     * Does not include configuration aspects that the scan plugin manages (e.g. server address).
     * Currently, this is effectively the --scan and --no-scan invocation options.
     *
     * @since 4.0
     */
    public interface BuildScanConfig {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_load_err.txt

    [cgo] go list -e -f '{{range .GoFiles}}{{.}},{{end}}' ./cgoflag
    [cgo] stdout '^cgoflag.go,$'
    
    -- go.mod --
    module m
    
    go 1.14
    
    -- want/want.go --
    package want
    
    -- scan/scan.go --
    // scan error
    ʕ◔ϖ◔ʔ
    
    -- scan/good.go --
    package scan
    
    import _ "m/want"
    
    -- multi/a.go --
    package a
    
    -- multi/b.go --
    package b
    
    import _ "m/want"
    
    -- constraint/constraint.go --
    // +build !!nope
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigIntegrationTest.groovy

            where:
            firstBuildArgs | firstRequest | secondBuildArgs | secondRequest
            ['--scan']     | REQUESTED    | []              | null
            []             | null         | ['--scan']      | REQUESTED
            ['--scan']     | REQUESTED    | ['--scan']      | REQUESTED
        }
    
        void assertRequestedOrNotApplied(@Nullable GradleEnterprisePluginConfig.BuildScanRequest buildScanRequest) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    == Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes, is to publish a link:https://scans.gradle.com[build scan].
    To do so, just run Gradle with the `--scan` flag.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  9. src/text/scanner/scanner_test.go

    	}
    	checkTok(t, s, 1, s.Scan(), 'f', "f")
    	checkTok(t, s, 1, s.Scan(), Ident, "a")
    	checkTok(t, s, 1, s.Scan(), Ident, "a")
    	checkTok(t, s, 1, s.Scan(), Ident, "b123")
    	checkTok(t, s, 1, s.Scan(), Int, "45")
    	checkTok(t, s, 1, s.Scan(), Ident, "a12")
    	checkTok(t, s, 1, s.Scan(), Ident, "b123")
    	checkTok(t, s, 1, s.Scan(), Ident, "a12")
    	checkTok(t, s, 1, s.Scan(), Int, "3")
    	checkTok(t, s, 1, s.Scan(), Ident, "b")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_scans.adoc

    For example, with a build scan, it’s no longer necessary to copy and paste error messages or include all the details about your environment each time you want to ask a question on Stack Overflow, Slack, or the Gradle Forum.
    Instead, copy the link to your latest build scan.
    
    image::build-scan-2.png[]
    
    == Enable Build Scans
    
    To enable build scans on a gradle command, add `--scan` to the command line option:
    
    [source,text]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top