Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for E$1 (0.04 sec)

  1. 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)
  2. 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)
  3. src/main/webapp/js/admin/plugins/form-validator/security.js

    c={amex:[15,15],diners_club:[14,14],cjb:[16,16],laser:[16,19],visa:[16,16],mastercard:[16,16],maestro:[12,19],discover:[16,16]},d=!1,e=!1;a.formUtils.addValidator({name:"creditcard",validatorFunction:function(b,f){var g=a.split(f.valAttr("allowing")||"");if(e=a.inArray("amex",g)>-1,d=e&&1===g.length,g.length>0){var h=!1;if(a.each(g,function(d,e){if(e in c){if(b.length>=c[e][0]&&b.length<=c[e][1])return h=!0,!1}else a.formUtils.warn('Use of unknown credit card "'+e+'"',!0)}),!h)return!1}if(""!==b.replace(new Re...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 10.5K bytes
    - Viewed (0)
  4. src/regexp/find_test.go

    			}
    			for k, e := range test.matches {
    				got := result[k]
    				if len(got) != cap(got) {
    					t.Errorf("match %d: expected capacity %d got %d: %s", k, len(got), cap(got), test)
    				}
    				expect := test.text[e[0]:e[1]]
    				if expect != string(got) {
    					t.Errorf("match %d: expected %q got %q: %s", k, expect, got, test)
    				}
    			}
    		}
    	}
    }
    
    func TestFindAllString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/clipboard-1.7.1.min.js

    removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function t(){this.selectedText=(0,i.default)(this.target),this.copyText()}},{key:"copyText",value:function t(){var e=void 0;try{e=document.execCommand(this.action)}catch(t){e=!1}this.handleResult(e)}},{key:"handleResult",value:function t(e){this.emitter.emit(e?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. src/math/big/floatconv_test.go

    		2: {"-1+1", "%v", "-1", 2, false},
    		3: {" 00000", "%v", "0", 0, false},
    		4: {"-123456p-78", "%b", "-4.084816388e-19", 0, false},
    		5: {"+123", "%b", "123", 0, false},
    		6: {"-1.234e+56", "%e", "-1.234e+56", 0, false},
    		7: {"-1.234E-56", "%E", "-1.234e-56", 0, false},
    		8: {"-1.234e+567", "%g", "-1.234e+567", 0, false},
    		9: {"+1234567891011.234", "%G", "1.234567891e+12", 0, false},
    
    		// Scan doesn't handle ±Inf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    	}
    
    	if n < 0 {
    		// all results computed - sorted res and exp must be equal
    		for i, r := range res {
    			e := exp[i]
    			if r[0] != e[0] || r[1] != e[1] {
    				t.Errorf("test %q, FindAllIndex %q, result %d: expected match [%d, %d]; got [%d, %d]",
    					tc.name, rx, i, e[0], e[1], r[0], r[1])
    			}
    		}
    	}
    }
    
    func testLookups(t *testing.T, tc *testCase, x *Index, n int) {
    	for _, pat := range tc.patterns {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_ppc64x.s

    DATA  ·kcon+0x438(SB)/8, $0x08090a0b10111213
    #endif
    
    GLOBL ·kcon(SB), RODATA, $1088
    
    #define SHA256ROUND0(a, b, c, d, e, f, g, h, xi, idx) \
    	VSEL		g, f, e, FUNC; \
    	VSHASIGMAW	$15, e, $1, S1; \
    	VADDUWM		xi, h, h; \
    	VSHASIGMAW	$0, a, $1, S0; \
    	VADDUWM		FUNC, h, h; \
    	VXOR		b, a, FUNC; \
    	VADDUWM		S1, h, h; \
    	VSEL		b, c, FUNC, FUNC; \
    	VADDUWM		KI, g, g; \
    	VADDUWM		h, d, d; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/cmd/internal/notsha256/sha256block_ppc64x.s

    DATA  ·kcon+0x438(SB)/8, $0x08090a0b10111213
    #endif
    
    GLOBL ·kcon(SB), RODATA, $1088
    
    #define SHA256ROUND0(a, b, c, d, e, f, g, h, xi, idx) \
    	VSEL		g, f, e, FUNC; \
    	VSHASIGMAW	$15, e, $1, S1; \
    	VADDUWM		xi, h, h; \
    	VSHASIGMAW	$0, a, $1, S0; \
    	VADDUWM		FUNC, h, h; \
    	VXOR		b, a, FUNC; \
    	VADDUWM		S1, h, h; \
    	VSEL		b, c, FUNC, FUNC; \
    	VADDUWM		KI, g, g; \
    	VADDUWM		h, d, d; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. src/crypto/sha512/sha512block_ppc64x.s

    DATA  ·kcon+0x510(SB)/8, $0x1011121314151617
    DATA  ·kcon+0x518(SB)/8, $0x0001020304050607
    GLOBL ·kcon(SB), RODATA, $1312
    
    #define SHA512ROUND0(a, b, c, d, e, f, g, h, xi, idx) \
    	VSEL		g, f, e, FUNC; \
    	VSHASIGMAD	$15, e, $1, S1; \
    	VADDUDM		xi, h, h; \
    	VSHASIGMAD	$0, a, $1, S0; \
    	VADDUDM		FUNC, h, h; \
    	VXOR		b, a, FUNC; \
    	VADDUDM		S1, h, h; \
    	VSEL		b, c, FUNC, FUNC; \
    	VADDUDM		KI, g, g; \
    	VADDUDM		h, d, d; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top