Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for _A (0.04 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. okcurl/README.md

    OkCurl
    ======
    
    _A curl for the next-generation web._
    
    OkCurl is an OkHttp-backed curl clone which allows you to test OkHttp's HTTP engine (including
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 09 21:19:04 UTC 2016
    - 178 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/annotate-parameter-replication.mlir

    module attributes {tf.versions = {producer = 888 : i32}} {
      // CHECK-LABEL: func @annotate_broadcast_values
      func.func @annotate_broadcast_values(%arg0: tensor<?xi32>) -> tensor<?xi32> {
        %0 = "tf._A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        %1 = "tf._B"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        %5:2 = tf_device.replicate([%0, %arg0] as %ri_0: tensor<?xi32>) {n = 2 : i32} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 25 02:54:34 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc.xml

                <property name='staticFinalRegex' value='^logger$|^[A-Z][A-Z_0-9]*$|^serialVersionUID$'/>
            </rule-config>
            <rule-config name='MethodName'>
                <property name='regex' value='^[a-z][\$_a-zA-Z0-9]*$|^.*\s.*$'/>
            </rule-config>
            <rule-config name='VariableName'>
                <property name='finalRegex' value='^[a-z][a-zA-Z0-9]*$'/>
            </rule-config>
            <exclude name="ConfusingMethodName"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  6. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml

                <property name='staticFinalRegex' value='^logger$|^[A-Z][A-Z_0-9]*$|^serialVersionUID$'/>
            </rule-config>
            <rule-config name='MethodName'>
                <property name='regex' value='^[a-z][\$_a-zA-Z0-9]*$|^.*\s.*$'/>
            </rule-config>
            <rule-config name='VariableName'>
                <property name='finalRegex' value='^[a-z][a-zA-Z0-9]*$'/>
            </rule-config>
            <exclude name="ConfusingMethodName"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

            -> (tensor<?x256x56x56xf32>, tensor<256xf32>, tensor<256xf32>, tensor<256xf32>, tensor<256xf32>, tensor<*xf32>)
    
      // CHECK: %[[BATCH_NORM1:[_a-z0-9]*]], {{.*}} = "tf.FusedBatchNormV3"
      // CHECK-SAME: %[[CONV1]]
      // CHECK-SAME: data_format = "NHWC"
    
      // ------------------------------------------------------------------------ //
      // Convolution layer #2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. 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)
  9. pkg/apis/policy/validation/validation_test.go

    		"abc*",
    		"a.abc*",
    		"a.b.*",
    		"a/b/c/d",
    		"a/*",
    		"a/b/*",
    		"a.b/c*",
    		"a.b/c.d",
    		"a/b.c/d",
    	}
    	invalid := []string{
    		"",
    		"รค",
    		"a_",
    		"_",
    		"_a",
    		"_a._b",
    		"__",
    		"-",
    		".",
    		"a.",
    		".a",
    		"a.b.",
    		"a*.b",
    		"a*b",
    		"*a",
    		"Abc",
    		"/",
    		"a/",
    		"/a",
    		"a*/b",
    		func(n int) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathValidationTest.groovy

            ModelPath.validateName("Z9z")
            ModelPath.validateName("abc")
            ModelPath.validateName("aBC")
            ModelPath.validateName("a10")
            ModelPath.validateName("_")
            ModelPath.validateName("_a")
            ModelPath.validateName("__")
            ModelPath.validateName("a_Z")
    
            then:
            noExceptionThrown()
        }
    
        def "validate model path"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top