Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for _A (0.02 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. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            ' A((,))'              | 'A'       | [tokens('(,)')]
            ' A((,,,), c)'         | 'A'       | [tokens('(,,,)'), token('c')]
            '_a ( p1 p2 p3 )'      | '_a'      | [tokens('p1 p2 p3')]
            '_a ( 1, (2+3) )'      | '_a'      | [token('1'), tokens('(2+3)')]
            '_a((, ) a b c)'       | '_a'      | [tokens('(,) a b c')]
            'func( (a) ( b ))'     | 'func'    | [tokens('(a)(b)')]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/aot/codegen.cc

      }
      // Require that the identifier starts with a nondigit, and is composed of
      // nondigits and digits, as specified in section [2.11 Identifiers] of the
      // C++11 Standard.  Note that nondigit is defined as [_a-zA-Z] and digit is
      // defined as [0-9].
      //
      // Technically the standard also allows for `universal-character-name`, with a
      // table of allowed unicode ranges, as well as `other implementation-defined
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top