Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for T12 (0.02 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

      const T10 v10_;
      const T11 v11_;
      const T12 v12_;
    };
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
        typename T6, typename T7, typename T8, typename T9, typename T10,
        typename T11, typename T12, typename T13>
    class ValueArray13 {
     public:
      ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
          T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/cycles5.go

    		M(P)
    	}
    
    	M interface {
    		F() P // ERROR "invalid use of type alias"
    	}
    
    	P = interface {
    		I() M
    	}
    )
    
    // issue #8699
    type T12 /* ERROR "invalid recursive type" */ [len(a12)]int
    var a12 = makeArray()
    func makeArray() (res T12) { return }
    
    // issue #20770
    var r = newReader()
    func newReader() r // ERROR "r is not a type"
    
    // variations of the theme of #8699 and #20770
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp_test.go

    			Valu("t9", OpXor64, c.config.Types.Int64, 0, nil, "t8", "v2"),
    			Valu("t10", OpNeg64, c.config.Types.Int64, 0, nil, "t9"),
    			Valu("t11", OpCom64, c.config.Types.Int64, 0, nil, "t10"),
    			Valu("t12", OpNeg64, c.config.Types.Int64, 0, nil, "t11"),
    			Valu("t13", OpFloor, c.config.Types.Float64, 0, nil, "v3"),
    			Valu("t14", OpSqrt, c.config.Types.Float64, 0, nil, "t13"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/cycles5a.go

    type (
    	_ interface {
    		M(P)
    	}
    
    	M interface {
    		F() P
    	}
    
    	P = interface {
    		I() M
    	}
    )
    
    // issue #8699
    type T12 /* ERROR "invalid recursive type" */ [len(a12)]int
    var a12 = makeArray()
    func makeArray() (res T12) { return }
    
    // issue #20770
    var r = newReader()
    func newReader() r // ERROR "r is not a type"
    
    // variations of the theme of #8699 and #20770
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			requestedName: "t12-foo1",
    			recursive:     true,
    			fieldSelector: fields.SelectorFromSet(fields.Set{
    				"metadata.name": "t12-foo1",
    				"spec.nodeName": "t12-bar1",
    			}),
    			indexFields: []string{"spec.nodeName"},
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t12-foo1", "t12-ns1"), false, ""},
    				{baseNamespacedPodUpdated("t12-foo1", "t12-ns1"), false, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12/ProjectInheritanceTest.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.inheritance.t12;
    
    import java.io.File;
    import java.util.Map;
    
    import org.apache.maven.model.Plugin;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.inheritance.AbstractProjectInheritanceTestCase;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                }
                val t11: Copy = tasks.create<Copy>("hill") {
                    description += "!"
                    destinationDir = file("out")
                }
    
                val t12: TaskProvider<Task> = tasks.named("bat")
                val t13: TaskProvider<Copy> = tasks.named("bat", Copy::class)
                val t14: TaskProvider<Copy> = tasks.named<Copy>("bat")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls1.go

    	t6 byte = array[t1]
    	t7 byte = array[x /* ERROR "must be integer" */]
    	t8 *int = & /* ERRORx `cannot use .* variable declaration` */ a
    	t10 *int = &42 /* ERROR "cannot take address" */
    	t11 *complex64 = &v
    	t12 complex64 = -(u + *t11) / *&v
    	t13 int = a /* ERROR "shifted operand" */ << d
    	t14 int = i << j
    	t15 math /* ERROR "math is not a type" */
    	t16 math.xxx /* ERROR "undefined" */
    	t17 math /* ERROR "not a type" */ .Pi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/text/tabwriter/tabwriter_test.go

    			"1\t1\t<font color=red attr=日本語>999999999</font>\t0000000000\n",
    	},
    
    	{
    		"14",
    		1, 0, 2, ' ', AlignRight,
    		".0\t.3\t2.4\t-5.1\t\n" +
    			"23.0\t12345678.9\t2.4\t-989.4\t\n" +
    			"5.1\t12.0\t2.4\t-7.0\t\n" +
    			".0\t0.0\t332.0\t8908.0\t\n" +
    			".0\t-.3\t456.4\t22.1\t\n" +
    			".0\t1.2\t44.4\t-13.3\t\t",
    
    		"    .0          .3    2.4    -5.1\n" +
    			"  23.0  12345678.9    2.4  -989.4\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. test/codegen/memops.go

    	s += x[i+1]
    	// 386: `SUBL\t8\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	// amd64: `SUBL\t8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s -= x[i+2]
    	// 386: `IMULL\t12\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	s *= x[i+3]
    	// 386: `ANDL\t16\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	// amd64: `ANDL\t16\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s &= x[i+4]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top