Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for xy (0.07 sec)

  1. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    // Module bad114 requires Go 1.14 or higher, but declares Go 1.13.
    module example.net/bad114
    
    go 1.13
    -- bad114/bad114.go --
    package bad114
    
    type XY interface {
    	X()
    	Y()
    }
    
    type YZ interface {
    	Y()
    	Z()
    }
    
    type XYZ interface {
    	XY
    	YZ
    }
    
    -- need117/go.mod --
    // Module need117 requires Go 1.17 or higher.
    module example.net/need117
    
    go 1.17
    -- need117/need117.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            private static final int THRESHOLD = 80;
            private Map xaxis;
            private String color;
    
            static BackgroundColor ofConfidence(List<Number> xy) {
                double index = xy.get(0).doubleValue();
                double confidencePercentage = xy.get(1).doubleValue();
    
                if (Math.abs(confidencePercentage) >= THRESHOLD) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/regexp/syntax/doc.go

    	(?:re)         non-capturing group
    	(?flags)       set flags within current group; non-capturing
    	(?flags:re)    set flags during re; non-capturing
    
    	Flag syntax is xyz (set) or -xyz (clear) or xy-z (set xy, clear z). The flags are:
    
    	i              case-insensitive (default false)
    	m              multi-line mode: ^ and $ match begin/end line in addition to begin/end text (default false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    	{"ne 1 2", "true", true},
    	{"ne `xy` `xy`", "false", true},
    	{"ne `xy` `xyz`", "true", true},
    	{"ne .Uthree .Uthree", "false", true},
    	{"ne .Uthree .Ufour", "true", true},
    	{"lt 1.5 1.5", "false", true},
    	{"lt 1.5 2.5", "true", true},
    	{"lt 1 1", "false", true},
    	{"lt 1 2", "true", true},
    	{"lt `xy` `xy`", "false", true},
    	{"lt `xy` `xyz`", "true", true},
    	{"lt .Uthree .Uthree", "false", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

        val dot = '.'.code.toByte().toInt()
        when (val xy = readVariableLengthLong()) {
          in 0L until 40L -> {
            result.writeDecimalLong(0)
            result.writeByte(dot)
            result.writeDecimalLong(xy)
          }
          in 40L until 80L -> {
            result.writeDecimalLong(1)
            result.writeByte(dot)
            result.writeDecimalLong(xy - 40L)
          }
          else -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/runtime/map_fast64.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    	{"ne 1 2", "true", true},
    	{"ne `xy` `xy`", "false", true},
    	{"ne `xy` `xyz`", "true", true},
    	{"ne .Uthree .Uthree", "false", true},
    	{"ne .Uthree .Ufour", "true", true},
    	{"lt 1.5 1.5", "false", true},
    	{"lt 1.5 2.5", "true", true},
    	{"lt 1 1", "false", true},
    	{"lt 1 2", "true", true},
    	{"lt `xy` `xy`", "false", true},
    	{"lt `xy` `xyz`", "true", true},
    	{"lt .Uthree .Uthree", "false", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/runtime/map_faststr.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*2*goarch.PtrSize)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/runtime/map_fast32.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*4)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   death tests; though it lacks many features you can find in PCRE
    //   or POSIX extended regex syntax.  For example, we don't support
    //   union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and
    //   repetition count ("x{5,7}"), among others.
    //
    //   Below is the syntax that we do support.  We chose it to be a
    //   subset of both PCRE and POSIX extended regex, so it's easy to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top