idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
34,000
returns the index of a thread . concode_field_sep int WRITER concode_elem_sep Thread t concode_elem_sep ArrayList waiters concode_elem_sep int nAcquires concode_elem_sep int state concode_elem_sep int READER concode_field_sep void unlock concode_elem_sep void lockWrite concode_elem_sep void lockRead concode_elem_sep in...
int function ( final Thread arg0 ) { final Iterator loc0 = this . waiters . iterator ( ) ; int loc1 = 0 ; while ( loc0 . hasNext ( ) ) { final ReaderWriterNode loc2 = ( ReaderWriterNode ) loc0 . next ( ) ; if ( loc2 . arg0 == arg0 ) { return loc1 ; } loc1 += 1 ; } return - 1 ; }
34,001
error log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void set...
void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . arg2 ( arg0 , arg1 , arg2 ) ; }
34,002
returns whether the collection contains the given element . results are loaded and checked incrementally until a match is found or the end of the result set is reached . concode_field_sep List<T> allResults concode_elem_sep List<T> nextResults concode_elem_sep String UNMODIFIABLE_MESSAGE concode_elem_sep DynamoDBMapper...
boolean function ( Object arg0 ) { if ( allResults . contains ( arg0 ) ) return true ; while ( nextResultsAvailable ( ) ) { boolean loc0 = nextResults . contains ( arg0 ) ; moveNextResults ( ) ; if ( loc0 ) return true ; } return false ; }
34,003
determine how much of the input data has been compressed so far . if a length of -1 was given to the constructor , then this alwaysreturns zero . concode_field_sep IOException exception concode_elem_sep long length concode_elem_sep CompressionMode DEFAULT_COMPRESSION_MODE concode_elem_sep Chunker chunker concode_field_...
double function ( ) { if ( this . length == - 1 ) return 0.0 ; return ( double ) this . chunker . getInBytesProcessed ( ) / ( double ) this . length ; }
34,004
y = ax + b concode_field_sep Point _end concode_elem_sep Point _start concode_elem_sep float _a concode_elem_sep boolean _vertical concode_elem_sep float _b concode_field_sep boolean isVertical concode_elem_sep Point getStart concode_elem_sep String toString concode_elem_sep boolean isInside concode_elem_sep float getB...
float function ( ) { return _a ; }
34,005
helper for error callbacks that just returns the status.error by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String ...
void function ( JSONObject arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . ERROR , arg0 ) ) ; }
34,006
sets the right content i.e. the new content concode_field_sep StringBuffer sb concode_elem_sep String leftContent concode_elem_sep Object[] objectifiedLeft concode_elem_sep int leftLineNum concode_elem_sep boolean needToEnd concode_elem_sep Object[] objectifiedRight concode_elem_sep String rightContent concode_elem_sep...
void function ( String arg0 ) { this . rightContent = arg0 . replaceAll ( "srini_string" , "srini_string" ) ; }
34,007
returns the id nguoi tao of this ke hoach dau nam . concode_field_sep KeHoachDauNam _keHoachDauNam concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep void setBaoCaoDL...
long function ( ) { return _keHoachDauNam . getIdNguoiTao ( ) ; }
34,008
adds to the scaling layer processing wait time for a request . concode_field_sep ScalingMetricsTracker scalingMetricsTracker concode_elem_sep String DEFAULT_REQUEST_TYPE concode_elem_sep long roundTripTimeInMs concode_elem_sep long requestReceivedTime concode_elem_sep RestRequestMetrics defaultMetrics concode_elem_sep ...
long function ( long arg0 ) { return requestProcessingWaitTimeInMs . addAndGet ( arg0 ) ; }
34,009
update this crc32 checksum with the contents of buf , starting from offset and reading bytecount bytes of data . concode_field_sep long crc concode_elem_sep long tbytes concode_field_sep long getValue concode_elem_sep long updateByteImpl concode_elem_sep void reset concode_elem_sep long updateImpl
void function ( byte [ ] arg0 , int arg1 , int arg2 ) { Arrays . checkOffsetAndCount ( arg0 . length , arg1 , arg2 ) ; tbytes += arg2 ; crc = updateImpl ( arg0 , arg1 , arg2 , crc ) ; }
34,010
makes initial cache loading . concode_field_sep String CACHE_NAME concode_elem_sep Long id concode_elem_sep int ENTRY_COUNT concode_elem_sep int MIN_MEMORY concode_field_sep void executeTransaction concode_elem_sep void main
void function ( IgniteCache < Long , Person > arg0 ) { long loc0 = System . currentTimeMillis ( ) ; arg0 . loadCache ( null , ENTRY_COUNT ) ; long loc1 = System . currentTimeMillis ( ) ; System . out . println ( "srini_string" + arg0 . size ( ) + "srini_string" + ( loc1 - loc0 ) + "srini_string" ) ; }
34,011
expand the environment variable in platform-agnostic syntax . the parameter expansion marker '' var '' will be replaced with real parameter expansion marker ' % ' for windows and ' $ ' for linux by nodemanager on container launch . for example : var will be replaced as $ var on linux , and % var % on windows . concode_...
String function ( ) { return PARAMETER_EXPANSION_LEFT + variable + PARAMETER_EXPANSION_RIGHT ; }
34,012
returns an network interface by name concode_field_sep String name concode_elem_sep Vector<InetAddress> inetAddresses concode_field_sep Collection condense concode_elem_sep String getName concode_elem_sep String getDisplayName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toStrin...
NetworkInterface function ( String arg0 ) { for ( Enumeration loc0 = getNetworkInterfaces ( ) ; loc0 . hasMoreElements ( ) ; ) { NetworkInterface loc1 = ( NetworkInterface ) loc0 . nextElement ( ) ; if ( arg0 . equals ( loc1 . getName ( ) ) ) return loc1 ; } return null ; }
34,013
returns the statistics on the y values alone . concode_field_sep int BYTES concode_elem_sep long serialVersionUID concode_elem_sep double sumOfProductsOfDeltas concode_elem_sep Stats yStats concode_elem_sep Stats xStats concode_field_sep PairedStats fromByteArray concode_elem_sep double sumOfProductsOfDeltas concode_el...
Stats function ( ) { return yStats ; }
34,014
gethostname concode_field_sep String m_serviceName concode_elem_sep NetworkInterface<InetAddress> m_iface concode_field_sep Map<String,ThresholdEntity> getThresholdMap concode_elem_sep InetAddress getInetAddress concode_elem_sep int getNodeId concode_elem_sep ThreadCategory log concode_elem_sep NetworkInterface<InetAdd...
String function ( ) { return InetAddressUtils . str ( getInetAddress ( ) ) ; }
34,015
closes the connection , accesses the handle field . concode_field_sep int handle concode_elem_sep boolean connectionOpen concode_field_sep int getLocalPort concode_elem_sep StreamConnection acceptAndOpen concode_elem_sep void ensureOpen concode_elem_sep void open0 concode_elem_sep String getLocalAddress0 concode_elem_s...
void function ( ) { if ( connectionOpen ) { close0 ( ) ; connectionOpen = false ; } }
34,016
returns the parent view of a tree node from the parent view annotation . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_elem_sep ArrayList<IGraphicalEditPart> getOrderedTreeChildren...
View function ( View arg0 ) { final EAnnotation loc0 = arg0 . getEAnnotation ( TREE_LAYOUT_ANNOTATION ) ; if ( loc0 != null ) { return ( View ) arg0 . eResource ( ) . getEObject ( loc0 . getDetails ( ) . get ( TREE_NODE_PARENT_URI ) ) ; } return null ; }
34,017
returns the nominal tiles width concode_field_sep int nc concode_elem_sep int w concode_elem_sep int h concode_field_sep int getImgULX concode_elem_sep int getImgULY concode_elem_sep int getTileWidth concode_elem_sep int getImgWidth concode_elem_sep int getNomTileHeight concode_elem_sep int getTileCompHeight concode_el...
int function ( ) { return w ; }
34,018
sets the value of the limitedrenewals property . concode_field_sep Duration duration concode_elem_sep BigInteger maxAllowed concode_elem_sep RenewalDetail.LimitedRenewals limitedRenewals concode_elem_sep XMLGregorianCalendar lastRenewalExpirationDate concode_elem_sep Boolean unlimited concode_elem_sep XMLGregorianCalen...
void function ( RenewalDetail . LimitedRenewals arg0 ) { this . limitedRenewals = arg0 ; }
34,019
gets the description attribute . concode_field_sep List<ProfileAttributeBo> profileAttributes concode_elem_sep String contextName concode_elem_sep String name concode_elem_sep String description concode_elem_sep List<KrmsRule> rules concode_elem_sep String categoryName concode_field_sep void setName concode_elem_sep St...
String function ( ) { return description ; }
34,020
returns true if this is a combining glyph . concode_field_sep GlyphMetrics gm concode_elem_sep float verticalAdvance concode_field_sep boolean isLigature concode_elem_sep float getHorizontalAdvance concode_elem_sep float getVerticalAdvance concode_elem_sep float getRSB concode_elem_sep boolean isStandard concode_elem_s...
boolean function ( ) { return gm . isCombining ( ) ; }
34,021
stops the timer if running and resets it to it 's initial value . this method is useful if you want to reuse this timer . concode_field_sep long duration concode_elem_sep boolean paused concode_elem_sep long adjust concode_elem_sep AdvancedTimer timer concode_elem_sep long pausetime concode_field_sep void resume concod...
void function ( ) { reset ( duration ) ; }
34,022
f0 - > concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( Identifier arg0 ) { arg0 . f0 . accept ( this ) ; }
34,023
returns an array of active jobs , sorted by subsystem and job name , the way wrkactjob does . jobinfo.tostring prints the fields the way wrkactjob does . concode_field_sep ListActiveJobsImpl impl_ concode_field_sep long getElapsedTime
JobInfo [ ] function ( final CommandConnection arg0 , final boolean arg1 ) { impl_ . setActiveJobsListener ( impl_ ) ; return impl_ . getJobs ( arg0 , arg1 ) ; }
34,024
append a double value . concode_field_sep char mode concode_elem_sep boolean comma concode_elem_sep int top concode_elem_sep int maxdepth concode_elem_sep Writer writer concode_elem_sep JSONObject stack[] concode_field_sep void pop concode_elem_sep JSONWriter array concode_elem_sep JSONWriter end concode_elem_sep JSONW...
JSONWriter function ( double arg0 ) { return this . value ( new Double ( arg0 ) ) ; }
34,025
initializes the module and defines the storage implementation . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( ) { final ConfigFactory loc0 = ConfigFactory . getInstance ( ) ; loc0 . defineUserStorage ( new Java14ConfigStorage ( Preferences . userNodeForPackage ( MasterReport . class ) ) ) ; loc0 . defineUserStorage ( new Java14ConfigStorage ( Preferences . systemNodeForPackage ( MasterReport . class ) ) ) ; }
34,026
margin top in pixels concode_field_sep int marginLeft concode_elem_sep int marginRight concode_elem_sep Map<String,PDRectangle> PAGE_MAP concode_elem_sep PDRectangle pageSize concode_elem_sep int marginTop concode_elem_sep int marginBottom concode_elem_sep PdfOperation operation concode_elem_sep PDFont font concode_ele...
void function ( int arg0 ) { this . marginTop = arg0 ; }
34,027
create the and response and verify a and response concode_field_sep PlaceHolder placeHolder concode_field_sep Boolean VerifiesChallenges concode_elem_sep Boolean VerifiesChallenge
Boolean function ( Boolean arg0 , HashMap < Responses , ElGamalKey > arg1 , ResEncrypt arg2 , Responses ... arg3 ) { And loc0 = new And ( this , arg1 , arg2 , arg3 ) ; return loc0 . Verifies ( arg0 ) ; }
34,028
returns the environments a rule supports by default , i.e. if it has no explicit references to environments in this group . concode_field_sep Package containingPackage concode_elem_sep Set<Label> defaults concode_elem_sep Set<Label> environments concode_elem_sep Location location concode_elem_sep Label label concode_el...
Set < Label > function ( ) { return defaults ; }
34,029
return a configured property . concode_field_sep String description concode_elem_sep String name concode_elem_sep NamingResources resources concode_elem_sep HashMap properties concode_elem_sep String type concode_field_sep void setName concode_elem_sep String getName concode_elem_sep String getType concode_elem_sep voi...
Object function ( String arg0 ) { return properties . get ( arg0 ) ; }
34,030
get a new object with the same unit but a multiplied value . concode_field_sep ECSSUnit m_eUnit concode_elem_sep BigDecimal m_aValue concode_field_sep CSSSimpleValueWithUnit add concode_elem_sep CSSSimpleValueWithUnit add concode_elem_sep long getAsLongValue concode_elem_sep String getFormatted concode_elem_sep double ...
CSSSimpleValueWithUnit function ( @ Nonnull final BigDecimal arg0 ) { return new CSSSimpleValueWithUnit ( m_aValue . multiply ( arg0 ) , m_eUnit ) ; }
34,031
syncronizes the database . can be used , for example , to save the current memory image of the db . concode_field_sep boolean changed concode_elem_sep byte[] NULL_ARRAY concode_elem_sep String name concode_elem_sep String filename concode_elem_sep Hashtable users concode_elem_sep byte[] key concode_field_sep void setNa...
void function ( ) { if ( changed ) save ( ) ; }
34,032
set the proxy to use for this request factory . concode_field_sep int connectTimeout concode_elem_sep Proxy proxy concode_elem_sep boolean bufferRequestBody concode_elem_sep boolean outputStreaming concode_elem_sep AsyncListenableTaskExecutor taskExecutor concode_elem_sep int chunkSize concode_elem_sep int readTimeout ...
void function ( Proxy arg0 ) { this . proxy = arg0 ; }
34,033
returns the value . concode_field_sep T value concode_elem_sep Timestamp timestamp concode_field_sep boolean isNewer concode_elem_sep boolean isNewer concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep Timestamp timestamp
T function ( ) { return value ; }
34,034
waits for n threads to enter the #synchronize method , thenreturns . concode_field_sep Exception interrupted concode_elem_sep int i concode_elem_sep int n concode_field_sep void abort concode_elem_sep void check concode_elem_sep void onCriteriaMet
void function ( ) { check ( n ) ; try { onCriteriaMet ( ) ; } catch ( Error loc0 ) { abort ( loc0 ) ; throw loc0 ; } catch ( RuntimeException loc0 ) { abort ( loc0 ) ; throw loc0 ; } check ( n * 2 ) ; }
34,035
allocate a dcsd object a dulmage-mendelsohn decomposition . concode_field_sep PlaceHolder placeHolder concode_field_sep Dcs cs_spalloc concode_elem_sep boolean CS_MARKED concode_elem_sep int CS_FLIP concode_elem_sep boolean CS_CSC concode_elem_sep int CS_UNFLIP concode_elem_sep boolean CS_TRIPLET concode_elem_sep boole...
Dcsd function ( int arg0 , int arg1 ) { Dcsd loc0 ; loc0 = new Dcsd ( ) ; loc0 . p = new int [ arg0 ] ; loc0 . r = new int [ arg0 + 6 ] ; loc0 . q = new int [ arg1 ] ; loc0 . s = new int [ arg1 + 6 ] ; loc0 . cc = new int [ 5 ] ; loc0 . rr = new int [ 5 ] ; return loc0 ; }
34,036
get the body of the request as a utf-8 string and appply the given matcher . concode_field_sep XmlExpectationsHelper xmlHelper concode_field_sep RequestMatcher node concode_elem_sep RequestMatcher contentTypeCompatibleWith concode_elem_sep RequestMatcher contentTypeCompatibleWith concode_elem_sep RequestMatcher bytes c...
RequestMatcher function ( final Matcher < ? super String > arg0 ) { return new RequestMatcher ( ) { @ Override public void match ( ClientHttpRequest arg1 ) throws IOException , AssertionError { MockClientHttpRequest loc0 = ( MockClientHttpRequest ) arg1 ; assertThat ( "srini_string" , loc0 . getBodyAsString ( ) , arg0 ...
34,037
return the detailed state of the supplicant 's negotiation with an access point , in the form of a supplicantstate supplicantstate object . concode_field_sep int mRssi concode_elem_sep String LINK_SPEED_UNITS concode_elem_sep Creator<WifiInfo> CREATOR concode_elem_sep EnumMap<SupplicantState,DetailedState> stateMap con...
SupplicantState function ( ) { return mSupplicantState ; }
34,038
setter method for actionid concode_field_sep Integer actionId concode_elem_sep String actionName concode_field_sep void setActionName concode_elem_sep Integer getActionId concode_elem_sep String getActionName concode_elem_sep String toString
void function ( Integer arg0 ) { this . actionId = arg0 ; }
34,039
start a named task . the results are undefined if #stop or timing methods are called without invoking this method . concode_field_sep boolean running concode_elem_sep int taskCount concode_elem_sep long startTimeMillis concode_elem_sep String currentTaskName concode_elem_sep TaskInfo lastTaskInfo concode_elem_sep long ...
StopWatch function ( String arg0 ) { if ( this . running ) { throw new IllegalStateException ( "srini_string" ) ; } this . startTimeMillis = System . currentTimeMillis ( ) ; this . running = true ; this . currentTaskName = arg0 ; return this ; }
34,040
get a ddllkey instance with the specified id concode_field_sep Logger logger concode_elem_sep UniqId uniqId concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep Object appData concode_elem_sep int hash concode_elem_sep KeyComparator keyComp concode_elem_sep Comparable<?> primaryKey concode...
DdllKey function ( String arg0 ) { return new DdllKey ( primaryKey , uniqId , arg0 , appData ) ; }
34,041
if currently inside a remark , this method tells if it is a block comment true or single line comment false concode_field_sep int bufferEnd concode_elem_sep boolean endOfFile concode_elem_sep Reader reader concode_elem_sep int bufferStart concode_elem_sep boolean insideRemark concode_elem_sep int remarkStart concode_el...
boolean function ( ) { return blockRemark ; }
34,042
called after plugin construction and fields have been initialized . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode_elem_sep boolean onOver...
void function ( ) { }
34,043
tests this object for equality with an arbitrary object . concode_field_sep long serialVersionUID concode_elem_sep double lower concode_elem_sep double upper concode_field_sep Range expandToInclude concode_elem_sep boolean intersects concode_elem_sep boolean intersects concode_elem_sep double max concode_elem_sep Range...
boolean function ( Object arg0 ) { if ( ! ( arg0 instanceof Range ) ) { return false ; } Range loc0 = ( Range ) arg0 ; if ( ! ( this . lower == loc0 . lower ) ) { return false ; } if ( ! ( this . upper == loc0 . upper ) ) { return false ; } return true ; }
34,044
setter for zookeeper host address concode_field_sep long DEFAULT_MEMORY concode_elem_sep String zookeeperHost concode_elem_sep String password concode_elem_sep Connector connector concode_elem_sep String instanceName concode_elem_sep Logger logger concode_elem_sep BatchWriter batchwriter concode_elem_sep long memoryLim...
void function ( String arg0 ) { this . zookeeperHost = arg0 ; }
34,045
enqueue a task to be run later . concode_field_sep Looper realObject concode_elem_sep Scheduler scheduler concode_elem_sep SoftThreadLocal<Looper> looperForThread concode_elem_sep boolean quit concode_elem_sep Thread myThread concode_elem_sep Thread MAIN_THREAD concode_field_sep boolean hasQuit concode_elem_sep void pa...
boolean function ( Runnable arg0 , long arg1 ) { if ( ! quit ) { scheduler . postDelayed ( arg0 , arg1 ) ; return true ; } else { return false ; } }
34,046
local path to put files concode_field_sep String fullTokenId concode_elem_sep String secretKey concode_elem_sep String remotePath concode_elem_sep String query concode_elem_sep String name concode_elem_sep String localPath concode_elem_sep String newRemotePath concode_elem_sep boolean enableSslValidation concode_elem_s...
void function ( String arg0 ) { this . localPath = arg0 ; }
34,047
the namespace uri of this node , or null if it is unspecified . defines how a namespace uri is attached to schema components . concode_field_sep Selector fSelector concode_elem_sep XSAnnotationImpl[] fAnnotations concode_elem_sep String fElementName concode_elem_sep int fNumAnnotations concode_elem_sep Field[] fFields ...
String function ( ) { return fNamespace ; }
34,048
get the parameter type . concode_field_sep int parameterType concode_elem_sep int sqlType concode_elem_sep boolean nullable concode_elem_sep String typeName concode_elem_sep String parameterName concode_field_sep String getParameterName concode_elem_sep int getSqlType concode_elem_sep boolean isNullable concode_elem_se...
int function ( ) { return parameterType ; }
34,049
sets the position of the token in the original input text . concode_field_sep String token concode_elem_sep String postpunctuation concode_elem_sep String whitespace concode_elem_sep int lineNumber concode_elem_sep String prepunctuation concode_elem_sep int position concode_field_sep String getWhitespace concode_elem_s...
void function ( int arg0 ) { this . position = arg0 ; }
34,050
sets the value of the adgroupcriterion property . concode_field_sep CampaignCriterion campaignCriterion concode_elem_sep AdGroup adGroup concode_elem_sep Ad ad concode_elem_sep AdGroupCriterionLabel adGroupCriterionLabel concode_elem_sep AdGroupAd adGroupAd concode_elem_sep CampaignAdExtension campaignAdExtension conco...
void function ( AdGroupCriterion arg0 ) { this . adGroupCriterion = arg0 ; }
34,051
returns true if the given type is `` fn '' type and false otherwise . concode_field_sep String BOOL_TYPE concode_elem_sep String STRING_TYPE concode_elem_sep String FUNCTION_ARRAY_START concode_elem_sep String NUMBER_TYPE concode_elem_sep String FUNCTION_START concode_elem_sep String FUNCTION_REF concode_field_sep bool...
boolean function ( String arg0 ) { return FUNCTION_REF . equals ( arg0 ) ; }
34,052
returns a tree-style representation of the current parsestate . concode_field_sep char TAB concode_elem_sep Stack<Entry> state concode_field_sep void pop concode_elem_sep void push concode_elem_sep ParseState snapshot concode_elem_sep Entry peek
String function ( ) { }
34,053
read the configuration file configfilename if it exists . moreover , a thread will be created that will periodically check if configfilename has been created or modified . the period is determined by the delay argument . if a change or file creation is detected , then configfilename is read to configure log4j . concode...
void function ( final String arg0 , final long arg1 ) { }
34,054
returns true if the specified appender is in the list of attached appenders , false otherwise . concode_field_sep Vector appenderList concode_field_sep void addAppender concode_elem_sep void removeAllAppenders concode_elem_sep Appender getAppender concode_elem_sep Enumeration getAllAppenders concode_elem_sep int append...
boolean function ( Appender arg0 ) { if ( appenderList == null || arg0 == null ) return false ; int loc0 = appenderList . loc0 ( ) ; Appender loc1 ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { loc1 = ( Appender ) appenderList . elementAt ( loc2 ) ; if ( loc1 == arg0 ) return true ; } return false ; }
34,055
sets the spring bean id for this bean . concode_field_sep WikiNodeService _wikiNodeService concode_field_sep void setWrappedService concode_elem_sep com.liferay.wiki.model.WikiNode addNode concode_elem_sep java.util.List<com.liferay.wiki.model.WikiNode> getNodes concode_elem_sep java.util.List<com.liferay.wiki.model.Wi...
void function ( java . lang . String arg0 ) { _wikiNodeService . setBeanIdentifier ( arg0 ) ; }
34,056
get the counts of how many keys are in each bucket . the same array is returned by each call to this method . concode_field_sep int[] counts concode_elem_sep HashMap<OBJ,Long> map concode_elem_sep long[] cuts concode_field_sep void add concode_elem_sep int findBucket concode_elem_sep void remove
int [ ] function ( long arg0 ) { for ( int loc0 = 0 ; loc0 < counts . length ; ++ loc0 ) { counts [ loc0 ] = 0 ; } for ( Long loc0 : map . values ( ) ) { counts [ findBucket ( arg0 - loc0 ) ] += 1 ; } return counts ; }
34,057
append an object value . concode_field_sep char mode concode_elem_sep boolean comma concode_elem_sep int maxdepth concode_elem_sep int top concode_elem_sep Writer writer concode_elem_sep JSONObject stack[] concode_field_sep void pop concode_elem_sep JSONWriter array concode_elem_sep JSONWriter end concode_elem_sep JSON...
JSONWriter function ( Object arg0 ) { return this . append ( JSONObject . valueToString ( arg0 ) ) ; }
34,058
customize the channel used to send messages from the application to the message broker . by default , messages from the application to the message broker are sent synchronously , which means application code sending a message will find out if the message can not be sent through an exception . however , this can be chan...
ChannelRegistration function ( ) { return this . brokerChannelRegistration ; }
34,059
gets the previous node that this node points to . concode_field_sep QueueListNode<T> head concode_elem_sep QueueListNode<T> next concode_elem_sep T payload concode_elem_sep QueueListNode<T> tail concode_elem_sep QueueListNode<T> prev concode_elem_sep int size concode_elem_sep Object lock concode_field_sep void enqueue ...
QueueListNode < T > function ( ) { return prev ; }
34,060
create a file with a length of filelen concode_field_sep Configuration CONF concode_elem_sep List<String> filelist concode_elem_sep MiniDFSCluster cluster concode_elem_sep Random r concode_elem_sep HftpFileSystem hftpFs concode_elem_sep FileSystem fs concode_elem_sep URI hftpURI concode_field_sep void checkStatus conco...
void function ( String arg0 , long arg1 ) { filelist . add ( hftpURI + arg0 ) ; final Path loc0 = new Path ( arg0 ) ; DFSTestUtil . createFile ( fs , loc0 , arg1 , ( short ) 1 , r . nextLong ( ) ) ; }
34,061
mix the stew concode_field_sep int numPotatoes concode_elem_sep int numCarrots concode_elem_sep int numMeat concode_elem_sep int numPeppers concode_field_sep void taste
void function ( ) { System . out . println ( String . format ( "srini_string" , numPotatoes , numCarrots , numMeat , numPeppers ) ) ; }
34,062
pushes a string into the stack . concode_field_sep String[] stack concode_elem_sep int N concode_field_sep String pop concode_elem_sep int size concode_elem_sep boolean isEmpty
void function ( String arg0 ) { stack [ N ++ ] = arg0 ; }
34,063
returns the capabilities of this saver . derived savers have to override this method to enable capabilities . concode_field_sep int CANCEL concode_elem_sep Instances m_instances concode_elem_sep int m_retrieval concode_elem_sep int STRUCTURE_READY concode_elem_sep int WRITE concode_elem_sep int WAIT concode_elem_sep in...
Capabilities function ( ) { Capabilities loc0 = new Capabilities ( this ) ; loc0 . setMinimumNumberInstances ( 0 ) ; return loc0 ; }
34,064
returns true if the input bytes were compressed with a preset dictionary . this method should be called if the first call to #inflate returns 0 , to determine whether a dictionary is required . if so , #setdictionary should be called with the appropriate dictionary before calling inflate again . use #getadler to determ...
boolean function ( ) { return needsDictionary ; }
34,065
returns the primary key of this k b template . concode_field_sep KBTemplate _kbTemplate concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_ele...
long function ( ) { return _kbTemplate . getPrimaryKey ( ) ; }
34,066
for the given sql using the given connection . the new statement is registered to be closed at teardown . concode_field_sep List<ResultSet> m_resultSets concode_elem_sep List<Connection> m_connections concode_elem_sep List<Statement> m_statements concode_field_sep Statement createStatement concode_elem_sep Connection n...
PreparedStatement function ( final String arg0 , final Connection arg1 ) { final PreparedStatement loc0 = arg1 . prepareStatement ( arg0 ) ; registerStatement ( loc0 ) ; return loc0 ; }
34,067
finds an executable file with the specified base name , that is located in a directory listed in path environment variable . concode_field_sep Logger LOG concode_elem_sep String PATH_ENV_VAR_NAME concode_field_sep List<File> doFindExeFilesInPath concode_elem_sep File findInOriginalPath concode_elem_sep String toLocatab...
File function ( @ NotNull String arg0 ) { return findInPath ( arg0 , false ) ; }
34,068
sets the max power . concode_field_sep double constant concode_elem_sep double staticPower concode_elem_sep double maxPower concode_field_sep double getMaxPower concode_elem_sep double getPower concode_elem_sep double getConstant concode_elem_sep double getStaticPower concode_elem_sep void setStaticPower concode_elem_s...
void function ( double arg0 ) { this . maxPower = arg0 ; }
34,069
searches for a match in the cache . if there is no match , it marks the test as `` in progress '' . this is done in one method to avoid thread synchronization issues concode_field_sep Map<Class<?>,CachedRunSummary> map concode_elem_sep ResultSummary resultSummary concode_field_sep void finishRun
ResultSummary function ( Class < ? extends Object > arg0 ) { CachedRunSummary loc0 = map . get ( arg0 ) ; if ( loc0 != null ) { return loc0 . resultSummary ; } loc0 = new CachedRunSummary ( arg0 ) ; map . put ( arg0 , loc0 ) ; return null ; }
34,070
tests if there are more points to read . concode_field_sep double ctrlpts[][] concode_elem_sep double CtrlVal concode_elem_sep double ncv concode_elem_sep double w concode_elem_sep double x concode_elem_sep double h concode_elem_sep double y concode_elem_sep int index concode_elem_sep double pcv concode_elem_sep Affine...
boolean function ( ) { return index > 5 ; }
34,071
returns the kerning adjustment value for this kerning entry a positive value means the space between characters should decrease . concode_field_sep UnicodeRange[] secondUnicodeRanges concode_elem_sep int[] firstGlyphCodes concode_elem_sep int[] secondGlyphCodes concode_elem_sep UnicodeRange[] firstUnicodeRanges concode...
float function ( ) { return kerningAdjust ; }
34,072
organizes the given list of items in hierarchy of groups based on the values they have on the named javabean proprties concode_field_sep PlaceHolder placeHolder concode_field_sep ArgumentGroupCondition<T> by
Group < T > function ( Iterable < T > arg0 , String ... arg1 ) { GroupCondition [ ] loc0 = new GroupCondition [ arg1 . length ] ; int loc1 = 0 ; for ( String loc2 : arg1 ) { loc0 [ loc1 ++ ] = new StringGroupCondition ( loc2 ) ; } return group ( arg0 , loc0 ) ; }
34,073
utility method to search for schema path starting from the given schema reference concode_field_sep Joiner SCHEMA_PATH_JOINER concode_elem_sep org.slf4j.Logger logger concode_field_sep SchemaPlus findSchema concode_elem_sep SchemaPlus findSchema concode_elem_sep AbstractSchema resolveToMutableDrillSchema concode_elem_s...
SchemaPlus function ( SchemaPlus arg0 , final List < String > arg1 ) { for ( String loc0 : arg1 ) { arg0 = arg0 . getSubSchema ( loc0 ) ; if ( arg0 == null ) { return null ; } } return arg0 ; }
34,074
sample_has_redundancy takes one of the following four values : 0 : it is unknown whether there is redundant coding in this sample ; 1 : there is redundant coding in this sample ; 2 : there is no redundant coding in this sample ; 3 : reserved concode_field_sep int sampleDegradationPriority concode_elem_sep byte samplePa...
int function ( ) { return sampleHasRedundancy ; }
34,075
add a propertychangelistener to the listener list . concode_field_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep Class type concode_elem_sep Object value concode_elem_sep boolean editable concode_field_sep Object getValue concode_elem_sep void setEditable concode_elem_sep boolean isEditable concode_el...
void function ( PropertyChangeListener arg0 ) { if ( propertyChangeSupport == null ) { propertyChangeSupport = new PropertyChangeSupport ( this ) ; } propertyChangeSupport . addPropertyChangeListener ( arg0 ) ; }
34,076
test retrieval of account by authtoken with null . concode_field_sep MockMvc mockMvc concode_elem_sep AccountService service concode_elem_sep AccountRepository repo concode_field_sep void testLogout concode_elem_sep void doFindAccountUserId concode_elem_sep void saveAccountWithNullCounts concode_elem_sep void doFindNul...
void function ( ) { service . findAccountprofileByAuthtoken ( null ) ; }
34,077
returns reference to the underlying byte array . concode_field_sep int len concode_elem_sep byte[] buffer concode_elem_sep long serialVersionUID concode_field_sep int byteAt concode_elem_sep void expand concode_elem_sep void setLength concode_elem_sep byte[] toByteArray concode_elem_sep void clear concode_elem_sep int ...
byte [ ] function ( ) { return this . buffer ; }
34,078
sets the eventlistener implementation . if a classname was set , it will be removed . concode_field_sep EventListener implementation concode_elem_sep String className concode_elem_sep ListenerConfigReadOnly readOnly concode_field_sep boolean isIncludeValue concode_elem_sep EventListener getImplementation concode_elem_s...
ListenerConfig function ( EventListener arg0 ) { this . implementation = isNotNull ( arg0 , "srini_string" ) ; this . className = null ; return this ; }
34,079
gets the value of the libraryname property . concode_field_sep LibraryName libraryName concode_elem_sep Description description concode_elem_sep String id concode_elem_sep LibraryVersion libraryVersion concode_elem_sep LibraryVendor libraryVendor concode_field_sep LibraryVendor getLibraryVendor concode_elem_sep void se...
LibraryName function ( ) { return libraryName ; }
34,080
returns the cron string representation of the schedule . concode_field_sep int hashCode concode_elem_sep Date launchLaterDate concode_elem_sep String toString concode_elem_sep Type type concode_elem_sep String cronValue concode_field_sep Date getLaunchLaterDate concode_elem_sep Type getType concode_elem_sep int hashCod...
String function ( ) { return cronValue ; }
34,081
log _ 2 n with log 0 = 0 semantics concode_field_sep PlaceHolder placeHolder concode_field_sep double min concode_elem_sep double entropy concode_elem_sep double max concode_elem_sep double mean concode_elem_sep void main concode_elem_sep double stDev
double function ( double arg0 ) { if ( arg0 == 0.0 ) { return 0.0 ; } else { return Math . log ( arg0 ) / Math . log ( 2 ) ; } }
34,082
hyperbolic arcsin . hyperbolic arc sine : log x + sqrt 1 + x ^ 2 concode_field_sep float HALF_PI concode_elem_sep float TWO_PI concode_elem_sep double TWO_PI_D concode_elem_sep double HALF_PI_D concode_field_sep short BuildShortBE concode_elem_sep short BuildShortBE concode_elem_sep int BuildInteger concode_elem_sep in...
float function ( float arg0 ) { return ( float ) Math . log ( arg0 + Math . sqrt ( arg0 * arg0 + 1 ) ) ; }
34,083
the token to use to get the next page of results after a previous api call . if the token does not appear , there are no more results to return . the token must be passed in with the same parameters as the previous call . for example , if the original call specified an attributekey of ` username ' with a value of ` roo...
LookupEventsResult function ( String arg0 ) { setNextToken ( arg0 ) ; return this ; }
34,084
sets the entity url . concode_field_sep EntityReference reference concode_elem_sep String url concode_field_sep String getUrl concode_elem_sep void setReference concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep EntityReference getReference
void function ( String arg0 ) { this . url = arg0 ; }
34,085
this method is used by the application to close an open connection to a database server concode_field_sep org.apache.log4j.Logger log concode_field_sep Connection getDatabaseConnection concode_elem_sep Connection getSqlInjLessonConnection concode_elem_sep Connection getCoreConnection concode_elem_sep Connection getChal...
void function ( Connection arg0 ) { try { arg0 . close ( ) ; } catch ( Exception loc0 ) { log . error ( "srini_string" + loc0 . toString ( ) ) ; } }
34,086
set connectiontimeout concode_field_sep HttpURLConnection conn concode_elem_sep Proxy proxy concode_elem_sep int BUFFER_SIZE concode_elem_sep int readTimeOut concode_elem_sep String charSet concode_elem_sep int connectionTimeOut concode_elem_sep boolean proxySwitcher concode_elem_sep String urlStr concode_elem_sep URL ...
HttpClient function ( int arg0 ) { this . connectionTimeOut = arg0 ; return this ; }
34,087
puts an array of bytes into this byte vector . the byte vector is automatically enlarged if necessary . concode_field_sep byte[] data concode_elem_sep int length concode_field_sep ByteVector put12 concode_elem_sep ByteVector encodeUTF8 concode_elem_sep ByteVector putByte concode_elem_sep ByteVector putInt concode_elem_...
ByteVector function ( final byte [ ] arg0 , final int arg1 , final int arg2 ) { if ( length + arg2 > data . length ) { enlarge ( arg2 ) ; } if ( arg0 != null ) { System . arraycopy ( arg0 , arg1 , data , length , arg2 ) ; } length += arg2 ; return this ; }
34,088
sets value of the nioreactorpnames #content_buffer_size parameter . concode_field_sep PlaceHolder placeHolder concode_field_sep void setSelectInterval concode_elem_sep void setGracePeriod concode_elem_sep int getContentBufferSize concode_elem_sep void setInterestOpsQueueing concode_elem_sep boolean getInterestOpsQueuei...
void function ( final HttpParams arg0 , int arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } arg0 . setIntParameter ( CONTENT_BUFFER_SIZE , arg1 ) ; }
34,089
adds a recipe to the registry . due to the nature of the brewing stand inputs that stack a.k.a max stack size > 1 are not allowed . concode_field_sep List<IBrewingRecipe> recipes concode_field_sep void brewPotions concode_elem_sep boolean isValidInput concode_elem_sep boolean hasOuput concode_elem_sep boolean isValidIn...
boolean function ( ItemStack arg0 , String arg1 , ItemStack arg2 ) { return addRecipe ( new BrewingOreRecipe ( arg0 , arg1 , arg2 ) ) ; }
34,090
refer to remapuri added in cordova-android@4.0.0 concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode_elem_sep boolean onOverrideUrlLoading conc...
Uri function ( Uri arg0 ) { return new Uri . Builder ( ) . scheme ( CordovaResourceApi . PLUGIN_URI_SCHEME ) . authority ( serviceName ) . appendQueryParameter ( "srini_string" , arg0 . toString ( ) ) . build ( ) ; }
34,091
a client identifier used to make a request . by including a client identifier , the api can allow multiple requests without needing the current revision . due to the asynchronous nature of requests/responses this was implemented to allow the client to make numerous requests without having to wait for the previous respo...
String function ( ) { return clientId ; }
34,092
sets the encryption method . concode_field_sep String hostname concode_elem_sep int port concode_elem_sep String encryptionMethod concode_field_sep String getHostname concode_elem_sep int getPort concode_elem_sep ProtocolConnection loadFromXml concode_elem_sep void setHostname concode_elem_sep String getEncryptionMetho...
void function ( String arg0 ) { this . encryptionMethod = arg0 ; }
34,093
sets the value of the returndesc property . concode_field_sep String returnCode concode_elem_sep PaymentScheduleInfo paymentScheduleInfo concode_elem_sep MandateInfo mandateInfo concode_elem_sep Creditor creditor concode_elem_sep DirectDebitInfo directDebitInfo concode_elem_sep String returnDesc concode_field_sep Credi...
void function ( String arg0 ) { this . returnDesc = arg0 ; }
34,094
tests if a string is null or of length zero concode_field_sep float PI2 concode_elem_sep boolean fastMath concode_elem_sep float[] SIN_TABLE concode_elem_sep int SIN_COUNT concode_elem_sep float deg2Rad concode_elem_sep float PI concode_elem_sep float radFull concode_elem_sep float degToIndex concode_elem_sep int SIN_B...
boolean function ( String arg0 ) { return arg0 == null || arg0 . length ( ) == 0 ; }
34,095
override super method concode_field_sep PlaceHolder placeHolder concode_field_sep Object prepareReturn concode_elem_sep byte[] serializeReturn concode_elem_sep Object[] prepareParams
byte [ ] function ( Object [ ] arg0 ) { return ProtoStuffUtil . seriMulti ( arg0 ) ; }
34,096
convenience method to convert the given object to a json string . supports maps , lists , strings , boolean , double concode_field_sep VelocityEngine velocityEngine concode_elem_sep Map<String,Object[]> msgs concode_elem_sep ToolContext toolContext concode_elem_sep Log log concode_elem_sep String AUTO_RUN_OPENMRS conco...
String function ( Object arg0 ) { ObjectMapper loc0 = new ObjectMapper ( ) ; loc0 . getJsonFactory ( ) . setCharacterEscapes ( new OpenmrsCharacterEscapes ( ) ) ; try { return loc0 . writeValueAsString ( arg0 ) ; } catch ( IOException loc1 ) { log . error ( "srini_string" ) ; throw new APIException ( loc1 ) ; } }
34,097
gets the totalresultsetsize value for this producttemplatepage . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize conc...
java . lang . Integer function ( ) { return totalResultSetSize ; }
34,098
sets the value of the channel property . concode_field_sep String internalId concode_elem_sep Double cost concode_elem_sep RecordRef campaignGroup concode_elem_sep RecordRef channel concode_elem_sep String description concode_elem_sep XMLGregorianCalendar dateScheduled concode_elem_sep RecordRef promoCode concode_elem_...
void function ( RecordRef arg0 ) { this . channel = arg0 ; }
34,099
the database name . concode_field_sep String databaseName concode_elem_sep String type concode_elem_sep String arn concode_field_sep DataSource withArn concode_elem_sep String getType concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DataSource withDatabaseName concode_elem_sep DataSource c...
void function ( String arg0 ) { this . databaseName = arg0 ; }