index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/lic/LicenseExpiredException.java
package ai.h2o.mojos.runtime.lic; import java.util.Date; /** * The exception reports an expired license. */ public class LicenseExpiredException extends LicenseException { public LicenseExpiredException(Date expirationDate) { super("The license expired on " + expirationDate, null); } }
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/lic/LicenseNotFoundException.java
package ai.h2o.mojos.runtime.lic; /** * The exception reports that MOJO runtime was not able to find a license. */ public class LicenseNotFoundException extends LicenseException { static final String MESSAGE = "\nMake sure that license is available for MOJO runtime!\n\n" + "The lic...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/lic/MojoSignatureConsts.java
package ai.h2o.mojos.runtime.lic; /** * The default configuration properties used by license manager * to look for mojo signature. */ public class MojoSignatureConsts { /** Name of JVM system property which overrides default signature * file name ({@link #MOJO_SIGNATURE_FILENAME}. */ public static final ...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/lic/MojoSignatureNotFoundException.java
package ai.h2o.mojos.runtime.lic; public class MojoSignatureNotFoundException extends LicenseException { public MojoSignatureNotFoundException(String filename) { super(String.format("Mojo signature '%s' not found!", filename), null); } }
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/lic/MojoWatermarkNotFoundException.java
package ai.h2o.mojos.runtime.lic; public class MojoWatermarkNotFoundException extends LicenseException { public MojoWatermarkNotFoundException(String name) { super(String.format("Mojo watermark '%s' not found!", name), null); } }
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/lic/package-info.java
/** * Contains license verification related exceptions. */ package ai.h2o.mojos.runtime.lic;
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/readers/FolderMojoReaderBackend.java
package ai.h2o.mojos.runtime.readers; import ai.h2o.mojos.runtime.api.backend.DirReaderBackend; import ai.h2o.mojos.runtime.api.backend.MemoryReaderBackend; import ai.h2o.mojos.runtime.api.backend.ReaderBackend; import java.io.File; import java.io.IOException; import java.util.Collections; /** * The backend serves M...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/readers/InMemoryMojoReaderBackend.java
package ai.h2o.mojos.runtime.readers; import ai.h2o.mojos.runtime.api.backend.MemoryReaderBackend; import ai.h2o.mojos.runtime.api.backend.ReaderBackend; import java.io.IOException; import java.io.InputStream; import java.util.Map; /** * The backend serves MOJO content from in memory file system. * * @deprecated u...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/readers/MojoPipelineReaderBackendFactory.java
package ai.h2o.mojos.runtime.readers; import java.io.IOException; import java.io.InputStream; /** Backend factory. * * @deprecated in favor of creation backends directly. */ @Deprecated public class MojoPipelineReaderBackendFactory { public static MojoReaderBackend createReaderBackend(InputStream stream) throws...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/readers/MojoReaderBackend.java
package ai.h2o.mojos.runtime.readers; import ai.h2o.mojos.runtime.api.backend.ReaderBackend; import ai.h2o.mojos.runtime.api.backend.ReaderBackendUtils; import java.io.BufferedReader; import java.io.Closeable; import java.io.File; import java.io.IOException; import java.io.InputStream; /** * Interface representing ...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/readers/MojofileMojoReaderBackend.java
package ai.h2o.mojos.runtime.readers; import ai.h2o.mojos.runtime.api.backend.ZipFileReaderBackend; import java.io.File; import java.io.IOException; /** * The backend serves MOJO content from a ZIP file. * * @deprecated use {@link ZipFileReaderBackend} instead */ @Deprecated public class MojofileMojoReaderBackend...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/readers/package-info.java
/** * @deprecated use classes based on {@link ai.h2o.mojos.runtime.api.backend.ReaderBackend} */ package ai.h2o.mojos.runtime.readers;
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/transforms/MojoTransform.java
package ai.h2o.mojos.runtime.transforms; import ai.h2o.mojos.runtime.api.MojoTransformationGroup; import ai.h2o.mojos.runtime.frame.MojoFrame; import ai.h2o.mojos.runtime.frame.MojoFrameMeta; import java.util.Arrays; /** * Representation of one transformation operation in the pipeline. */ public abstract class Moj...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/transforms/MojoTransformBuilderFactory.java
package ai.h2o.mojos.runtime.transforms; import ai.h2o.mojos.runtime.api.backend.ReaderBackend; import ai.h2o.mojos.runtime.frame.MojoFrameMeta; import java.util.Map; /** * Binds a custom transformer to a unique name, by which it can be referenced from within mojo2 file. * Every custom transformer must define a cla...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/utils/Base64Utils.java
package ai.h2o.mojos.runtime.utils; import java.util.Base64; /** * Helper class for Base64 operations. */ public class Base64Utils { private static final Base64.Decoder DECODER = Base64.getDecoder(); private static final Base64.Decoder DECODER_URL = Base64.getUrlDecoder(); private static final Base64.E...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/utils/ClassLoaderUtils.java
package ai.h2o.mojos.runtime.utils; public class ClassLoaderUtils { public static final String PROP_USE_CONTEXT_CLASSLOADER_FOR_SPI = "runtime.useContextClassloaderForSpi"; public static final String PROP_USE_CONTEXT_CLASSLOADER_FOR_JAVASSIST = "runtime.useContextClassloaderForJavassist"; public static final ...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/utils/Consts.java
package ai.h2o.mojos.runtime.utils; public class Consts { /** Prefix for system configuration variables */ public static final String SYS_PROP_PREFIX = "sys.ai.h2o.mojos."; public static String prop(String suffix) { return SYS_PROP_PREFIX + suffix; } public static boolean propExist(String suffix) { ...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/utils/DateParser.java
package ai.h2o.mojos.runtime.utils; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.DateTimeFormatter; import org.joda.time.format.DateTimeFormatterBuilder; import org.joda.time.format.DateTimeParser; public class Date...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/utils/MojoDateTime.java
package ai.h2o.mojos.runtime.utils; import org.joda.time.DateTime; import org.joda.time.DateTimeFieldType; import org.joda.time.DateTimeZone; import org.joda.time.LocalDate; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.DateTimeFormatterBuilder; import java.util.Objects; /** * Date/Time ho...
0
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-api/2.8.9/ai/h2o/mojos/runtime/utils/ParserUtils.java
package ai.h2o.mojos.runtime.utils; public class ParserUtils { /** * Trim leading and ending ' '. * * @param s input string * @return modified string if it contains leading or ending whitespaces * or original string. */ public static String trimSpace(String s) { ...
0
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime/h2o3/H2O3BackendAdapter.java
package ai.h2o.mojos.runtime.h2o3; import ai.h2o.mojos.runtime.api.backend.ReaderBackend; import ai.h2o.mojos.runtime.api.backend.ReaderBackendUtils; import hex.genmodel.MojoReaderBackend; import java.io.BufferedReader; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; impor...
0
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime/h2o3/H2O3PipelineLoader.java
package ai.h2o.mojos.runtime.h2o3; import ai.h2o.mojos.runtime.AbstractPipelineLoader; import ai.h2o.mojos.runtime.MojoPipeline; import ai.h2o.mojos.runtime.MojoPipelineMeta; import ai.h2o.mojos.runtime.MojoPipelineProtoImpl; import ai.h2o.mojos.runtime.api.MojoColumnMeta; import ai.h2o.mojos.runtime.api.MojoTransform...
0
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime/h2o3/H2O3PipelineLoaderFactory.java
package ai.h2o.mojos.runtime.h2o3; import ai.h2o.mojos.runtime.api.PipelineConfig; import ai.h2o.mojos.runtime.api.PipelineLoader; import ai.h2o.mojos.runtime.api.PipelineLoaderFactory; import ai.h2o.mojos.runtime.api.backend.ReaderBackend; import java.io.IOException; public class H2O3PipelineLoaderFactory implements...
0
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime/h2o3/H2O3Transform.java
package ai.h2o.mojos.runtime.h2o3; import ai.h2o.mojos.runtime.frame.MojoColumnFloat64; import ai.h2o.mojos.runtime.frame.MojoFrame; import ai.h2o.mojos.runtime.frame.MojoFrameMeta; import ai.h2o.mojos.runtime.transforms.ShapCapableTransform; import hex.ModelCategory; import hex.genmodel.GenModel; import hex.genmodel....
0
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime/h2o3/KLimePipelineLoader.java
package ai.h2o.mojos.runtime.h2o3; import ai.h2o.mojos.runtime.AbstractPipelineLoader; import ai.h2o.mojos.runtime.MojoPipeline; import ai.h2o.mojos.runtime.MojoPipelineMeta; import ai.h2o.mojos.runtime.MojoPipelineProtoImpl; import ai.h2o.mojos.runtime.api.MojoColumnMeta; import ai.h2o.mojos.runtime.api.MojoTransform...
0
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime/h2o3/KLimePipelineLoaderFactory.java
package ai.h2o.mojos.runtime.h2o3; import ai.h2o.mojos.runtime.api.PipelineConfig; import ai.h2o.mojos.runtime.api.PipelineLoader; import ai.h2o.mojos.runtime.api.PipelineLoaderFactory; import ai.h2o.mojos.runtime.api.backend.ReaderBackend; import java.io.IOException; public class KLimePipelineLoaderFactory implement...
0
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime
java-sources/ai/h2o/mojo2-runtime-h2o3-impl/2.8.9/ai/h2o/mojos/runtime/h2o3/KlimeTransform.java
package ai.h2o.mojos.runtime.h2o3; import ai.h2o.mojos.runtime.frame.MojoColumnFloat64; import ai.h2o.mojos.runtime.frame.MojoFrame; import ai.h2o.mojos.runtime.frame.MojoFrameMeta; import ai.h2o.mojos.runtime.transforms.MojoTransform; import hex.ModelCategory; import hex.genmodel.GenModel; import hex.genmodel.easy.Ea...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/Configuration.java
package org.reflections; import com.google.common.base.Predicate; import org.reflections.adapters.MetadataAdapter; import org.reflections.scanners.Scanner; import org.reflections.serializers.Serializer; import javax.annotation.Nullable; import java.net.URL; import java.util.Set; import java.util.concurrent.ExecutorSe...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/ReflectionUtils.java
package org.reflections; import com.google.common.base.Predicate; import com.google.common.base.Predicates; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.google.common.collect.Sets; import org.reflections.util.ClasspathHelper; import javax.annotation.Nullable; import j...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/Reflections.java
package org.reflections; import com.google.common.base.Joiner; import com.google.common.base.Predicate; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.google.common.collect.Multimap; import com.google.common.collect.Sets; import org.reflections.scanners.*; import org.ref...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/ReflectionsException.java
/* * User: ophir * Date: Mar 28, 2009 * Time: 12:52:22 AM */ package org.reflections; public class ReflectionsException extends RuntimeException { public ReflectionsException(String message) { super(message); } public ReflectionsException(String message, Throwable cause) { super(message, cause); } p...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/Store.java
package org.reflections; import com.google.common.base.Supplier; import com.google.common.collect.*; import java.util.*; import java.util.concurrent.ConcurrentHashMap; /** * stores metadata information in multimaps * <p>use the different query methods (getXXX) to query the metadata * <p>the query methods are stri...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/adapters/JavaReflectionAdapter.java
package org.reflections.adapters; import com.google.common.base.Joiner; import com.google.common.collect.Lists; import org.reflections.util.Utils; import org.reflections.vfs.Vfs; import javax.annotation.Nullable; import java.lang.annotation.Annotation; import java.lang.reflect.*; import java.util.ArrayList; import ja...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/adapters/JavassistAdapter.java
package org.reflections.adapters; import com.google.common.base.Joiner; import com.google.common.collect.Lists; import javassist.bytecode.*; import javassist.bytecode.annotation.Annotation; import org.reflections.ReflectionsException; import org.reflections.util.Utils; import org.reflections.vfs.Vfs; import java.io.B...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/adapters/MetadataAdapter.java
package org.reflections.adapters; import org.reflections.vfs.Vfs; import java.util.List; /** * */ public interface MetadataAdapter<C,F,M> { // String getClassName(final C cls); String getSuperclassName(final C cls); List<String> getInterfacesNames(final C cls); // List<F> getFields(fina...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/AbstractScanner.java
package org.reflections.scanners; import com.google.common.base.Predicate; import com.google.common.base.Predicates; import com.google.common.collect.Multimap; import org.reflections.Configuration; import org.reflections.ReflectionsException; import org.reflections.adapters.MetadataAdapter; import org.reflections.vfs....
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/FieldAnnotationsScanner.java
package org.reflections.scanners; import java.util.List; /** scans for field's annotations */ @SuppressWarnings({"unchecked"}) public class FieldAnnotationsScanner extends AbstractScanner { public void scan(final Object cls) { final String className = getMetadataAdapter().getClassName(cls); List<O...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/MemberUsageScanner.java
package org.reflections.scanners; import com.google.common.base.Joiner; import javassist.*; import javassist.bytecode.MethodInfo; import javassist.expr.*; import org.reflections.ReflectionsException; import org.reflections.util.ClasspathHelper; /** scans methods/constructors/fields usage * <p><i> depends on {@link o...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/MethodAnnotationsScanner.java
package org.reflections.scanners; import java.util.List; @SuppressWarnings({"unchecked"}) /** scans for method's annotations */ public class MethodAnnotationsScanner extends AbstractScanner { public void scan(final Object cls) { for (Object method : getMetadataAdapter().getMethods(cls)) { for ...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/MethodParameterNamesScanner.java
package org.reflections.scanners; import com.google.common.base.Joiner; import com.google.common.collect.Lists; import javassist.bytecode.LocalVariableAttribute; import javassist.bytecode.MethodInfo; import org.reflections.adapters.MetadataAdapter; import java.lang.reflect.Modifier; import java.util.ArrayList; import...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/MethodParameterScanner.java
package org.reflections.scanners; import org.reflections.adapters.MetadataAdapter; import java.util.List; /** scans methods/constructors and indexes parameters, return type and parameter annotations */ @SuppressWarnings("unchecked") public class MethodParameterScanner extends AbstractScanner { @Override pub...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/ResourcesScanner.java
package org.reflections.scanners; import org.reflections.vfs.Vfs; /** collects all resources that are not classes in a collection * <p>key: value - {web.xml: WEB-INF/web.xml} */ public class ResourcesScanner extends AbstractScanner { public boolean acceptsInput(String file) { return !file.endsWith(".clas...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/Scanner.java
package org.reflections.scanners; import com.google.common.base.Predicate; import com.google.common.collect.Multimap; import org.reflections.Configuration; import org.reflections.vfs.Vfs; import javax.annotation.Nullable; /** * */ public interface Scanner { void setConfiguration(Configuration configuration); ...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/SubTypesScanner.java
package org.reflections.scanners; import org.reflections.util.FilterBuilder; import java.util.List; /** scans for superclass and interfaces of a class, allowing a reverse lookup for subtypes */ public class SubTypesScanner extends AbstractScanner { /** created new SubTypesScanner. will exclude direct Object sub...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/TypeAnnotationsScanner.java
package org.reflections.scanners; import java.lang.annotation.Inherited; import java.util.List; /** scans for class's annotations, where @Retention(RetentionPolicy.RUNTIME) */ @SuppressWarnings({"unchecked"}) public class TypeAnnotationsScanner extends AbstractScanner { public void scan(final Object cls) { fina...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/TypeElementsScanner.java
package org.reflections.scanners; import com.google.common.base.Joiner; /** scans fields and methods and stores fqn as key and elements as values */ @SuppressWarnings({"unchecked"}) public class TypeElementsScanner extends AbstractScanner { private boolean includeFields = true; private boolean includeMethods ...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/scanners/TypesScanner.java
package org.reflections.scanners; import org.reflections.ReflectionsException; import org.reflections.vfs.Vfs; /** scans classes and stores fqn as key and full path as value. * <p>Deprecated. use {@link org.reflections.scanners.TypeElementsScanner} */ @Deprecated public class TypesScanner extends AbstractScanner { ...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/serializers/JavaCodeSerializer.java
package org.reflections.serializers; import com.google.common.base.Joiner; import com.google.common.base.Supplier; import com.google.common.collect.Lists; import com.google.common.collect.Multimap; import com.google.common.collect.Multimaps; import com.google.common.collect.Sets; import com.google.common.io.Files; imp...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/serializers/JsonSerializer.java
package org.reflections.serializers; import com.google.common.base.Supplier; import com.google.common.collect.*; import com.google.common.io.Files; import com.google.gson.*; import org.reflections.Reflections; import org.reflections.util.Utils; import java.io.*; import java.lang.reflect.Type; import java.nio.charset....
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/serializers/Serializer.java
package org.reflections.serializers; import org.reflections.Reflections; import java.io.File; import java.io.InputStream; /** Serilizer of a {@link org.reflections.Reflections} instance */ public interface Serializer { /** reads the input stream into a new Reflections instance, populating it's store */ Refle...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/serializers/XmlSerializer.java
package org.reflections.serializers; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.DocumentFactory; import org.dom4j.Element; import org.dom4j.io.OutputFormat; import org.dom4j.io.SAXReader; import org.dom4j.io.XMLWriter; import org.reflections.Reflections; import org.reflections.Refl...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/util/ClasspathHelper.java
package org.reflections.util; import com.google.common.collect.Sets; import org.reflections.Reflections; import javax.servlet.ServletContext; import java.io.File; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import java.net.URI; import java.net.URL; i...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/util/ConfigurationBuilder.java
package org.reflections.util; import com.google.common.base.Predicate; import com.google.common.collect.Lists; import com.google.common.collect.ObjectArrays; import com.google.common.collect.Sets; import org.reflections.Configuration; import org.reflections.Reflections; import org.reflections.ReflectionsException; imp...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/util/FilterBuilder.java
package org.reflections.util; import com.google.common.base.Predicate; import com.google.common.base.Joiner; import com.google.common.collect.Lists; import org.reflections.ReflectionsException; import java.util.ArrayList; import java.util.List; import java.util.regex.Pattern; /** * Builds include/exclude filters fo...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/util/Utils.java
package org.reflections.util; import com.google.common.base.Joiner; import com.google.common.collect.Sets; import org.reflections.Reflections; import org.reflections.ReflectionsException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.annotation.Nullable; import java.io.File; import java.io.IOE...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/CommonsVfs2UrlType.java
package org.reflections.vfs; import com.google.common.collect.AbstractIterator; import org.apache.commons.vfs2.*; import org.reflections.Reflections; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.util.*; /** * A {@link org.reflections.vfs.Vfs.UrlType} using the commons vfs...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/JarInputDir.java
package org.reflections.vfs; import com.google.common.collect.AbstractIterator; import org.reflections.ReflectionsException; import org.reflections.util.Utils; import java.io.IOException; import java.net.URL; import java.util.Iterator; import java.util.jar.JarInputStream; import java.util.zip.ZipEntry; /** * */ pu...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/JarInputFile.java
package org.reflections.vfs; import java.io.IOException; import java.io.InputStream; import java.util.zip.ZipEntry; /** * */ public class JarInputFile implements Vfs.File { private final ZipEntry entry; private final JarInputDir jarInputDir; private final long fromIndex; private final long endIndex; ...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/SystemDir.java
package org.reflections.vfs; import com.google.common.collect.AbstractIterator; import com.google.common.collect.Lists; import java.util.Collections; import java.util.Iterator; import java.util.Stack; import java.util.List; import java.io.File; /* * An implementation of {@link org.reflections.vfs.Vfs.Dir} for direc...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/SystemFile.java
package org.reflections.vfs; import java.io.InputStream; import java.io.FileInputStream; import java.io.FileNotFoundException; /** an implementation of {@link org.reflections.vfs.Vfs.File} for a directory {@link java.io.File} */ public class SystemFile implements Vfs.File { private final SystemDir root; priva...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/UrlTypeVFS.java
package org.reflections.vfs; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.util.jar.JarFile; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.reflections.Reflections; import org.reflections.ReflectionsException; impor...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/Vfs.java
package org.reflections.vfs; import com.google.common.base.Predicate; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import org.apache.commons.vfs2.*; import org.reflections.Reflections; import org.reflections.ReflectionsException; import org.reflections.util.ClasspathHelper; impor...
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/ZipDir.java
package org.reflections.vfs; import com.google.common.collect.AbstractIterator; import org.reflections.Reflections; import java.io.IOException; import java.util.Enumeration; import java.util.Iterator; import java.util.jar.JarFile; import java.util.zip.ZipEntry; /** an implementation of {@link org.reflections.vfs.Vfs....
0
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections
java-sources/ai/h2o/reflections/0.9.11-h2o-custom/org/reflections/vfs/ZipFile.java
package org.reflections.vfs; import java.io.IOException; import java.io.InputStream; import java.util.zip.ZipEntry; /** an implementation of {@link org.reflections.vfs.Vfs.File} for {@link java.util.zip.ZipEntry} */ public class ZipFile implements Vfs.File { private final ZipDir root; private final ZipEntry e...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/org/apache/spark
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/org/apache/spark/h2o/JavaH2OContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/org/apache/spark
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/org/apache/spark/h2o/RDDDoubleConversionFunc.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/org/apache/spark
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/org/apache/spark/h2o/RDDLongConversionFunc.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api/DataFrames/DataFrameV3.java
package water.api.DataFrames; import water.api.API; import water.api.Schema; /** * Schema representing /3/dataframes/&lt;dataframe_id&gt; endpoint */ public class DataFrameV3 extends Schema<IcedDataFrameInfo, DataFrameV3> { @API(help = "Data frame ID", direction = API.Direction.INOUT) public String datafra...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api/DataFrames/H2OFrameIDV3.java
package water.api.DataFrames; import water.api.API; import water.api.Schema; /** * Schema representing /3/dataframe/&lt;dataframe_id&gt;/h2oframe endpoint */ public class H2OFrameIDV3 extends Schema<IcedH2OFrameID, H2OFrameIDV3> { @API(help = "ID of Spark's DataFrame to be transformed", direction = API.Directio...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api/H2OFrames/DataFrameIDV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api/RDDs/RDD2H2OFrameIDV3.java
package water.api.RDDs; import water.api.API; import water.api.DataFrames.IcedH2OFrameID; import water.api.Schema; /** * Schema representing /3/RDDs/&lt;rdd_id&gt;/h2oframe endpoint */ public class RDD2H2OFrameIDV3 extends Schema<IcedRDD2H2OFrameID, RDD2H2OFrameIDV3> { @API(help = "Id of RDD to be transformed",...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api/RDDs/RDDV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api/scalaInt/ScalaCodeV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/api/scalaInt/ScalaSessionIdV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water
java-sources/ai/h2o/sparkling-water-core_2.10/1.6.13/water/munging/JoinMethod.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not u...
0
java-sources/ai/h2o/sparkling-water-core_2.11/3.46.0.6-1-2.4/ai/h2o
java-sources/ai/h2o/sparkling-water-core_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/H2OCredentials.java
package ai.h2o.sparkling; import java.io.Serializable; import java.nio.charset.StandardCharsets; import java.security.MessageDigest; import org.apache.commons.codec.binary.Base64; /** A serializable versions of water.webserver.iface.Credentials */ public class H2OCredentials implements Serializable { private final...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/internals/CategoricalConstants.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/internals/CollectCategoricalDomainsTask.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/internals/ConvertCategoricalToStringColumnsTask.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/internals/LocalNodeDomains.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/internals/UpdateCategoricalIndicesTask.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api/schema/FinalizeFrameV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api/schema/InitializeFrameV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api/schema/LogLevelV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api/schema/SWAvailableV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api/schema/UploadPlanV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api/schema/VerifyVersionV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/extensions/rest/api/schema/VerifyWebOpenV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/water
java-sources/ai/h2o/sparkling-water-extensions_2.11/3.46.0.6-1-2.4/water/parser/CategoricalPreviewParseWriter.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/hex
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/hex/schemas/SVMV3.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models/MissingValuesHandling.java
package org.apache.spark.ml.spark.models; public enum MissingValuesHandling { NotAllowed, Skip, MeanImputation }
0
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models/svm/Gradient.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models/svm/SVM.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models/svm/SVMParameters.java
package org.apache.spark.ml.spark.models.svm; import hex.Model; import org.apache.spark.ml.spark.models.MissingValuesHandling; import water.Key; import water.fvec.Frame; public class SVMParameters extends Model.Parameters { @Override public String algoName() { return "SVM"; } @Override public String ...
0
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models
java-sources/ai/h2o/sparkling-water-ml_2.10/1.6.13/org/apache/spark/ml/spark/models/svm/Updater.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-scoring_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml
java-sources/ai/h2o/sparkling-water-scoring_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml/internals/H2OMetric.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-scoring_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml
java-sources/ai/h2o/sparkling-water-scoring_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml/metrics/MetricsDescription.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-scoring_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml
java-sources/ai/h2o/sparkling-water-scoring_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml/params/H2OTargetEncoderProblemType.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/sparkling-water-utils_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml
java-sources/ai/h2o/sparkling-water-utils_2.11/3.46.0.6-1-2.4/ai/h2o/sparkling/ml/utils/H2OAutoMLSortMetric.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
0
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i
java-sources/ai/h2o/xgboost-predictor/0.3.20/biz/k11i/xgboost/Predictor.java
package biz.k11i.xgboost; import biz.k11i.xgboost.config.PredictorConfiguration; import biz.k11i.xgboost.gbm.GradBooster; import biz.k11i.xgboost.learner.ObjFunction; import biz.k11i.xgboost.spark.SparkModelParam; import biz.k11i.xgboost.util.FVec; import biz.k11i.xgboost.util.ModelReader; import java.io.IOException;...