Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for _A (0.11 sec)

  1. test/codegen/comparisons.go

    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray4(a, b [12]int8) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray5(a, b [15]byte) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			t.Errorf("expected false for '%s'", val)
    		}
    	}
    }
    
    func TestIsCIdentifier(t *testing.T) {
    	goodValues := []string{
    		"a", "ab", "abc", "a1", "_a", "a_", "a_b", "a_1", "a__1__2__b", "__abc_123",
    		"A", "AB", "AbC", "A1", "_A", "A_", "A_B", "A_1", "A__1__2__B", "__123_ABC",
    	}
    	for _, val := range goodValues {
    		if msgs := IsCIdentifier(val); len(msgs) != 0 {
    			t.Errorf("expected true for '%s': %v", val, msgs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	// template parameters are stripped from the C++ names but when
    	// -symbolize=demangle=templates flag is used, they will not be.
    	// See tests for examples.
    	cppRegExp                = regexp.MustCompile(`^(?:[_a-zA-Z]\w*::)+(_*[A-Z]\w*::~?[_a-zA-Z]\w*(?:<.*>)?)`)
    	cppAnonymousPrefixRegExp = regexp.MustCompile(`^\(anonymous namespace\)::`)
    )
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Splitter.java

       * or trailing characters matching the given {@code CharMatcher} from each returned substring. For
       * example, {@code Splitter.on(',').trimResults(CharMatcher.is('_')).split("_a ,_b_ ,c__")}
       * returns an iterable containing {@code ["a ", "b_ ", "c"]}.
       *
       * @param trimmer a {@link CharMatcher} that determines whether a character should be removed from
       *     the beginning/end of a subsequence
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Splitter.java

       * or trailing characters matching the given {@code CharMatcher} from each returned substring. For
       * example, {@code Splitter.on(',').trimResults(CharMatcher.is('_')).split("_a ,_b_ ,c__")}
       * returns an iterable containing {@code ["a ", "b_ ", "c"]}.
       *
       * @param trimmer a {@link CharMatcher} that determines whether a character should be removed from
       *     the beginning/end of a subsequence
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top