Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 914 for gotType (0.26 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	return die
    }
    
    // Define gotype, for composite ones recurse into constituents.
    func (d *dwctxt) defgotype(gotype loader.Sym) loader.Sym {
    	if gotype == 0 {
    		return d.mustFind("<unspecified>")
    	}
    
    	// If we already have a tdmap entry for the gotype, return it.
    	if ds, ok := d.tdmap[gotype]; ok {
    		return ds
    	}
    
    	sn := d.ldr.SymName(gotype)
    	if !strings.HasPrefix(sn, "type:") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      if (!reshape_before) return failure();
    
      if (!dot.getLhs().getType().hasStaticShape() ||
          !dot.getRhs().getType().hasStaticShape() ||
          !reshape_before.getOperand().getType().hasStaticShape() ||
          !dot.getType().hasStaticShape() ||
          !reshape_after.getType().hasStaticShape()) {
        return rewriter.notifyMatchFailure(reshape_after,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                getType(Project.class),
                getType("Lorg/gradle/api/internal/project/ProjectInternal;"),
                getType(Gradle.class),
                getType("Lorg/gradle/api/internal/GradleInternal;")
            );
            private static final Type JAVA_LANG_REFLECT_TYPE = getType(java.lang.reflect.Type.class);
            private static final Type OBJECT_TYPE = getType(Object.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertTrue(
            from.getType() + " is expected to be assignable to " + to.getType(),
            to.isSupertypeOf(from));
        assertTrue(
            to.getType() + " is expected to be a supertype of " + from.getType(),
            to.isSupertypeOf(from));
        assertTrue(
            from.getType() + " is expected to be a subtype of " + to.getType(), from.isSubtypeOf(to));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (!inner_reshape_op.getOutput().getType().hasStaticShape() ||
            !tfl_broadcast_to_op.getOutput().getType().hasStaticShape() ||
            !outer_reshape_op.getOutput().getType().hasStaticShape()) {
          return rewriter.notifyMatchFailure(
              loc, "Unsupported shapes. Currely only static shapes are supported");
        }
    
        if (!IsLastDimEqualToNumElements(inner_reshape_input.getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            if (expression.getType() == IncludeType.SYSTEM) {
                visitor.visitSystem(expression);
            } else if (expression.getType() == IncludeType.QUOTED) {
                visitor.visitQuoted(expression);
            } else if (expression.getType() == IncludeType.IDENTIFIER) {
                visitor.visitIdentifier(expression);
            } else if (expression.getType() == IncludeType.ARGS_LIST) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Hybrid lookup is not supported.
      if (value_attr.getType().getElementType() != getType().getElementType()) {
        return {};
      }
    
      // Expect 1d lookup tensor and a non-scalar input.
      if (lookup_attr.getType().getRank() != 1 ||
          value_attr.getType().getRank() == 0) {
        return {};
      }
    
      int64_t outer_dim_size = value_attr.getType().getShape()[0];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertTrue(
            from.getType() + " is expected to be assignable to " + to.getType(),
            to.isSupertypeOf(from));
        assertTrue(
            to.getType() + " is expected to be a supertype of " + from.getType(),
            to.isSupertypeOf(from));
        assertTrue(
            from.getType() + " is expected to be a subtype of " + to.getType(), from.isSubtypeOf(to));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

        private static final Type OBJECT_TYPE = Type.getType(Object.class);
        private static final Type STRING_TYPE = Type.getType(String.class);
        private static final Type CLASS_TYPE = Type.getType(Class.class);
        private static final Type CLOSURE_TYPE = Type.getType(Closure.class);
        private static final Type TYPE_CONVERTER_TYPE = Type.getType(TypeConverter.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        if (!mlir::cast<ShapedType>(lhs.getType()).hasStaticShape() ||
            !mlir::cast<ShapedType>(rhs.getType()).hasStaticShape() ||
            !mlir::cast<ShapedType>(cond.getType()).hasStaticShape()) {
          return rewriteOpWithDynamicInput(op, rewriter);
        }
    
        auto lhs_shape = mlir::cast<ShapedType>(lhs.getType()).getShape();
        auto rhs_shape = mlir::cast<ShapedType>(rhs.getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top