signature stringlengths 43 39.1k | implementation stringlengths 0 450k |
|---|---|
public class TypeCheck { /** * Checks whether class has overridden toString ( ) method . All objects has native toString ( )
* method but we ignore it as it is not useful so we need user - provided toString ( ) method . */
private boolean classHasToString ( ObjectType type ) { } } | Property toStringProperty = type . getOwnSlot ( "toString" ) ; if ( toStringProperty != null ) { return toStringProperty . getType ( ) . isFunctionType ( ) ; } ObjectType parent = type . getImplicitPrototype ( ) ; if ( parent != null && ! parent . isNativeObjectType ( ) ) { return classHasToString ( parent ) ; } return... |
public class StylesheetRoot { /** * Create the default rule if needed .
* @ throws TransformerException */
private void initDefaultRule ( ErrorListener errorListener ) throws TransformerException { } } | // Then manufacture a default
m_defaultRule = new ElemTemplate ( ) ; m_defaultRule . setStylesheet ( this ) ; XPath defMatch = new XPath ( "*" , this , this , XPath . MATCH , errorListener ) ; m_defaultRule . setMatch ( defMatch ) ; ElemApplyTemplates childrenElement = new ElemApplyTemplates ( ) ; childrenElement . set... |
public class CommerceDiscountUsageEntryLocalServiceBaseImpl { /** * Returns the number of rows matching the dynamic query .
* @ param dynamicQuery the dynamic query
* @ param projection the projection to apply to the query
* @ return the number of rows matching the dynamic query */
@ Override public long dynamicQ... | return commerceDiscountUsageEntryPersistence . countWithDynamicQuery ( dynamicQuery , projection ) ; |
public class AmazonSageMakerClient { /** * Gets a list of < a > TrainingJobSummary < / a > objects that describe the training jobs that a hyperparameter tuning job
* launched .
* @ param listTrainingJobsForHyperParameterTuningJobRequest
* @ return Result of the ListTrainingJobsForHyperParameterTuningJob operation... | request = beforeClientExecution ( request ) ; return executeListTrainingJobsForHyperParameterTuningJob ( request ) ; |
public class LineParserBuffer { /** * private void doReceive ( ReceiveEvt evt )
* TODO : Handle partial receives .
* ByteArrayInputStream bis = new ByteArrayInputStream ( evt . getData ( ) , evt . getOffset ( ) , evt . getLength ( ) ) ;
* InputStreamReader isr = new InputStreamReader ( bis ) ;
* BufferedReader ... | log . trace ( "BEFORE PUT: The buf={}" , buf ) ; buf . put ( evt . getData ( ) , evt . getOffset ( ) , evt . getLength ( ) ) ; log . trace ( "AFTER PUT: The buf={}" , buf ) ; buf . flip ( ) ; log . trace ( "AFTER FLIP: The buf={}" , buf ) ; boolean foundCrLf = false ; while ( buf . hasRemaining ( ) ) { foundCrLf = fals... |
public class ImgUtil { /** * 写出图像为JPG格式
* @ param image { @ link Image }
* @ param out 写出到的目标流
* @ throws IORuntimeException IO异常
* @ since 4.0.10 */
public static void writeJpg ( Image image , OutputStream out ) throws IORuntimeException { } } | write ( image , IMAGE_TYPE_JPG , out ) ; |
public class KrakenImpl { /** * Maps results to a method callback . */
public void map ( MethodRef method , String sql , Object [ ] args ) { } } | QueryBuilderKraken builder = QueryParserKraken . parse ( this , sql ) ; if ( builder . isTableLoaded ( ) ) { QueryKraken query = builder . build ( ) ; query . map ( method , args ) ; } else { String tableName = builder . getTableName ( ) ; _tableService . loadTable ( tableName , Result . of ( t -> builder . build ( ) .... |
public class JoinDomainRequest { /** * List of IPv4 addresses , NetBIOS names , or host names of your domain server . If you need to specify the port
* number include it after the colon ( “ : ” ) . For example , < code > mydc . mydomain . com : 389 < / code > .
* @ param domainControllers
* List of IPv4 addresses... | if ( domainControllers == null ) { this . domainControllers = null ; return ; } this . domainControllers = new com . amazonaws . internal . SdkInternalList < String > ( domainControllers ) ; |
public class FLACEncoder { /** * Attempt to Encode a certain number of samples . Encodes as close to count
* as possible .
* @ param count number of samples to attempt to encode . Actual number
* encoded may be greater or less if count does not end on a block boundary .
* @ param end true to finalize stream aft... | int encodedCount = 0 ; streamLock . lock ( ) ; try { checkForThreadErrors ( ) ; int channels = streamConfig . getChannelCount ( ) ; boolean encodeError = false ; while ( count > 0 && preparedRequests . size ( ) > 0 && ! encodeError ) { BlockEncodeRequest ber = preparedRequests . peek ( ) ; int encodedSamples = encodeRe... |
public class BatchDeleteImportDataRequestMarshaller { /** * Marshall the given parameter object . */
public void marshall ( BatchDeleteImportDataRequest batchDeleteImportDataRequest , ProtocolMarshaller protocolMarshaller ) { } } | if ( batchDeleteImportDataRequest == null ) { throw new SdkClientException ( "Invalid argument passed to marshall(...)" ) ; } try { protocolMarshaller . marshall ( batchDeleteImportDataRequest . getImportTaskIds ( ) , IMPORTTASKIDS_BINDING ) ; } catch ( Exception e ) { throw new SdkClientException ( "Unable to marshall... |
public class StringFormatter { /** * Access a localized string associated with key from the ResourceBundle ,
* likely the UI . properties file .
* @ param key to lookup in the ResourceBundle
* @ return localized String version of key argument , or key itself if
* something goes wrong . . . */
public String getL... | if ( bundle != null ) { try { return bundle . getString ( key ) ; // String localized = bundle . getString ( key ) ;
// if ( ( localized ! = null ) & & ( localized . length ( ) > 0 ) ) {
// return localized ;
} catch ( Exception e ) { } } return key ; |
public class FeedItemServiceLocator { /** * For the given interface , get the stub implementation .
* If this service has no port for the given interface ,
* then ServiceException is thrown . */
public java . rmi . Remote getPort ( Class serviceEndpointInterface ) throws javax . xml . rpc . ServiceException { } } | try { if ( com . google . api . ads . adwords . axis . v201809 . cm . FeedItemServiceInterface . class . isAssignableFrom ( serviceEndpointInterface ) ) { com . google . api . ads . adwords . axis . v201809 . cm . FeedItemServiceSoapBindingStub _stub = new com . google . api . ads . adwords . axis . v201809 . cm . Feed... |
public class ChargingStationEventListener { /** * Updates the charging station ' s availability .
* @ param chargingStationId the charging station ' s id .
* @ param availability the charging station ' s new availability . */
private void updateChargingStationAvailability ( ChargingStationId chargingStationId , Ava... | ChargingStation chargingStation = repository . findOne ( chargingStationId . getId ( ) ) ; if ( chargingStation != null ) { chargingStation . setAvailability ( availability ) ; repository . createOrUpdate ( chargingStation ) ; } |
public class UserAction { /** * 删除一个或多个用户 */
public String remove ( ) { } } | Long [ ] userIds = getLongIds ( "user" ) ; User creator = userService . get ( SecurityUtils . getUsername ( ) ) ; List < User > toBeRemoved = securityHelper . getUserService ( ) . getUsers ( userIds ) ; StringBuilder sb = new StringBuilder ( ) ; User removed = null ; int success = 0 ; int expected = toBeRemoved . size ... |
public class GCMRegistrar { /** * Checks that the application manifest is properly configured .
* A proper configuration means :
* < ol >
* < li > It creates a custom permission called
* { @ code PACKAGE _ NAME . permission . C2D _ MESSAGE } .
* < li > It defines at least one { @ link BroadcastReceiver } with... | PackageManager packageManager = context . getPackageManager ( ) ; String packageName = context . getPackageName ( ) ; String permissionName = packageName + ".permission.C2D_MESSAGE" ; // check permission
try { packageManager . getPermissionInfo ( permissionName , PackageManager . GET_PERMISSIONS ) ; } catch ( NameNotFo... |
public class ModClusterContainer { /** * Register a new node .
* @ param config the node configuration
* @ param balancerConfig the balancer configuration
* @ param ioThread the associated I / O thread
* @ param bufferPool the buffer pool
* @ return whether the node could be created or not */
public synchroni... | final String jvmRoute = config . getJvmRoute ( ) ; final Node existing = nodes . get ( jvmRoute ) ; if ( existing != null ) { if ( config . getConnectionURI ( ) . equals ( existing . getNodeConfig ( ) . getConnectionURI ( ) ) ) { // TODO better check if they are the same
existing . resetState ( ) ; return true ; } else... |
public class DiscoverInputSchemaResult { /** * Stream data that was modified by the processor specified in the < code > InputProcessingConfiguration < / code >
* parameter .
* @ param processedInputRecords
* Stream data that was modified by the processor specified in the < code > InputProcessingConfiguration < / ... | if ( processedInputRecords == null ) { this . processedInputRecords = null ; return ; } this . processedInputRecords = new java . util . ArrayList < String > ( processedInputRecords ) ; |
public class ZipUtil { /** * 对文件或文件目录进行压缩
* @ param zipFile 生成的Zip文件 , 包括文件名 。 注意 : zipPath不能是srcPath路径下的子文件夹
* @ param charset 编码
* @ param withSrcDir 是否包含被打包目录 , 只针对压缩目录有效 。 若为false , 则只压缩目录下的文件或目录 , 为true则将本目录也压缩
* @ param srcFiles 要压缩的源文件或目录 。 如果压缩一个文件 , 则为该文件的全路径 ; 如果压缩一个目录 , 则为该目录的顶层目录路径
* @ return 压缩文件... | validateFiles ( zipFile , srcFiles ) ; try ( ZipOutputStream out = getZipOutputStream ( zipFile , charset ) ) { String srcRootDir ; for ( File srcFile : srcFiles ) { if ( null == srcFile ) { continue ; } // 如果只是压缩一个文件 , 则需要截取该文件的父目录
srcRootDir = srcFile . getCanonicalPath ( ) ; if ( srcFile . isFile ( ) || withSrcDir )... |
public class SecureLogging { /** * Main method to initialize the combined { @ link Marker } s provided by this class . */
private static void initMarkers ( ) { } } | if ( initialized ) return ; Class < ? > cExtClass = findExtClass ( EXT_CLASS ) ; if ( cExtClass . isAssignableFrom ( String . class ) ) { createDefaultMarkers ( ) ; } else { createMultiMarkers ( cExtClass ) ; } if ( ! initialized ) LOG . warn ( "SecureLogging Markers could not be initialized!" ) ; else LOG . debug ( "S... |
public class CapabilityResolutionContext { /** * Attaches an arbitrary object to this context only if the object was not already attached . If a value has already
* been attached with the key provided , the current value associated with the key is returned .
* @ param key they attachment key used to ensure uniquene... | assert key != null ; return key . cast ( contextAttachments . putIfAbsent ( key , value ) ) ; |
public class Neo4JVertex { /** * { @ inheritDoc } */
@ Override public void remove ( ) { } } | // transaction should be ready for io operations
graph . tx ( ) . readWrite ( ) ; // remove all edges
outEdges . forEach ( edge -> session . removeEdge ( edge , false ) ) ; // remove vertex on session
session . removeVertex ( this ) ; |
public class Caster { /** * cast a Object to a Byte Object ( reference type )
* @ param o Object to cast
* @ param defaultValue
* @ return casted Byte Object */
public static Short toShort ( Object o , Short defaultValue ) { } } | if ( o instanceof Short ) return ( Short ) o ; if ( defaultValue != null ) return Short . valueOf ( toShortValue ( o , defaultValue . shortValue ( ) ) ) ; short res = toShortValue ( o , Short . MIN_VALUE ) ; if ( res == Short . MIN_VALUE ) return defaultValue ; return Short . valueOf ( res ) ; |
public class CmAgent { /** * Check returns Error Codes , so that Scripts can know what to do
* 0 - Check Complete , nothing to do
* 1 - General Error
* 2 - Error for specific Artifact - read check . msg
* 10 - Certificate Updated - check . msg is email content
* @ param trans
* @ param aafcon
* @ param cm... | int exitCode = 1 ; String mechID = mechID ( cmds ) ; String machine = machine ( cmds ) ; TimeTaken tt = trans . start ( "Check Certificate" , Env . REMOTE ) ; try { Future < Artifacts > acf = aafcon . client ( CM_VER ) . read ( "/cert/artifacts/" + mechID + '/' + machine , artifactsDF ) ; if ( acf . get ( TIMEOUT ) ) {... |
public class BlocksMap { /** * Check if the replica at the given datanode exists in map */
boolean contains ( Block block , DatanodeDescriptor datanode ) { } } | BlockInfo info = blocks . get ( block ) ; if ( info == null ) return false ; if ( - 1 == info . findDatanode ( datanode ) ) return false ; return true ; |
public class DefaultValidationResultsModel { /** * Add a validationResultsModel as a child to this one . Attach listeners and
* if it already has messages , fire events .
* @ param validationResultsModel */
public void add ( ValidationResultsModel validationResultsModel ) { } } | if ( children . add ( validationResultsModel ) ) { validationResultsModel . addValidationListener ( this ) ; validationResultsModel . addPropertyChangeListener ( HAS_ERRORS_PROPERTY , this ) ; validationResultsModel . addPropertyChangeListener ( HAS_WARNINGS_PROPERTY , this ) ; validationResultsModel . addPropertyChang... |
public class FileEncryptor { /** * Encrypt the contents of an input stream and write the encrypted data to
* the output stream .
* @ param clearInputStream
* Input stream containing the data to be encrypted .
* @ param encryptedOutputStream
* Output stream which the encrypted data will be written to .
* @ t... | byte [ ] clearBytes = IOUtils . toByteArray ( clearInputStream ) ; byte [ ] cipherBytes = encryptionProvider . encrypt ( clearBytes ) ; // encryptedOutputStream = new ByteArrayOutputStream ( 1000 ) ;
encryptedOutputStream . write ( cipherBytes ) ; encryptedOutputStream . flush ( ) ; encryptedOutputStream . close ( ) ; |
public class TcpListener { /** * / * ( non - Javadoc )
* @ see net . timewalker . ffmq4 . listeners . AbstractListener # start ( ) */
@ Override public synchronized void start ( ) throws JMSException { } } | if ( started ) return ; log . info ( "Starting listener [" + getName ( ) + "]" ) ; stopRequired = false ; initServerSocket ( ) ; listenerThread = new Thread ( this , "FFMQ-TCP-Server-" + serverSocket . getLocalPort ( ) ) ; listenerThread . start ( ) ; started = true ; |
public class SDMath { /** * Boolean AND operation : elementwise ( x ! = 0 ) & & ( y ! = 0 ) < br >
* If x and y arrays have equal shape , the output shape is the same as these inputs . < br >
* Note : supports broadcasting if x and y have different shapes and are broadcastable . < br >
* Returns an array with val... | return and ( null , x , y ) ; |
public class LockManager { /** * Dump internal state of lock manager . */
public void dump ( ) { } } | if ( ! tc . isDumpEnabled ( ) ) { return ; } Enumeration vEnum = lockTable . keys ( ) ; Tr . dump ( tc , "-- Lock Manager Dump --" ) ; while ( vEnum . hasMoreElements ( ) ) { Object key = vEnum . nextElement ( ) ; Tr . dump ( tc , "lock table entry" , new Object [ ] { key , lockTable . get ( key ) } ) ; } |
public class CalendarThinTableModel { /** * Constructor . */
public void init ( FieldTable table , String strStartDateTimeField , String strEndDateTimeField , String strDescriptionField , String strStatusField ) { } } | super . init ( table ) ; m_strStartDateTimeField = strStartDateTimeField ; m_strEndDateTimeField = strEndDateTimeField ; m_strDescriptionField = strDescriptionField ; m_strStatusField = strStatusField ; |
public class MicroHessianOutput { /** * Writes a byte array to the stream .
* The array will be written with the following syntax :
* < code > < pre >
* B b16 b18 bytes
* < / pre > < / code >
* If the value is null , it will be written as
* < code > < pre >
* < / pre > < / code >
* @ param value the str... | if ( buffer == null ) { os . write ( 'N' ) ; } else { os . write ( 'B' ) ; os . write ( length << 8 ) ; os . write ( length ) ; os . write ( buffer , offset , length ) ; } |
public class RemoteConnection { /** * / * ( non - Javadoc )
* @ see net . timewalker . ffmq4 . common . connection . AbstractConnection # deleteTemporaryQueue ( java . lang . String ) */
@ Override public final void deleteTemporaryQueue ( String queueName ) throws JMSException { } } | DeleteTemporaryQueueQuery query = new DeleteTemporaryQueueQuery ( ) ; query . setQueueName ( queueName ) ; transportEndpoint . blockingRequest ( query ) ; |
public class JSONConverter { /** * serialize Serializable class
* @ param serializable
* @ param sb
* @ param serializeQueryByColumns
* @ param done
* @ throws ConverterException */
private void _serializeClass ( PageContext pc , Set test , Class clazz , Object obj , StringBuilder sb , boolean serializeQueryB... | Struct sct = new StructImpl ( Struct . TYPE_LINKED ) ; if ( test == null ) test = new HashSet ( ) ; // Fields
Field [ ] fields = clazz . getFields ( ) ; Field field ; for ( int i = 0 ; i < fields . length ; i ++ ) { field = fields [ i ] ; if ( obj != null || ( field . getModifiers ( ) & Modifier . STATIC ) > 0 ) try { ... |
public class EasyBind { /** * Sync the content of the { @ code target } list with the { @ code source } list .
* @ return a subscription that can be used to stop syncing the lists . */
public static < T > Subscription listBind ( List < ? super T > target , ObservableList < ? extends T > source ) { } } | target . clear ( ) ; target . addAll ( source ) ; ListChangeListener < ? super T > listener = change -> { while ( change . next ( ) ) { int from = change . getFrom ( ) ; int to = change . getTo ( ) ; if ( change . wasPermutated ( ) ) { target . subList ( from , to ) . clear ( ) ; target . addAll ( from , source . subLi... |
public class TomcatBoot { public void close ( ) { } } | if ( server == null ) { throw new IllegalStateException ( "server has not been started." ) ; } try { server . stop ( ) ; } catch ( Exception e ) { throw new IllegalStateException ( "Failed to stop the Tomcat." , e ) ; } |
public class Security { /** * Encrypt a string value .
* @ param value Value to encrypt .
* @ return Encrypted value . */
protected static String encrypt ( String value , String cipherKey ) { } } | String [ ] cipher = CipherRegistry . getCipher ( cipherKey ) ; int associatorIndex = randomIndex ( cipher . length ) ; int identifierIndex ; do { identifierIndex = randomIndex ( cipher . length ) ; } while ( associatorIndex == identifierIndex ) ; return ( ( char ) ( associatorIndex + 32 ) ) + StrUtil . xlate ( value , ... |
public class WebConfigParamUtils { /** * Gets the int init parameter value from the specified context . If the parameter was not specified , the default
* value is used instead .
* @ param context
* the application ' s external context
* @ param names
* the init parameter ' s names
* @ param defaultValue
... | if ( names == null ) { throw new NullPointerException ( ) ; } String param = null ; for ( String name : names ) { if ( name == null ) { throw new NullPointerException ( ) ; } param = getStringInitParameter ( context , name ) ; if ( param != null ) { break ; } } if ( param == null ) { return defaultValue ; } else { retu... |
public class SocketWrapperBar { /** * Returns the client certificate . */
@ Override public X509Certificate getClientCertificate ( ) throws CertificateException { } } | X509Certificate [ ] certs = getClientCertificates ( ) ; if ( certs == null || certs . length == 0 ) return null ; else return certs [ 0 ] ; |
public class StopProcessApplicationsStep { /** * < p > Stops a process application . Exceptions are logged but not re - thrown ) .
* @ param processApplicationReference */
protected void stopProcessApplication ( ProcessApplicationReference processApplicationReference ) { } } | try { // unless the user has overridden the stop behavior ,
// this causes the process application to remove its services
// ( triggers nested undeployment operation )
ProcessApplicationInterface processApplication = processApplicationReference . getProcessApplication ( ) ; processApplication . undeploy ( ) ; } catch (... |
public class X509CRLEntryImpl { /** * Encodes the revoked certificate to an output stream .
* @ param outStrm an output stream to which the encoded revoked
* certificate is written .
* @ exception CRLException on encoding errors . */
public void encode ( DerOutputStream outStrm ) throws CRLException { } } | try { if ( revokedCert == null ) { DerOutputStream tmp = new DerOutputStream ( ) ; // sequence { serialNumber , revocationDate , extensions }
serialNumber . encode ( tmp ) ; if ( revocationDate . getTime ( ) < YR_2050 ) { tmp . putUTCTime ( revocationDate ) ; } else { tmp . putGeneralizedTime ( revocationDate ) ; } if ... |
public class CmsGalleryField { /** * On text box blur . < p >
* @ param event the event */
@ UiHandler ( "m_textbox" ) void onBlur ( BlurEvent event ) { } } | setFaded ( ( m_textbox . getValue ( ) . length ( ) * 6.88 ) > m_textbox . getOffsetWidth ( ) ) ; setTitle ( m_textbox . getValue ( ) ) ; |
public class BatchingAuditTrail { /** * returns immediately after queueing the log message
* @ param e
* the AuditTrailEvent to be logged
* @ param cb
* callback called when logging succeeded or failed . */
public void asynchLog ( final AuditTrailEvent e , final AuditTrailCallback cb ) { } } | CommandCallback < BatchInsertIntoAutoTrail . Command > callback = new CommandCallback < BatchInsertIntoAutoTrail . Command > ( ) { @ Override public void commandCompleted ( ) { cb . done ( ) ; } @ Override public void unhandledException ( Exception e ) { cb . error ( e ) ; } } ; doLog ( e , false , callback ) ; |
public class RepositoryConfiguration { /** * Read the supplied stream containing a JSON file , and parse into a { @ link RepositoryConfiguration } .
* @ param stream the file ; may not be null
* @ param name the name of the resource ; may not be null
* @ return the parsed repository configuration ; never null
*... | CheckArg . isNotNull ( stream , "stream" ) ; CheckArg . isNotNull ( name , "name" ) ; Document doc = Json . read ( stream ) ; return new RepositoryConfiguration ( doc , withoutExtension ( name ) ) ; |
public class XmlSchemaParser { /** * Helper function that throws an exception when the attribute is not set .
* @ param elementNode that should have the attribute
* @ param attrName that is to be looked up
* @ return value of the attribute
* @ throws IllegalArgumentException if the attribute is not present */
p... | final Node attrNode = elementNode . getAttributes ( ) . getNamedItemNS ( null , attrName ) ; if ( attrNode == null || "" . equals ( attrNode . getNodeValue ( ) ) ) { throw new IllegalStateException ( "Element '" + elementNode . getNodeName ( ) + "' has empty or missing attribute: " + attrName ) ; } return attrNode . ge... |
public class SockJsFrame { /** * < p > messageFrame . < / p >
* @ param codec a { @ link ameba . websocket . sockjs . frame . SockJsMessageCodec } object .
* @ param messages a { @ link java . lang . String } object .
* @ return a { @ link ameba . websocket . sockjs . frame . SockJsFrame } object . */
public stat... | String encoded = codec . encode ( messages ) ; return new SockJsFrame ( encoded ) ; |
public class WaveBase { /** * { @ inheritDoc } */
@ Override public Wave status ( final Status status ) { } } | synchronized ( this ) { if ( this . statusProperty . get ( ) == status ) { throw new CoreRuntimeException ( "The status " + status . toString ( ) + " has been already set for this wave " + toString ( ) ) ; } else { this . statusProperty . set ( status ) ; fireStatusChanged ( ) ; } } return this ; |
public class SychronizeFXWebsocketServer { /** * Pass { @ link OnClose } events of the Websocket API to this method to handle the event of a disconnected client .
* @ param session The client that has disconnected .
* @ throws IllegalArgumentException If the client passed as argument isn ' t registered in any chann... | final Optional < SynchronizeFXWebsocketChannel > channel ; synchronized ( channels ) { channel = getChannel ( session ) ; clients . remove ( session ) ; } // Maybe this is the response for a server side close .
if ( channel . isPresent ( ) ) { channel . get ( ) . connectionCloses ( session ) ; } |
public class RuleClassifier { /** * This function creates a rule */
public void createRule ( Instance inst ) { } } | int remainder = ( int ) Double . MAX_VALUE ; int numInstanciaObservers = ( int ) this . observedClassDistribution . sumOfValues ( ) ; if ( numInstanciaObservers != 0 && this . gracePeriodOption . getValue ( ) != 0 ) { remainder = ( numInstanciaObservers ) % ( this . gracePeriodOption . getValue ( ) ) ; } if ( remainder... |
public class Cursor { /** * Store by cursor .
* This function stores key / data pairs into the database .
* @ param key key to store
* @ param val data to store
* @ param op options for this operation
* @ return true if the value was put , false if MDB _ NOOVERWRITE or
* MDB _ NODUPDATA were set and the key... | if ( SHOULD_CHECK ) { requireNonNull ( key ) ; requireNonNull ( val ) ; checkNotClosed ( ) ; txn . checkReady ( ) ; txn . checkWritesAllowed ( ) ; } kv . keyIn ( key ) ; kv . valIn ( val ) ; final int mask = mask ( op ) ; final int rc = LIB . mdb_cursor_put ( ptrCursor , kv . pointerKey ( ) , kv . pointerVal ( ) , mask... |
public class S { /** * Alias of { @ link # isEqual ( String , String , int ) }
* @ param s1
* @ param s2
* @ param modifier
* @ return true if o1 ' s str equals o2 ' s str */
public static boolean eq ( String s1 , String s2 , int modifier ) { } } | return isEqual ( s1 , s2 , modifier ) ; |
public class ComputeNodeDisableSchedulingHeaders { /** * Set the time at which the resource was last modified .
* @ param lastModified the lastModified value to set
* @ return the ComputeNodeDisableSchedulingHeaders object itself . */
public ComputeNodeDisableSchedulingHeaders withLastModified ( DateTime lastModifi... | if ( lastModified == null ) { this . lastModified = null ; } else { this . lastModified = new DateTimeRfc1123 ( lastModified ) ; } return this ; |
public class StartupSettings { /** * Parse the settings for the gossip service from a JSON file .
* @ param jsonFile
* The file object which refers to the JSON config file .
* @ return The StartupSettings object with the settings from the config file .
* @ throws JSONException
* Thrown when the file is not we... | // Read the file to a String .
StringBuffer buffer = new StringBuffer ( ) ; try ( BufferedReader br = new BufferedReader ( new FileReader ( jsonFile ) ) ) { String line ; while ( ( line = br . readLine ( ) ) != null ) { buffer . append ( line . trim ( ) ) ; } } JSONObject jsonObject = new JSONArray ( buffer . toString ... |
public class AbstractHibernateCriteriaBuilder { /** * Applys a " in " contrain on the specified property
* @ param propertyName The property name
* @ param values A collection of values
* @ return A Criterion instance */
public org . grails . datastore . mapping . query . api . Criteria in ( String propertyName ,... | if ( ! validateSimpleExpression ( ) ) { throwRuntimeException ( new IllegalArgumentException ( "Call to [in] with propertyName [" + propertyName + "] and values [" + values + "] not allowed here." ) ) ; } propertyName = calculatePropertyName ( propertyName ) ; addToCriteria ( Restrictions . in ( propertyName , values )... |
public class MediaHandlerImpl { /** * Resolves the media request
* @ param mediaRequest Media request
* @ return Media metadata ( never null ) */
@ SuppressWarnings ( { } } | "null" , "unused" } ) @ NotNull Media processRequest ( @ NotNull final MediaRequest mediaRequest ) { // detect media source
MediaSource mediaSource = null ; List < Class < ? extends MediaSource > > mediaSources = mediaHandlerConfig . getSources ( ) ; if ( mediaSources == null || mediaSources . isEmpty ( ) ) { throw new... |
public class NetworkAddress { /** * Verify if a given string is a valid dotted quad notation IP Address
* @ param networkAddress The address string
* @ return true if its valid , false otherwise */
public static boolean isValidIPAddress ( String networkAddress ) { } } | if ( networkAddress != null ) { String [ ] split = networkAddress . split ( "\\." ) ; if ( split . length == 4 ) { int [ ] octets = new int [ 4 ] ; for ( int i = 0 ; i < 4 ; i ++ ) { try { octets [ i ] = Integer . parseInt ( split [ i ] ) ; } catch ( NumberFormatException e ) { return false ; } if ( octets [ i ] < 0 ||... |
public class VirtualNetworkTapsInner { /** * Gets information about the specified virtual network tap .
* @ param resourceGroupName The name of the resource group .
* @ param tapName The name of virtual network tap .
* @ param serviceCallback the async ServiceCallback to handle successful and failed responses .
... | return ServiceFuture . fromResponse ( getByResourceGroupWithServiceResponseAsync ( resourceGroupName , tapName ) , serviceCallback ) ; |
import java . math . * ; public class Main { /** * Calculates the total number of binary sequences of length 2 * bit _ length where
* the sum of the first ' bit _ length ' bits equals the sum of the last ' bit _ length ' bits .
* Args :
* bit _ length ( int ) : The length of one half of the binary sequence .
* ... | double combination = 1 ; double sequence_count = 1 ; for ( int r = 1 ; r <= bit_length ; r ++ ) { combination = ( combination * ( bit_length + 1 - r ) ) / r ; sequence_count += Math . pow ( combination , 2 ) ; } return ( float ) sequence_count ; |
public class BlacklistTagsFilterInterceptor { /** * { @ inheritDoc }
* @ return true if the tag of the log is in the blacklist , false otherwise */
@ Override protected boolean reject ( LogItem log ) { } } | if ( blacklistTags != null ) { for ( String disabledTag : blacklistTags ) { if ( log . tag . equals ( disabledTag ) ) { return true ; } } } return false ; |
public class PaymentChannelClientState { /** * < p > Stores this channel ' s state in the wallet as a part of a { @ link StoredPaymentChannelClientStates } wallet
* extension and keeps it up - to - date each time payment is incremented . This allows the
* { @ link StoredPaymentChannelClientStates } object to keep t... | stateMachine . checkState ( State . SAVE_STATE_IN_WALLET ) ; checkState ( id != null ) ; if ( storedChannel != null ) { checkState ( storedChannel . id . equals ( id ) ) ; return ; } doStoreChannelInWallet ( id ) ; try { wallet . commitTx ( getContractInternal ( ) ) ; } catch ( VerificationException e ) { throw new Run... |
public class PolicyDefinitionsInner { /** * Deletes a policy definition at management group level .
* @ param policyDefinitionName The name of the policy definition to delete .
* @ param managementGroupId The ID of the management group .
* @ throws IllegalArgumentException thrown if parameters fail the validation... | deleteAtManagementGroupWithServiceResponseAsync ( policyDefinitionName , managementGroupId ) . toBlocking ( ) . single ( ) . body ( ) ; |
public class PrcRefreshHndlI18n { /** * < p > Process refresh request . < / p >
* @ param pAddParam additional param
* @ param pRequestData Request Data
* @ throws Exception - an exception */
@ Override public final void process ( final Map < String , Object > pAddParam , final IRequestData pRequestData ) throws ... | this . i18nRequestHandler . handleDataChanged ( ) ; |
public class CqlPrepareHandler { /** * blocking , the preparation will be retried later on that node . Simply warn and move on . */
private CompletionStage < Void > prepareOnOtherNode ( Node node ) { } } | LOG . trace ( "[{}] Repreparing on {}" , logPrefix , node ) ; DriverChannel channel = session . getChannel ( node , logPrefix ) ; if ( channel == null ) { LOG . trace ( "[{}] Could not get a channel to reprepare on {}, skipping" , logPrefix , node ) ; return CompletableFuture . completedFuture ( null ) ; } else { Throt... |
public class FileResourceBundle { /** * Specifies the directory in which our temporary resource files should be stored . */
public static void setCacheDir ( File tmpdir ) { } } | String rando = Long . toHexString ( ( long ) ( Math . random ( ) * Long . MAX_VALUE ) ) ; _tmpdir = new File ( tmpdir , "narcache_" + rando ) ; if ( ! _tmpdir . exists ( ) ) { if ( _tmpdir . mkdirs ( ) ) { log . debug ( "Created narya temp cache directory '" + _tmpdir + "'." ) ; } else { log . warning ( "Failed to crea... |
public class PluginUtils { /** * Gets the user ' s local m2 directory or null if not found .
* @ return user ' s M2 repo */
public static File getUserM2Repository ( ) { } } | // if there is m2override system propery , use it .
String m2Override = System . getProperty ( "apiman.gateway.m2-repository-path" ) ; // $ NON - NLS - 1 $
if ( m2Override != null ) { return new File ( m2Override ) . getAbsoluteFile ( ) ; } String userHome = System . getProperty ( "user.home" ) ; // $ NON - NLS - 1 $
i... |
public class ServiceDiscoveryManager { /** * Returns the discovered items of a given XMPP entity addressed by its JID .
* @ param entityID the address of the XMPP entity .
* @ return the discovered information .
* @ throws XMPPErrorException if the operation failed for some reason .
* @ throws NoResponseExcepti... | return discoverItems ( entityID , null ) ; |
public class ExecutionVertex { /** * Simply forward this notification . */
void notifyStateTransition ( Execution execution , ExecutionState newState , Throwable error ) { } } | // only forward this notification if the execution is still the current execution
// otherwise we have an outdated execution
if ( currentExecution == execution ) { getExecutionGraph ( ) . notifyExecutionChange ( execution , newState , error ) ; } |
public class ASTNode { /** * Sets the node meta data .
* @ param key - the meta data key
* @ param value - the meta data value
* @ throws GroovyBugError if key is null or there is already meta
* data under that key */
public void setNodeMetaData ( Object key , Object value ) { } } | if ( key == null ) throw new GroovyBugError ( "Tried to set meta data with null key on " + this + "." ) ; if ( metaDataMap == null ) { metaDataMap = new ListHashMap ( ) ; } Object old = metaDataMap . put ( key , value ) ; if ( old != null ) throw new GroovyBugError ( "Tried to overwrite existing meta data " + this + ".... |
public class ServiceDiscoveryImpl { /** * The discovery must be started before use
* @ throws Exception errors */
@ Override public void start ( ) throws Exception { } } | try { reRegisterServices ( ) ; } catch ( KeeperException e ) { log . error ( "Could not register instances - will try again later" , e ) ; } client . getConnectionStateListenable ( ) . addListener ( connectionStateListener ) ; |
public class StrictLineReader { /** * Reads new input data into the buffer . Call only with pos = = end or end = = - 1,
* depending on the desired outcome if the function throws . */
private void fillBuf ( ) throws IOException { } } | int result = in . read ( buf , 0 , buf . length ) ; if ( result == - 1 ) { throw new EOFException ( ) ; } pos = 0 ; end = result ; |
public class TagKey { /** * Determines whether the given { @ code String } is a valid tag key .
* @ param name the tag key name to be validated .
* @ return whether the name is valid . */
private static boolean isValid ( String name ) { } } | return ! name . isEmpty ( ) && name . length ( ) <= MAX_LENGTH && StringUtils . isPrintableString ( name ) ; |
public class DateUtil { /** * Add days to a date
* @ param d date
* @ param days days
* @ return new date */
public static Date addDays ( Date d , int days ) { } } | Calendar cal = Calendar . getInstance ( ) ; cal . setTime ( d ) ; cal . add ( Calendar . DAY_OF_YEAR , days ) ; return cal . getTime ( ) ; |
public class AwsSecurityFindingFilters { /** * The date / time that the process was terminated .
* < b > NOTE : < / b > This method appends the values to the existing list ( if any ) . Use
* { @ link # setProcessTerminatedAt ( java . util . Collection ) } or { @ link # withProcessTerminatedAt ( java . util . Collec... | if ( this . processTerminatedAt == null ) { setProcessTerminatedAt ( new java . util . ArrayList < DateFilter > ( processTerminatedAt . length ) ) ; } for ( DateFilter ele : processTerminatedAt ) { this . processTerminatedAt . add ( ele ) ; } return this ; |
public class ClientAuthenticationService { /** * Authenticating on the client will only create a " dummy " basic auth subject and does not
* truly authenticate anything . This subject is sent to the server ove CSIv2 where the real
* authentication happens .
* @ param callbackHandler the callbackhandler to get the... | if ( callbackHandler == null ) { throw new WSLoginFailedException ( TraceNLS . getFormattedMessage ( this . getClass ( ) , TraceConstants . MESSAGE_BUNDLE , "JAAS_LOGIN_NO_CALLBACK_HANDLER" , new Object [ ] { } , "CWWKS1170E: The login on the client application failed because the CallbackHandler implementation is null.... |
public class FEELCodeMarshaller { /** * Marshalls the given value into FEEL code that can be executed to
* reconstruct the value . For instance , here are some examples of the marshalling process :
* * number 10 marshalls as : 10
* * string foo marshalls as : " foo "
* * duration P1D marshalls as : duration ( "... | if ( value == null ) { return "null" ; } return KieExtendedDMNFunctions . getFunction ( CodeFunction . class ) . invoke ( value ) . cata ( justNull ( ) , Function . identity ( ) ) ; |
public class ShrinkWrapPath { /** * { @ inheritDoc }
* @ see java . nio . file . Path # relativize ( java . nio . file . Path ) */
@ Override public Path relativize ( final Path other ) { } } | if ( other == null ) { throw new IllegalArgumentException ( "other path must be specified" ) ; } if ( ! ( other instanceof ShrinkWrapPath ) ) { throw new IllegalArgumentException ( "Can only relativize paths of type " + ShrinkWrapPath . class . getSimpleName ( ) ) ; } // Equal paths , return empty Path
if ( this . equa... |
public class PlanNode { /** * Get the node ' s value for this supplied property , casting the result to a { @ link List } of the supplied type .
* @ param < ValueType > the type of the value expected
* @ param propertyId the property identifier
* @ param type the class denoting the type of value expected ; may no... | if ( nodeProperties == null ) return null ; Object property = nodeProperties . get ( propertyId ) ; if ( property instanceof List ) { return ( List < ValueType > ) property ; } if ( property == null ) return null ; List < ValueType > result = new ArrayList < ValueType > ( ) ; result . add ( ( ValueType ) property ) ; r... |
public class ComponentPrint { /** * Set the current Y location and change the current component information to match .
* @ param targetPageIndex The page to position to .
* @ param targetLocationOnPage The location in the current page to position in .
* @ return True if this is the last component and it is finish... | // ? if ( ( targetPageIndex ! = currentPageIndex ) | | ( targetLocationOnPage ! = currentLocationOnPage ) )
this . resetAll ( ) ; // If I ' m not using the cached values , reset to start
boolean pageDone = false ; while ( pageDone == false ) { if ( currentComponent == null ) break ; componentPageHeight = this . calcCom... |
public class CQLTranslator { /** * Build where clause with @ EQ _ CLAUSE } clause .
* @ param builder
* the builder
* @ param field
* the field
* @ param member
* the member
* @ param entity
* the entity */
public void buildWhereClause ( StringBuilder builder , String field , Field member , Object entit... | // builder = ensureCase ( builder , field , false ) ;
// builder . append ( EQ _ CLAUSE ) ;
// appendColumnValue ( builder , entity , member ) ;
// builder . append ( AND _ CLAUSE ) ;
Object value = PropertyAccessorHelper . getObject ( entity , member ) ; buildWhereClause ( builder , member . getType ( ) , field , valu... |
public class Stream { /** * Zip together the iterators until one of them runs out of values .
* Each array of values is combined into a single value using the supplied zipFunction function .
* @ param c
* @ param zipFunction
* @ return */
@ SuppressWarnings ( "resource" ) public static < R > Stream < R > zip ( ... | if ( N . isNullOrEmpty ( c ) ) { return Stream . empty ( ) ; } final int len = c . size ( ) ; final ShortIterator [ ] iters = new ShortIterator [ len ] ; int i = 0 ; for ( ShortStream s : c ) { iters [ i ++ ] = s . iteratorEx ( ) ; } return new IteratorStream < > ( new ObjIteratorEx < R > ( ) { @ Override public boolea... |
public class BaseStreamWriter { /** * @ param name Name of the property to set
* @ param value Value to set property to .
* @ return True , if the specified property was < b > succesfully < / b >
* set to specified value ; false if its value was not changed */
@ Override public boolean setProperty ( String name ,... | /* Note : can not call local method , since it ' ll return false for
* recognized but non - mutable properties */
return mConfig . setProperty ( name , value ) ; |
public class SObject { /** * Construct an SObject with specified key , file and attributes
* specified in { @ link Map }
* @ see # of ( String , File , String . . . ) */
public static SObject of ( String key , File file , Map < String , String > attributes ) { } } | SObject sobj = of ( key , $ . requireNotNull ( file ) ) ; sobj . setAttributes ( attributes ) ; return sobj ; |
public class PublishingServiceRepository { /** * region > findQueued */
@ Programmatic public List < PublishedEvent > findQueued ( ) { } } | return repositoryService . allMatches ( new QueryDefault < > ( PublishedEvent . class , "findByStateOrderByTimestamp" , "state" , PublishedEvent . State . QUEUED ) ) ; |
public class CmsEditorBase { /** * Returns the formated message . < p >
* @ param key the message key
* @ param args the parameters to insert into the placeholders
* @ return the formated message */
public static String getMessageForKey ( String key , Object ... args ) { } } | String result = null ; if ( hasDictionary ( ) ) { result = m_dictionary . get ( key ) ; if ( ( result != null ) && ( args != null ) && ( args . length > 0 ) ) { for ( int i = 0 ; i < args . length ; i ++ ) { result = result . replace ( "{" + i + "}" , String . valueOf ( args [ i ] ) ) ; } } } if ( result == null ) { re... |
public class Ifc4PackageImpl { /** * < ! - - begin - user - doc - - >
* < ! - - end - user - doc - - >
* @ generated */
@ Override public EClass getIfcProfileDef ( ) { } } | if ( ifcProfileDefEClass == null ) { ifcProfileDefEClass = ( EClass ) EPackage . Registry . INSTANCE . getEPackage ( Ifc4Package . eNS_URI ) . getEClassifiers ( ) . get ( 457 ) ; } return ifcProfileDefEClass ; |
public class TldVarianceFilter { /** * Integral image of pixel value squared . floating point */
public static void transformSq ( final GrayF32 input , final GrayF64 transformed ) { } } | int indexSrc = input . startIndex ; int indexDst = transformed . startIndex ; int end = indexSrc + input . width ; double total = 0 ; for ( ; indexSrc < end ; indexSrc ++ ) { float value = input . data [ indexSrc ] ; transformed . data [ indexDst ++ ] = total += value * value ; } for ( int y = 1 ; y < input . height ; ... |
public class Observance { /** * Sets the date that the timezone observance starts .
* @ param date the start date or null to remove
* @ return the property that was created
* @ see < a href = " http : / / tools . ietf . org / html / rfc5545 # page - 97 " > RFC 5545
* p . 97-8 < / a >
* @ see < a href = " http... | DateStart prop = ( date == null ) ? null : new DateStart ( date ) ; setDateStart ( prop ) ; return prop ; |
public class Results { /** * Connection . abort ( ) has been called , abort remaining active result - set
* @ throws SQLException exception */
public void abort ( ) throws SQLException { } } | if ( fetchSize != 0 ) { fetchSize = 0 ; if ( resultSet != null ) { resultSet . abort ( ) ; } else { SelectResultSet firstResult = executionResults . peekFirst ( ) ; if ( firstResult != null ) { firstResult . abort ( ) ; } } } |
public class AbstractAnnotationVisitor { /** * Get the array of referenced values .
* @ return The array of referenced values . */
private List < ValueDescriptor < ? > > getArrayValue ( ) { } } | List < ValueDescriptor < ? > > values = arrayValueDescriptor . getValue ( ) ; if ( values == null ) { values = new LinkedList < > ( ) ; arrayValueDescriptor . setValue ( values ) ; } return values ; |
public class UIForm { /** * < p class = " changed _ modified _ 2_2 " > Generate an identifier for a component . The identifier
* will be prefixed with UNIQUE _ ID _ PREFIX , and will be unique
* within this component - container . Optionally , a unique seed value can
* be supplied by component creators which shou... | if ( isPrependId ( ) ) { Integer i = ( Integer ) getStateHelper ( ) . get ( PropertyKeys . lastId ) ; int lastId = ( ( i != null ) ? i : 0 ) ; getStateHelper ( ) . put ( PropertyKeys . lastId , ++ lastId ) ; return UIViewRoot . UNIQUE_ID_PREFIX + ( seed == null ? lastId : seed ) ; } else { UIComponent ancestorNamingCon... |
public class StrSubstitutor { /** * Replaces all the occurrences of variables within the given source buffer
* with their matching values from the resolver .
* The buffer is updated with the result .
* @ param source the buffer to replace in , updated , null returns zero
* @ return true if altered
* @ since 3... | if ( source == null ) { return false ; } return replaceIn ( source , 0 , source . length ( ) ) ; |
public class AfplibPackageImpl { /** * < ! - - begin - user - doc - - >
* < ! - - end - user - doc - - >
* @ generated */
public EClass getObjectByteExtent ( ) { } } | if ( objectByteExtentEClass == null ) { objectByteExtentEClass = ( EClass ) EPackage . Registry . INSTANCE . getEPackage ( AfplibPackage . eNS_URI ) . getEClassifiers ( ) . get ( 509 ) ; } return objectByteExtentEClass ; |
public class DistributedException { /** * Get a specific exception in a possible chain of exceptions .
* If there are multiple exceptions in the chain , the most recent
* one thrown will be returned .
* If the exceptions does not exist or no exceptions have been chained ,
* null will be returned .
* @ excepti... | if ( exceptionClassName == null ) { return null ; } Throwable ex = exceptionInfo . getException ( exceptionClassName ) ; return ex ; |
public class AbstractSetTypeConverter { /** * Do the actual reverse conversion of one object .
* @ param jTransfo jTransfo instance in use
* @ param domainObject domain object
* @ param toField field definition on the transfer object
* @ param toType configured to type for list
* @ param tags tags which indic... | return jTransfo . convertTo ( domainObject , jTransfo . getToSubType ( toType , domainObject ) , tags ) ; |
public class UndoRedoHandler { /** * Detach this handler from the text component . This will remove all
* listeners that have been attached to the text component , its
* document , and the elements of its input - and action maps . */
public void detach ( ) { } } | textComponent . removePropertyChangeListener ( documentPropertyChangeListener ) ; Document document = textComponent . getDocument ( ) ; document . removeUndoableEditListener ( undoableEditListener ) ; textComponent . getInputMap ( ) . remove ( undoKeyStroke ) ; textComponent . getActionMap ( ) . remove ( DO_UNDO_NAME )... |
public class GroupService { /** * Create snapshot of servers groups
* @ param expirationDays expiration days ( must be between 1 and 10)
* @ param groupFilter search servers criteria by group filter
* @ return OperationFuture wrapper for Server list */
public OperationFuture < List < Server > > createSnapshot ( I... | return serverService ( ) . createSnapshot ( expirationDays , getServerSearchCriteria ( groupFilter ) ) ; |
public class FluentCursor { /** * Transforms Cursor to LazyCursorList of T applying given function
* WARNING : This method doesn ' t close cursor . You are responsible for calling close ( )
* on returned list or on backing Cursor .
* @ param singleRowTransform Function to apply on every single row of this cursor ... | return new LazyCursorList < > ( this , singleRowTransform ) ; |
public class BoneCP { /** * Physically close off the internal connection .
* @ param conn */
protected void destroyConnection ( ConnectionHandle conn ) { } } | postDestroyConnection ( conn ) ; conn . setInReplayMode ( true ) ; // we ' re dead , stop attempting to replay anything
try { conn . internalClose ( ) ; } catch ( SQLException e ) { logger . error ( "Error in attempting to close connection" , e ) ; } |
public class VLinkedPagedList { /** * Similar to listIterator ( LK linearKey , boolean next ) except with the
* addition of the hint " pageId " which specifies the first page to look for
* the key .
* Runtime : up to O ( n ) gets , unless a good hint page is provided , then it
* could be 1 - 2 gets .
* @ para... | return new VLinkedPagedListIterator < I , LK > ( _index , _serializer , linearKey , next , pageId ) ; |
public class RTree { /** * This description is from the original paper .
* AT1 . [ Initialize ] . Set N = L . If L was split previously , set NN to be the resulting second node .
* AT2 . [ Check if done ] . If N is the root , stop .
* AT3 . [ Adjust covering rectangle in parent entry ] . Let P be the parent node ... | // special case for root
if ( n == root ) { if ( nn != null ) { root = buildRoot ( false ) ; root . addChild ( n ) ; root . addChild ( nn ) ; } root . enclose ( ) ; return ; } boolean updateParent = n . enclose ( ) ; if ( nn != null ) { nn . enclose ( ) ; updateParent = true ; if ( splitStrategy . needToSplit ( n . get... |
public class RequestedModuleNames { /** * / * ( non - Javadoc )
* @ see com . ibm . jaggr . core . transport . IRequestedModuleNames # getPreloads ( ) */
@ Override public List < String > getPreloads ( ) { } } | final String sourceMethod = "getPreloads" ; // $ NON - NLS - 1 $
if ( isTraceLogging ) { log . entering ( RequestedModuleNames . class . getName ( ) , sourceMethod ) ; log . exiting ( RequestedModuleNames . class . getName ( ) , sourceMethod , preloads ) ; } return preloads ; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.