Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 411 (0.02 sec)

  1. src/image/testdata/video-001.q50.411.jpeg

    video-001.q50.411.jpeg...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 02:08:45 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  2. src/image/testdata/video-001.q50.411.progressive.jpeg

    video-001.q50.411.progressive.jpeg...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 02:08:45 UTC 2015
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/cgo/asm_mipsx.s

    	MOVW	R7, (4*3)(R29)	// ctxt uintptr
    	MOVW	R16, (4*4)(R29)
    	MOVW	R17, (4*5)(R29)
    	MOVW	R18, (4*6)(R29)
    	MOVW	R19, (4*7)(R29)
    	MOVW	R20, (4*8)(R29)
    	MOVW	R21, (4*9)(R29)
    	MOVW	R22, (4*10)(R29)
    	MOVW	R23, (4*11)(R29)
    	MOVW	g, (4*12)(R29)
    	MOVW	R31, (4*13)(R29)
    #ifndef GOMIPS_softfloat
    	MOVD	F20, (4*14)(R29)
    	MOVD	F22, (4*14+8*1)(R29)
    	MOVD	F24, (4*14+8*2)(R29)
    	MOVD	F26, (4*14+8*3)(R29)
    	MOVD	F28, (4*14+8*4)(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	hwcap_ASIMDDP  = 1 << 20
    	hwcap_SHA512   = 1 << 21
    	hwcap_SVE      = 1 << 22
    	hwcap_ASIMDFHM = 1 << 23
    
    	hwcap2_SVE2 = 1 << 1
    )
    
    // linuxKernelCanEmulateCPUID reports whether we're running
    // on Linux 4.11+. Ideally we'd like to ask the question about
    // whether the current kernel contains
    // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=77c97b4ee21290f5f083173d957843b615abbff2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

        }
    
        def "supports categories and null test class description"() {
            // Our custom runner class won't work with JUnit < 4.11
            Assume.assumeTrue(VersionNumber.parse(version) >= VersionNumber.parse('4.11'))
    
            given:
            file('src/test/java/CategoryA.java') << """
                public interface CategoryA { }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/testFixtures/groovy/org/gradle/testing/fixture/JUnitCoverage.groovy

        final static List<String> JUNIT4_SUPPORTS_JUNIT3_SUITES = [LATEST_JUNIT4_VERSION, '4.3']
        final static List<String> JUNIT4_REVERSE_TEST_ORDER = [LATEST_JUNIT4_VERSION, '4.11']
        final static List<String> FILTER_JUNIT3_TESTS = [LATEST_JUNIT4_VERSION, LATEST_JUNIT3_VERSION, '4.6']
        final static List<String> JUNIT_4 = [LATEST_JUNIT4_VERSION, '4.0']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/covdata/doc.go

    specifics on usage of a given mode):
    
    1. Report percent of statements covered in each profiled package
    
    	$ go tool covdata percent -i=profiledir
    	cov-example/p	coverage: 41.1% of statements
    	main	coverage: 87.5% of statements
    	$
    
    2. Report import paths of packages profiled
    
    	$ go tool covdata pkglist -i=profiledir
    	cov-example/p
    	main
    	$
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildEnvironmentCrossVersionSpec.groovy

            }
    
            then:
            out.toString().contains("<${["var": "val"]}>")
        }
    
        @TargetGradleVersion(">=4.11")
        def "new Gradle versions can mutate environment on all JDK versions"() {
            given:
            toolingApi.requireDaemons() //cannot be run in embedded mode
    
            buildFile << """
                task printEnv() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            1024L**3          | '1 GiB'
            1024L**3 + 1      | '1 GiB'
            1024L**3 * 321    | '321 GiB'
            1024L**4 - 1      | '1023.9 GiB'
    
            1024L**4          | '1 TiB'
            1024L**4 + 1      | '1 TiB'
            1024L**4 * 21     | '21 TiB'
            1024L**5 - 1      | '1023.9 TiB'
    
            1024L**5          | '1 PiB'
            1024L**5 + 1      | '1 PiB'
            1024L**5 * 5      | '5 PiB'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/net/http/status.go

    	StatusRequestTimeout               = 408 // RFC 9110, 15.5.9
    	StatusConflict                     = 409 // RFC 9110, 15.5.10
    	StatusGone                         = 410 // RFC 9110, 15.5.11
    	StatusLengthRequired               = 411 // RFC 9110, 15.5.12
    	StatusPreconditionFailed           = 412 // RFC 9110, 15.5.13
    	StatusRequestEntityTooLarge        = 413 // RFC 9110, 15.5.14
    	StatusRequestURITooLong            = 414 // RFC 9110, 15.5.15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top