idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
21,700
convenience method to construct a new image part for multipart posting and append it to the buffer of parts concode_field_sep String boundary concode_elem_sep Part[] mParts concode_elem_sep int partIdx concode_elem_sep NameValuePair[] mHeaders concode_elem_sep int headerIdx concode_elem_sep String contentType concode_f...
void function ( String arg0 , String arg1 , String arg2 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } if ( arg1 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } Part loc0 = new ImagePart ( arg0 , arg1 , arg2 ) ; appendPart ( loc0 ) ; }
21,701
gets the value of the secondarycurrencycodes property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the secondarycurrencycodes property . for examp...
List < String > function ( ) { if ( secondaryCurrencyCodes == null ) { secondaryCurrencyCodes = new ArrayList < String > ( ) ; } return this . secondaryCurrencyCodes ; }
21,702
join row from table1 and table2 . concode_field_sep DefaultOutputPort<Map<String,Object>> outport concode_elem_sep DefaultInputPort<Map<String,Object>> inport2 concode_elem_sep ArrayList<Map<String,Object>> table2 concode_elem_sep ArrayList<Index> table2Columns concode_elem_sep ArrayList<Map<String,Object>> table1 conc...
void function ( Map < String , Object > arg0 , Map < String , Object > arg1 ) { Map < String , Object > loc0 = new HashMap < String , Object > ( ) ; if ( arg0 != null ) { for ( Index loc1 : table1Columns ) { loc1 . filter ( arg0 , loc0 ) ; } } if ( arg1 != null ) { for ( Index loc1 : table2Columns ) { loc1 . filter ( a...
21,703
returns gaussian cdf using taylor approximation . concode_field_sep PlaceHolder placeHolder concode_field_sep double cdfErrorAlgo concode_elem_sep double cdfErrorAlgo
double function ( double arg0 , double arg1 , double arg2 ) { return Gaussian . Phi ( arg0 , arg1 , arg2 ) ; }
21,704
getnumber returns this account 's number . concode_field_sep int number concode_elem_sep int balance concode_elem_sep String name concode_field_sep int getKey concode_elem_sep int getBalance concode_elem_sep boolean lessThan concode_elem_sep void deposit concode_elem_sep String toString concode_elem_sep String getOwner...
int function ( ) { return number ; }
21,705
encrypt hmac sha1 . concode_field_sep String CRYPTO_NAME_HMAC_SHA1 concode_field_sep List<String> getFinalKeySet concode_elem_sep String buildQueryParam concode_elem_sep String encryptS1B concode_elem_sep List<String> getKeyList concode_elem_sep String encryptSha1 concode_elem_sep byte[] hmacSha1 concode_elem_sep Strin...
String function ( Map < String , Object > arg0 , String arg1 ) { String loc0 = buildQueryParam ( arg0 ) ; System . out . println ( loc0 ) ; byte [ ] loc1 = hmacSha1 ( loc0 , arg1 ) ; return Base64 . encode ( loc1 ) ; }
21,706
event handler for the east border . concode_field_sep boolean renderNorth concode_elem_sep boolean renderEast concode_elem_sep boolean renderSouth concode_elem_sep boolean renderWest concode_elem_sep boolean renderCenter concode_field_sep void south concode_elem_sep boolean isRenderNorth concode_elem_sep boolean isRend...
void function ( ValueChangeEvent arg0 ) { setRenderEast ( ( ( Boolean ) arg0 . getNewValue ( ) ) . booleanValue ( ) ) ; }
21,707
the library maintains a local cache on @linkplain com.flipkart.flipcast.core.inappmessage objects.but the db is limited to 'n' rows which can be got using this function . concode_field_sep SharedPreferences mSharedPreferences concode_elem_sep String sPollInterval concode_elem_sep String sPollExecutorTag concode_elem_se...
int function ( ) { return mSharedPreferences . getInt ( sCacheLimit , - 1 ) ; }
21,708
convert a qname to a qualified name , as used by dom and sax . the returned string has a format of prefix : localname if the prefix is set , or just localname if not . concode_field_sep PlaceHolder placeHolder concode_field_sep String getPrefix concode_elem_sep boolean validateQName concode_elem_sep QName toQName conco...
String function ( QName arg0 ) { String loc0 = arg0 . getPrefix ( ) ; if ( ! StringUtils . hasLength ( loc0 ) ) { return arg0 . getLocalPart ( ) ; } else { return loc0 + "srini_string" + arg0 . getLocalPart ( ) ; } }
21,709
wraps the given map and prevent adding of null keys . concode_field_sep PlaceHolder placeHolder concode_field_sep ObjectObjectHashMap<K,V> newNoNullKeysMap concode_elem_sep ObjectObjectHashMap<K,V> newNoNullKeysMap concode_elem_sep ObjectObjectHashMap<K,V> newMap concode_elem_sep ObjectObjectHashMap<K,V> newMap concode...
ObjectObjectHashMap < K , V > function ( int arg0 ) { return new ObjectObjectHashMap < K , V > ( arg0 ) { @ Override public V put ( K arg1 , V arg2 ) { if ( arg1 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return super . put ( arg1 , arg2 ) ; } } ; }
21,710
this is called when a resource adapter instance is undeployed or during application server shutdown . concode_field_sep NamedDistributedWorkManager dwm concode_field_sep void endpointActivation concode_elem_sep int hashCode concode_elem_sep void endpointDeactivation concode_elem_sep boolean equals concode_elem_sep void...
void function ( ) { }
21,711
get projectdao object concode_field_sep VersionDAO versionInstance concode_elem_sep CommentDAO commentInstance concode_elem_sep SearchDAO searchInstance concode_elem_sep IssueDAO issueInstance concode_elem_sep ProjectDAO projectInstance concode_elem_sep ReportDAO reportInstance concode_field_sep IssueDAO getIssueInstan...
ProjectDAO function ( ) { return projectInstance ; }
21,712
parse path path to native uri . concode_field_sep String DEFAULT_SOUND concode_elem_sep String STORAGE_FOLDER concode_elem_sep Context context concode_field_sep void copyFile concode_elem_sep Uri getUriForResourcePath concode_elem_sep Uri getUriFromAsset concode_elem_sep String getBaseName concode_elem_sep Uri parse co...
Uri function ( String arg0 ) { if ( arg0 == null || arg0 . isEmpty ( ) ) return Uri . EMPTY ; if ( arg0 . equalsIgnoreCase ( DEFAULT_SOUND ) ) { return RingtoneManager . getDefaultUri ( RingtoneManager . TYPE_NOTIFICATION ) ; } return parse ( arg0 ) ; }
21,713
convenience method to notify registered observers of an implicit execution of this batch . concode_field_sep JdbcCoordinator jdbcCoordinator concode_elem_sep CoreMessageLogger LOG concode_elem_sep LinkedHashMap<String,PreparedStatement> statements concode_elem_sep LinkedHashSet<BatchObserver> observers concode_elem_sep...
void function ( ) { for ( BatchObserver loc0 : observers ) { loc0 . batchImplicitlyExecuted ( ) ; } }
21,714
add a file to the list of files . concode_field_sep Directory parent concode_elem_sep Set childDirectories concode_elem_sep ArrayList files concode_elem_sep File directory concode_field_sep Iterator directoryIterator concode_elem_sep Directory getParent concode_elem_sep boolean isRoot concode_elem_sep int fileSize conc...
void function ( File arg0 ) { files . add ( arg0 ) ; }
21,715
create a new data pair object of the correct size for the machine learning method that is being trained . this object will be passed to the getpair method to allow the data pair objects to be copied to it . concode_field_sep MLData input concode_elem_sep double significance concode_elem_sep MLData ideal concode_elem_se...
MLDataPair function ( final int arg0 , final int arg1 ) { MLDataPair loc0 ; if ( arg1 > 0 ) { loc0 = new BasicMLDataPair ( new BasicMLData ( arg0 ) , new BasicMLData ( arg1 ) ) ; } else { loc0 = new BasicMLDataPair ( new BasicMLData ( arg0 ) ) ; } return loc0 ; }
21,716
gets the comment . concode_field_sep String reason1 concode_elem_sep Double amount concode_elem_sep String reason2 concode_elem_sep String transId concode_elem_sep String comment concode_elem_sep String partialRefundId concode_field_sep Refund setReason1 concode_elem_sep String getReason2 concode_elem_sep Refund setPar...
String function ( ) { return comment ; }
21,717
return type metadata object concode_field_sep byte[] output concode_elem_sep long jobID concode_elem_sep int RC concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_field_sep void setJobID concode_elem_sep org.apach...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
21,718
returns the total number of compressed bytes output so far . concode_field_sep int uncompressedDirectBufOff concode_elem_sep int userBufOff concode_elem_sep CompressionLevel level concode_elem_sep int compressionStrategy concode_elem_sep boolean keepUncompressedBuf concode_elem_sep boolean finished concode_elem_sep int...
long function ( ) { checkStream ( ) ; return getBytesWritten ( stream ) ; }
21,719
creates default implementation of bitmapdisplayer - simplebitmapdisplayer concode_field_sep AtomicInteger threadNumber concode_elem_sep String namePrefix concode_elem_sep AtomicInteger poolNumber concode_elem_sep int threadPriority concode_elem_sep ThreadGroup group concode_field_sep Thread newThread concode_elem_sep I...
BitmapDisplayer function ( ) { return new SimpleBitmapDisplayer ( ) ; }
21,720
sets the number of pes . concode_field_sep long currentAllocatedSize concode_elem_sep List<Double> currentAllocatedMips concode_elem_sep double mips concode_elem_sep int numberOfPes concode_elem_sep int userId concode_elem_sep boolean inMigration concode_elem_sep CloudletScheduler cloudletScheduler concode_elem_sep Str...
void function ( int arg0 ) { this . numberOfPes = arg0 ; }
21,721
gets the value of the id property . concode_field_sep XMLGregorianCalendar issueInstant concode_elem_sep Element signature concode_elem_sep String id concode_field_sep XMLGregorianCalendar getIssueInstant concode_elem_sep void setSignature concode_elem_sep Element getSignature
String function ( ) { return id ; }
21,722
gets the nric of the person . concode_field_sep Particulars particulars concode_field_sep Calendar getDateOfBirth concode_elem_sep void setAddress concode_elem_sep void setDateOfBirth concode_elem_sep String getDateOfBirthAsString concode_elem_sep String getAddress concode_elem_sep String getPhoneNumber concode_elem_se...
String function ( ) { return particulars . getNRIC ( ) ; }
21,723
setter for the field parenturi . concode_field_sep String parentUri concode_elem_sep Map<String,UriParameter> uriParameters concode_elem_sep String displayName concode_elem_sep String description concode_elem_sep List<TemplateUse> typeModel concode_elem_sep String type concode_elem_sep Map<String,List<UriParameter>> ba...
void function ( String arg0 ) { this . parentUri = arg0 ; }
21,724
gets the database name . concode_field_sep String dbName concode_elem_sep Logger LOG concode_elem_sep String location concode_elem_sep HCatPartition hcatPartition concode_elem_sep Map<String,String> partitionKeyValues concode_elem_sep Map<String,String> partitionSpec concode_elem_sep String tableName concode_field_sep ...
String function ( ) { return hcatPartition == null ? dbName : hcatPartition . getDatabaseName ( ) ; }
21,725
returns the real path of the given uri . if the given uri is a content : / / uri , the real path is retrieved from the media store . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String stripFileProtocol concode_elem_sep String getMimeType concode_elem_sep String getMimeTypeForExtensi...
String function ( Uri arg0 , CordovaInterface arg1 ) { return FileHelper . getRealPath ( arg0 . toString ( ) , arg1 ) ; }
21,726
returns the type of this event ; one of eventtype #created or eventtype #destroyed . concode_field_sep EventType eventType concode_elem_sep String serviceName concode_elem_sep DistributedObject distributedObject concode_field_sep String getServiceName concode_elem_sep String toString concode_elem_sep Object getObjectId...
EventType function ( ) { return eventType ; }
21,727
closes all sessions registered with this sessionmanager . concode_field_sep Session sysLobSession concode_elem_sep long sessionIdCount concode_elem_sep LongKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep void removeSession concode_elem_sep Session getSysSessionForScript concode_elem_sep Sess...
void function ( ) { Session [ ] loc0 = getAllSessions ( ) ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { loc0 [ loc1 ] . close ( ) ; } }
21,728
set the total number of distinct property keys to use for edge properties . concode_field_sep int edgePropKeys concode_elem_sep int maxVertexPropVal concode_elem_sep int edgePropKeys concode_elem_sep String LABEL_PREFIX concode_elem_sep String UID_PROP concode_elem_sep int edgeLabels concode_elem_sep int maxEdgePropVal...
Builder function ( int arg0 ) { this . edgePropKeys = arg0 ; return this ; }
21,729
the default implementation does nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep void enterTypeDefinition concode_elem_sep void exitActualParameterPart concode_elem_sep void enterTypeDeclaration concode_elem_sep void enterObjectDeclaration concode_elem_sep void enterBinaryAddingOperator concode_ele...
void function ( GrammarParser . LoopStatementContext arg0 ) { }
21,730
sets the value of the friendlyname property . concode_field_sep String nameFormat concode_elem_sep String name concode_elem_sep Map<QName,String> otherAttributes concode_elem_sep List<Object> attributeValue concode_elem_sep String friendlyName concode_field_sep void setName concode_elem_sep void addAttributeValue conco...
void function ( String arg0 ) { this . friendlyName = arg0 ; }
21,731
creates a new action that only forwards arguments on to the given filter is they are satisfied by the given spec . concode_field_sep Spec<? super T> filter concode_elem_sep Runnable runnable concode_elem_sep Transformer<? extends T,? super I> transformer concode_elem_sep Action<? super T> action concode_elem_sep Iterab...
Action < T > function ( Action < ? super T > arg0 , Spec < ? super T > arg1 ) { return new FilteredAction < T > ( arg0 , arg1 ) ; }
21,732
get the server environment . concode_field_sep ServerEnvironment serverEnvironment concode_elem_sep ExtensionRegistry extensionRegistry concode_elem_sep CapabilityRegistry capabilityRegistry concode_elem_sep ManagedAuditLogger auditLogger concode_elem_sep DelegatingConfigurableAuthorizer authorizer concode_elem_sep Con...
ServerEnvironment function ( ) { return serverEnvironment ; }
21,733
returns the last publish date of this k b folder . concode_field_sep KBFolder _kbFolder concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName conco...
Date function ( ) { return _kbFolder . getLastPublishDate ( ) ; }
21,734
sets the assignee user uuid of this tasks entry . concode_field_sep TasksEntry _tasksEntry concode_field_sep void setResolverUserId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_...
void function ( java . lang . String arg0 ) { _tasksEntry . setAssigneeUserUuid ( arg0 ) ; }
21,735
returns the description string for the storage unit . this is typically displayed to the user in the user interface on the mtp host . concode_field_sep String mVolumeIdentifier concode_elem_sep long mMaxCapacity concode_elem_sep int mStorageId concode_elem_sep long mFreeSpace concode_elem_sep String mDescription concod...
String function ( ) { return mDescription ; }
21,736
sets the data value for this ctconohchy50rq . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep pe.com.grupobbva.ohc.hy50.CtBodyRq data concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep pe.com.grupobbva.xsd.ps9.CtHeaderRq header concode_elem_sep boolean __hashCodeCalc concod...
void function ( pe . com . grupobbva . ohc . hy50 . CtBodyRq arg0 ) { this . data = arg0 ; }
21,737
set property concode_field_sep long serialVersionUID concode_elem_sep String cfProperty concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep ManagedConnection createManagedConnection concode_elem_sep void setResourceAdapter concode_elem_sep void setLogWriter concode_elem_sep int ...
void function ( String arg0 ) { this . cfProperty = arg0 ; }
21,738
start the watch dog . concode_field_sep boolean stopped concode_elem_sep String ERROR_INVALID_TIMEOUT concode_elem_sep Vector observers concode_elem_sep long timeout concode_field_sep void fireTimeoutOccured concode_elem_sep void removeTimeoutObserver concode_elem_sep void stop concode_elem_sep void addTimeoutObserver ...
void function ( ) { stopped = false ; Thread loc0 = new Thread ( this , "srini_string" ) ; loc0 . setDaemon ( true ) ; loc0 . start ( ) ; }
21,739
gets the decrypt key used by the security handler when decrypting data . concode_field_sep Logger logger concode_elem_sep EncryptionDictionary encryptDictionary concode_elem_sep SecurityHandler securityHandler concode_elem_sep boolean foundJCE concode_field_sep byte[] getEncryptionKey concode_elem_sep boolean isAuthori...
byte [ ] function ( ) { return securityHandler . getDecryptionKey ( ) ; }
21,740
performs a dynamic query on the database and returns an ordered range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 , com . liferay . portal . kernel . util . OrderByComparator < T > arg3 ) { return getService ( ) . arg0 ( arg0 , arg1 , arg2 , arg3 ) ; }
21,741
returns the service component with the primary key . concode_field_sep ServiceComponentLocalService _service concode_field_sep void upgradeDB concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep ja...
com . liferay . portal . kernel . model . ServiceComponent function ( long arg0 ) { return getService ( ) . getServiceComponent ( arg0 ) ; }
21,742
gets the value of the lastidx property . concode_field_sep long clrIdx concode_elem_sep CTExtensionList extLst concode_elem_sep String initials concode_elem_sep long lastIdx concode_elem_sep String name concode_elem_sep long id concode_field_sep void setName concode_elem_sep CTExtensionList getExtLst concode_elem_sep S...
long function ( ) { return lastIdx ; }
21,743
notify the host application that a key was not handled by the webview . except system keys , webview always consumes the keys in the normal flow or if shouldoverridekeyevent returns true . this is called asynchronously from where the key is dispatched . it gives the host application a chance to handle the unhandled key...
void function ( WebView arg0 , KeyEvent arg1 ) { ViewRootImpl loc0 = arg0 . getViewRootImpl ( ) ; if ( loc0 != null ) { loc0 . dispatchUnhandledKey ( arg1 ) ; } }
21,744
indicates whether the given element list ends with a forced break . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean removeLegalBreaksFromEnd concode_elem_sep boolean isEmptyBox concode_elem_sep boolean removeLegalBreaks concode_elem_sep boolean removeLegalBreaks concode_elem_sep boolean removeLegalB...
boolean function ( List arg0 ) { return ( ( ListElement ) ListUtil . getLast ( arg0 ) ) . isForcedBreak ( ) ; }
21,745
log a line of stdout/stderr output this could produce a lot of output if the shell commands are noisy concode_field_sep int LOG_GENERAL concode_elem_sep OnLogListener logListener concode_elem_sep int LOG_COMMAND concode_elem_sep int LOG_NONE concode_elem_sep int LOG_ALL concode_elem_sep int logTypes concode_elem_sep in...
void function ( String arg0 ) { logCommon ( LOG_OUTPUT , "srini_string" , arg0 ) ; }
21,746
to get value of field key finalized . concode_field_sep Coordinates keyCoordinates concode_elem_sep AdvancedKVExtractionView advancedKVExtractionView concode_elem_sep Coordinates valueCoordinates concode_elem_sep boolean mouseStatus concode_elem_sep boolean keyFinalized concode_elem_sep boolean valueFinalized concode_f...
boolean function ( ) { return keyFinalized ; }
21,747
gets the bit f of a frame that says if is a full frame of not concode_field_sep int SRCCALLNO_SHORTMASK concode_elem_sep int FRAME_HEADER_LENGTH concode_elem_sep int DTMFFRAME_T concode_elem_sep int MINIFRAME_T concode_elem_sep int PROTOCOLCONTROLFRAME_T concode_elem_sep int srcCallNo concode_elem_sep int type concode_...
boolean function ( ) { return full ; }
21,748
erase a purchase locally from the inventory , given its product id . this just modifies the inventory object locally and has no effect on the server ! this is useful when you have an existing inventory object which you know to be up to date , and you have just consumed an item successfully , which means that erasing it...
void function ( String arg0 ) { if ( mPurchaseMap . containsKey ( arg0 ) ) mPurchaseMap . remove ( arg0 ) ; }
21,749
create a server which will attempt to bind to a specific host and port . concode_field_sep boolean closeIdleConnections concode_elem_sep Logger logger concode_elem_sep RpcHandler rpcHandler concode_elem_sep TransportConf conf concode_elem_sep MessageDecoder decoder concode_elem_sep MessageEncoder encoder concode_field_...
TransportServer function ( String arg0 , int arg1 , List < TransportServerBootstrap > arg2 ) { return new TransportServer ( this , arg0 , arg1 , rpcHandler , arg2 ) ; }
21,750
builds a csv list from the specified string , separator string and quote string . all arguments are assumed to be non-null . uses only the first element in each subarray . separates each list element with the value of the separator argument . prepends and appends each element with the value of the quote argument . no a...
String function ( String [ ] [ ] arg0 , String arg1 , String arg2 ) { StringBuffer loc0 = new StringBuffer ( arg0 . length * 16 ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 . append ( arg2 ) ; loc0 . append ( arg0 [ loc1 ] [ 0 ] ) ; loc0 . append ( arg2 ) ; loc0 . append ( arg1 ) ; } loc0 . setLengt...
21,751
get random int between 0 and max concode_field_sep String NUMBERS_AND_LETTERS concode_elem_sep String LETTERS concode_elem_sep String CAPITAL_LETTERS concode_elem_sep String LOWER_CASE_LETTERS concode_elem_sep String NUMBERS concode_field_sep String getRandomLetters concode_elem_sep String getRandomNumbers concode_elem...
int function ( int arg0 ) { return getRandom ( 0 , arg0 ) ; }
21,752
returns the revision string . concode_field_sep String m_Classname concode_field_sep Enumeration listOptions concode_elem_sep String getClassname concode_elem_sep void setOptions concode_elem_sep void setClassname concode_elem_sep void main concode_elem_sep String[] getOptions concode_elem_sep String generate concode_e...
String function ( ) { return RevisionUtils . extract ( "srini_string" ) ; }
21,753
sets the userid concode_field_sep int loginTimeout concode_elem_sep PrintWriter logWriter concode_elem_sep String user concode_elem_sep String database concode_elem_sep String password concode_field_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep void setPassword concode_elem_sep...
void function ( String arg0 ) { this . user = arg0 ; }
21,754
assigns a new rank to the card . concode_field_sep int aSuit concode_elem_sep String[] SUITS concode_elem_sep int aRank concode_elem_sep String[] RANKS concode_field_sep int getRank concode_elem_sep int getSuit concode_elem_sep String toString concode_elem_sep void setSuit
void function ( int arg0 ) { aRank = arg0 ; }
21,755
returns the index of the last row being rendered . concode_field_sep double absoluteGridY concode_elem_sep Transform transform concode_elem_sep GridRenderer renderer concode_elem_sep int maxVisibleRowIndex concode_elem_sep double absoluteGridX concode_elem_sep double clipMinY concode_elem_sep double clipMinX concode_el...
int function ( ) { return maxVisibleRowIndex ; }
21,756
returns the module composed of elements . concode_field_sep RecordingBinder parent concode_elem_sep SourceProvider sourceProvider concode_elem_sep Stage stage concode_elem_sep BindingTargetVisitor<Object,Object> GET_INSTANCE_VISITOR concode_elem_sep PrivateElementsImpl privateElements concode_elem_sep List<Element> ele...
Module function ( final Iterable < ? extends Element > arg0 ) { return new Module ( ) { public void configure ( Binder arg1 ) { for ( Element loc0 : arg0 ) { loc0 . applyTo ( arg1 ) ; } } } ; }
21,757
get value from char using normalized index concode_field_sep PlaceHolder placeHolder concode_field_sep void fArraySet concode_elem_sep byte bArrayGet concode_elem_sep void zArraySet concode_elem_sep double dArrayGet concode_elem_sep boolean isOrigFArray concode_elem_sep void dArraySet concode_elem_sep boolean isOrigLAr...
char function ( char [ ] arg0 , int arg1 ) { try { return arg0 [ arg1 ] ; } catch ( Throwable loc0 ) { return arg0 [ DefaultGroovyMethodsSupport . normaliseIndex ( arg1 , arg0 . length ) ] ; } }
21,758
tells whether this transaction has been used in a expectedvaluecheckingstore #mutate staticbuffer , list , list , storetransaction call . when this returns true , the transaction is no longer allowed in calls to expectedvaluecheckingstore #acquirelock staticbuffer , staticbuffer , staticbuffer , storetransaction . conc...
boolean function ( ) { return isMutationStarted ; }
21,759
checks whether or not the user has passed a `` help '' option and is asking for help . concode_field_sep boolean valid concode_elem_sep CLI cli concode_elem_sep List<Option> optionsSeenInCommandLine concode_elem_sep Map<Argument,List<String>> argumentValues concode_elem_sep List<String> allArgs concode_elem_sep Map<Opt...
boolean function ( ) { for ( Option loc0 : cli . getOptions ( ) ) { if ( loc0 . isHelp ( ) && isSeenInCommandLine ( loc0 ) ) { return true ; } } return false ; }
21,760
provide the coordinates for where to draw the legend for line x and if it is chain 1 or 2 concode_field_sep int DEFAULT_CHAR_SIZE concode_elem_sep int DEFAULT_RIGHT_SPACER concode_elem_sep int DEFAULT_LINE_LENGTH concode_elem_sep int DEFAULT_Y_STEP concode_elem_sep int DEFAULT_Y_SPACE concode_elem_sep int DEFAULT_LEGEN...
Point function ( int arg0 , int arg1 ) { int loc0 = DEFAULT_X_SPACE ; int loc1 = arg0 * DEFAULT_Y_STEP + DEFAULT_Y_SPACE ; loc1 += arg1 * DEFAULT_LINE_SEPARATION ; Point loc2 = new Point ( loc0 , loc1 ) ; return loc2 ; }
21,761
returns the complete url host + resource + encoded querystring parameters . concode_field_sep Map<String,String> headers concode_elem_sep String charset concode_elem_sep Verb verb concode_elem_sep ParameterList bodyParams concode_elem_sep String url concode_elem_sep byte[] bytePayload concode_elem_sep Long readTimeout ...
String function ( ) { return this . querystringParams . appendTo ( this . url ) ; }
21,762
returns the code of the character class the specified character belongs to . concode_field_sep char maxCharUsed concode_elem_sep Vector classes concode_elem_sep boolean DEBUG concode_elem_sep char maxChar concode_field_sep char getMaxCharCode concode_elem_sep int[] getNotClassCodes concode_elem_sep void setMaxCharCode ...
int function ( char arg0 ) { int loc0 = - 1 ; while ( true ) { IntCharSet loc1 = ( IntCharSet ) classes . elementAt ( ++ loc0 ) ; if ( loc1 . contains ( arg0 ) ) return loc0 ; } }
21,763
deprecated . please use appeventslogger instead . concode_field_sep String EVENT_NAME_LOG_CONVERSION_PIXEL concode_elem_sep String EVENT_PARAMETER_PIXEL_ID concode_elem_sep AppEventsLogger appEventsLogger concode_elem_sep String EVENT_PARAMETER_PIXEL_VALUE concode_field_sep InsightsLogger newLogger concode_elem_sep Ins...
void function ( BigDecimal arg0 , Currency arg1 , Bundle arg2 ) { appEventsLogger . logPurchase ( arg0 , arg1 , arg2 ) ; }
21,764
a list of the instances of literalexpression that compose the output components of this decisionrule . concode_field_sep int index concode_elem_sep List<CompiledExpression> outputEntry concode_elem_sep List<UnaryTest> inputEntry concode_field_sep int getIndex concode_elem_sep List<UnaryTest> getInputEntry
List < CompiledExpression > function ( ) { if ( outputEntry == null ) { outputEntry = new ArrayList < > ( ) ; } return this . outputEntry ; }
21,765
this method similar to #assume boolean , string , object , but the message should be formulated in terms of an error message instead of an assumption . example : instead of `` parameter ` xy ' is not null '' description of the assumption that was violated , one should write `` parameter ` xy ' is null '' description of...
void function ( final boolean arg0 , final String arg1 , Object ... arg2 ) { if ( ! arg0 ) { final String loc0 = Services . get ( IMsgBL . class ) . formatMessage ( arg1 , arg2 ) ; throw mkEx ( defaultExClazz , "srini_string" + loc0 ) ; } }
21,766
insert the exception into the given any . concode_field_sep String _id concode_field_sep NotEmpty extract concode_elem_sep NotEmpty read concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write
void function ( Any arg0 , NotEmpty arg1 ) { arg0 . insert_Streamable ( new NotEmptyHolder ( arg1 ) ) ; }
21,767
if set , then translation will not start until a start codon is encountered concode_field_sep RNAToAminoAcidTranslator rnaAminoAcidTranslator concode_elem_sep boolean decorateRna concode_elem_sep DNAToRNATranslator dnaRnaTranslator concode_elem_sep SequenceCreatorInterface<AminoAcidCompound> proteinSequenceCreator conc...
Builder function ( boolean arg0 ) { this . waitForStartCodon = arg0 ; return this ; }
21,768
performs a dynamic query on the database and returns a range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end to com.l...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 ) { return _dlFileRankLocalService . arg0 ( arg0 , arg1 , arg2 ) ; }
21,769
returns whether this two-dimensional size attribute is equivalent to the passed in object . to be equivalent , all of the following conditions must be true : object is not null . object is an instance of class size2dsyntax . this attribute 's x dimension is equal to object 's x dimension . this attribute 's y dimension...
boolean function ( Object arg0 ) { return ( arg0 != null && arg0 instanceof Size2DSyntax && this . x == ( ( Size2DSyntax ) arg0 ) . x && this . y == ( ( Size2DSyntax ) arg0 ) . y ) ; }
21,770
return a new unitpfbuilder with a case statement added . concode_field_sep PlaceHolder placeHolder concode_field_sep UnitPFBuilder<Object> matchEquals concode_elem_sep UnitPFBuilder<Object> matchEquals concode_elem_sep UnitPFBuilder<Object> match concode_elem_sep UnitPFBuilder<Object> match
UnitPFBuilder < Object > function ( FI . UnitApply < Object > arg0 ) { return UnitMatch . matchAny ( arg0 ) ; }
21,771
performs the depth first traversion of all elements concode_field_sep int linkCount concode_elem_sep Map myVisitedElements concode_elem_sep Iterator myElements concode_elem_sep boolean done concode_field_sep boolean isVisited concode_elem_sep void beginVisit concode_elem_sep Iterator getElementLinks concode_elem_sep vo...
void function ( ) { if ( done ) return ; while ( myElements . hasNext ( ) ) { Object loc0 = myElements . next ( ) ; if ( ! isVisited ( loc0 ) ) { visit ( loc0 , 1 ) ; } } }
21,772
creates a deep copy of the object concode_field_sep long serialVersionUID concode_elem_sep Coordinate[] coordinates concode_field_sep double getOrdinate concode_elem_sep Coordinate getCoordinate concode_elem_sep void getCoordinate concode_elem_sep double getX concode_elem_sep double getY concode_elem_sep int size conco...
Object function ( ) { Coordinate [ ] loc0 = new Coordinate [ size ( ) ] ; for ( int loc1 = 0 ; loc1 < coordinates . length ; loc1 ++ ) { loc0 [ loc1 ] = ( Coordinate ) coordinates [ loc1 ] . clone ( ) ; } return new DefaultCoordinateSequence ( loc0 ) ; }
21,773
removes a listener to the listeners collection . concode_field_sep MainThread mainThread concode_elem_sep TimeProvider timeProvider concode_elem_sep List<Trace> tracesToNotify concode_elem_sep List<Listener> listeners concode_elem_sep Logcat logcat concode_elem_sep long lastNotificationTime concode_elem_sep LynxConfig ...
void function ( Listener arg0 ) { listeners . remove ( arg0 ) ; }
21,774
an item enters the buildable phase when all signals are green or blue ! and it 's just waiting for the scheduler to allocate it to the available executor . an item can spend considerable time in this phase for example if all the executors are busy . concode_field_sep PlaceHolder placeHolder concode_field_sep ExtensionL...
void function ( BuildableItem arg0 ) { }
21,775
for javadoc of icustomcode2 and itestexecutionservices interfaces , select ` help contents ' in the help menu and select ` extending rational performance tester functionality ' - > ` extending test execution with custom code ' concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
String function ( ITestExecutionServices arg0 , String [ ] arg1 ) { return null ; }
21,776
set the new list of form elements . contains submit , first name , last name , city , state , and zip objects . concode_field_sep LinkedFormElement zip concode_elem_sep FormElement firstName concode_elem_sep FormElement lastName concode_elem_sep SubmitButton submit concode_elem_sep LinkedFormElement city concode_elem_s...
void function ( ArrayList arg0 ) { this . componentList = arg0 ; }
21,777
gets the value of the zeroasc property . concode_field_sep CTOnOff zeroDesc concode_elem_sep CTOnOff zeroWid concode_elem_sep Object parent concode_elem_sep CTOnOff zeroAsc concode_elem_sep CTOnOff show concode_elem_sep CTCtrlPr ctrlPr concode_elem_sep CTOnOff transp concode_field_sep void setZeroWid concode_elem_sep O...
CTOnOff function ( ) { return zeroAsc ; }
21,778
returns the name of the primary encoding format of this key . concode_field_sep int keyLen concode_elem_sep com.sun.j2me.crypto.RSAPublicKey key concode_elem_sep X509EncodedKeySpec keySpec concode_elem_sep byte[] RSA_OID concode_field_sep com.sun.j2me.crypto.RSAPublicKey getKey concode_elem_sep byte[] getEncoded concod...
String function ( ) { return keySpec . getFormat ( ) ; }
21,779
gets a hexadecimal stringbuffer representation of this object 's data , which is converted to hexadecimal form . concode_field_sep Reference reference concode_elem_sep char[] hexChar concode_elem_sep StringBuilder stringData concode_field_sep String getHexString concode_elem_sep StringBuilder stringToHex concode_elem_s...
StringBuilder function ( ) { return stringToHex ( stringData ) ; }
21,780
informs this edit action that it will no longer be used . some actions might use this information to release resources , for example open files . called by undomanager before thisaction is removed from the edit queue . concode_field_sep String UndoName concode_elem_sep boolean alive concode_elem_sep long serialVersionU...
void function ( ) { alive = false ; }
21,781
set the max concode_field_sep AttributeType[] types concode_elem_sep Vector min concode_elem_sep Vector max concode_elem_sep DataSetDescription labelDescription concode_field_sep void setLabelDescription concode_elem_sep AttributeType[] getAttributeTypes concode_elem_sep double getMax concode_elem_sep double getMax con...
void function ( Vector arg0 ) { max = arg0 ; }
21,782
test of turntablelampoff method , of class tablelamp . concode_field_sep PlaceHolder placeHolder concode_field_sep void testTurnTableLampOnPushButton concode_elem_sep void testTurnTableLampOffPushButton concode_elem_sep void testTurnTableLampOn
void function ( ) { System . out . println ( "srini_string" ) ; Button loc0 = new Button ( ) ; LightBulb loc1 = new LightBulb ( ) ; TableLamp loc2 = new TableLamp ( loc0 , loc1 ) ; loc2 . turnTableLampOff ( ) ; assertEquals ( loc2 . loc1 . isOn ( ) , false ) ; System . out . println ( "srini_string" ) ; }
21,783
general notification messages subclasses can override to be notified that the controller has completed a command . this is useful for turning off progress indicators that may have been left over from previous commands . concode_field_sep PlaceHolder placeHolder concode_field_sep void sendPendingMessagesStarted concode_...
void function ( boolean arg0 ) { }
21,784
get a integer concode_field_sep Vector MoreStuff concode_elem_sep Hashtable indexHashObject concode_elem_sep Hashtable indexHashAscii concode_elem_sep Object cpool[] concode_elem_sep byte types[] concode_field_sep void createIndexHash concode_elem_sep Vector getDependencies concode_elem_sep ClassDeclaration getDeclarat...
int function ( int arg0 ) { return ( arg0 == 0 ) ? 0 : ( ( Number ) cpool [ arg0 ] ) . intValue ( ) ; }
21,785
trigger aftercompletion callbacks on all currently registered synchronizations . concode_field_sep Log logger concode_elem_sep boolean aopAvailable concode_field_sep void triggerBeforeCommit concode_elem_sep boolean sameResourceFactory concode_elem_sep Object unwrapResourceIfNecessary concode_elem_sep void triggerBefor...
void function ( int arg0 ) { List < TransactionSynchronization > loc0 = TransactionSynchronizationManager . getSynchronizations ( ) ; invokeAfterCompletion ( loc0 , arg0 ) ; }
21,786
forcibly clean the context . concode_field_sep String mode concode_elem_sep String padding concode_elem_sep long context concode_elem_sep Log LOG concode_elem_sep String loadingFailureReason concode_elem_sep int DECRYPT_MODE concode_elem_sep String alg concode_elem_sep int ENCRYPT_MODE concode_field_sep void init conco...
void function ( ) { if ( context != 0 ) { clean ( context ) ; context = 0 ; } }
21,787
sets the log writer for this datasource object to the given java.io.printwriter object . the log writer is a character output stream to which all logging and tracing messages for this data source will be printed . this includes messages printed by the methods of this object , messages printed by methods of other object...
void function ( PrintWriter arg0 ) { this . logWriter = arg0 ; }
21,788
divides a vector by a scalar . concode_field_sep float w concode_elem_sep float x concode_elem_sep float y concode_elem_sep float z concode_field_sep Vector4f add concode_elem_sep float lengthSquared concode_elem_sep FloatBuffer getBuffer concode_elem_sep Vector4f lerp concode_elem_sep Vector4f negate concode_elem_sep ...
Vector4f function ( float arg0 ) { return scale ( 1f / arg0 ) ; }
21,789
called whenever the osgi framework starts our bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; }
21,790
returns a list of nlslines found in the compilation unit concode_field_sep PlaceHolder placeHolder concode_field_sep void parseTags concode_elem_sep int computeInsertOffset concode_elem_sep void setTagPositions concode_elem_sep NLSElement findPreviousTagged concode_elem_sep NLSElement findNextTagged
NLSLine [ ] function ( IJavaScriptUnit arg0 ) { return scan ( arg0 . getBuffer ( ) . getCharacters ( ) ) ; }
21,791
sets the value of the uuidref property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep MDFeatureCatalogueDescriptionType mdFeatureCatalogueDescription concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concod...
void function ( String arg0 ) { this . uuidref = arg0 ; }
21,792
main method concode_field_sep boolean BATCH concode_elem_sep Properties pProperties concode_elem_sep String EKW concode_elem_sep boolean EOF concode_elem_sep int ln concode_elem_sep Statement sStatement concode_elem_sep Connection cConn concode_field_sep void printHelp concode_elem_sep void trace concode_elem_sep Strin...
void function ( String arg0 [ ] ) { for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { String loc1 = arg0 [ loc0 ] ; if ( loc1 . equals ( "srini_string" ) ) { printHelp ( ) ; System . exit ( 0 ) ; } } ScriptTool loc2 = new ScriptTool ( ) ; loc2 . execute ( arg0 ) ; System . exit ( 0 ) ; }
21,793
get manifest concode_field_sep File m_file concode_elem_sep ZipFile m_zipFile concode_field_sep void dumpManifest concode_elem_sep String[] getContent concode_elem_sep String findInPath concode_elem_sep void main concode_elem_sep boolean isJar concode_elem_sep JarFile getJar concode_elem_sep JarFile getJar concode_elem...
Manifest function ( String arg0 ) { if ( arg0 == null ) return null ; JarFile loc1 = getJar ( arg0 ) ; if ( loc1 == null ) return null ; try { return loc1 . getManifest ( ) ; } catch ( IOException loc0 ) { System . err . println ( "srini_string" + loc0 ) ; } return null ; }
21,794
gets the return type . concode_field_sep StdTypeList parameterTypes concode_elem_sep String descriptor concode_elem_sep StdTypeList parameterFrameTypes concode_elem_sep Type returnType concode_elem_sep HashMap<String,Prototype> internTable concode_field_sep String getDescriptor concode_elem_sep StdTypeList getParameter...
Type function ( ) { return returnType ; }
21,795
gets the objectsubtypeallowedvalidation attribute . concode_field_sep AccountingLine accountingLineForValidation concode_elem_sep boolean quitOnFail concode_elem_sep Validation subFundGroupAllowedValidation concode_elem_sep String accountingDocumentParameterPropertyName concode_elem_sep Validation objectCodeAllowedVali...
Validation function ( ) { return objectSubTypeAllowedValidation ; }
21,796
get the number of vectors in the sample . concode_field_sep long serialVersionUID concode_elem_sep boolean isBiasCorrected concode_elem_sep double[] sums concode_elem_sep long n concode_elem_sep double[] productsSums concode_field_sep int hashCode concode_elem_sep RealMatrix getResult concode_elem_sep boolean equals co...
long function ( ) { return n ; }
21,797
sets new type . concode_field_sep String expression concode_elem_sep String comments concode_elem_sep Integer triggerid concode_elem_sep List<FunctionBean> function concode_elem_sep String description concode_elem_sep Integer priority concode_elem_sep Integer templateid concode_elem_sep Integer type concode_elem_sep in...
void function ( Integer arg0 ) { this . type = arg0 ; }
21,798
setter method for subsubcategoryid concode_field_sep int subSubCatId concode_elem_sep List subSubCategoryDetails concode_elem_sep ArrayList displayDetails concode_elem_sep int subCatId concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep String subCategoryId concode_elem_sep Strin...
void function ( String arg0 ) { this . subSubCategoryId = arg0 ; }
21,799
retrieves the canonical path for the given path , or the absolute path if attemting to retrieve the canonical path fails . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep FileUtil fileUtil concode_elem_sep FileDescriptor outDescriptor concode_elem_sep Random random concode_elem_sep boolean fsIsIgn...
String function ( String arg0 ) { try { return canonicalPath ( arg0 ) ; } catch ( Exception loc0 ) { return absolutePath ( arg0 ) ; } }