index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/config/PredictorConfiguration.java
package biz.k11i.xgboost.config; import biz.k11i.xgboost.learner.ObjFunction; import biz.k11i.xgboost.tree.DefaultRegTreeFactory; import biz.k11i.xgboost.tree.RegTreeFactory; public class PredictorConfiguration { public static class Builder { private PredictorConfiguration predictorConfiguration; ...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/gbm/Dart.java
package biz.k11i.xgboost.gbm; import biz.k11i.xgboost.config.PredictorConfiguration; import biz.k11i.xgboost.tree.RegTree; import biz.k11i.xgboost.util.FVec; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; import java.util.Arrays; /** * Gradient boosted DART tree implementation. */ public cla...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/gbm/GBLinear.java
package biz.k11i.xgboost.gbm; import biz.k11i.xgboost.config.PredictorConfiguration; import biz.k11i.xgboost.util.FVec; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; import java.io.Serializable; /** * Linear booster implementation */ public class GBLinear extends GBBase { private float...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/gbm/GBTree.java
package biz.k11i.xgboost.gbm; import biz.k11i.xgboost.config.PredictorConfiguration; import biz.k11i.xgboost.tree.RegTree; import biz.k11i.xgboost.util.FVec; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; import java.io.Serializable; import java.util.Arrays; /** * Gradient boosted tree implem...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/gbm/GradBooster.java
package biz.k11i.xgboost.gbm; import biz.k11i.xgboost.config.PredictorConfiguration; import biz.k11i.xgboost.util.FVec; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; import java.io.Serializable; /** * Interface of gradient boosting model. */ public interface GradBooster extends Serializable...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/learner/ObjFunction.java
package biz.k11i.xgboost.learner; import biz.k11i.xgboost.config.PredictorConfiguration; import net.jafama.FastMath; import java.io.Serializable; import java.util.HashMap; import java.util.Map; /** * Objective function implementations. */ public class ObjFunction implements Serializable { private static final...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/spark/SparkModelParam.java
package biz.k11i.xgboost.spark; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; import java.io.Serializable; public class SparkModelParam implements Serializable { public static final String MODEL_TYPE_CLS = "_cls_"; public static final String MODEL_TYPE_REG = "_reg_"; final String...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/tree/DefaultRegTreeFactory.java
package biz.k11i.xgboost.tree; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; public final class DefaultRegTreeFactory implements RegTreeFactory { public static RegTreeFactory INSTANCE = new DefaultRegTreeFactory(); @Override public final RegTree loadTree(ModelReader reader) throws IOE...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/tree/RegTree.java
package biz.k11i.xgboost.tree; import biz.k11i.xgboost.util.FVec; import java.io.Serializable; /** * Regression tree. */ public interface RegTree extends Serializable { /** * Retrieves nodes from root to leaf and returns leaf index. * * @param feat feature vector * @return leaf index ...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/tree/RegTreeFactory.java
package biz.k11i.xgboost.tree; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; public interface RegTreeFactory { RegTree loadTree(ModelReader reader) throws IOException; }
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/tree/RegTreeImpl.java
package biz.k11i.xgboost.tree; import ai.h2o.algos.tree.INodeStat; import biz.k11i.xgboost.util.FVec; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; import java.io.Serializable; /** * Regression tree. */ public class RegTreeImpl implements RegTree { private Param param; private Node...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/tree/RegTreeNode.java
package biz.k11i.xgboost.tree; import ai.h2o.algos.tree.INode; import biz.k11i.xgboost.util.FVec; import java.io.Serializable; public abstract class RegTreeNode implements INode<FVec>, Serializable { /** * * @return Index of node's parent */ public abstract int getParentIndex(); /** ...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/tree/RegTreeNodeStat.java
package biz.k11i.xgboost.tree; import ai.h2o.algos.tree.INodeStat; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException; import java.io.Serializable; /** * Statistics for node in tree. */ public class RegTreeNodeStat implements INodeStat, Serializable { final float loss_chg; final float su...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/util/FVec.java
package biz.k11i.xgboost.util; import java.io.Serializable; import java.util.Map; /** * Interface of feature vector. */ public interface FVec extends Serializable { /** * Gets index-th value. * * @param index index * @return value */ float fvalue(int index); class Transformer {...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/util/ModelReader.java
package biz.k11i.xgboost.util; import java.io.Closeable; import java.io.EOFException; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.UTFDataFormatException; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.charset.Charset; /** * Reads the ...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/Booster.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/DMatrix.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/DataBatch.java
package ml.dmlc.xgboost4j.java; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import ml.dmlc.xgboost4j.LabeledPoint; /** * A mini-batch of data that can be converted to DMatrix. * The data is in sp...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/IEvaluation.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/INativeLibLoader.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/IObjective.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/IRabitTracker.java
package ml.dmlc.xgboost4j.java; import java.util.Map; import java.util.concurrent.TimeUnit; /** * Interface for Rabit tracker implementations with three public methods: * * - start(timeout): Start the Rabit tracker awaiting for worker connections, with a given * timeout value (in milliseconds.) * - getWorkerE...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/KryoBooster.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/NativeLibLoader.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/NativeLibLoaderService.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/Rabit.java
package ml.dmlc.xgboost4j.java; import java.io.Serializable; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.util.Map; /** * Rabit global class for synchronization. */ public class Rabit { public enum OpType implements Serializable { MAX(0), MIN(1), SUM(2), BITWISE_OR(3); private int ...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/RabitTracker.java
package ml.dmlc.xgboost4j.java; import java.io.*; import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicReference; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * Java implementation of the Rabit tr...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/TrackerProperties.java
package ml.dmlc.xgboost4j.java; import java.io.*; import java.net.URL; import java.util.Properties; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class TrackerProperties { private static String PROPERTIES_FILENAME = "xgboost-tracker.properties"; private static String...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/XGBoost.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/XGBoostError.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/XGBoostJNI.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writin...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/util/BigDenseMatrix.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java
java-sources/ai/h2o/xgboost4j/0.90.6/ml/dmlc/xgboost4j/java/util/UtilUnsafe.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j-linux-gpuv3/0.83.17/ai
java-sources/ai/h2o/xgboost4j-linux-gpuv3/0.83.17/ai/h2o/App.java
package ai.h2o; public class App { public static final String VERSION = "0.83.17"; public static final String BACKEND = "gpuv3"; public static final String OS = "linux"; public static void main(String[] args) { System.out.println(String.format("XGBoost Library Details:\n\tVersion: %s\n\tBacke...
0
java-sources/ai/h2o/xgboost4j-linux-gpuv4/1.6.1.24/ai
java-sources/ai/h2o/xgboost4j-linux-gpuv4/1.6.1.24/ai/h2o/App.java
package ai.h2o; public class App { public static final String VERSION = "1.6.1.24"; public static final String BACKEND = "gpuv4"; public static final String OS = "linux"; public static void main(String[] args) { System.out.println(String.format("XGBoost Library Details:\n\tVersion: %s\n\tBack...
0
java-sources/ai/h2o/xgboost4j-linux-minimal/1.6.1.24/ai
java-sources/ai/h2o/xgboost4j-linux-minimal/1.6.1.24/ai/h2o/App.java
package ai.h2o; public class App { public static final String VERSION = "1.6.1.24"; public static final String BACKEND = "minimal"; public static final String OS = "linux"; public static void main(String[] args) { System.out.println(String.format("XGBoost Library Details:\n\tVersion: %s\n\tBa...
0
java-sources/ai/h2o/xgboost4j-linux-ompv3/0.83.17/ai
java-sources/ai/h2o/xgboost4j-linux-ompv3/0.83.17/ai/h2o/App.java
package ai.h2o; public class App { public static final String VERSION = "0.83.17"; public static final String BACKEND = "ompv3"; public static final String OS = "linux"; public static void main(String[] args) { System.out.println(String.format("XGBoost Library Details:\n\tVersion: %s\n\tBacke...
0
java-sources/ai/h2o/xgboost4j-linux-ompv4/1.6.1.24/ai
java-sources/ai/h2o/xgboost4j-linux-ompv4/1.6.1.24/ai/h2o/App.java
package ai.h2o; public class App { public static final String VERSION = "1.6.1.24"; public static final String BACKEND = "ompv4"; public static final String OS = "linux"; public static void main(String[] args) { System.out.println(String.format("XGBoost Library Details:\n\tVersion: %s\n\tBack...
0
java-sources/ai/h2o/xgboost4j-osx-minimal/1.6.1.24/ai
java-sources/ai/h2o/xgboost4j-osx-minimal/1.6.1.24/ai/h2o/App.java
package ai.h2o; public class App { public static final String VERSION = "1.2.0-SNAPSHOT"; public static final String BACKEND = "minimal"; public static final String OS = "osx"; public static void main(String[] args) { System.out.println(String.format("XGBoost Library Details:\n\tVersion: %s\n...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/Booster.java
/* Copyright (c) 2014-2022 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writin...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/Column.java
/* Copyright (c) 2021 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/ColumnBatch.java
/* Copyright (c) 2021 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/DMatrix.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/DataBatch.java
package ml.dmlc.xgboost4j.java; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import ml.dmlc.xgboost4j.LabeledPoint; /** * A mini-batch of data that can be converted to DMatrix. * The data is in sp...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/DeviceQuantileDMatrix.java
package ml.dmlc.xgboost4j.java; import java.util.Iterator; /** * DeviceQuantileDMatrix will only be used to train */ public class DeviceQuantileDMatrix extends DMatrix { /** * Create DeviceQuantileDMatrix from iterator based on the cuda array interface * @param iter the XGBoost ColumnBatch batch to provide ...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/ExternalCheckpointManager.java
package ml.dmlc.xgboost4j.java; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.*; import java.util.stream.Collectors; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.hadoop.fs.FileSystem; import org.apache.ha...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/KryoBooster.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/NativeLibLoader.java
/* Copyright (c) 2014, 2021 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writi...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/Rabit.java
package ml.dmlc.xgboost4j.java; import java.io.Serializable; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.util.LinkedList; import java.util.List; import java.util.Map; /** * Rabit global class for synchronization. */ public class Rabit { public enum OpType implements Serializable { MAX(...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/RabitTracker.java
package ml.dmlc.xgboost4j.java; import java.io.*; import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicReference; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * Java implementation of the Rabit trac...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/XGBoost.java
/* Copyright (c) 2014,2021 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writin...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/XGBoostError.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/XGBoostJNI.java
/* Copyright (c) 2014-2022 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writin...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/util/BigDenseMatrix.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java
java-sources/ai/h2o/xgboost4j_2.12/1.6.1.24/ml/dmlc/xgboost4j/java/util/UtilUnsafe.java
/* Copyright (c) 2014 by Contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, so...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/common/SockTransportProperties.java
package com.mapd.common; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.apache.http.conn.ssl.SSLSocketFactory; import org.apache.http.conn.ssl.X509HostnameVerifier; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.ssl...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIArray.java
package ai.heavy.jdbc; import static java.lang.Math.toIntExact; import java.math.BigDecimal; import java.sql.*; import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.Map; import ai.heavy.thrift.server.*; public class HeavyAIArray implements java.sql.Array { private TDatumTyp...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIConnection.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIData.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIDatabaseMetaData.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIDriver.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIEscapeFunctions.java
package ai.heavy.jdbc; import java.lang.reflect.Method; import java.sql.SQLException; import java.util.List; import java.util.Locale; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; public final class HeavyAIEscapeFunctions { /** * storage for functions implementations ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIEscapeParser.java
package ai.heavy.jdbc; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class HeavyAIEscapeParser { private static final char[] QUOTE_OR_ALPHABETIC_MARKER = {...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIExceptionText.java
package ai.heavy.jdbc; public class HeavyAIExceptionText { static String getExceptionDetail(Exception ex) { if (ex.getStackTrace().length < 1) { return "Error in stack trace processing"; } StackTraceElement sE = ex.getStackTrace()[0]; return "[" + sE.getFileName() + ":" + sE.getMethodName() + "...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIPreparedStatement.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIResultSet.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIResultSetMetaData.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIStatement.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/jdbc/HeavyAIType.java
/* * Copyright 2022 HEAVY.AI, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/CalciteServer.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class CalciteServer { public interface Iface { public...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/InvalidParseRequest.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class InvalidParseRequest extends org.apache.thrift.TExceptio...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TAccessedQueryObjects.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TAccessedQueryObjects implements org.apache.thrift.TBas...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TCompletionHint.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TCompletionHint implements org.apache.thrift.TBase<TCom...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TCompletionHintType.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; public enum TCompletionHintType implements org.apache.thrift.TEnum { COLUMN(0), TABLE(1), VIEW(2), SCHEMA(3), CATALOG(4), REPOSI...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TExtArgumentType.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; public enum TExtArgumentType implements org.apache.thrift.TEnum { Int8(0), Int16(1), Int32(2), Int64(3), Float(4), Double(5), ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TFilterPushDownInfo.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TFilterPushDownInfo implements org.apache.thrift.TBase<...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TOptimizationOption.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TOptimizationOption implements org.apache.thrift.TBase<...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TOutputBufferSizeType.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; public enum TOutputBufferSizeType implements org.apache.thrift.TEnum { kConstant(0), kUserSpecifiedConstantParameter(1), kUserSpecifie...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TPlanResult.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TPlanResult implements org.apache.thrift.TBase<TPlanRes...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TQueryParsingOption.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TQueryParsingOption implements org.apache.thrift.TBase<...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TRestriction.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TRestriction implements org.apache.thrift.TBase<TRestri...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TUserDefinedFunction.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TUserDefinedFunction implements org.apache.thrift.TBase...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/calciteserver/TUserDefinedTableFunction.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.calciteserver; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TUserDefinedTableFunction implements org.apache.thrift....
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/Heavy.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class Heavy { public interface Iface { public java.lang.Stri...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TAggKind.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; public enum TAggKind implements org.apache.thrift.TEnum { AVG(0), MIN(1), MAX(2), SUM(3), COUNT(4), APPROX_COUNT_DISTINCT(5), SAMPLE(...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TArrowTransport.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; public enum TArrowTransport implements org.apache.thrift.TEnum { SHARED_MEMORY(0), WIRE(1); private final int value; private TArrowTransp...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TChunkData.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TChunkData extends org.apache.thrift.TUnion<TChunkData, TChunk...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TClusterHardwareInfo.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TClusterHardwareInfo implements org.apache.thrift.TBase<TClust...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TColSlotContext.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TColSlotContext implements org.apache.thrift.TBase<TColSlotCon...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TColumn.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TColumn implements org.apache.thrift.TBase<TColumn, TColumn._F...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TColumnData.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TColumnData implements org.apache.thrift.TBase<TColumnData, TC...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TColumnRange.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TColumnRange implements org.apache.thrift.TBase<TColumnRange, ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TColumnType.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TColumnType implements org.apache.thrift.TBase<TColumnType, TC...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TCopyParams.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TCopyParams implements org.apache.thrift.TBase<TCopyParams, TC...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TCountDistinctDescriptor.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TCountDistinctDescriptor implements org.apache.thrift.TBase<TC...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TCountDistinctImplType.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; public enum TCountDistinctImplType implements org.apache.thrift.TEnum { Invalid(0), Bitmap(1), UnorderedSet(2); private final int value; ...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TCountDistinctSet.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TCountDistinctSet implements org.apache.thrift.TBase<TCountDis...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TCountDistinctSetStorage.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TCountDistinctSetStorage extends org.apache.thrift.TUnion<TCou...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TCreateParams.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TCreateParams implements org.apache.thrift.TBase<TCreateParams...
0
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift
java-sources/ai/heavy/heavyai-jdbc/6.1.0/ai/heavy/thrift/server/TCustomExpression.java
/** * Autogenerated by Thrift Compiler (0.15.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ai.heavy.thrift.server; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public class TCustomExpression implements org.apache.thrift.TBase<TCustomEx...