Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for xx$ (0.04 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-ECDSA

    00000190  c0 48 3a 69 e0 28 6d d3  37 00 ef 04 62 dd 0d a0  |.H:i.(m.7...b...|
    000001a0  9c 70 62 83 d8 81 d3 64  31 aa 9e 97 31 bd 96 b0  |.pb....d1...1...|
    000001b0  68 c0 9b 23 de 76 64 3f  1a 5c 7f e9 12 0e 58 58  |h..#.vd?.\....XX|
    000001c0  b6 5f 70 dd 9b d8 ea d5  d7 f5 d5 cc b9 b6 9f 30  |._p............0|
    000001d0  66 5b 66 9a 20 e2 27 e5  bf fe 3b 30 09 06 07 2a  |f[f. .'...;0...*|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                // We need 5G of heap to parse large JFR recordings when generating flamegraphs.
                // If we drop JFR as profiler and switch to something else, we can reduce the memory.
                jvmArgs("-Xmx5g", "-XX:+HeapDumpOnOutOfMemoryError")
                if (project.performanceTestVerbose.isPresent) {
                    testLogging.showStandardStreams = true
                }
            }
            performanceTest.configure(configure)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-RSAPSS

    000002d0  17 03 e1 96 f5 d3 66 3b  7b f2 a1 aa 3a 67 95 13  |......f;{...:g..|
    000002e0  be 71 5f 38 a7 8a 73 4d  64 30 1c 1d 18 32 7f 7d  |.q_8..sMd0...2.}|
    000002f0  79 3e 58 43 4b c0 3c 58  58 e6 ef ac 65 99 d3 5b  |y>XCK.<XX...e..[|
    00000300  df ba 46 6d 7f ac 2e bc  8e d0 9e e1 11 ce 31 24  |..Fm..........1$|
    00000310  78 a2 1e 14 54 0a 36 9a  97 48 da 8c d4 f0 01 8c  |x...T.6..H......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/volume/iscsi/iscsi_util.go

    			// for safer side to avoid the possibility of an empty entry.
    			if path == "" {
    				continue
    			}
    			// check if the dev is using mpio and if so mount it via the dm-XX device
    			if mappedDevicePath := deviceUtil.FindMultipathDeviceForDevice(path); mappedDevicePath != "" {
    				return mappedDevicePath
    			}
    		}
    		if i == maxRetries-1 {
    			break
    		}
    		time.Sleep(time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  5. src/text/template/parse/lex.go

    func (l *lexer) scanNumber() bool {
    	// Optional leading sign.
    	l.accept("+-")
    	// Is it hex?
    	digits := "0123456789_"
    	if l.accept("0") {
    		// Note: Leading 0 does not mean octal in floats.
    		if l.accept("xX") {
    			digits = "0123456789abcdefABCDEF_"
    		} else if l.accept("oO") {
    			digits = "01234567_"
    		} else if l.accept("bB") {
    			digits = "01_"
    		}
    	}
    	l.acceptRun(digits)
    	if l.accept(".") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. test/codegen/comparisons.go

    func CompareString1(s string) bool {
    	// amd64:`CMPW\t\(.*\), [$]`
    	// arm64:`MOVHU\t\(.*\), [R]`,`MOVD\t[$]`,`CMPW\tR`
    	// ppc64le:`MOVHZ\t\(.*\), [R]`,`CMPW\t.*, [$]`
    	// s390x:`MOVHBR\t\(.*\), [R]`,`CMPW\t.*, [$]`
    	return s == "xx"
    }
    
    func CompareString2(s string) bool {
    	// amd64:`CMPL\t\(.*\), [$]`
    	// arm64:`MOVWU\t\(.*\), [R]`,`CMPW\t.*, [R]`
    	// ppc64le:`MOVWZ\t\(.*\), [R]`,`CMPW\t.*, [R]`
    	// s390x:`MOVWBR\t\(.*\), [R]`,`CMPW\t.*, [$]`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/runtime/map_test.go

    // ("quick keys") as well as long keys.
    func TestSingleBucketMapStringKeys_DupLen(t *testing.T) {
    	testMapLookups(t, map[string]string{
    		"x":                      "x1val",
    		"xx":                     "x2val",
    		"foo":                    "fooval",
    		"bar":                    "barval", // same key length as "foo"
    		"xxxx":                   "x4val",
    		strings.Repeat("x", 128): "longval1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MapsCollectionTest.java

                        return new SampleElements<>(
                            mapEntry("x", 1),
                            mapEntry("xxx", 3),
                            mapEntry("xx", 2),
                            mapEntry("xxxx", 4),
                            mapEntry("aaaaa", 5));
                      }
    
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  9. src/strconv/ftoaryu.go

    			roundUp = trunc || m&1 == 1
    		}
    		if b != 0 {
    			trunc = true
    		}
    	}
    	if roundUp {
    		m++
    	}
    	if m >= max {
    		// Happens if di was originally 99999....xx
    		m /= 10
    		trimmed++
    	}
    	// render digits (similar to formatBits)
    	n := uint(prec)
    	d.nd = prec
    	v := m
    	for v >= 100 {
    		var v1, v2 uint64
    		if v>>32 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  10. src/unicode/utf8/utf8_test.go

    			}
    			i++
    		}
    	}
    }
    
    var invalidSequenceTests = []string{
    	"\xed\xa0\x80\x80", // surrogate min
    	"\xed\xbf\xbf\x80", // surrogate max
    
    	// xx
    	"\x91\x80\x80\x80",
    
    	// s1
    	"\xC2\x7F\x80\x80",
    	"\xC2\xC0\x80\x80",
    	"\xDF\x7F\x80\x80",
    	"\xDF\xC0\x80\x80",
    
    	// s2
    	"\xE0\x9F\xBF\x80",
    	"\xE0\xA0\x7F\x80",
    	"\xE0\xBF\xC0\x80",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
Back to top