Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Xy (0.02 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/go/build/constraint/expr_test.go

    }{
    	{"", ""},
    	{"x", "x"},
    	{"x.y", "x.y"},
    	{"x_y", "x_y"},
    	{"αx", "αx"},
    	{"αx²", "αx err: invalid syntax at ²"},
    	{"go1.2", "go1.2"},
    	{"x y", "x y"},
    	{"x!y", "x ! y"},
    	{"&&||!()xy yx ", "&& || ! ( ) xy yx"},
    	{"x~", "x err: invalid syntax at ~"},
    	{"x ~", "x err: invalid syntax at ~"},
    	{"x &", "x err: invalid syntax at &"},
    	{"x &y", "x err: invalid syntax at &"},
    }
    
    func TestLex(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 18 22:36:55 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. src/sort/search_test.go

    		}
    	}
    }
    
    func TestFind(t *testing.T) {
    	str1 := []string{"foo"}
    	str2 := []string{"ab", "ca"}
    	str3 := []string{"mo", "qo", "vo"}
    	str4 := []string{"ab", "ad", "ca", "xy"}
    
    	// slice with repeating elements
    	strRepeats := []string{"ba", "ca", "da", "da", "da", "ka", "ma", "ma", "ta"}
    
    	// slice with all element equal
    	strSame := []string{"xx", "xx", "xx"}
    
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 14:42:13 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                        }
                },
                grid: {hoverable: true, clickable: true, markings: background},
                xaxis: xaxis,
                yaxis: {min: determineMinY(data, unit)}, selection: {mode: 'xy'}
            };
            const chart = $.plot('#' + chartId, data, options);
            plots[chartId] = chart;
            function zoomFunction(plot, reset) {
                reset = reset || false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/slices/sort_test.go

    	}
    }
    
    func TestBinarySearch(t *testing.T) {
    	str1 := []string{"foo"}
    	str2 := []string{"ab", "ca"}
    	str3 := []string{"mo", "qo", "vo"}
    	str4 := []string{"ab", "ad", "ca", "xy"}
    
    	// slice with repeating elements
    	strRepeats := []string{"ba", "ca", "da", "da", "da", "ka", "ma", "ma", "ta"}
    
    	// slice with all element equal
    	strSame := []string{"xx", "xx", "xx"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top