Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for unpackType (0.12 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            }
    
            @SuppressWarnings("deprecation")
            @Override
            @Nullable
            public Directory call() throws Exception {
                Method getter = GeneratedSubclasses.unpackType(compile).getMethod("getDestinationDir");
                if (getter.getDeclaringClass() == AbstractCompile.class) {
                    // Subclass has not overridden the getter, so ignore
                    return null;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            Bean bean = newInstance(Bean.class);
            assertTrue(bean instanceof GeneratedSubclass);
            assertEquals(Bean.class, ((GeneratedSubclass) bean).publicType());
            assertEquals(Bean.class, GeneratedSubclasses.unpackType(bean));
            assertEquals(Bean.class, GeneratedSubclasses.unpack(bean.getClass()));
        }
    
        @Test
        public void mixesInGeneratedSubclassInterfaceToInterface() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		return Question{}, err
    	}
    	var name Name
    	off, err := name.unpack(p.msg, p.off)
    	if err != nil {
    		return Question{}, &nestedError{"unpacking Question.Name", err}
    	}
    	typ, off, err := unpackType(p.msg, off)
    	if err != nil {
    		return Question{}, &nestedError{"unpacking Question.Type", err}
    	}
    	class, off, err := unpackClass(p.msg, off)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/cannonicalize_ops_outside_compilation.mlir

        %1 = "tf.Shape"(%arg1) {_tpu_replicate = "cluster_Fn", _xla_outside_compilation = "0", device = ""} : (tensor<*x!tf_type.string>) -> tensor<*xi32>
        %2:3 = "tf.UnpackHyp"(%arg1) {_tpu_replicate = "cluster_Fn", _xla_outside_compilation = "0", device = "", max_seq_length = 16 : i64} : (tensor<*x!tf_type.string>) -> (tensor<*xi32>, tensor<*xi32>, tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top