index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/model/ManagementClientOptions.java
package ai.genauth.sdk.java.model; import ai.genauth.sdk.java.enums.SignatureEnum; import ai.genauth.sdk.java.util.CommonUtils; import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.util.StrUtil; import cn.hutool.http.Method; import com.auth0.jwt.JWT; import com.auth0.jwt.interfaces.DecodedJWT; import...
0
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/model/Receiver.java
package ai.genauth.sdk.java.model; public interface Receiver { void onReceiverMessage(String msg); }
0
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/util/CommonUtils.java
package ai.genauth.sdk.java.util; import java.util.Random; import java.util.concurrent.ThreadLocalRandom; public class CommonUtils { public static String createRandomString(int strLength) { Random rnd = ThreadLocalRandom.current(); StringBuilder ret = new StringBuilder(); for (int i = 0; i...
0
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/util/HttpUtils.java
package ai.genauth.sdk.java.util; import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpUtil; import cn.hutool.http.Method; import cn.hutool.log.Log; import cn.hutool.log.LogFactory; import java.util.Map; import java.util.Set; /** * @author luojielin */ @SuppressWarnings("all") public class HttpUtils { ...
0
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/util/JsonUtils.java
package ai.genauth.sdk.java.util; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; /** * JsonUtils * * @author chho */ public class Json...
0
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/util
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/util/signature/ISignatureComposer.java
package ai.genauth.sdk.java.util.signature; import java.util.Map; public interface ISignatureComposer { /** * 生成签名 * @param method * @param uri * @param headers * @param queries * @return */ String composeStringToSign(String method, String uri, Map<String, String> headers, M...
0
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/util/signature
java-sources/ai/genauth/genauth-java-sdk/3.1.11/ai/genauth/sdk/java/util/signature/Impl/SignatureComposer.java
package ai.genauth.sdk.java.util.signature.Impl; import ai.genauth.sdk.java.util.signature.ISignatureComposer; import java.io.UnsupportedEncodingException; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.util.List; import java.util.Map; import java.util.TreeMap; im...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/Vision.java
package glair.vision; import glair.vision.api.Config; import glair.vision.api.FaceBio; import glair.vision.api.Identity; import glair.vision.api.Ocr; import glair.vision.logger.Logger; import glair.vision.logger.LoggerConfig; import glair.vision.model.VisionSettings; /** * The main entry point for interacting with t...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/Config.java
package glair.vision.api; import glair.vision.model.VisionSettings; import glair.vision.util.Json; import okhttp3.Credentials; import java.util.HashMap; /** * The Config class provides configuration settings for the Glair Vision API. */ public class Config { private static final String BASE_URL = "https://api.vi...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/FaceBio.java
package glair.vision.api; import glair.vision.api.sessions.ActiveLivenessSessions; import glair.vision.api.sessions.PassiveLivenessSessions; import glair.vision.logger.Logger; import glair.vision.model.Request; import glair.vision.model.VisionSettings; import glair.vision.model.param.ActiveLivenessParam; import glair....
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/Identity.java
package glair.vision.api; import glair.vision.logger.Logger; import glair.vision.model.Request; import glair.vision.model.VisionSettings; import glair.vision.model.param.IdentityFaceVerificationParam; import glair.vision.model.param.IdentityVerificationParam; import glair.vision.util.Util; import okhttp3.MultipartBody...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/Ocr.java
package glair.vision.api; import glair.vision.api.sessions.KtpSessions; import glair.vision.api.sessions.NpwpSessions; import glair.vision.logger.Logger; import glair.vision.model.Request; import glair.vision.model.VisionSettings; import glair.vision.model.param.BpkbParam; import glair.vision.model.param.KtpParam; imp...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/sessions/ActiveLivenessSessions.java
package glair.vision.api.sessions; import glair.vision.api.Config; import glair.vision.model.BaseSessions; import glair.vision.model.param.sessions.ActiveLivenessSessionsParam; import java.util.HashMap; /** * Represents a session for Active Liveness operations. * Extends the {@link BaseSessions} class with specifi...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/sessions/KtpSessions.java
package glair.vision.api.sessions; import glair.vision.api.Config; import glair.vision.model.BaseSessions; import glair.vision.model.param.sessions.KtpSessionsParam; import java.util.HashMap; /** * Represents a session for KTP (Kartu Tanda Penduduk) operations. * Extends the {@link BaseSessions} class with specifi...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/sessions/NpwpSessions.java
package glair.vision.api.sessions; import glair.vision.api.Config; import glair.vision.model.BaseSessions; import glair.vision.model.param.sessions.BaseSessionsParam; /** * Represents a session for NPWP operations. * Extends the {@link BaseSessions} class with specific configuration and session * details for NPWP ...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/api/sessions/PassiveLivenessSessions.java
package glair.vision.api.sessions; import glair.vision.api.Config; import glair.vision.model.BaseSessions; import glair.vision.model.param.sessions.BaseSessionsParam; /** * Represents a session for Passive Liveness operations. * Extends the {@link BaseSessions} class with specific configuration and session * detai...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/enums/GestureCode.java
package glair.vision.enums; /** * Enum representing gesture codes. */ public enum GestureCode { /** * Represents a hand gesture with code HAND_00000. */ HAND_00000("HAND_00000"), /** * Represents a hand gesture with code HAND_01000. */ HAND_01000("HAND_01000"), /** * Represents a hand gestur...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/logger/Logger.java
package glair.vision.logger; import glair.vision.util.Json; import java.text.SimpleDateFormat; import java.util.Date; import java.util.HashMap; /** * A simple logger class for logging messages with various log levels and a * customizable log pattern. */ public class Logger { private static Logger instance; p...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/logger/LoggerConfig.java
package glair.vision.logger; /** * Configuration for the logger. */ public class LoggerConfig { /** * Represents the DEBUG log level. This level is used for fine-grained debugging * information. */ public static final int DEBUG = 0; /** * Represents the INFO log level. This level is used for genera...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/BaseSessions.java
package glair.vision.model; import glair.vision.api.Config; import glair.vision.logger.Logger; import glair.vision.model.param.sessions.BaseSessionsParam; import glair.vision.util.Json; import glair.vision.util.Util; import okhttp3.MediaType; import okhttp3.RequestBody; import java.util.HashMap; /** * The base clas...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/Request.java
package glair.vision.model; import okhttp3.RequestBody; /** * Represents an HTTP request configuration. */ public class Request { private final String path; private final String method; private final RequestBody body; /** * Constructs a new HTTP request using the provided builder. * * @param build...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/VisionSettings.java
package glair.vision.model; /** * Represents configuration settings for a vision-related service. */ public class VisionSettings { private final String baseUrl; private final String apiVersion; private final String apiKey; private final String username; private final String password; /** * Constructs...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/ActiveLivenessParam.java
package glair.vision.model.param; import glair.vision.enums.GestureCode; import glair.vision.util.Json; import java.util.HashMap; /** * A record representing parameters for Active Liveness detection. */ public class ActiveLivenessParam { private final String imagePath; private final GestureCode gestureCode; ...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/BpkbParam.java
package glair.vision.model.param; import glair.vision.util.Json; import java.util.HashMap; /** * Represents parameters for a BPKB (Buku Pemilik Kendaraan Bermotor) operation. */ public class BpkbParam { private final String imagePath; private final int page; /** * Constructs a new BpkbParam object with t...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/FaceMatchParam.java
package glair.vision.model.param; import glair.vision.util.Json; import java.util.HashMap; /** * A class representing parameters for Face Matching. */ public class FaceMatchParam { private final String capturedPath; private final String storedPath; /** * Constructs a FaceMatchParam object with the specif...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/IdentityFaceVerificationParam.java
package glair.vision.model.param; import glair.vision.util.Json; import glair.vision.util.Util; import java.util.HashMap; /** * Represents parameters for performing identity verification with face image. */ public class IdentityFaceVerificationParam { private final String nik; private final String name; priv...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/IdentityVerificationParam.java
package glair.vision.model.param; import glair.vision.util.Json; import glair.vision.util.Util; import java.util.HashMap; /** * Represents parameters for identity verification. */ public class IdentityVerificationParam { private final String nik; private final String name; private final String dateOfBirth; ...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/KtpParam.java
package glair.vision.model.param; import glair.vision.util.Json; import java.util.HashMap; /** * The `KtpParam` class represents parameters for processing a KTP. */ public class KtpParam { private final String imagePath; private final Boolean qualitiesDetector; /** * Constructs a `KtpParam` instance with...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/sessions/ActiveLivenessSessionsParam.java
package glair.vision.model.param.sessions; import glair.vision.util.Json; import java.util.HashMap; /** * Represents the parameters for an Active Liveness session. * This class extends the {@link BaseSessionsParam} class to include the number of * gestures. */ public class ActiveLivenessSessionsParam extends Bas...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/sessions/BaseSessionsParam.java
package glair.vision.model.param.sessions; import glair.vision.util.Json; import java.util.HashMap; /** * Represents the basic parameters for a session. * This class includes success and cancel URLs that can be set for the session. */ public class BaseSessionsParam { private final String successUrl; private S...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/model/param/sessions/KtpSessionsParam.java
package glair.vision.model.param.sessions; import glair.vision.util.Json; import java.util.HashMap; /** * Represents the parameters for a KTP (Kartu Tanda Penduduk) session. * This class extends the {@link BaseSessionsParam} class to include additional options. */ public class KtpSessionsParam extends BaseSession...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/util/Base64.java
package glair.vision.util; /* * Copyright (C) 2010 The Android Open Source Project * * 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/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/util/Env.java
package glair.vision.util; import java.io.File; import java.io.FileInputStream; import java.util.Properties; /** * The `Env` class provides access to configuration properties loaded from a file. * It allows retrieving specific properties such as usernames, passwords, API keys, * and various document-related values...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/util/Json.java
package glair.vision.util; import java.util.HashMap; import java.util.Map; /** * Utility class for working with JSON data and formatting. */ public class Json { /** * Formats a single key-value pair as a JSON property. * * @param key The key. * @param value The value. * @return The formatted key-...
0
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision
java-sources/ai/glair/glair-vision/0.0.1-beta.1/glair/vision/util/Util.java
package glair.vision.util; import glair.vision.Vision; import glair.vision.api.Config; import glair.vision.logger.Logger; import glair.vision.model.Request; import okhttp3.MediaType; import okhttp3.MultipartBody; import okhttp3.OkHttpClient; import okhttp3.RequestBody; import okhttp3.Response; import java.io.File; im...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/batch/BatchExecutorClient.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/batch/Client.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/batch/GraknClient.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/batch/GraknClientException.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/batch/GraknClientImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/batch/QueryResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/batch/package-info.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/Grakn.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteAttribute.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteAttribute<D> extends RemoteAttribute<D> { private final Grakn.Transaction tx; private...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteAttributeType.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteAttributeType<D> extends RemoteAttributeType<D> { private final Grakn.Transaction tx; ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteEntity.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteEntity extends RemoteEntity { private final Grakn.Transaction tx; private final Conce...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteEntityType.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteEntityType extends RemoteEntityType { private final Grakn.Transaction tx; private fin...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteMetaType.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteMetaType extends RemoteMetaType { private final Grakn.Transaction tx; private final C...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteRelationship.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteRelationship extends RemoteRelationship { private final Grakn.Transaction tx; private...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteRelationshipType.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteRelationshipType extends RemoteRelationshipType { private final Grakn.Transaction tx; ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteRole.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteRole extends RemoteRole { private final Grakn.Transaction tx; private final ConceptId...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/AutoValue_RemoteRule.java
package ai.grakn.client.concept; import ai.grakn.client.Grakn; import ai.grakn.concept.ConceptId; import javax.annotation.Generated; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RemoteRule extends RemoteRule { private final Grakn.Transaction tx; private final ConceptId...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteAttribute.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteAttributeType.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteConcept.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteEntity.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteEntityType.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteMetaType.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteRelationship.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteRelationshipType.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteRole.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteRule.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteSchemaConcept.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteThing.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/concept/RemoteType.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/executor/RemoteComputeExecutor.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/executor/RemoteQueryExecutor.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/rpc/AutoValue_Transceiver_Response.java
package ai.grakn.client.rpc; import ai.grakn.rpc.proto.SessionProto; import io.grpc.StatusRuntimeException; import javax.annotation.Generated; import javax.annotation.Nullable; @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_Transceiver_Response extends Transceiver.Response { ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/rpc/RequestBuilder.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/rpc/ResponseReader.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/client/rpc/Transceiver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc/proto/AnswerProto.java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: Answer.proto package ai.grakn.rpc.proto; public final class AnswerProto { private AnswerProto() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistryLite registry) { } public static void registerAllExten...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc/proto/ConceptProto.java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: Concept.proto package ai.grakn.rpc.proto; public final class ConceptProto { private ConceptProto() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistryLite registry) { } public static void registerAllEx...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc/proto/KeyspaceProto.java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: Keyspace.proto package ai.grakn.rpc.proto; public final class KeyspaceProto { private KeyspaceProto() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistryLite registry) { } public static void registerAl...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc/proto/KeyspaceServiceGrpc.java
package ai.grakn.rpc.proto; import static io.grpc.stub.ClientCalls.asyncUnaryCall; import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; import static io.grpc.stub.ClientCalls.bloc...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc/proto/SessionProto.java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: Session.proto package ai.grakn.rpc.proto; public final class SessionProto { private SessionProto() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistryLite registry) { } public static void registerAllEx...
0
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc
java-sources/ai/grakn/client-java/1.4.3/ai/grakn/rpc/proto/SessionServiceGrpc.java
package ai.grakn.rpc.proto; import static io.grpc.stub.ClientCalls.asyncUnaryCall; import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; import static io.grpc.stub.ClientCalls.bloc...
0
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/AbstractProcessHandler.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/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/EngineProcess.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/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/GraknBootup.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/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/Graql.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/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/OutputCommand.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/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/ProcessNotStartedException.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/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/QueueProcess.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/grakn-bootup/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/StorageProcess.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/grakn-bootup/1.2.0/ai/grakn/bootup
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/config/ConfigProcessor.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/grakn-bootup/1.2.0/ai/grakn/bootup
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/config/Configs.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/grakn-bootup/1.2.0/ai/grakn/bootup
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/config/ProcessConfig.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/grakn-bootup/1.2.0/ai/grakn/bootup
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/config/QueueConfig.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/grakn-bootup/1.2.0/ai/grakn/bootup
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/config/StorageConfig.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/grakn-bootup/1.2.0/ai/grakn/bootup
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/Grakn.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/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/pid/GraknPidException.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/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/pid/GraknPidFileStore.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/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/pid/GraknPidManager.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/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/pid/GraknPidManagerFactory.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/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/pid/GraknPidRetriever.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/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/pid/GraknPidStore.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/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine
java-sources/ai/grakn/grakn-bootup/1.2.0/ai/grakn/bootup/graknengine/pid/UnixGraknPidRetriever.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/grakn-client/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-client/1.2.0/ai/grakn/client/BatchExecutorClient.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/grakn-client/1.2.0/ai/grakn
java-sources/ai/grakn/grakn-client/1.2.0/ai/grakn/client/Client.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 ...