Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 104 for 411 (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/syscall/zsysnum_darwin_arm64.go

    	SYS_SELECT_NOCANCEL                = 407
    	SYS_FSYNC_NOCANCEL                 = 408
    	SYS_CONNECT_NOCANCEL               = 409
    	SYS_SIGSUSPEND_NOCANCEL            = 410
    	SYS_READV_NOCANCEL                 = 411
    	SYS_WRITEV_NOCANCEL                = 412
    	SYS_SENDTO_NOCANCEL                = 413
    	SYS_PREAD_NOCANCEL                 = 414
    	SYS_PWRITE_NOCANCEL                = 415
    	SYS_WAITID_NOCANCEL                = 416
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  6. internal/http/dial_linux.go

    			// Enable TCP fast connect
    			// TCPFastOpenConnect sets the underlying socket to use
    			// the TCP fast open connect. This feature is supported
    			// since Linux 4.11.
    			_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, unix.TCP_FASTOPEN_CONNECT, 1)
    
    			// Enable TCP quick ACK, John Nagle says
    			// "Set TCP_QUICKACK. If you find a case where that makes things worse, let me know."
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  7. kotlin-js-store/yarn.lock

      dependencies:
        fast-deep-equal "^3.1.1"
        fast-json-stable-stringify "^2.0.0"
        json-schema-traverse "^0.4.1"
        uri-js "^4.2.2"
    
    ansi-colors@4.1.1:
      version "4.1.1"
      resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
      integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
    
    ansi-regex@^5.0.1:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  8. src/image/jpeg/idct.go

    			s[0] = dc
    			s[1] = dc
    			s[2] = dc
    			s[3] = dc
    			s[4] = dc
    			s[5] = dc
    			s[6] = dc
    			s[7] = dc
    			continue
    		}
    
    		// Prescale.
    		x0 := (s[0] << 11) + 128
    		x1 := s[4] << 11
    		x2 := s[6]
    		x3 := s[2]
    		x4 := s[1]
    		x5 := s[7]
    		x6 := s[5]
    		x7 := s[3]
    
    		// Stage 1.
    		x8 := w7 * (x4 + x5)
    		x4 = x8 + w1mw7*x4
    		x5 = x8 - w1pw7*x5
    		x8 = w3 * (x6 + x7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_darwin_amd64.go

    	SYS_SELECT_NOCANCEL                = 407
    	SYS_FSYNC_NOCANCEL                 = 408
    	SYS_CONNECT_NOCANCEL               = 409
    	SYS_SIGSUSPEND_NOCANCEL            = 410
    	SYS_READV_NOCANCEL                 = 411
    	SYS_WRITEV_NOCANCEL                = 412
    	SYS_SENDTO_NOCANCEL                = 413
    	SYS_PREAD_NOCANCEL                 = 414
    	SYS_PWRITE_NOCANCEL                = 415
    	SYS_WAITID_NOCANCEL                = 416
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  10. fuzzing/fuzzingserver-expected.txt

    "2.11 OK"
    "2.2 OK"
    "2.3 OK"
    "2.4 OK"
    "2.5 OK"
    "2.6 OK"
    "2.7 OK"
    "2.8 OK"
    "2.9 OK"
    "3.1 OK"
    "3.2 NON-STRICT"
    "3.3 NON-STRICT"
    "3.4 NON-STRICT"
    "3.5 OK"
    "3.6 OK"
    "3.7 OK"
    "4.1.1 OK"
    "4.1.2 OK"
    "4.1.3 NON-STRICT"
    "4.1.4 NON-STRICT"
    "4.1.5 OK"
    "4.2.1 OK"
    "4.2.2 OK"
    "4.2.3 NON-STRICT"
    "4.2.4 OK"
    "4.2.5 OK"
    "5.1 OK"
    "5.10 OK"
    "5.11 OK"
    "5.12 OK"
    "5.13 OK"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
Back to top