index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/ai/grakn/grakn-titan-factory/0.10.0/ai/grakn | java-sources/ai/grakn/grakn-titan-factory/0.10.0/ai/grakn/factory/TitanInternalFactory.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/grakn-titan-factory/0.10.0/ai/grakn/graph | java-sources/ai/grakn/grakn-titan-factory/0.10.0/ai/grakn/graph/internal/GraknTitanGraph.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn/factory/JanusPreviousPropertyStep.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016-2018 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your ... |
0 | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn/factory/JanusPreviousPropertyStepStrategy.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016-2018 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your ... |
0 | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn/factory/TxFactoryJanus.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016-2018 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your ... |
0 | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn/factory/TxFactoryJanusHadoop.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016-2018 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your ... |
0 | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn/kb | java-sources/ai/grakn/janus-factory/1.1.0/ai/grakn/kb/internal/GraknTxJanus.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016-2018 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your ... |
0 | java-sources/ai/grakn/kgms/client/1.4.3/ai/grakn | java-sources/ai/grakn/kgms/client/1.4.3/ai/grakn/client/ClientFactory.java | package ai.grakn.client;
import ai.grakn.Keyspace;
import ai.grakn.kgms.console.rpc.GrpcChannelFactory;
import ai.grakn.rpc.proto.SessionProto;
import ai.grakn.util.SimpleURI;
import io.grpc.ManagedChannel;
import java.nio.file.Path;
public class ClientFactory {
private final Grakn.OpenRequestBuilder openReques... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/KGMSConsole.java | package ai.grakn.kgms.console;
import ai.grakn.GraknConfigKey;
import ai.grakn.engine.GraknConfig;
import ai.grakn.kgms.console.command.CommandBus;
import ai.grakn.kgms.console.command.PrintWriterNotRecognised;
import ai.grakn.kgms.console.command.createuser.CreateUserCommand;
import ai.grakn.kgms.console.command.crea... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/Command.java | package ai.grakn.kgms.console.command;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public abstract class Command {
final public void handle(String command) {
Matcher matcher = pattern().matcher(command);
boolean matches = matcher.matches();
if (matches) {
h... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/CommandBus.java | package ai.grakn.kgms.console.command;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
public class CommandBus {
private final NotRecognised unrecognized;
private final List<Command> commands;
public CommandBus(NotRecognised unrecognized, Command... commands) {
this.u... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/CommandNotMatchedException.java | package ai.grakn.kgms.console.command;
import ai.grakn.kgms.util.ErrorMessage;
public class CommandNotMatchedException extends RuntimeException {
public CommandNotMatchedException() {
super(ErrorMessage.ERROR_COMMAND_NOT_MATCHED.getMessage());
}
}
|
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/NotRecognised.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/PrintStreamNotRecognised.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/PrintWriterNotRecognised.java | package ai.grakn.kgms.console.command;
import java.io.PrintWriter;
public class PrintWriterNotRecognised implements NotRecognised {
private final PrintWriter output;
public PrintWriterNotRecognised(PrintWriter output) {
this.output = output;
}
@Override
public void handle(String command... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/createuser/CreateUserCommand.java | package ai.grakn.kgms.console.command.createuser;
import ai.grakn.kgms.console.command.Command;
import ai.grakn.kgms.console.rpc.UserManagementClient;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class CreateUserCommand extends Command {
private final Pattern pattern = Pattern.compile(... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/createuser/CreateUserDisplay.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/deleteuser/DeleteUserCommand.java | package ai.grakn.kgms.console.command.deleteuser;
import ai.grakn.kgms.console.command.Command;
import ai.grakn.kgms.console.rpc.UserManagementClient;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class DeleteUserCommand extends Command {
private final Pattern pattern = Pattern.compile(... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/deleteuser/DeleteUserDisplay.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/retrieveallusers/RetrieveAllUserCommand.java | package ai.grakn.kgms.console.command.retrieveallusers;
import ai.grakn.kgms.authentication.model.User;
import ai.grakn.kgms.console.command.Command;
import ai.grakn.kgms.console.rpc.UserManagementClient;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RetrieveAllU... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/retrieveallusers/RetrieveAllUserDisplay.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/retrieveuser/RetrieveUserCommand.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/retrieveuser/RetrieveUserDisplay.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/updateuser/UpdateUserCommand.java | package ai.grakn.kgms.console.command.updateuser;
import ai.grakn.kgms.console.command.Command;
import ai.grakn.kgms.console.rpc.UserManagementClient;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class UpdateUserCommand extends Command {
// TODO: re enable this when adding Authorisatio... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/command/updateuser/UpdateUserDisplay.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/rpc/GrpcChannelFactory.java | package ai.grakn.kgms.console.rpc;
import ai.grakn.util.SimpleURI;
import io.grpc.ManagedChannel;
import io.grpc.netty.GrpcSslContexts;
import io.grpc.netty.NettyChannelBuilder;
import javax.net.ssl.SSLException;
import java.io.File;
import java.nio.file.Path;
/**
*
* Factory used to provide gRPC channels.
*
* ... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/rpc/GrpcResponse.java | package ai.grakn.kgms.console.rpc;
import ai.grakn.kgms.rpc.generated.KGMSConsoleProto.UserManagement;
public class GrpcResponse {
private boolean completed;
private UserManagement.Res response;
private Throwable throwable;
GrpcResponse(UserManagement.Res response) {
this.response = response;
... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/rpc/ResponseListener.java | package ai.grakn.kgms.console.rpc;
import ai.grakn.kgms.rpc.generated.KGMSConsoleProto;
import io.grpc.stub.StreamObserver;
import java.util.concurrent.BlockingQueue;
public class ResponseListener implements StreamObserver<KGMSConsoleProto.UserManagement.Res> {
private final BlockingQueue<GrpcResponse> queue;
... |
0 | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console | java-sources/ai/grakn/kgms/console/1.4.3/ai/grakn/kgms/console/rpc/UserManagementClient.java | package ai.grakn.kgms.console.rpc;
import ai.grakn.kgms.authentication.model.User;
import ai.grakn.kgms.rpc.generated.KGMSConsoleGrpc;
import ai.grakn.kgms.rpc.generated.KGMSConsoleProto;
import io.grpc.stub.StreamObserver;
import java.util.List;
import java.util.stream.Collectors;
/**
* Class that provides use cas... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/authentication | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/authentication/model/User.java | package ai.grakn.kgms.authentication.model;
public class User {
private String username;
private String password;
private String role;
private boolean admin;
public User(String username, String password, String role) {
this.username = username;
this.password = password;
th... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/repository/RepositoryDeleteByName.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/repository/RepositoryLoadAll.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/repository/RepositoryLoadByName.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/repository/RepositorySaveByName.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/repository/RepositoryUpdateByName.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/repository/UserRepository.java | package ai.grakn.kgms.repository;
import ai.grakn.kgms.authentication.model.User;
import java.util.List;
public interface UserRepository {
void deleteByName(String name);
List<User> loadAll();
User loadByName(String name);
User saveByName(String name, User user);
User updateByName(String nam... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/repository/UserRepositoryFactory.java | package ai.grakn.kgms.repository;
import ai.grakn.kgms.authentication.model.User;
public interface UserRepositoryFactory {
RepositorySaveByName<User> repositorySaveUserByName();
RepositoryLoadByName<User> repositoryLoadUserByName();
RepositoryLoadAll<User> repositoryLoadAllUsers();
RepositoryDelet... |
0 | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms | java-sources/ai/grakn/kgms/core/1.4.3/ai/grakn/kgms/util/ErrorMessage.java | package ai.grakn.kgms.util;
/**
* Enum containing error messages.
*
* Each error message contains a single format string, with a method {@link ErrorMessage#getMessage(Object...)} that
* accepts arguments to be passed to the format string.
*
*/
public enum ErrorMessage {
// --------- Bootup errors ----------... |
0 | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn/kgms/KGMSClientShell.java | package ai.grakn.kgms;
import ai.grakn.GraknConfigKey;
import ai.grakn.engine.GraknConfig;
import ai.grakn.kgms.authentication.service.SignedToken;
import ai.grakn.kgms.console.AuthenticatedCommandBus;
import ai.grakn.kgms.console.AuthenticatedCommandBusImpl;
import ai.grakn.kgms.console.PrintWriterNotRecognised;
impo... |
0 | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn/kgms | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn/kgms/remote/GraknKGMSRemoteSession.java | package ai.grakn.kgms.remote;
import ai.grakn.GraknTxType;
import ai.grakn.Keyspace;
import ai.grakn.remote.RemoteGraknSession;
import ai.grakn.remote.RemoteGraknTx;
import ai.grakn.rpc.generated.GrpcGrakn;
import ai.grakn.rpc.generated.GrpcGrakn.TxRequest;
import ai.grakn.rpc.generated.GrpcGrakn.TxType;
import ai.gra... |
0 | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn/kgms | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn/kgms/remote/RemoteKGMS.java | package ai.grakn.kgms.remote;
import ai.grakn.Keyspace;
import ai.grakn.remote.RemoteGraknSession;
import ai.grakn.util.SimpleURI;
import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import java.nio.file.Path;
public class RemoteKGMS {
private RemoteKGMS() {
}
public static RemoteGraknS... |
0 | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn/kgms | java-sources/ai/grakn/kgms/grakn-kgms-client/1.2.0/ai/grakn/kgms/rpc/GrpcClient.java | package ai.grakn.kgms.rpc;
import ai.grakn.kgms.authentication.model.User;
import ai.grakn.kgms.authentication.service.SignedToken;
import ai.grakn.kgms.authentication.usecase.UseCaseReq;
import ai.grakn.kgms.authentication.usecase.UseCaseReqResp;
import ai.grakn.kgms.authentication.usecase.createuser.CreateNewUserReq... |
0 | java-sources/ai/grakn/kgms/grpc/1.4.3/ai/grakn/kgms/rpc | java-sources/ai/grakn/kgms/grpc/1.4.3/ai/grakn/kgms/rpc/generated/KGMSConsoleGrpc.java | package ai.grakn.kgms.rpc.generated;
import static io.grpc.MethodDescriptor.generateFullMethodName;
import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall;
import static io.grpc.stub.ClientCalls.asyncClientStreamingCall;
import static io.grpc.stub.ClientCalls.asyncServerStreamingCall;
import static io.grpc.stub... |
0 | java-sources/ai/grakn/kgms/grpc/1.4.3/ai/grakn/kgms/rpc | java-sources/ai/grakn/kgms/grpc/1.4.3/ai/grakn/kgms/rpc/generated/KGMSConsoleProto.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: kbms_console.proto
package ai.grakn.kgms.rpc.generated;
public final class KGMSConsoleProto {
private KGMSConsoleProto() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public sta... |
0 | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration/base/MigrationCLI.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration/base/MigrationOptions.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration/base/Migrator.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration/base/MigratorBuilder.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-base/1.4.3/ai/grakn/migration/base/package-info.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-csv/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-csv/1.4.3/ai/grakn/migration/csv/CSVMigrationOptions.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-csv/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-csv/1.4.3/ai/grakn/migration/csv/CSVMigrator.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-csv/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-csv/1.4.3/ai/grakn/migration/csv/package-info.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration/export/InstanceMapper.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration/export/KBWriter.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration/export/KBWriterOptions.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration/export/Main.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration/export/SchemaConceptMapper.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-export/1.4.3/ai/grakn/migration/export/package-info.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-json/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-json/1.4.3/ai/grakn/migration/json/JsonMigrationOptions.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-json/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-json/1.4.3/ai/grakn/migration/json/JsonMigrator.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-json/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-json/1.4.3/ai/grakn/migration/json/package-info.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration/owl/Main.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration/owl/Namer.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration/owl/OWLMigrator.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration/owl/OwlGraknTxStoringVisitor.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration/owl/OwlMigrationOptions.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration/owl/OwlModel.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration | java-sources/ai/grakn/migration-owl/0.18.0/ai/grakn/migration/owl/package-info.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/migration-sql/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-sql/1.4.3/ai/grakn/migration/sql/SQLMigrationOptions.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-sql/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-sql/1.4.3/ai/grakn/migration/sql/SQLMigrator.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-sql/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-sql/1.4.3/ai/grakn/migration/sql/package-info.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-xml/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-xml/1.4.3/ai/grakn/migration/xml/XmlMigrationOptions.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-xml/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-xml/1.4.3/ai/grakn/migration/xml/XmlMigrator.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/migration-xml/1.4.3/ai/grakn/migration | java-sources/ai/grakn/migration-xml/1.4.3/ai/grakn/migration/xml/XmlSchema.java | /*
* GRAKN.AI - THE KNOWLEDGE GRAPH
* Copyright (C) 2018 Grakn Labs Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any... |
0 | java-sources/ai/grakn/orientdb-factory/0.16.0/ai/grakn | java-sources/ai/grakn/orientdb-factory/0.16.0/ai/grakn/factory/OrientDBInternalFactory.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/orientdb-factory/0.16.0/ai/grakn/graph | java-sources/ai/grakn/orientdb-factory/0.16.0/ai/grakn/graph/internal/GraknOrientDBGraph.java | /*
* Grakn - A Distributed Semantic Database
* Copyright (C) 2016 Grakn Labs Limited
*
* Grakn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/RedisBase.java | package ai.grakn.redismock;
import com.google.common.base.Preconditions;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
/**
* Created by Xiaolu on 2015/4/20.
*/
pub... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/RedisClient.java | package ai.grakn.redismock;
import ai.grakn.redismock.commands.RedisOperationExecutor;
import ai.grakn.redismock.exception.EOFException;
import com.google.common.base.Preconditions;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Soc... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/RedisCommand.java | package ai.grakn.redismock;
import com.google.common.collect.Lists;
import java.util.List;
import java.util.stream.Collectors;
/**
* Created by Xiaolu on 2015/4/20.
*/
public class RedisCommand {
private List<Slice> params = Lists.newArrayList();
RedisCommand() {}
void addParameter(Slice token) {
... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/RedisCommandParser.java | package ai.grakn.redismock;
import ai.grakn.redismock.exception.EOFException;
import ai.grakn.redismock.exception.ParseErrorException;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Preconditions;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
/**
* Created b... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/RedisServer.java | package ai.grakn.redismock;
import com.google.common.base.Preconditions;
import java.io.IOException;
import java.net.ServerSocket;
/**
* Created by Xiaolu on 2015/4/18.
*/
public class RedisServer {
private final int bindPort;
private ServiceOptions options = new ServiceOptions();
private ServerSocket... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/RedisService.java | package ai.grakn.redismock;
import com.google.common.base.Preconditions;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
/**
* Created by Xiaolu on 2015/4/21.
*/
public class RedisService implements Runnable {
private final ServerSocket server;
private final RedisBase bas... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/Response.java | package ai.grakn.redismock;
import com.google.common.io.ByteArrayDataOutput;
import com.google.common.io.ByteStreams;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Xiaolu on 2015/4/20.
*/
public class Response {
private static final org.slf4j.Logger LOG = L... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/ServiceOptions.java | package ai.grakn.redismock;
/**
* Created by Xiaolu on 2015/4/22.
*/
public class ServiceOptions {
private int closeSocketAfterSeveralCommands = 0;
public ServiceOptions() {}
public void setCloseSocketAfterSeveralCommands(int count) {
this.closeSocketAfterSeveralCommands = count;
}
pu... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/Slice.java | package ai.grakn.redismock;
import java.io.Serializable;
import java.util.Arrays;
/**
* Created by Xiaolu on 2015/4/23.
*/
public class Slice implements Comparable<Slice>, Serializable {
private static final long serialVersionUID = 247772234876073528L;
private final byte[] data;
public Slice(byte[] da... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/SliceParser.java | package ai.grakn.redismock;
import ai.grakn.redismock.exception.EOFException;
import ai.grakn.redismock.exception.ParseErrorException;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.io.ByteArrayDataOutput;
import com.google.common.io.ByteStreams;
import java.io.ByteArrayInputStream;
... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/Utils.java | package ai.grakn.redismock;
import ai.grakn.redismock.exception.InternalException;
import ai.grakn.redismock.exception.WrongNumberOfArgumentsException;
import ai.grakn.redismock.exception.WrongValueTypeException;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.Closeable;
impo... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/AbstractRedisOperation.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Slice;
import java.util.List;
import static ai.grakn.redismock.Utils.checkArgumentsNumberEquals;
import static ai.grakn.redismock.Utils.checkArgumentsNumberFactor;
import static ai.grakn.redismock.Utils.checkArguments... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_append.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_append extends AbstractRedisOperation {
RO_append(RedisBase base, List<Slice> params) {
super(base, params, 2, null, null);
}
... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_brpoplpush.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import ai.grakn.redismock.SliceParser;
import java.util.Arrays;
import java.util.List;
import static ai.grakn.redismock.Utils.convertToLong;
class RO_brpoplpush extends RO_r... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_decr.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_decr extends RO_decrby {
RO_decr(RedisBase base, List<Slice> params) {
super(base, params, 1);
}
@Override
long incrementOrDecrementValue(List<Slice> par... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_decrby.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Slice;
import java.util.List;
import static ai.grakn.redismock.Utils.convertToLong;
class RO_decrby extends RO_incrOrDecrBy {
RO_decrby(RedisBase base, List<Slice> params) {
super(base, params, 2);
}
... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_del.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_del extends AbstractRedisOperation {
RO_del(RedisBase base, List<Slice> params) {
super(base, params,null, 0, null);
}
Sl... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_exec.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import org.slf4j.LoggerFactory;
import java.util.List;
import java.util.stream.Collectors;
class RO_exec extends AbstractRedisOperation {
private static final org.slf4j.L... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_exists.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_exists extends AbstractRedisOperation {
RO_exists(RedisBase base, List<Slice> params) {
super(base, params, 1, null, null);
}
... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_expire.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_expire extends RO_pexpire {
RO_expire(RedisBase base, List<Slice> params) {
super(base, params);
}
@Override
long getValue(List<Slice> params){
r... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_expireat.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
import static ai.grakn.redismock.Utils.convertToLong;
class RO_expireat extends AbstractRedisOperation {
RO_expireat(RedisBase base, List<Slice> p... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_flushall.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_flushall extends AbstractRedisOperation {
RO_flushall(RedisBase base, List<Slice> params) {
super(base, params, 0, null, null);
... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_get.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_get extends AbstractRedisOperation {
RO_get(RedisBase base, List<Slice> params) {
super(base, params, 1, null, null);
}
S... |
0 | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock | java-sources/ai/grakn/redis-mock/0.1.6/ai/grakn/redismock/commands/RO_getbit.java | package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
import static ai.grakn.redismock.Utils.convertToNonNegativeInteger;
class RO_getbit extends AbstractRedisOperation {
RO_getbit(RedisBase base, Lis... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.