Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 00285 (0.19 sec)

  1. src/unicode/graphic.go

    	}
    	return Is(Punct, r)
    }
    
    // IsSpace reports whether the rune is a space character as defined
    // by Unicode's White Space property; in the Latin-1 space
    // this is
    //
    //	'\t', '\n', '\v', '\f', '\r', ' ', U+0085 (NEL), U+00A0 (NBSP).
    //
    // Other definitions of spacing characters are set by category
    // Z and property [Pattern_White_Space].
    func IsSpace(r rune) bool {
    	// This property isn't the same as Z; special-case it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/go/doc/testdata/examples/issue43658.go

    		},
    
    		// yellow cells
    		complicated: []intset{
    			0:  linksTo(2, 4),
    			1:  linksTo(4, 8),
    			2:  linksTo(0, 3, 4, 5, 8, 9),
    			3:  linksTo(2, 8, 11),
    			4:  linksTo(0, 1, 2, 8),
    			5:  linksTo(2),
    			6:  nil,
    			7:  linksTo(9, 11),
    			8:  linksTo(1, 2, 3, 4, 10, 12),
    			9:  linksTo(2, 7, 11),
    			10: linksTo(8),
    			11: linksTo(3, 7, 9, 12),
    			12: linksTo(8, 11),
    		},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv12-RSA-RSAPSS

    000002e0  7d 7d 42 7f 9f db 53 a2  a9 e5 be b4 32 47 65 9a  |}}B...S.....2Ge.|
    000002f0  cc d6 9f ee 4c bc 28 7d  27 00 69 e2 fa fd fa 65  |....L.(}'.i....e|
    00000300  a0 3d c1 00 85 a9 28 8c  d1 9b 6d 49 2f 84 17 b0  |.=....(...mI/...|
    00000310  59 cd ac 79 a8 6d cc 8a  a0 05 e9 ca e8 df 14 2d  |Y..y.m.........-|
    00000320  a0 59 a3 75 a6 c6 ec 91  37 e1 e6 dc 6d d8 74 96  |.Y.u....7...m.t.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. docs/features/events.md

      response.body().source().readByteString();
    }
    ```
    
    And the listener prints the corresponding events:
    
    ```
    REQUEST 1 (new connection)
    0.000 callStart
    0.010 dnsStart
    0.017 dnsEnd
    0.025 connectStart
    0.117 secureConnectStart
    0.586 secureConnectEnd
    0.586 connectEnd
    0.587 connectionAcquired
    0.588 requestHeadersStart
    0.590 requestHeadersEnd
    0.591 responseHeadersStart
    0.675 responseHeadersEnd
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  5. cmd/speedtest.go

    				break
    			}
    
    			// We break if we did not see 2.5% growth rate in total GET
    			// requests, we have reached our peak at this point.
    			doBreak := float64(totalGet-throughputHighestGet)/float64(totalGet) < 0.025
    
    			throughputHighestGet = totalGet
    			throughputHighestResults = results
    			throughputHighestPut = totalPut
    
    			if doBreak {
    				sendResult()
    				break
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/image/color/ycbcr_test.go

    		for i := 0; i < b.N; i++ {
    			sink8, sink8, sink8 = RGBToYCbCr(0, 0, 0)
    		}
    	})
    	b.Run("Cb", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			sink8, sink8, sink8 = RGBToYCbCr(0, 0, 255)
    		}
    	})
    	b.Run("Cr", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			sink8, sink8, sink8 = RGBToYCbCr(255, 0, 0)
    		}
    	})
    }
    
    func BenchmarkYCbCrToRGBA(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 07:51:17 UTC 2016
    - 7.3K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedNotGiven

    00000310  52 38 ef a5 fa 84 63 70  f0 6d 64 ec 66 1a c9 b5  |R8....cp.md.f...|
    00000320  78 ba 17 74 f4 b4 2b a2  fe 9a 7f 38 b8 5e 8b 56  |x..t..+....8.^.V|
    00000330  a6 7b 2c 92 7f db 58 c8  fa f9 2d 6b 00 25 dc 0a  |.{,...X...-k.%..|
    00000340  aa 13 e8 40 f3 fd 47 23  f6 bf 1c 30 fc 91 18 95  |...@..G#...0....|
    00000350  ac a8 82 3d f5 ef 17 03  03 00 99 7e 30 4f f1 00  |...=.......~0O..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top