Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for _A (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top