- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中hivemall.utils.codec.ZigZagLEB128Codec
类的一些代码示例,展示了ZigZagLEB128Codec
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZigZagLEB128Codec
类的具体详情如下:
包路径:hivemall.utils.codec.ZigZagLEB128Codec
类名称:ZigZagLEB128Codec
暂无
代码示例来源:origin: org.apache.hivemall/hivemall-core
public static void writeSignedInt(final int value, @Nonnull final DataOutput out)
throws IOException {
writeUnsignedInt(encode(value), out);
}
代码示例来源:origin: io.github.myui/hivemall-core
@Deprecated
public static float readFloat(@Nonnull final DataInput in) throws IOException {
int bits = readSignedInt(in);
return Float.intBitsToFloat(bits);
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
public static int readSignedInt(@Nonnull final DataInput in) throws IOException {
int raw = readUnsignedInt(in);
int temp = (((raw << 31) >> 31) ^ raw) >> 1;
return temp ^ (raw & (1 << 31));
}
代码示例来源:origin: io.github.myui/hivemall-core
public static void writeSignedLong(final long value, @Nonnull final DataOutput out)
throws IOException {
writeUnsignedLong(encode(value), out);
}
代码示例来源:origin: io.github.myui/hivemall-core
@Override
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
this._threshold = in.readInt();
this._used = in.readInt();
final int size = in.readInt();
final int[] keys = new int[size];
final long[] values = new long[size];
final byte[] states = new byte[size];
readStates(in, states);
for (int i = 0; i < size; i++) {
if (states[i] != FULL) {
continue;
}
keys[i] = ZigZagLEB128Codec.readSignedInt(in);
values[i] = ZigZagLEB128Codec.readSignedLong(in);
}
this._keys = keys;
this._values = values;
this._states = states;
}
代码示例来源:origin: io.github.myui/hivemall-core
@Override
public void writeExternal(ObjectOutput out) throws IOException {
out.writeInt(_threshold);
out.writeInt(_used);
final int[] keys = _keys;
final int size = keys.length;
out.writeInt(size);
final byte[] states = _states;
writeStates(states, out);
final long[] values = _values;
for (int i = 0; i < size; i++) {
if (states[i] != FULL) {
continue;
}
ZigZagLEB128Codec.writeSignedInt(keys[i], out);
ZigZagLEB128Codec.writeSignedLong(values[i], out);
}
}
代码示例来源:origin: io.github.myui/hivemall-core
@Deprecated
public static void writeFloat(final float value, final DataOutput out) throws IOException {
int bits = Float.floatToIntBits(value);
writeSignedInt(bits, out);
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
public static long readSignedLong(@Nonnull final DataInput in) throws IOException {
long raw = readUnsignedLong(in);
long temp = (((raw << 63) >> 63) ^ raw) >> 1;
return temp ^ (raw & (1L << 63));
}
代码示例来源:origin: io.github.myui/hivemall-core
@Deprecated
public static double readDouble(@Nonnull final DataInput in) throws IOException {
long bits = readSignedLong(in);
return Double.longBitsToDouble(bits);
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
@Deprecated
public static void writeDouble(final double value, final DataOutput out) throws IOException {
long bits = Double.doubleToLongBits(value);
writeSignedLong(bits, out);
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
public static void writeSignedLong(final long value, @Nonnull final DataOutput out)
throws IOException {
writeUnsignedLong(encode(value), out);
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
@Deprecated
public static void writeFloat(final float value, final DataOutput out) throws IOException {
int bits = Float.floatToIntBits(value);
writeSignedInt(bits, out);
}
代码示例来源:origin: io.github.myui/hivemall-core
public static long readSignedLong(@Nonnull final DataInput in) throws IOException {
long raw = readUnsignedLong(in);
long temp = (((raw << 63) >> 63) ^ raw) >> 1;
return temp ^ (raw & (1L << 63));
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
@Deprecated
public static double readDouble(@Nonnull final DataInput in) throws IOException {
long bits = readSignedLong(in);
return Double.longBitsToDouble(bits);
}
代码示例来源:origin: io.github.myui/hivemall-core
@Deprecated
public static void writeDouble(final double value, final DataOutput out) throws IOException {
long bits = Double.doubleToLongBits(value);
writeSignedLong(bits, out);
}
代码示例来源:origin: io.github.myui/hivemall-core
public static void writeSignedInt(final int value, @Nonnull final DataOutput out)
throws IOException {
writeUnsignedInt(encode(value), out);
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
@Deprecated
public static float readFloat(@Nonnull final DataInput in) throws IOException {
int bits = readSignedInt(in);
return Float.intBitsToFloat(bits);
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
@Deprecated
public static void writeVFloats(@Nonnull final float[] floats, final int size,
@Nonnull final DataOutput out) throws IOException {
for (int i = 0; i < size; i++) {
int bits = Float.floatToIntBits(floats[i]);
ZigZagLEB128Codec.writeSignedInt(bits, out);
}
}
代码示例来源:origin: io.github.myui/hivemall-core
public static int readSignedInt(@Nonnull final DataInput in) throws IOException {
int raw = readUnsignedInt(in);
int temp = (((raw << 31) >> 31) ^ raw) >> 1;
return temp ^ (raw & (1 << 31));
}
代码示例来源:origin: org.apache.hivemall/hivemall-core
@Deprecated
@Nonnull
public static float[] readVFloats(@Nonnull final DataInput in, final int size)
throws IOException {
final float[] floats = new float[size];
for (int i = 0; i < size; i++) {
int bits = ZigZagLEB128Codec.readSignedInt(in);
floats[i] = Float.intBitsToFloat(bits);
}
return floats;
}
我正在尝试使用 user guide 中的抓取示例运行 geb用于引入依赖项: $ cat my.groovy @Grapes([ @Grab("org.gebish:geb-core:0.9
我阅读了很多关于 opus-codec 的内容,但我不明白如何在我的示例 Java 应用程序中使用它。 是否有任何可用于 opus 的 .so 文件可以使用?如果没有,那么如何? 最佳答案 目前(在撰
我试图构建 Maven 项目, 每当我在命令行上运行“mvn clean install”时,都会出现以下错误: 无法解析项目 com.my_project:jar:0.0.1-SNAPSHOT 的依
我有一个项目需要 Lucene(4.3.0) 并添加以下依赖项:lucene-core,lucene-analyzers-common,lucene-queries,lucene-queryparse
我正在对 Controller 进行单元测试,目前我被服务(由 Controller 调用)中的“encodeAsJSON()”方法调用所困扰。 我得到了 MissingMethodException
无法弄清楚是什么原因导致 ' 名称为“Lucene42”的 org.apache.lucene.codecs.Codec 类型的 SPI 类不存在。您需要将支持此 SPI 的相应 JAR 文件添加到您
我想运行以下命令来使用 MongoDB Java 驱动程序创建用户, client = new MongoClient(mongoClientURI); MongoDatabase d
对于 lucene-core-5.5.2,我在 weblogic 服务器中遇到了问题 a。独立的搜索应用程序可以工作,但是当我部署为 WEB APP 时,它失败并出现以下错误 Exception ty
我的代码: DateTime dateTime = new DateTime(); BasicDBObject oldDoc = new BasicDBObject("email",email); B
我正在尝试在 Hibernate-ogm 中尝试 GridFS。这就是我的课 import org.hibernate.ogm.datastore.mongodb.type.GridFS; @Embe
我正在使用如下聚合: final List aggregations = new ArrayList<>(); Polygon polygon = new Polygon(new Po
我正在处理一个多模块 gradle 项目(12 个模块)。我继承了该项目,需要更新其中使用的一些库的版本。 我无法理解此错误的原因: ... 67 more Caused by: java.l
我正在使用 Java 学习 MongoDB。我正在尝试使用 Java 驱动程序将数据插入 MongoDB。我正在像 MongoDB 教程中一样进行插入,而且一切都很好。但是如果我想插入一个变量,当我运
我正在尝试打开并读取包含大量文本的 .txt 文件。下面是我的代码,我不知道如何解决这个问题。任何帮助将不胜感激。 file = input("Please enter a .txt file: ")
我使用 Arch Linux 和默认的 Python 3。我使用 Konsole 通过命令 pip install django-toolbelt 下载 django-toolbelt。名称: pip
我正在尝试使用 LibAV 解码 mpeg 视频文件。有两个术语我无法正确理解,镜框 和 数据包 . 按照我目前的理解,镜框 是未压缩的视频帧和 数据包是压缩帧。 问题 : 数据包有多个帧,对吗? 一
我正在查看计算机断层扫描 (CT) DICOM 图像。这些最初是未压缩的 DICOM 图像。我有这些 DICOM 图像的无损 J2K 压缩形式:传输语法 = 1.2.840.10008.1.2.4.9
如何安装通用编解码器?我已经下载了,但是我在网上搜索过,找不到这个问题的答案。我想使用 Base64 编码器和解码器。 还有 1 个问题,如果我的代码使用这个编解码器,其他尝试使用我的程序的用户是否也
本文整理了Java中loci.formats.codec.ZlibCodec类的一些代码示例,展示了ZlibCodec类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Ma
本文整理了Java中hivemall.utils.codec.ZigZagLEB128Codec类的一些代码示例,展示了ZigZagLEB128Codec类的具体用法。这些代码示例主要来源于Githu
我是一名优秀的程序员,十分优秀!