index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/CompleteFileUploadRequest.java
package ai.nightfall.scan.model; import java.util.UUID; /** * The container object containing all parameters required to complete a file upload. */ public class CompleteFileUploadRequest { private UUID fileUploadID; /** * Constructs a new request to complete a file upload. * * @param fileUp...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/Confidence.java
package ai.nightfall.scan.model; /** * Confidence describes the certainty that a piece of content matches a detector. */ public enum Confidence { VERY_UNLIKELY, UNLIKELY, POSSIBLE, LIKELY, VERY_LIKELY }
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ConfidenceAdjustment.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; /** * Describes how to adjust confidence on a given finding. Valid values for the adjustment are * <code>VERY_UNLIKELY</code>, <code>UNLIKELY</code>, <code>POSSIBLE</code>, <code>LIKELY</code>, * and <code>VERY_LIKELY</code>. *...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ContextRule.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object that describes how a regular expression may be used to adjust the confidence of a candidate finding. * This context rule will be applied within the provided byte proximity, and if the regular expression matches, t...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/DetectionRule.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** * An object that contains a set of detectors to be used when scanning content. Findings matches are * triggered according to the provided <code>logicalOp</code>logicalOp; valid values are <code>ANY</co...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/Detector.java
package ai.nightfall.scan.model; import ai.nightfall.scan.model.redaction.RedactionConfig; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import java.util.UUID; /** * An object that represents a data type or category of information. Detectors are used to scan content * for findings. ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/DetectorMetadata.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.UUID; /** * A container for minimal information representing a detector. A detector may be uniquely identified by its UUID; * the name field helps pr...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ExclusionRule.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object that describes a regular expression or list of keywords that may be used to disqualify a * candidate finding from triggering a detector match. */ public class ExclusionRule { @JsonProperty("matchType") p...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/FileScanWebhookNotification.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Date; import java.util.List; import java.util.UUID; /** * The request payload that is sent by Nightfall to a client-configured webhook URL to report the findings from * an asynchronous file scan. The findings th...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/FileUpload.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.UUID; /** * An object representing a file upload. */ public class FileUpload { @JsonProperty("id") private UUID fileID; @JsonProperty("fileSizeBytes") private long fileSizeBytes; @JsonPrope...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/Finding.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import java.util.UUID; /** * An object representing an occurrence of a configured detector (i.e. finding) in the provided data. */ @JsonIgnoreP...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/InitializeFileUploadRequest.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object representing a request to upload a new file to Nightfall. */ public class InitializeFileUploadRequest { @JsonProperty("fileSizeBytes") private long fileSizeBytes; /** * Create a new request to up...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/Location.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object representing where a finding was discovered in content. */ @JsonIgnoreProperties(ignoreUnknown = true) public class Location { @JsonProperty("byte...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/LogicalOp.java
package ai.nightfall.scan.model; /** * A modifier that is used to decide when a finding should be surfaced in the context of a detection rule. * * <p>When <code>ALL</code> is specified, all detectors in a detection rule must trigger a match in order for the * finding to be reported. This is the equivalent of a log...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/NightfallAPIException.java
package ai.nightfall.scan.model; /** * The exception thrown when the Nightfall API returns an HTTP status code in the range [400, 599]. Embeds the * standard Nightfall error object for debugging. */ public class NightfallAPIException extends BaseNightfallException { /** * The error returned by the Nightfa...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/NightfallClientException.java
package ai.nightfall.scan.model; /** * The exception thrown when the Nightfall client is unable to process a request due to an unexpected error. */ public class NightfallClientException extends BaseNightfallException { /** * Create a new instance of this exception. * * @param message an error mess...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/NightfallErrorResponse.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Map; import java.util.Objects; /** * The error model returned by Nightfall API requests that are unsuccessful. This object is generally returned * when the HT...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/NightfallRequestTimeoutException.java
package ai.nightfall.scan.model; /** * An exception that indicates that a timeout was exceeded while processing a request. */ public class NightfallRequestTimeoutException extends BaseNightfallException { /** * Create a new instance of this exception. * * @param message an error message */ ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/Proximity.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object representing a range of bytes to consider around a candidate finding. */ public class Proximity { @JsonProperty("windowBefore") private int windowBefore; @JsonProperty("windowAfter") private int ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/Regex.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object representing a regular expression to customize the behavior of a detector while Nightfall performs a scan. */ public class Regex { @JsonProperty("pattern") private String pattern; @JsonProperty("isCa...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ScanFileRequest.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.UUID; /** * A container for a request to scan a file that was uploaded via the Nightfall API. Exactly one of * <code>policyUUID</code> or <code>policy</code> should be provided. */ public class ScanFileRequest ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ScanFileResponse.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.UUID; /** * The object returned by the Nightfall API when an (asynchronous) file scan request was successfully triggered. */ @JsonIgnoreProperties(ig...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ScanPolicy.java
package ai.nightfall.scan.model; import ai.nightfall.scan.model.alert.AlertConfig; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import java.util.UUID; /** * An object containing configuration that describes how to scan a file. Since the file is scanned asynchronously, * the results ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ScanTextConfig.java
package ai.nightfall.scan.model; import ai.nightfall.scan.model.alert.AlertConfig; import ai.nightfall.scan.model.redaction.RedactionConfig; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import java.util.UUID; /** * The configuration object to use when scanning inline plaintext with t...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ScanTextRequest.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import java.util.UUID; /** * An object representing a request to scan inline plaintext with the Nightfall API. */ public class ScanTextRequest { @Jso...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ScanTextResponse.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** * The response object returned by a text scan request. Each index <code>i</code> in the field <code>findings</code> * corresponds one-to-on...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/UploadFileChunkRequest.java
package ai.nightfall.scan.model; import java.util.UUID; /** * An object representing a request to upload a chunk of file data to the Nightfall API. */ public class UploadFileChunkRequest { private UUID fileUploadID; private long fileOffset; private byte[] content; /** * Create a new instance o...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/UserViolation.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; /** * User details associated with a violation. */ public class UserViolation { @JsonProperty("id") private String id; @JsonProperty("displayName") private String displayName; /** * Creates a new UserVi...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/ViolationConfig.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Map; /** * Configuration that can be added to a scan request which is used to generate a Nightfall specific violation. * This class can currently only be used by Nightfall partners. */ public class ViolationCon...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/WordList.java
package ai.nightfall.scan.model; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** * A list of words that can be used to customize the behavior of a detector while Nightfall performs a scan. */ public class WordList { @JsonProperty("values") private List<String> values; ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/alert/AlertConfig.java
package ai.nightfall.scan.model.alert; import com.fasterxml.jackson.annotation.JsonProperty; /** * The AlertConfig class allows clients to specify where alerts should be delivered when findings are discovered as * part of a scan. These alerts are delivered asynchronously to all destinations specified in the object ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/alert/EmailAlert.java
package ai.nightfall.scan.model.alert; import com.fasterxml.jackson.annotation.JsonProperty; /** * The EmailAlert class contains the configuration required to allow clients to send an asynchronous email message * when findings are detected. The findings themselves will be delivered as a file attachment on the email...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/alert/SlackAlert.java
package ai.nightfall.scan.model.alert; import com.fasterxml.jackson.annotation.JsonProperty; /** * The SlackAlert class contains the configuration required to allow clients to send asynchronous alerts to a * Slack workspace when findings are detected. Note that in order for Slack alerts to be delivered to your work...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/alert/WebhookAlert.java
package ai.nightfall.scan.model.alert; import com.fasterxml.jackson.annotation.JsonProperty; /** * The WebhookAlert class contains the configuration required to allow clients to send a webhook event to an * external URL when findings are detected. The URL provided must (1) use the HTTPS scheme, (2) have a * route ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/redaction/CryptoConfig.java
package ai.nightfall.scan.model.redaction; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object that specifies how findings should be encrypted when returned by the API. Currently, encryption * is only supported for RSA public keys. */ public class CryptoConfig { @JsonProperty("publicKey") ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/redaction/InfoTypeSubstitutionConfig.java
package ai.nightfall.scan.model.redaction; import com.fasterxml.jackson.databind.annotation.JsonSerialize; /** * An object that specifies that findings should be substituted with the name of the info type that matched * the request data. */ @JsonSerialize public class InfoTypeSubstitutionConfig { @Override ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/redaction/MaskConfig.java
package ai.nightfall.scan.model.redaction; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Arrays; /** * An object that specifies how findings should be masked when returned by the API. */ public class MaskConfig { @JsonProperty("maskingChar") private String maskingChar; @JsonP...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/redaction/RedactionConfig.java
package ai.nightfall.scan.model.redaction; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object that configures how any detected findings should be redacted when returned to the client. When this * configuration is provided as part of a request, exactly one of the four types of redaction should be ...
0
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model
java-sources/ai/nightfall/scan-api/1.2.3-beta-1/ai/nightfall/scan/model/redaction/SubstitutionConfig.java
package ai.nightfall.scan.model.redaction; import com.fasterxml.jackson.annotation.JsonProperty; /** * An object that specifies how findings should be substituted when returned by the API. This is similar * to masking, but allows for a custom phrase to be used rather than simply redacting each codepoint. */ public...
0
java-sources/ai/nixiesearch/llamacpp-server-java/0.0.4-b5604/ai/nixiesearch
java-sources/ai/nixiesearch/llamacpp-server-java/0.0.4-b5604/ai/nixiesearch/llamacppserver/LlamacppServer.java
package ai.nixiesearch.llamacppserver; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.*; import java.nio.file.Files; import java.util.*; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ExecutionException; public class LlamacppServer implements AutoCloseable { p...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/AudioRecordManager.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/IKeepRecordingSpeechRecognizerListener.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/IRecorderSpeechRecognizerListener.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/KeepRecordingSpeechRecognizer.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/RecorderSpeechRecognizer.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/SpeechRecognizerBase.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/VoiceVolume.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android
java-sources/ai/olami/olami-android-client/2.6.0/ai/olami/android/jni/Codec.java
/* Copyright 2018, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applic...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/APIConfiguration.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/APIRequestBase.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/APIResponse.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/APIResponseBuilder.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/APIResponseData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/CookieSet.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/NLIConfig.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/SpeechRecognizer.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/SpeechResult.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/cloudService/TextRecognizer.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/BaikeData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/CookingData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/ExchangeRateData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/IDSResult.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/JokeData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/KKBOXData.java
/* Copyright 2018, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/KKBOXDataPhoto.java
/* Copyright 2018, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/MathData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/MusicControlData.java
/* Copyright 2018, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/NewsData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/OpenWebData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/PoemData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/StockMarketData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/TVProgramData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/UnitConvertData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/ids/WeatherData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/DescObject.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/NLIResult.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/Semantic.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/slot/DateTime.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/slot/DateTimeData.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/slot/ExtendInfo.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/slot/NumDetail.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/slot/RepeatRule.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/slot/Slot.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/nli/slot/TimeStruct.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/util/GsonFactory.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami
java-sources/ai/olami/olami-java-client/1.5.0/ai/olami/util/HttpClient.java
/* Copyright 2017, VIA Technologies, Inc. & OLAMI Team. http://olami.ai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by appli...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/AudioFileWriter.java
/****************************************************************************** * * * Copyright (c) 1999-2004 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Bits.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/CbSearch.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Codebook.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Decoder.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Encoder.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Filters.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/HighLspQuant.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Inband.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/LbrLspQuant.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Lpc.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Lsp.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/LspQuant.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...
0
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph
java-sources/ai/olami/olami-java-client/1.5.0/org/xiph/speex/Ltp.java
/****************************************************************************** * * * Copyright (c) 1999-2003 Wimba S.A., All Rights Reserved. * * * ...