index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/TaskRunEnv.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
import ai.databand.schema.jackson.ZonedDateTimeDeserializer;
import ai.databand.schema.jackson.ZonedDateTimeSerializer;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/TaskRunParam.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class TaskRunParam {
private String name;
private String value;
private String value... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/TaskRunsInfo.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
import java.util.List;
public class TaskRunsInfo {
private final String taskRunEnvUid;
private final List<List<String>> parentChildMap;
private final String runUid;
private final List<TaskRun> taskRuns;
privat... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/TaskStates.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
public interface TaskStates {
String RUNNING = "running";
String SUCCESS = "success";
String FAILED = "failed";
}
|
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/Tasks.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
import java.util.Map;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Tasks {
private Map<String, TaskRun> taskInstances;
private ... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/TasksMetricsRequest.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
import java.util.List;
public class TasksMetricsRequest {
private final List<String> uids;
public TasksMetricsRequest(List<String> uids) {
this.uids = uids;
}
public List<String> getUids() {
return u... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/TasksMetricsResponse.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
import java.util.List;
import java.util.Map;
public class TasksMetricsResponse {
private Map<String, Map<String, List<List<Object>>>> metrics;
public Map<String, Map<String, List<List<Object>>>> getMetrics() {
return... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/TrackingSource.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
public class TrackingSource {
private final String name;
private final String url;
private final String env;
private final String sourceType;
private final String sourceInstanceUid;
/**
* Default construc... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/UpdateTaskRunAttempts.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema;
import java.util.List;
public class UpdateTaskRunAttempts {
private final List<TaskRunAttemptUpdate> taskRunAttemptUpdates;
public UpdateTaskRunAttempts(List<TaskRunAttemptUpdate> taskRunAttemptUpdates) {
this.taskRu... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/auth/CreateTokenReq.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.auth;
import java.util.UUID;
public class CreateTokenReq {
private final String label;
private final String lifespan;
public CreateTokenReq() {
this(UUID.randomUUID().toString(), "3600");
}
public CreateT... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/auth/CreateTokenRes.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.auth;
public class CreateTokenRes {
private String uid;
private String token;
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getTok... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/auth/LoginReq.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.auth;
import java.util.Optional;
public class LoginReq {
private final String username;
private final String password;
public LoginReq() {
this.username = Optional.ofNullable(System.getenv("DBND__TRACKER__USERNAM... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/auth/LoginRes.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.auth;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class LoginRes {
private String status;
public String getStatus() {
return status;
}
publ... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/histograms/ColumnSummary.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.histograms;
import java.util.HashMap;
import java.util.Map;
public class ColumnSummary implements Summary {
private final long count;
private final long distinct;
private final long nonNull;
private final long nullCoun... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/histograms/NumericSummary.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.histograms;
import java.util.HashMap;
import java.util.Map;
public class NumericSummary implements Summary {
private final ColumnSummary columnSummary;
private final double max;
private final double mean;
private fi... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/histograms/Summary.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.histograms;
import java.util.Map;
public interface Summary {
long getCount();
long getDistinct();
long getNonNull();
long getNullCount();
String getType();
Map<String, Object> toMap();
}
|
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/jackson/LocalDateDeserializer.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.jackson;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import java.io.IOException;
import java.time.LocalDat... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/jackson/LocalDateSerializer.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.jackson;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import java.io.IOException;
import java.time.LocalDate;
im... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/jackson/ZonedDateTimeDeserializer.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.jackson;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import java.io.IOException;
import java.time.ZonedDat... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/jackson/ZonedDateTimeSerializer.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.jackson;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import java.io.IOException;
import java.time.ZonedDateTime... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/schema/tasks/GetTasksReq.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.schema.tasks;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class GetTasksReq {
@JsonProperty("uids")
private List<String> taskUids;
public GetTasksReq(List<String> taskUids) {
this... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/spark/ActiveJobTracker.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.spark;
import ai.databand.DbndWrapper;
import org.apache.spark.Dependency;
import org.apache.spark.rdd.RDD;
import org.apache.spark.scheduler.ActiveJob;
import org.apache.spark.scheduler.Stage;
import org.apache.spark.sql.execution.datasources... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/spark/DbndSparkListener.java | /*
* © Copyright Databand.ai, an IBM Company 2022-2024
*/
package ai.databand.spark;
import ai.databand.DbndAppLog;
import ai.databand.DbndWrapper;
import ai.databand.config.DbndConfig;
import org.apache.spark.scheduler.SparkListener;
import org.apache.spark.scheduler.SparkListenerEvent;
import org.apache.spark.sc... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/spark/DbndSparkQueryExecutionListener.java | /*
* © Copyright Databand.ai, an IBM Company 2022-2024
*/
package ai.databand.spark;
import static ai.databand.DbndPropertyNames.DBND_INTERNAL_ALIAS;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Arr... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/spark/SparkColumnStats.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.spark;
import ai.databand.log.HistogramRequest;
import ai.databand.log.LogDatasetRequest;
import ai.databand.parameters.Histogram;
import ai.databand.schema.ColumnStats;
import ai.databand.schema.histograms.NumericSummary;
import ai.databand.s... |
0 | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-client/1.0.28.1/ai/databand/spark/SparkIOSource.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.spark;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.uti... |
0 | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand/deequ/DbndMetricsRepository.java | package ai.databand.deequ;
import ai.databand.DbndWrapper;
import com.amazon.deequ.analyzers.runners.AnalyzerContext;
import com.amazon.deequ.repository.MetricsRepository;
import com.amazon.deequ.repository.MetricsRepositoryMultipleResultsLoader;
import com.amazon.deequ.repository.ResultKey;
import scala.Option;
impor... |
0 | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand/deequ/DbndResultKey.java | package ai.databand.deequ;
import com.amazon.deequ.repository.ResultKey;
import scala.collection.immutable.Map;
public class DbndResultKey extends ResultKey {
private final String dataSetName;
public DbndResultKey(long dataSetDate, Map<String, String> tags, String dataSetName) {
super(dataSetDate, t... |
0 | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand/deequ/DeequToDbnd.java | package ai.databand.deequ;
import com.amazon.deequ.analyzers.runners.AnalyzerContext;
import com.amazon.deequ.metrics.Distribution;
import com.amazon.deequ.metrics.DistributionValue;
import com.amazon.deequ.metrics.Metric;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import scala.collection.JavaConverters;... |
0 | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand | java-sources/ai/databand/dbnd-deequ/0.40.2/ai/databand/deequ/NoopMetricsRepository.java | package ai.databand.deequ;
import com.amazon.deequ.analyzers.runners.AnalyzerContext;
import com.amazon.deequ.repository.MetricsRepository;
import com.amazon.deequ.repository.MetricsRepositoryMultipleResultsLoader;
import com.amazon.deequ.repository.ResultKey;
import scala.Option;
/**
* Default noop deequ metrics re... |
0 | java-sources/ai/databand/dbnd-mlflow/1.0.28.1/ai/databand | java-sources/ai/databand/dbnd-mlflow/1.0.28.1/ai/databand/mlflow/DbndMlflowClient.java | /*
* © Copyright Databand.ai, an IBM Company 2022
*/
package ai.databand.mlflow;
import ai.databand.DbndApi;
import ai.databand.DbndApiBuilder;
import ai.databand.RandomNames;
import ai.databand.config.DbndConfig;
import ai.databand.id.Sha1Long;
import ai.databand.id.Sha1Short;
import ai.databand.id.Uuid5;
import a... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/ad | java-sources/ai/datatower/core/3.2.0/ai/datatower/ad/utils/UUIDUtils.java | package ai.datatower.ad.utils;
import java.util.Random;
public class UUIDUtils {
public static String generateUUID() {
StringBuilder uuid = new StringBuilder();
for (int i = 0; i < 16; i++) {
uuid.append(Integer.toHexString(new Random().nextInt(16)));
}
return uuid.toSt... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/BuildConfig.java | /**
* Automatically generated file. DO NOT MODIFY
*/
package ai.datatower.analytics;
public final class BuildConfig {
public static final boolean DEBUG = false;
public static final String LIBRARY_PACKAGE_NAME = "ai.datatower.analytics";
public static final String BUILD_TYPE = "release";
public static final S... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/core/DTActivityLifecycleCallbacks.java | /*
* Copyright (C) 2022 ThinkingData
*/
package ai.datatower.analytics.core;
import android.app.Activity;
import android.app.Application;
import android.content.Intent;
import android.os.Bundle;
import android.text.TextUtils;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
i... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/persistence/SharedPreferencesLoader.java | /*
* Copyright (C) 2022 ThinkingData
*/
package ai.datatower.analytics.data.persistence;
import android.content.Context;
import android.content.SharedPreferences;
import java.util.concurrent.Callable;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
i... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/persistence/SharedPreferencesStorage.java | /*
* Copyright (C) 2022 ThinkingData
*/
package ai.datatower.analytics.data.persistence;
import android.content.SharedPreferences;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
abstract class SharedPreferencesStorage<T> {
protected T data;
final String storageKey;
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/persistence/StorageDisableFlag.java | /*
* Copyright (C) 2022 ThinkingData
*/
package ai.datatower.analytics.data.persistence;
import android.content.SharedPreferences;
import java.util.concurrent.Future;
/**
* StorageDisableFlag.
* */
public class StorageDisableFlag extends SharedPreferencesStorage<Boolean> {
public StorageDisableFlag(Future<... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/persistence/StorageReportUrl.java | /*
* Copyright (C) 2022 ThinkingData
*/
package ai.datatower.analytics.data.persistence;
import android.content.SharedPreferences;
import java.util.concurrent.Future;
/**
* StorageReportUrl.
*/
public class StorageReportUrl extends SharedPreferencesStorage<String> {
public StorageReportUrl(Future<SharedPref... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/room/DTAnalyticsDB_Impl.java | package ai.datatower.analytics.data.room;
import ai.datatower.analytics.data.room.dao.ConfigsDao;
import ai.datatower.analytics.data.room.dao.ConfigsDao_Impl;
import ai.datatower.analytics.data.room.dao.EventInfoDao;
import ai.datatower.analytics.data.room.dao.EventInfoDao_Impl;
import androidx.annotation.NonNull;
imp... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/room | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/room/dao/ConfigsDao_Impl.java | package ai.datatower.analytics.data.room.dao;
import ai.datatower.analytics.data.room.bean.Configs;
import android.database.Cursor;
import androidx.room.EntityInsertionAdapter;
import androidx.room.RoomDatabase;
import androidx.room.RoomSQLiteQuery;
import androidx.room.SharedSQLiteStatement;
import androidx.room.util... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/room | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/data/room/dao/EventInfoDao_Impl.java | package ai.datatower.analytics.data.room.dao;
import ai.datatower.analytics.data.room.bean.Events;
import android.database.Cursor;
import androidx.room.EntityDeletionOrUpdateAdapter;
import androidx.room.EntityInsertionAdapter;
import androidx.room.RoomDatabase;
import androidx.room.RoomSQLiteQuery;
import androidx.ro... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/exception/InvalidDataException.java | /*
* Created by wangzhuozhou on 2015/08/01.
* Copyright 2015-2020 Sensors Data 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 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/HttpMethod.java | /*
* Created by chenru on 2020/06/22.
* Copyright 2015-2020 Sensors Data 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
*
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/HttpService.java | /*
* Copyright (C) 2022 ThinkingData
*/
package ai.datatower.analytics.network;
import android.util.Log;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURL... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/HttpTaskManager.java | /*
* Created by chenru on 2020/06/22.
* Copyright 2015-2020 Sensors Data 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
*
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/HttpUtils.java | /*
* Created by chenru on 2020/06/22.
* Copyright 2015-2020 Sensors Data 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
*
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/RealRequest.java | /*
* Created by chenru on 2020/06/22.
* Copyright 2015-2020 Sensors Data 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
*
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/RealResponse.java | /*
* Created by chenru on 2020/06/22.
* Copyright 2015-2020 Sensors Data 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
*
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/RemoteService.java | /*
* Copyright (C) 2022 ThinkingData
*/
package ai.datatower.analytics.network;
import java.io.IOException;
import java.util.Map;
import javax.net.ssl.SSLSocketFactory;
/**
* RemoteService.
* */
public interface RemoteService {
String performRequest(String endpointUrl, String params,
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/RequestHelper.java | /*
* Created by chenru on 2020/06/22.
* Copyright 2015-2020 Sensors Data 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
*
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/network/ResponseStatus.java | /*
* Created by chenru on 2020/06/22.
* Copyright 2015-2020 Sensors Data 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
*
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/taskqueue/AsyncTaskQueue.java | package ai.datatower.analytics.taskqueue;
import androidx.annotation.NonNull;
import java.lang.ref.WeakReference;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import ai.datatower.analy... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/taskqueue/DBQueue.java | package ai.datatower.analytics.taskqueue;
public class DBQueue extends AsyncTaskQueue {
private volatile static DBQueue singleton; //1:volatile修饰
public static DBQueue get() {
if (singleton == null) { //2:减少不要同步,优化性能
synchronized (DBQueue.class) { // 3:同步,线程安全
if (single... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/taskqueue/DataUploadQueue.java | package ai.datatower.analytics.taskqueue;
public class DataUploadQueue extends AsyncTaskQueue {
private volatile static DataUploadQueue singleton; //1:volatile修饰
public static DataUploadQueue get() {
if (singleton == null) { //2:减少不要同步,优化性能
synchronized (DataUploadQueue.class) { // 3:同... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/taskqueue/MainQueue.java | package ai.datatower.analytics.taskqueue;
public class MainQueue extends AsyncTaskQueue {
private volatile static MainQueue singleton; //1:volatile修饰
public static MainQueue get() {
if (singleton == null) { //2:减少不要同步,优化性能
synchronized (MainQueue.class) { // 3:同步,线程安全
if... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/AdtUtil.java | // Copyright 2020 ADTIMING TECHNOLOGY COMPANY LIMITED
// Licensed under the GNU Lesser General Public License Version 3
package ai.datatower.analytics.utils;
import android.app.Application;
import java.lang.ref.SoftReference;
/**
*
*/
public class AdtUtil {
private SoftReference<Application> mContext = null;
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/AppLifecycleHelper.java | package ai.datatower.analytics.utils;
import android.app.Activity;
import android.app.Application;
import android.os.Bundle;
public class AppLifecycleHelper {
private OnAppStatusListener mOnAppStatusListener;
public AppLifecycleHelper() {
}
/**
* 注册状态监听,仅在Application中使用
* @param app... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/DataUtils.java | /*
* Created by wangzhuozhou on 2015/08/01.
* Copyright 2015-2020 Sensors Data 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 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/EmulatorDetector.java | package ai.datatower.analytics.utils;
import android.text.TextUtils;
import java.lang.reflect.Method;
public class EmulatorDetector {
/**
* Detects if app is currenly running on emulator, or real device.
*
* @return true for emulator, false for real devices
*/
public static boolean isEmu... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/JsonUtils.java | package ai.datatower.analytics.utils;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Map;
public final class JsonUtils {
private static final byte TYPE_BOOLEAN = 0x00;
private static fi... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/LogUtils.java | package ai.datatower.analytics.utils;
import android.content.ClipData;
import android.content.ComponentName;
import android.content.Intent;
import android.graphics.Rect;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import androidx.annotation.IntDef;
import androidx.annotation.IntRange;
... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/MemoryUtils.java | package ai.datatower.analytics.utils;
import static android.content.Context.ACTIVITY_SERVICE;
import android.annotation.SuppressLint;
import android.app.ActivityManager;
import android.app.usage.StorageStatsManager;
import android.content.Context;
import android.os.Build;
import android.os.Environment;
import android... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/NetworkUtil.java | package ai.datatower.analytics.utils;
import static android.Manifest.permission.ACCESS_NETWORK_STATE;
import static android.Manifest.permission.INTERNET;
import android.app.Application;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.Inte... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/ProcessUtil.java | package ai.datatower.analytics.utils;
import android.app.ActivityManager;
import android.app.Application;
import android.content.Context;
import android.os.Build;
import android.text.TextUtils;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.lang.reflect.Method;
import java.util... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/StorageBean.java | package ai.datatower.analytics.utils;
import androidx.annotation.NonNull;
/**
* Created by chensongsong on 2020/6/1.
*/
public class StorageBean {
/**
* 剩余存储空间
*/
private String freeStore;
/**
* 已用存储空间
*/
private String usedStore;
/**
* 总共存储空间
*/
private String... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/ThreadUtils.java | package ai.datatower.analytics.utils;
import android.os.Handler;
import android.os.Looper;
import android.util.Log;
import androidx.annotation.CallSuper;
import androidx.annotation.IntRange;
import androidx.annotation.NonNull;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Ti... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics | java-sources/ai/datatower/core/3.2.0/ai/datatower/analytics/utils/ThrowableUtils.java | package ai.datatower.analytics.utils;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
public class ThrowableUtils {
private static final String LINE_SEP = System.getProperty("line.separator");
private ThrowableU... |
0 | java-sources/ai/datatower/core/3.2.0/ai/datatower/iap | java-sources/ai/datatower/core/3.2.0/ai/datatower/iap/utils/UUIDUtils.java | package ai.datatower.iap.utils;
import java.util.Random;
public class UUIDUtils {
public static String generateUUID() {
StringBuilder uuid = new StringBuilder();
for (int i = 0; i < 16; i++) {
uuid.append(Integer.toHexString(new Random().nextInt(16)));
}
return uuid.toS... |
0 | java-sources/ai/deepsense/seahorse-executor-deeplang_2.11/1.4.3/ai/deepsense/deeplang | java-sources/ai/deepsense/seahorse-executor-deeplang_2.11/1.4.3/ai/deepsense/deeplang/refl/Register.java | /*
* Copyright 2016 deepsense.ai (CodiLime, 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 ... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/appium/SmartDriver.java | package ai.devtools.appium;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.math.BigInteger;
import java.net.URL;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import jav... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/appium/SmartDriverElement.java | package ai.devtools.appium;
import ai.devtools.utils.JsonUtils;
import ai.devtools.utils.MatchUtilsAppium;
import com.google.gson.JsonObject;
import java.util.List;
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.MobileElement;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimensi... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/selenium/By.java | package ai.devtools.selenium;
import org.openqa.selenium.SearchContext;
import org.openqa.selenium.WebElement;
import java.util.List;
public abstract class By extends org.openqa.selenium.By {
public static By ai(String elementName) {
return new ByAI(elementName);
}
public static... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/selenium/SmartDriver.java | package ai.devtools.selenium;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.math.BigInteger;
import java.net.URLEncoder;
import java.security.MessageDigest;
import java.util.*;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import java.util.logging.Level;
impor... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/selenium/SmartDriverElement.java | package ai.devtools.selenium;
import ai.devtools.utils.JsonUtils;
import ai.devtools.utils.MatchUtils;
import com.google.gson.JsonObject;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.openqa.selenium.Rectangle;
import org.open... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/utils/CollectionUtils.java | package ai.devtools.utils;
import com.google.gson.JsonObject;
import java.util.HashMap;
public class CollectionUtils
{
/**
* Builds a new {@code JsonObject} from the list of Objects. Pass in values such that {@code [ k1, v1, k2, v2, k3, v3... ]}.
*
* @param ol The {@code Object}s to use
* @return A {@code ... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/utils/JsonUtils.java | package ai.devtools.utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import okhttp3.Response;
/**
* Shared utility methods for common tasks
*/
public class JsonUtils
{
/**
* The logger for this class
*/
private static Logge... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/utils/LocalClassifyUtils.java | package ai.devtools.utils;
import org.opencv.core.*;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
import java.awt.Graphics2D;
import java.io.IOException;
public class LocalClassifyUtils {
pub... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/utils/MatchUtils.java | package ai.devtools.utils;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import ai.devtools.selenium.SmartDriver;
import org.openqa.selenium.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/utils/MatchUtilsAppium.java | package ai.devtools.utils;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import ai.devtools.appium.SmartDriver;
import io.appium.java_client.MobileElement;
import org.openqa.selenium.*;
import org.sl... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/utils/NetUtils.java | package ai.devtools.utils;
import java.io.IOException;
import java.security.SecureRandom;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.time.Duration;
import java.util.HashMap;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import javax... |
0 | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools | java-sources/ai/dev-tools/ai-devtools/0.1.20/ai/devtools/utils/Utils.java | package ai.devtools.utils;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import java.util.ArrayList;
import java.util.Arrays;
/**
* The {@code Utils} class provide a function for turning strings into Booleans.
*/
public class Utils {
public static Boolean StrToBool(String value) {
... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/CollectionUtils.java | package ai.devtools.selenium;
import com.google.gson.JsonObject;
final class CollectionUtils
{
/**
* Builds a new {@code JsonObject} from the list of Objects. Pass in values such that {@code [ k1, v1, k2, v2, k3, v3... ]}.
*
* @param ol The {@code Object}s to use
* @return A {@code JsonObject} derived from ... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/JsonUtils.java | package ai.devtools.selenium;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import okhttp3.Response;
/**
* Shared utility methods for common tasks
*/
final class JsonUtils
{
/**
* The logger for this class
*/
private static Log... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/MatchUtils.java | package ai.devtools.selenium;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import org.openqa.selenium.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.gson.JsonObject;
... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/NetUtils.java | package ai.devtools.selenium;
import java.io.IOException;
import java.security.SecureRandom;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.time.Duration;
import java.util.HashMap;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import ja... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/SmartDriver.java | package ai.devtools.selenium;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.math.BigInteger;
import java.net.URLEncoder;
import java.security.MessageDigest;
import java.util.*;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import java.util.logging.Level;
impor... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/SmartDriverElement.java | package ai.devtools.selenium;
import com.google.gson.JsonObject;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.openqa.selenium.Rectangle;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.RemoteWebDriver... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/Utils.java | package ai.devtools.selenium;
import java.util.ArrayList;
import java.util.Arrays;
/**
* The {@code Utils} class provide a function for turning strings into Booleans.
*/
class Utils {
static Boolean StrToBool(String value) {
ArrayList<String> truthValues = new ArrayList<String>(Arrays.asList("1", "true... |
0 | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools | java-sources/ai/dev-tools/ai-devtools-selenium/0.1.11/ai/devtools/selenium/package-info.java | /**
* Contains the main classes for the dev-tools.ai Smartdriver SDK. These classes provide simple wrappers around existing selenium functionality to seamlessly incorporate dev-tools.ai's powerful element
* classification technology.
*/
package ai.devtools.selenium; |
0 | java-sources/ai/djl/android/core/0.33.0/ai/djl/android | java-sources/ai/djl/android/core/0.33.0/ai/djl/android/core/BitmapImageFactory.java | /*
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/Application.java | /*
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/BaseModel.java | /*
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/Device.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/MalformedModelException.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/Model.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/ModelException.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/TrainingDivergedException.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai | java-sources/ai/djl/api/0.34.0/ai/djl/package-info.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai/djl | java-sources/ai/djl/api/0.34.0/ai/djl/engine/Engine.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
0 | java-sources/ai/djl/api/0.34.0/ai/djl | java-sources/ai/djl/api/0.34.0/ai/djl/engine/EngineException.java | /*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" fil... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.