Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for xy (0.05 sec)

  1. test/func8.go

    }
    
    func g() int {
    	return calledf
    }
    
    var xy string
    
    //go:noinline
    func x() bool {
    	xy += "x"
    	return false
    }
    
    //go:noinline
    func y() string {
    	xy += "y"
    	return "abc"
    }
    
    func main() {
    	if f() == g() {
    		panic("wrong f,g order")
    	}
    
    	if x() == (y() == "abc") {
    		panic("wrong compare")
    	}
    	if xy != "xy" {
    		panic("wrong x,y order")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 599 bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/UrlEscapers.java

       *   <li>The space character " " is converted into a plus sign "+".
       *   <li>All other characters are converted into one or more bytes using UTF-8 encoding and each
       *       byte is then represented by the 3-character string "%XY", where "XY" is the two-digit,
       *       uppercase, hexadecimal representation of the byte value.
       * </ul>
       *
       * <p>This escaper is suitable for escaping parameter names and values even when <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/UrlEscapers.java

       *   <li>The space character " " is converted into a plus sign "+".
       *   <li>All other characters are converted into one or more bytes using UTF-8 encoding and each
       *       byte is then represented by the 3-character string "%XY", where "XY" is the two-digit,
       *       uppercase, hexadecimal representation of the byte value.
       * </ul>
       *
       * <p>This escaper is suitable for escaping parameter names and values even when <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top