Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for _A (0.68 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    		} else if int64(int32(v)) == v {
    			zRIL(_a, op_LGFI, uint32(p.To.Reg), uint32(v), asm)
    		} else if int64(uint32(v)) == v {
    			zRIL(_a, op_LLILF, uint32(p.To.Reg), uint32(v), asm)
    		} else if uint64(v)&0xffffffff00000000 == uint64(v) {
    			zRIL(_a, op_LLIHF, uint32(p.To.Reg), uint32(v>>32), asm)
    		} else {
    			zRIL(_a, op_LLILF, uint32(p.To.Reg), uint32(v), asm)
    			zRIL(_a, op_IIHF, uint32(p.To.Reg), uint32(v>>32), asm)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. pkg/apis/policy/validation/validation.go

    	allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(status.ExpectedPods), fldPath.Child("expectedPods"))...)
    	return allErrs
    }
    
    const sysctlPatternSegmentFmt string = "([a-z0-9][-_a-z0-9]*)?[a-z0-9*]"
    
    // SysctlContainSlashPatternFmt is a regex that contains a slash used for matching valid sysctl patterns.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    	if !httpHeaderNameRegexp.MatchString(value) {
    		return []string{RegexError(httpHeaderNameErrMsg, httpHeaderNameFmt, "X-Header-Name")}
    	}
    	return nil
    }
    
    const envVarNameFmt = "[-._a-zA-Z][-._a-zA-Z0-9]*"
    const envVarNameFmtErrMsg string = "a valid environment variable name must consist of alphabetic characters, digits, '_', '-', or '.', and must not start with a digit"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

        }
    
        def "extracts property names"() {
            expect:
            def details = ClassInspector.inspect(PropNames)
    
            details.propertyNames == ['class', 'metaClass', 'a', 'b', 'URL', 'url', '_A'] as Set
        }
    
        def "extracts properties of a Groovy interface"() {
            expect:
            def details = ClassInspector.inspect(SomeInterface)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/moment-with-locales.min.js

    i?Y(e)._overflowWeekday=!0:(_=Re(t,s,n,d,r),e._a[he]=_.year,e._dayOfYear=_.dayOfYear)}(e),null!=e._dayOfYear&&(d=ua(e._a[he],s[he]),(e._dayOfYear>Te(d)||0===e._dayOfYear)&&(Y(e)._overflowDayOfYear=!0),t=Je(d,0,e._dayOfYear),e._a[Le]=t.getUTCMonth(),e._a[ce]=t.getUTCDate()),a=0;a<3&&null==e._a[a];++a)e._a[a]=r[a]=s[a];for(;a<7;a++)e._a[a]=r[a]=null==e._a[a]?2===a?1:0:e._a[a];24===e._a[Ye]&&0===e._a[ye]&&0===e._a[fe]&&0===e._a[ke]&&(e._nextDay=!0,e._a[Ye]=0),e._d=(e._useUTC?Je:function(e,a,t,s,n,d,r){var...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "a-a", escaped: "a__dash__a"},
    		{unescaped: "a__a", escaped: "a__underscores__a"},
    		{unescaped: "a.-/__a", escaped: "a__dot____dash____slash____underscores__a"},
    		{unescaped: "a._a", escaped: "a__dot___a"},
    		{unescaped: "a__.__a", escaped: "a__underscores____dot____underscores__a"},
    		{unescaped: "a___a", escaped: "a__underscores___a"},
    		{unescaped: "a____a", escaped: "a__underscores____underscores__a"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  7. src/internal/chacha8rand/chacha8_generic.go

    		// them here first to make the next swap get the right answer.
    		for i, x := range buf {
    			buf[i] = x>>32 | x<<32
    		}
    	}
    }
    
    // qr is the (inlinable) ChaCha8 quarter round.
    func qr(a, b, c, d uint32) (_a, _b, _c, _d uint32) {
    	a += b
    	d ^= a
    	d = d<<16 | d>>16
    	c += d
    	b ^= c
    	b = b<<12 | b>>20
    	a += b
    	d ^= a
    	d = d<<8 | d>>24
    	c += d
    	b ^= c
    	b = b<<7 | b>>25
    	return a, b, c, d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. internal/s3select/sql/parser_test.go

    	p := participle.MustBuild(
    		&Identifier{},
    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    	)
    
    	id := Identifier{}
    	validCases := []string{
    		"a",
    		"_a",
    		"abc_a",
    		"a2",
    		`"abc"`,
    		`"abc\a""ac"`,
    	}
    	for i, tc := range validCases {
    		err := p.ParseString(tc, &id)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    }
    
    var celIdentRegex = regexp.MustCompile("^[_a-zA-Z][_a-zA-Z0-9]*$")
    var celReserved = sets.NewString("true", "false", "null", "in",
    	"as", "break", "const", "continue", "else",
    	"for", "function", "if", "import", "let",
    	"loop", "package", "namespace", "return",
    	"var", "void", "while")
    
    func isCELIdentifier(name string) bool {
    	// IDENT          ::= [_a-zA-Z][_a-zA-Z0-9]* - RESERVED
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. docs/yo/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Kabir Khan - <strong>Microsoft</strong> <a href="https://github.com/tiangolo/fastapi/pull/26" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    "_A gba àwọn ohun èlò ìwé afọwọkọ **FastAPI** tí kò yí padà láti ṣẹ̀dá olùpín **REST** tí a lè béèrè lọ́wọ́ rẹ̀ láti gba **àsọtẹ́lẹ̀**. [fún Ludwig]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top