index
int64
0
0
repo_id
stringlengths
9
205
file_path
stringlengths
31
246
content
stringlengths
1
12.2M
__index_level_0__
int64
0
10k
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/AutoSave.java
/* * Copyright (c) 2005, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; public enum AutoSave { NEVER, ALWAYS, CONSERVATIVE; private final String value; AutoSave() { value = this.name().toLowerCase(); } p...
8,300
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/EscapeSyntaxCallMode.java
/* * Copyright (c) 2019, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; /** * <p>Specifies whether a SELECT/CALL statement is used for the underlying SQL for JDBC escape call syntax: 'select' means to * always use SELECT, ...
8,301
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/ResultWrapper.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ // Copyright (c) 2004, Open Cloud Limited. package com.amazon.redshift.jdbc; import java.sql.ResultSet; /** * Helper class that storing result info. This handles both the ResultSet and...
8,302
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftArray.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.BaseStatement; import com.amazon.redshift.core.Encoding; import com.amaz...
8,303
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/TypeInfoCache.java
/* * Copyright (c) 2005, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.BaseStatement; import com.amazon.redshift.core.Oid; import com.amazon.re...
8,304
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/AbstractBlobClob.java
/* * Copyright (c) 2005, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.ServerVersion; import com.amazon.redshift.largeobject.LargeObject; impor...
8,305
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/BooleanTypeUtil.java
/* * Copyright (c) 2017, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.util.GT; import com.amazon.redshift.util.RedshiftException; import com.amazon.redshift.util.RedshiftState; /** * <p>Helper ...
8,306
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/PrimitiveArraySupport.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.core.Oid; import com.amazon.redshift.core.TypeInfo; import com.amazon.redshift.util.ByteConverter; import java.sql.Connectio...
8,307
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftStatementImpl.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.Driver; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.BaseStatement; import com.amazon.reds...
8,308
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftParameterMetaData.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.logger.RedshiftLogger; import com.amazon.redshift.util.GT; import com.amazon....
8,309
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftResultSet.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.RedshiftResultSetMetaData; import com.amazon.redshift.RedshiftStatement; import com.amazon.redshift.core.BaseConnection; impo...
8,310
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftDatabaseMetaData.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.core.BaseStatement; import com.amazon.redshift.core.Field; import com.amazon.redshift.core.Oid; import com.amazon.redshift.co...
8,311
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftSQLXML.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.util.GT; import com.amazon.redshift.util.RedshiftException; import com.amazon...
8,312
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftResultSetMetaDataImpl.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.RedshiftResultSetMetaData; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.Field; import com....
8,313
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/EscapedFunctions2.java
/* * Copyright (c) 2018, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.util.GT; import com.amazon.redshift.util.RedshiftException; import com.amazon.redshift.util.RedshiftState; import java.lang....
8,314
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/TimestampUtils.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.RedshiftStatement; import com.amazon.redshift.core.JavaVersion; import com.amazon.redshift.core.Oid; import com.amazon.redshi...
8,315
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/UUIDArrayAssistant.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.jdbc2.ArrayAssistant; import com.amazon.redshift.util.ByteConverter; import java.util.UUID; public class UUIDArrayAssistant...
8,316
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftClob.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.nio.charset.Charset; import java.sql.Clob; import java....
8,317
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftBlob.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.largeobject.LargeObject; import java.sql.SQLException; public class RedshiftBlob extends AbstractBlobClob implements java.s...
8,318
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/StatementCancelState.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; /** * Represents {@link RedshiftStatementImpl#cancel()} state. */ enum StatementCancelState { IDLE, IN_QUERY, CANCELING, CANCELLED }
8,319
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/FieldMetadata.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.util.CanEstimateSize; /** * This is an internal class to hold field metadata info like table name, column name, etc. * Thi...
8,320
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/EscapedFunctions.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.util.GT; import com.amazon.redshift.util.RedshiftException; import com.amazon.redshift.util.RedshiftState; import java.lang....
8,321
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/RedshiftWarningWrapper.java
/* * Copyright (c) 2017, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import java.sql.SQLWarning; /** * Wrapper class for SQLWarnings that provides an optimisation to add * new warnings to the tail of the SQLWarning sin...
8,322
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/SslMode.java
/* * Copyright (c) 2018, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc; import com.amazon.redshift.RedshiftProperty; import com.amazon.redshift.util.GT; import com.amazon.redshift.util.RedshiftException; import com.amazon.re...
8,323
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc/DataSource.java
package com.amazon.redshift.jdbc; import com.amazon.redshift.ds.RedshiftConnectionPoolDataSource; /** * Backward compatible DataSource class. * * @author iggarish * */ public class DataSource extends RedshiftConnectionPoolDataSource { }
8,324
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/largeobject/LargeObjectManager.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.largeobject; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.fastpath.Fastpath; import com.amazon.redshift.fastpath.FastpathArg; im...
8,325
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/largeobject/LargeObject.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.largeobject; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.fastpath.Fastpath; import com.amazon.redshift.fastpath.FastpathArg; im...
8,326
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/largeobject/BlobInputStream.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.largeobject; import java.io.IOException; import java.io.InputStream; import java.sql.SQLException; /** * This is an implementation of an InputStream from a ...
8,327
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/largeobject/BlobOutputStream.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.largeobject; import java.io.IOException; import java.io.OutputStream; import java.sql.SQLException; /** * This implements a basic output stream that writes ...
8,328
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/copy/CopyDual.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.copy; /** * Bidirectional via copy stream protocol. Via bidirectional copy protocol work Redshift * replication. * * @see CopyIn * @see CopyOut */ publi...
8,329
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/copy/RedshiftCopyOutputStream.java
/* * Copyright (c) 2009, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.copy; import com.amazon.redshift.RedshiftConnection; import com.amazon.redshift.util.ByteStreamWriter; import com.amazon.redshift.util.GT; import java.io.IOE...
8,330
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/copy/CopyOut.java
/* * Copyright (c) 2009, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.copy; import java.sql.SQLException; public interface CopyOut extends CopyOperation { /** * Blocks wait for a row of data to be received from server on a...
8,331
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/copy/RedshiftCopyInputStream.java
/* * Copyright (c) 2009, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.copy; import com.amazon.redshift.RedshiftConnection; import com.amazon.redshift.util.GT; import com.amazon.redshift.util.RedshiftException; import com.amazon....
8,332
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/copy/CopyIn.java
/* * Copyright (c) 2009, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.copy; import com.amazon.redshift.util.ByteStreamWriter; import java.sql.SQLException; /** * Copy bulk data from client into a Redshift table very fast. */...
8,333
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/copy/CopyOperation.java
/* * Copyright (c) 2009, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.copy; import java.sql.SQLException; /** * Exchange bulk data between client and Redshift database tables. See CopyIn and CopyOut for full * interfaces for ...
8,334
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/copy/CopyManager.java
/* * Copyright (c) 2009, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.copy; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.Encoding; import com.amazon.redshift.core.QueryExecutor; import com.amaz...
8,335
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/LogSequenceNumber.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication; import java.nio.ByteBuffer; /** * LSN (Log Sequence Number) data which is a pointer to a location in the XLOG. */ public final class LogSequen...
8,336
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/ReplicationType.java
/* * Copyright (c) 2017, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication; public enum ReplicationType { LOGICAL, PHYSICAL }
8,337
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/ReplicationSlotInfo.java
/* * Copyright (c) 2018, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication; /** * Information returned on replication slot creation. * * <p>Returned keys of CREATE_REPLICATION_SLOT: * <ol> * <li><b>slot_name</b> Stri...
8,338
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/RedshiftReplicationConnectionImpl.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.replication.fluent.ChainedCreateReplicationSlotBuilder; import com.ama...
8,339
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/RedshiftReplicationStream.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication; import com.amazon.redshift.replication.fluent.CommonOptions; import com.amazon.redshift.replication.fluent.logical.LogicalReplicationOptions; im...
8,340
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/RedshiftReplicationConnection.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication; import com.amazon.redshift.RedshiftProperty; import com.amazon.redshift.replication.fluent.ChainedCreateReplicationSlotBuilder; import com.amazon...
8,341
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/AbstractCreateSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.ServerVersion; import com.amazon.redshift.util.GT; import...
8,342
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/ReplicationCreateSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.replication.fluent.logical.ChainedLogicalCreateSlotBuilder; imp...
8,343
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/CommonOptions.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.replication.LogSequenceNumber; /** * Common parameters for logical and physical replication. */ public inter...
8,344
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/ChainedCommonCreateSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.replication.ReplicationSlotInfo; import java.sql.SQLException; import java.sql.SQLFeatureNotSupportedException...
8,345
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/ChainedCreateReplicationSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.replication.fluent.logical.ChainedLogicalCreateSlotBuilder; import com.amazon.redshift.replication.fluent.physi...
8,346
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/ChainedCommonStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.replication.LogSequenceNumber; import java.util.concurrent.TimeUnit; /** * Fluent interface for specify comm...
8,347
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/AbstractStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.replication.LogSequenceNumber; import java.util.concurrent.TimeUnit; public abstract class AbstractStreamBuil...
8,348
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/ChainedStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.replication.fluent.logical.ChainedLogicalStreamBuilder; import com.amazon.redshift.replication.fluent.physical....
8,349
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/ReplicationStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.ReplicationProtocol; import com.amazon.redshift.replicatio...
8,350
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/physical/ChainedPhysicalStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.physical; import com.amazon.redshift.replication.RedshiftReplicationStream; import com.amazon.redshift.replication.fluent.ChainedCommonStre...
8,351
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/physical/PhysicalStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.physical; import com.amazon.redshift.replication.LogSequenceNumber; import com.amazon.redshift.replication.RedshiftReplicationStream; impor...
8,352
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/physical/PhysicalReplicationOptions.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.physical; import com.amazon.redshift.replication.fluent.CommonOptions; public interface PhysicalReplicationOptions extends CommonOptions {...
8,353
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/physical/ChainedPhysicalCreateSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.physical; import com.amazon.redshift.replication.fluent.ChainedCommonCreateSlotBuilder; /** * Physical replication slot specific paramete...
8,354
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/physical/StartPhysicalReplicationCallback.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.physical; import com.amazon.redshift.replication.RedshiftReplicationStream; import java.sql.SQLException; public interface StartPhysicalR...
8,355
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/physical/PhysicalCreateSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.physical; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.replication.LogSequenceNumber; import com.amazon.redsh...
8,356
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/logical/LogicalReplicationOptions.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.logical; import com.amazon.redshift.replication.fluent.CommonOptions; import java.util.Properties; public interface LogicalReplicationOpt...
8,357
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/logical/ChainedLogicalStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.logical; import com.amazon.redshift.replication.RedshiftReplicationStream; import com.amazon.redshift.replication.fluent.ChainedCommonStrea...
8,358
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/logical/LogicalStreamBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.logical; import com.amazon.redshift.replication.LogSequenceNumber; import com.amazon.redshift.replication.RedshiftReplicationStream; import...
8,359
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/logical/ChainedLogicalCreateSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.logical; import com.amazon.redshift.replication.fluent.ChainedCommonCreateSlotBuilder; /** * Logical replication slot specific parameters...
8,360
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/logical/StartLogicalReplicationCallback.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.logical; import com.amazon.redshift.replication.RedshiftReplicationStream; import java.sql.SQLException; public interface StartLogicalRep...
8,361
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/replication/fluent/logical/LogicalCreateSlotBuilder.java
/* * Copyright (c) 2016, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.replication.fluent.logical; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.replication.LogSequenceNumber; import com.amazon.redshi...
8,362
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/fastpath/Fastpath.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.fastpath; import com.amazon.redshift.core.BaseConnection; import com.amazon.redshift.core.ParameterList; import com.amazon.redshift.core.QueryExecutor; import...
8,363
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/fastpath/FastpathArg.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.fastpath; import com.amazon.redshift.core.ParameterList; import java.sql.SQLException; // Not a very clean mapping to the new QueryExecutor/ParameterList //...
8,364
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc3/Jdbc3SimpleDataSource.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc3; import com.amazon.redshift.ds.RedshiftSimpleDataSource; /** * @deprecated Please use {@link RedshiftSimpleDataSource} */ @Deprecated public class Jd...
8,365
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc3/Jdbc3ConnectionPool.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc3; import com.amazon.redshift.ds.RedshiftConnectionPoolDataSource; /** * @deprecated Please use {@link RedshiftConnectionPoolDataSource} */ @Deprecated...
8,366
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc3/Jdbc3PoolingDataSource.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc3; import com.amazon.redshift.ds.RedshiftPoolingDataSource; /** * @deprecated Since 2.0.0, see {@link RedshiftPoolingDataSource} */ @Deprecated public ...
8,367
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/sspi/SSPIClient.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ // Copyright (c) 2004, Open Cloud Limited. package com.amazon.redshift.sspi; import com.amazon.redshift.core.RedshiftStream; import com.amazon.redshift.logger.LogLevel; import com.amazon...
8,368
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/sspi/NTDSAPI.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ // Copyright (c) 2004, Open Cloud Limited. package com.amazon.redshift.sspi; import com.sun.jna.LastErrorException; import com.sun.jna.Native; import com.sun.jna.WString; import com.sun....
8,369
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/sspi/NTDSAPIWrapper.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ // Copyright (c) 2004, Open Cloud Limited. package com.amazon.redshift.sspi; import com.sun.jna.LastErrorException; import com.sun.jna.WString; import com.sun.jna.ptr.IntByReference; pu...
8,370
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/sspi/ISSPIClient.java
/* * Copyright (c) 2003, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ // Copyright (c) 2004, Open Cloud Limited. package com.amazon.redshift.sspi; import java.io.IOException; import java.sql.SQLException; /** * <p>Use Waffle-JNI to support SSPI authentic...
8,371
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2/ArrayAssistantRegistry.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc2; import java.util.HashMap; import java.util.Map; /** * Array assistants register here. * * @author Minglei Tu */ public class ArrayAssistantRegistr...
8,372
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2/ArrayAssistant.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc2; /** * Implement this interface and register the its instance to ArrayAssistantRegistry, to let Redshift * driver to support more array type. * * @a...
8,373
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2/optional/SimpleDataSource.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc2.optional; import com.amazon.redshift.ds.RedshiftSimpleDataSource; /** * @deprecated Please use {@link RedshiftSimpleDataSource} */ @Deprecated public...
8,374
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2/optional/ConnectionPool.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc2.optional; import com.amazon.redshift.ds.RedshiftConnectionPoolDataSource; /** * @deprecated Please use {@link RedshiftConnectionPoolDataSource} */ @D...
8,375
0
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2
Create_ds/amazon-redshift-jdbc-driver/src/main/java/com/amazon/redshift/jdbc2/optional/PoolingDataSource.java
/* * Copyright (c) 2004, PostgreSQL Global Development Group * See the LICENSE file in the project root for more information. */ package com.amazon.redshift.jdbc2.optional; import com.amazon.redshift.ds.RedshiftPoolingDataSource; /** * @deprecated Since 2.0.0, see {@link RedshiftPoolingDataSource} */ @Deprecate...
8,376
0
Create_ds/incubator-myriad/myriad-commons/src/main/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-commons/src/main/java/org/apache/myriad/executor/MyriadExecutorDefaults.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...
8,377
0
Create_ds/incubator-myriad/myriad-commons/src/main/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-commons/src/main/java/org/apache/myriad/executor/ContainerTaskStatusRequest.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...
8,378
0
Create_ds/incubator-myriad/myriad-commons/src/main/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-commons/src/main/java/org/apache/myriad/executor/NMTaskConfig.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...
8,379
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/MyriadTestModule.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...
8,380
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/MultiBindingsTest.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...
8,381
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/MultiBindingsUsage.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...
8,382
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/TestObjectFactory.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...
8,383
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/BaseConfigurableTest.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...
8,384
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/configuration/MyriadConfigurationTest.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...
8,385
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/configuration/MyriadBadConfigurationExceptionTest.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...
8,386
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/health/HealthCheckUtilsTest.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...
8,387
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/health/MesosDriverHealthCheckTest.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...
8,388
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/webapp/HttpConnectorProviderTest.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...
8,389
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/webapp/MyriadWebServerTest.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...
8,390
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/TMSTaskFactoryImpl.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...
8,391
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/TestServiceCommandLine.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...
8,392
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/MyriadDriverTest.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...
8,393
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/TestServiceTaskFactory.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...
8,394
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/ServiceResourceProfileTest.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...
8,395
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/TestTaskUtils.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...
8,396
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/NMProfileManagerTest.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...
8,397
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/MyriadOperationsTest.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...
8,398
0
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad
Create_ds/incubator-myriad/myriad-scheduler/src/test/java/org/apache/myriad/scheduler/MockSchedulerDriver.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...
8,399