Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for E$1 (0.06 sec)

  1. src/go/doc/testdata/e.1.golden

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue9370.go

    	_ = n != i // ERROR "invalid operation.*mismatched types|incompatible types"
    	_ = n >= i // ERROR "invalid operation.*mismatched types|incompatible types"
    
    	_ = e == 1
    	_ = e != 1
    	_ = e >= 1 // ERROR "invalid operation.*not defined|invalid comparison"
    	_ = 1 == e
    	_ = 1 != e
    	_ = 1 >= e // ERROR "invalid operation.*not defined|invalid comparison"
    
    	_ = i == 1 // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/context.go

    	offset := 2 + e[0]&lengthMask // size of header + fold string
    	// Get length of first special case mapping.
    	n := (e[1] >> lengthBits) & lengthMask
    	if ct == cTitle {
    		// The first special case mapping is for lower. Set n to the second.
    		if n == noChange {
    			n = 0
    		}
    		n, e = e[1]&lengthMask, e[n:]
    	}
    	if n != noChange {
    		return c.writeString(e[offset : offset+n])
    	}
    	return c.copy()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/unicode/utf8/example_test.go

    	//   1
    	// , 1
    	// o 1
    	// l 1
    	// l 1
    	// e 1
    	// H 1
    }
    
    func ExampleDecodeLastRuneInString() {
    	str := "Hello, 世界"
    
    	for len(str) > 0 {
    		r, size := utf8.DecodeLastRuneInString(str)
    		fmt.Printf("%c %v\n", r, size)
    
    		str = str[:len(str)-size]
    	}
    	// Output:
    	// 界 3
    	// 世 3
    	//   1
    	// , 1
    	// o 1
    	// l 1
    	// l 1
    	// e 1
    	// H 1
    
    }
    
    func ExampleDecodeRune() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 21:29:18 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  5. src/regexp/testdata/repetition.dat

    E	((..)|(.))((..)|(.))((..)|(.))		NULL		NOMATCH
    
    E	((..)|(.)){1}				NULL		NOMATCH
    E	((..)|(.)){2}				NULL		NOMATCH
    E	((..)|(.)){3}				NULL		NOMATCH
    
    E	((..)|(.))*				NULL		(0,0)
    
    E	((..)|(.))				a		(0,1)(0,1)(?,?)(0,1)
    E	((..)|(.))((..)|(.))			a		NOMATCH
    E	((..)|(.))((..)|(.))((..)|(.))		a		NOMATCH
    
    E	((..)|(.)){1}				a		(0,1)(0,1)(?,?)(0,1)
    E	((..)|(.)){2}				a		NOMATCH
    E	((..)|(.)){3}				a		NOMATCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  6. test/append.go

    	}
    
    	verify("struct a", append(S{}), S{})
    	verify("struct b", append(S{}, e[0]), e[0:1])
    	verify("struct c", append(S{}, e[0], e[1], e[2]), e[0:3])
    
    	verify("struct d", append(e[0:1]), e[0:1])
    	verify("struct e", append(e[0:1], e[1]), e[0:2])
    	verify("struct f", append(e[0:1], e[1], e[2], e[3]), e[0:4])
    
    	verify("struct g", append(e[0:3]), e[0:3])
    	verify("struct h", append(e[0:3], e[3]), e[0:4])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 06 04:28:23 UTC 2018
    - 9.1K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse_test.go

    	re  string
    	out string
    }{
    	{`x(?i:ab*c|d?e)1`, `x(?i:AB*C|D?E)1`},
    	{`x(?i:ab*cd?e)1`, `x(?i:AB*CD?E)1`},
    	{`0(?i:ab*c|d?e)1`, `(?i:0(?:AB*C|D?E)1)`},
    	{`0(?i:ab*cd?e)1`, `(?i:0AB*CD?E1)`},
    	{`x(?i:ab*c|d?e)`, `x(?i:AB*C|D?E)`},
    	{`x(?i:ab*cd?e)`, `x(?i:AB*CD?E)`},
    	{`0(?i:ab*c|d?e)`, `(?i:0(?:AB*C|D?E))`},
    	{`0(?i:ab*cd?e)`, `(?i:0AB*CD?E)`},
    	{`(?i:ab*c|d?e)1`, `(?i:(?:AB*C|D?E)1)`},
    	{`(?i:ab*cd?e)1`, `(?i:AB*CD?E1)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. Makefile.core.mk

    	sed -e '1 i {{- if .Values.global.configCluster }}' -e '$$ a {{- end }}' manifests/charts/istio-control/istio-discovery/templates/validatingadmissionpolicy.yaml > manifests/charts/istiod-remote/templates/validatingadmissionpolicy.yaml
    	sed -e '1 i {{- if .Values.global.configCluster }}' -e '$$ a {{- end }}' manifests/charts/base/templates/default.yaml > manifests/charts/istiod-remote/templates/default.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testerrors/testdata/issue14669.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 14669: test that fails when build with CGO_CFLAGS selecting
    // optimization.
    
    package p
    
    /*
    const int E = 1;
    
    typedef struct s {
    	int       c;
    } s;
    */
    import "C"
    
    func F() {
    	_ = C.s{
    		c: C.E,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 368 bytes
    - Viewed (0)
  10. src/path/filepath/path_windows.go

    			// path (for example, "\\") is underspecified. We currently join subsequent
    			// elements so Join("\\", "host", "share") produces "\\host\share".
    			for len(e) > 0 && os.IsPathSeparator(e[0]) {
    				e = e[1:]
    			}
    			// If the path is \ and the next path element is ??,
    			// add an extra .\ to create \.\?? rather than \??\
    			// (a Root Local Device path).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top