Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for GetTypeName (0.15 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultTypeValidationData.java

            return propertyName;
        }
    
        @Override
        public String getParentPropertyName() {
            return parentPropertyName;
        }
    
        @Override
        public String getTypeName() {
            return typeName;
        }
    
        public static DefaultTypeValidationDataBuilder builder() {
            return new DefaultTypeValidationDataBuilder();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/services/internal/ConsumedBuildServiceProvider.java

                        .map(it -> it.getName() + ": " + getProvidedType(it.getService()).getTypeName())
                        .collect(Collectors.joining(", "));
                    throw new IllegalArgumentException(String.format("Cannot resolve service by type for type '%s' when there are two or more instances. Please also provide a service name. Instances found: %s.", getType().getTypeName(), names));
                }
                // resolved, so remember it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/c/tf_buffer.cc

            "Failed to allocate memory to serialize message of type '",
            in.GetTypeName(), "' and size ", proto_size);
      }
      if (!in.SerializeWithCachedSizesToArray(static_cast<uint8_t*>(buf))) {
        port::Free(buf);
        return errors::InvalidArgument(
            "Unable to serialize ", in.GetTypeName(),
            " protocol buffer, perhaps the serialized size (", proto_size,
            " bytes) is too large?");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/Types.java

          }
    
          @Override
          String typeName(Type type) {
            try {
              Method getTypeName = Type.class.getMethod("getTypeName");
              return (String) getTypeName.invoke(type);
            } catch (NoSuchMethodException e) {
              throw new AssertionError("Type.getTypeName should be available in Java 8");
            } catch (InvocationTargetException | IllegalAccessException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/TypeValidationData.java

     */
    public interface TypeValidationData extends AdditionalData {
        String getPluginId();
        String getPropertyName();
        String getParentPropertyName();
        String getTypeName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 942 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Types.java

          }
    
          @Override
          String typeName(Type type) {
            try {
              Method getTypeName = Type.class.getMethod("getTypeName");
              return (String) getTypeName.invoke(type);
            } catch (NoSuchMethodException e) {
              throw new AssertionError("Type.getTypeName should be available in Java 8");
            } catch (InvocationTargetException | IllegalAccessException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            String typeName;
            if (raw.isAnonymousClass()) {
                Type superclass = raw.getGenericSuperclass();
                typeName = "? extends " + superclass.getTypeName();
            } else {
                typeName = type.getTypeName();
            }
    
            return PACKAGE_AND_PARENT
                    .matcher(ARRAY_SIGNATURE.matcher(typeName).replaceAll("$1[]"))
                    .replaceAll("");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModel.java

                    }
                }
            }
        }
    
        private TaskDetails mergedTaskDetails(TaskDetails task) {
            return TaskDetails.of(
                Path.path(task.getPath().getName()),
                task.getTypeName(),
                task.getDescription()
            );
        }
    
        private boolean isVisible(String group) {
            if (Strings.isNullOrEmpty(group)) {
                return detail;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/import_utils.cc

      protobuf::io::ArrayInputStream binary_stream(input.data(), input.size());
      if (proto->ParseFromZeroCopyStream(&binary_stream)) return absl::OkStatus();
    
      LOG(ERROR) << "Error parsing Protobuf: " << proto->GetTypeName();
      return errors::InvalidArgument("Could not parse input proto");
    }
    
    template <class T>
    Status LoadProtoFromFileImpl(absl::string_view input_filename, T* proto) {
      const auto file_or_err =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

        // GraphOp.
        return cast<GraphOp>(graph_op_range.begin());
      }
    
      return {};
    }
    
    // Gets the string representation of the type name.
    std::string GetTypeName(const Type type) {
      std::string type_name{};
      auto os = llvm::raw_string_ostream{type_name};
      os << type;
      return type_name;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top