idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
23,400
gets the value of the udfs property . concode_field_sep Address billToAddress concode_elem_sep Address shipToAddress concode_elem_sep XMLGregorianCalendar docPostingDate concode_elem_sep String comments concode_elem_sep XMLGregorianCalendar docDueDate concode_elem_sep String customerRef concode_elem_sep String nbsGUID ...
ArrayOfUDF function ( ) { return udFs ; }
23,401
gets the value of the event 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 event property . for example , to add a new item , do as fol...
List < Events . Event > function ( ) { if ( event == null ) { event = new ArrayList < Events . Event > ( ) ; } return this . event ; }
23,402
initialize this loginmodule . ignores the callback handler , since the code establishing the logincontext likely wo n't provide one that understands spring security . also ignores the sharedstate and options parameters , since none are recognized . concode_field_sep boolean ignoreMissingAuthentication concode_elem_sep ...
void function ( Subject arg0 , CallbackHandler arg1 , Map arg2 , Map arg3 ) { this . subject = arg0 ; if ( arg3 != null ) { ignoreMissingAuthentication = "srini_string" . equals ( arg3 . get ( "srini_string" ) ) ; } }
23,403
gets the value of the producttype property . concode_field_sep TerminationFee terminationFee concode_elem_sep Deposit deposit concode_elem_sep String etfContractType concode_elem_sep long serialVersionUID concode_elem_sep String msisdn concode_elem_sep ProductTypeEnum productType concode_field_sep String getEtfContract...
ProductTypeEnum function ( ) { return productType ; }
23,404
returns the number of web d a v propses . concode_field_sep WebDAVPropsLocalService _webDAVPropsLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.model.WebDAVProps getWebDAVProps concode_elem_sep com.liferay.portal.model.WebDAVProps getWebDAVProps concode_elem_...
int function ( ) { return _webDAVPropsLocalService . getWebDAVPropsesCount ( ) ; }
23,405
time that this kernel was started , as seconds since the epoch . concode_field_sep ConfigurationService configurationService concode_elem_sep boolean running concode_elem_sep ServiceManagerSystem serviceManagerSystem concode_elem_sep long loadTime concode_elem_sep Date lastLoadDate concode_elem_sep Logger log concode_e...
long function ( ) { return loadTime ; }
23,406
getter method concode_field_sep Logger LOGGER concode_elem_sep String firstName concode_elem_sep String lastName concode_elem_sep String loginTime concode_elem_sep StudySpace studySpace concode_elem_sep String id concode_elem_sep String salutation concode_elem_sep String userName concode_elem_sep String interviewSessio...
String function ( ) { return this . loginTime ; }
23,407
helper for success callbacks that just returns the status.ok 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 g...
void function ( int arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; }
23,408
find out how much work needs to be done . concode_field_sep File file concode_elem_sep ResourceBundle messageBundle concode_elem_sep int lengthOfTask concode_elem_sep String dialogMessage concode_elem_sep Document document concode_elem_sep Logger logger concode_elem_sep boolean done concode_elem_sep int current concode...
int function ( ) { return lengthOfTask ; }
23,409
returns the string representation generated by the delegate 's tostring method . concode_field_sep PlaceHolder placeHolder concode_field_sep Object delegate
String function ( ) { return delegate ( ) . toString ( ) ; }
23,410
returns the bounds of the area painted by this shape painter concode_field_sep Shape shape concode_elem_sep Paint paint concode_elem_sep Shape strokedShape concode_elem_sep Stroke stroke concode_field_sep Stroke getStroke concode_elem_sep Shape getPaintedArea concode_elem_sep Rectangle2D getSensitiveBounds2D concode_el...
Rectangle2D function ( ) { Shape loc0 = getPaintedArea ( ) ; if ( loc0 == null ) return null ; return loc0 . getBounds2D ( ) ; }
23,411
gets the full size of the box including header and content . concode_field_sep Container parent concode_elem_sep boolean isParsed concode_elem_sep long offset concode_elem_sep long contentStartPosition concode_elem_sep ByteBuffer deadBytes concode_elem_sep boolean isRead concode_elem_sep long memMapSize concode_elem_se...
long function ( ) { long loc0 = ( isRead ? ( isParsed ? getContentSize ( ) : ( content != null ? content . limit ( ) : 0 ) ) : memMapSize ) ; loc0 += ( 8 + ( loc0 >= ( ( 1L << 32 ) - 8 ) ? 8 : 0 ) + ( UserBox . TYPE . equals ( getType ( ) ) ? 16 : 0 ) ) ; loc0 += ( deadBytes == null ? 0 : deadBytes . limit ( ) ) ; retu...
23,412
returns the reply date of this membership request . concode_field_sep MembershipRequest _membershipRequest concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getReplierUserUuid concode_elem...
Date function ( ) { return _membershipRequest . getReplyDate ( ) ; }
23,413
tests basekeyvaluepartitionwriter #bytecount works . concode_field_sep byte[] VALUE1 concode_elem_sep byte[] KEY1 concode_elem_sep ExpectedException mThrown concode_elem_sep ByteArrayOutStream mOutStream concode_elem_sep BaseKeyValuePartitionWriter mWriter concode_elem_sep byte[] VALUE2 concode_elem_sep byte[] KEY2 con...
void function ( ) { mWriter . put ( KEY1 , VALUE1 ) ; Assert . assertTrue ( mWriter . byteCount ( ) > 0 ) ; }
23,414
copy all of the credentials from one credential object into another . existing secrets and tokens are not overwritten . concode_field_sep Log LOG concode_elem_sep Map<Text,byte[]> secretKeysMap concode_elem_sep Map<Text,Token<? extends TokenIdentifier>> tokenMap concode_elem_sep byte[] TOKEN_STORAGE_MAGIC concode_elem_...
void function ( Credentials arg0 ) { addAll ( arg0 , false ) ; }
23,415
indicates whether the specified event is a close element that matches the name and uri of the current open element . concode_field_sep OpenElementEvent[] openElements concode_elem_sep int size concode_elem_sep char[] openChanges concode_field_sep boolean okInsert concode_elem_sep boolean isEmpty concode_elem_sep void f...
boolean function ( DiffXEvent arg0 ) { if ( ! ( arg0 instanceof CloseElementEvent ) ) return true ; if ( isEmpty ( ) ) return false ; return ( ( CloseElementEvent ) arg0 ) . match ( current ( ) ) && this . openChanges [ this . size - 1 ] == '-' ; }
23,416
method , to be called in onpostcreate , that sets up this activity as a sub-activity in the app . concode_field_sep Activity mActivity concode_field_sep View addActionButtonCompatFromMenuItem concode_elem_sep boolean onKeyDown concode_elem_sep ActivityHelper createInstance concode_elem_sep void goHome concode_elem_sep ...
void function ( ) { }
23,417
union unites two disjoint sets into a single set . a union-by-size heuristic is used to choose the new root . this method will corrupt the data structure if root1 and root2 are not roots of their respective sets , or if they 're identical . concode_field_sep int[] array concode_field_sep int find concode_elem_sep void ...
void function ( int arg0 , int arg1 ) { if ( array [ arg1 ] < array [ arg0 ] ) { array [ arg1 ] += array [ arg0 ] ; array [ arg0 ] = arg1 ; } else { array [ arg0 ] += array [ arg1 ] ; array [ arg1 ] = arg0 ; } }
23,418
getter for the field targetsas . concode_field_sep int numTargeted concode_elem_sep ArrayList<Card> targetCards concode_elem_sep ArrayList<Player> targetPlayers concode_elem_sep ArrayList<SpellAbility> targetSAs concode_field_sep ArrayList<Object> getTargets concode_elem_sep int getNumTargeted concode_elem_sep boolean ...
ArrayList < SpellAbility > function ( ) { return targetSAs ; }
23,419
tests the arrayblockingqueue , which should pass without error . concode_field_sep int queueSize concode_field_sep void setUp concode_elem_sep String runQueueTest
void function ( ) { QueueAdapter < Integer > loc0 = new QueueAdapter < Integer > ( new ArrayBlockingQueue < Integer > ( queueSize ) ) ; String loc1 = runQueueTest ( "srini_string" , loc0 ) ; assertNull ( "srini_string" + loc1 , loc1 ) ; }
23,420
sets the password of this password tracker . concode_field_sep PasswordTracker _passwordTracker concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEsc...
void function ( java . lang . String arg0 ) { _passwordTracker . setPassword ( arg0 ) ; }
23,421
propertyselector builder concode_field_sep boolean orMode concode_elem_sep Boolean notIncludingNull concode_elem_sep SearchMode searchMode concode_elem_sep List<Attribute<?,?>> attributes concode_elem_sep long serialVersionUID concode_elem_sep List<F> selected concode_field_sep PropertySelector<E,F> add concode_elem_se...
PropertySelector < E , F > function ( Attribute < ? , ? > ... arg0 ) { return new PropertySelector < E , F > ( checkNotNull ( arg0 ) ) ; }
23,422
used to create , setup , and start an intervalrenderer from the passed rendermanager this is used in conjunction with faces-config.xml to allow the same single render manager to be set in all timezonebeans concode_field_sep DateFormat selectedFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep DateFo...
void function ( RenderManager arg0 ) { clock = arg0 . getIntervalRenderer ( "srini_string" ) ; clock . setInterval ( renderInterval ) ; clock . add ( this ) ; clock . requestRender ( ) ; }
23,423
narrow the given object to the dynenum . for the objects that are always local , this operation does not differ from the ordinary #narrow classcastexception will be thrown if narrowing somethingdifferent . see omg issue 4158 . concode_field_sep PlaceHolder placeHolder concode_field_sep DynEnum extract concode_elem_sep ...
DynEnum function ( org . omg . CORBA . Object arg0 ) { return narrow ( arg0 ) ; }
23,424
sets the web application context to be used for looking up extensions . this is the context that is used for methods which do n't supply their own context . concode_field_sep Boolean active concode_elem_sep Boolean isSpringContext concode_elem_sep ApplicationContext context concode_field_sep void singleton concode_elem...
void function ( ApplicationContext arg0 ) { GeoServerExtensions . isSpringContext = false ; GeoServerExtensions . arg0 = arg0 ; clear ( ) ; }
23,425
add appender to the root category . concode_field_sep PlaceHolder placeHolder concode_field_sep void resetConfiguration
void function ( Appender arg0 ) { Logger loc0 = Logger . getRootLogger ( ) ; loc0 . addAppender ( arg0 ) ; }
23,426
get hit count concode_field_sep CacheFullRemoveType<V> cacheFullRemoveType concode_elem_sep AtomicLong hitCount concode_elem_sep Map<K,CacheObject<V>> cache concode_elem_sep AtomicLong missCount concode_elem_sep int maxSize concode_elem_sep long validTime concode_elem_sep long serialVersionUID concode_elem_sep int DEFA...
long function ( ) { return hitCount . get ( ) ; }
23,427
returns the authentication scheme , like basic . concode_field_sep String scheme concode_elem_sep String headerValue concode_elem_sep String realm concode_field_sep Credential authenticate concode_elem_sep int hashCode concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equals concode...
String function ( ) { return scheme ; }
23,428
mediators which does n't have a group does n't show up in the add menu , generally these are inner parts concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isAddChildEnabled concode_elem_sep boolean isMovingAllowed concode_elem_sep boolean isAddSiblingEnabled concode_elem_sep boolean isEditable concode...
String function ( ) { return null ; }
23,429
sets the value of the content property . concode_field_sep String content concode_field_sep String getContent
void function ( final String arg0 ) { this . content = arg0 ; }
23,430
expected '' 0 '' version of ws-addressing but found '' 1 '' concode_field_sep Localizer localizer concode_elem_sep LocalizableMessageFactory messageFactory concode_field_sep Localizable localizableADDRESSING_NOT_ENABLED concode_elem_sep String NULL_ACTION concode_elem_sep String VALIDATION_SERVER_NULL_ACTION concode_el...
String function ( Object arg0 , Object arg1 ) { return localizer . localize ( localizableWRONG_ADDRESSING_VERSION ( arg0 , arg1 ) ) ; }
23,431
this method was generated by mybatis generator . this method sets the value of the database column user_info . user_icon concode_field_sep String userPass concode_elem_sep String userTele concode_elem_sep String userName concode_elem_sep String userIcon concode_elem_sep Integer userId concode_elem_sep Integer userAge c...
void function ( String arg0 ) { this . userIcon = arg0 == null ? null : arg0 . trim ( ) ; }
23,432
gets the securityhandler associated with this security manager . 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 isAuthorized conc...
SecurityHandler function ( ) { return securityHandler ; }
23,433
return the version of yobi installed currently . concode_field_sep String DEFAULT_SCHEME concode_field_sep String getEmailFromSmtp concode_elem_sep String getHostport concode_elem_sep String getHostport concode_elem_sep String getScheme concode_elem_sep String getScheme concode_elem_sep String getEmailFromImap concode_...
String function ( ) { return yobi . BuildInfo . version ( ) ; }
23,434
setoutagedao concode_field_sep ViewDisplayDao m_viewDisplayDao concode_elem_sep OutageDao m_outageDao concode_elem_sep CategoryConfigDao m_categoryConfigDao concode_field_sep Collection<StatusSection> getCategoriesStatus concode_elem_sep List<String> getServicesForCategory concode_elem_sep List<Section> getSectionsForV...
void function ( OutageDao arg0 ) { m_outageDao = arg0 ; }
23,435
adds a localeprioritylist concode_field_sep double D0 concode_elem_sep Map<ULocale,Double> languageToWeight concode_elem_sep Comparator<Double> myDescendingDouble concode_elem_sep Pattern languageSplitter concode_elem_sep Double D1 concode_elem_sep Pattern weightSplitter concode_elem_sep Map<ULocale,Double> languagesAn...
Builder function ( final LocalePriorityList arg0 ) { for ( final ULocale loc0 : arg0 . languagesAndWeights . keySet ( ) ) { add ( loc0 , arg0 . languagesAndWeights . get ( loc0 ) ) ; } return this ; }
23,436
getter for filters . concode_field_sep String fieldName concode_elem_sep Field field concode_elem_sep Logger LOG concode_elem_sep List<Filter> filters concode_elem_sep Filter inequalityFilter concode_elem_sep FieldType fieldType concode_elem_sep String value concode_elem_sep String queryOperator concode_elem_sep Operat...
List < Filter > function ( ) { return ImmutableList . copyOf ( filters ) ; }
23,437
a poor-man 's clone for serializable but not cloneable objects : serializes an object to the pipe , then deserializes it . concode_field_sep DataOutputStream output concode_elem_sep DataInputStream input concode_elem_sep int size concode_elem_sep int pull concode_elem_sep byte[] buffer concode_field_sep int pull concod...
Object function ( Serializable arg0 ) { DataPipe loc0 = new DataPipe ( ) ; ObjectOutputStream loc1 = new ObjectOutputStream ( loc0 . output ) ; ObjectInputStream loc2 = new ObjectInputStream ( loc0 . input ) ; loc1 . writeObject ( arg0 ) ; return loc2 . readObject ( ) ; }
23,438
deletes all urlset objects from the database . should be used for development and testing , not production . concode_field_sep Jedis jedis concode_field_sep void add concode_elem_sep boolean isIndexed concode_elem_sep void deleteAllKeys concode_elem_sep Map<String,Integer> getCounts concode_elem_sep Set<String> urlSetK...
void function ( ) { Set < String > loc0 = urlSetKeys ( ) ; Transaction loc1 = jedis . multi ( ) ; for ( String loc2 : loc0 ) { loc1 . del ( loc2 ) ; } loc1 . exec ( ) ; }
23,439
reverses the order of the characters in each word in an array of characters . a word is defined as a subsequence of array delimited by the delimiter character . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isPalindrome concode_elem_sep void reverseCharArray concode_elem_sep void reverseCharArray
void function ( char [ ] arg0 , char arg1 ) { int loc0 = 0 ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { if ( arg0 [ loc1 ] == arg1 ) { reverseCharArray ( arg0 , loc0 , loc1 ) ; loc0 = ++ loc1 ; } } reverseCharArray ( arg0 , loc0 , arg0 . length ) ; }
23,440
gets the value of the uri property . concode_field_sep String start concode_elem_sep String end concode_elem_sep String endopen concode_elem_sep XMLSpellsContent spells concode_elem_sep NodeShapeType value concode_elem_sep String uri concode_elem_sep String startopen concode_field_sep String getEndopen concode_elem_sep...
String function ( ) { return uri ; }
23,441
this method will reduce the file count for the directory represented by path . the root directory of this local cache directory manager is represented by an empty string . concode_field_sep int perDirectoryFileLimit concode_elem_sep int totalSubDirectories concode_elem_sep String relativePath concode_elem_sep HashMap<S...
void function ( String arg0 ) { arg0 = arg0 == null ? "srini_string" : arg0 . trim ( ) ; Directory loc0 = knownDirectories . get ( arg0 ) ; int loc1 = loc0 . getCount ( ) ; if ( loc0 . decrementAndGetCount ( ) < perDirectoryFileLimit && loc1 >= perDirectoryFileLimit ) { nonFullDirectories . add ( loc0 ) ; } }
23,442
sets the group id of this repository entry . concode_field_sep RepositoryEntry _repositoryEntry concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedMod...
void function ( long arg0 ) { _repositoryEntry . setGroupId ( arg0 ) ; }
23,443
removes all unread notifications . concode_field_sep Collection<UINotificationListener> notificationListeners concode_elem_sep Collection<UINotificationGroup> notificationGroups concode_field_sep void addNotification concode_elem_sep void addNotificationListener concode_elem_sep Iterator<UINotification> getUnreadNotifi...
void function ( UINotificationGroup arg0 ) { arg0 . removeAllNotifications ( ) ; }
23,444
gets the value of the http property . concode_field_sep ExtensionOnlyType mobileNetworkNoEncryption concode_elem_sep ExtensionOnlyType ipSec concode_elem_sep ExtensionOnlyType adsl concode_elem_sep List<ExtensionType> extension concode_elem_sep ExtensionOnlyType wtls concode_elem_sep ExtensionOnlyType isdn concode_elem...
ExtensionOnlyType function ( ) { return http ; }
23,445
set the url to the xml with the latest version info . concode_field_sep GitHub gitHub concode_elem_sep UpdateFrom updateFrom concode_elem_sep UpdateListener updateListener concode_elem_sep Context context concode_elem_sep AppUpdaterListener appUpdaterListener concode_elem_sep UtilsAsync.LatestAppVersion latestAppVersio...
AppUpdaterUtils function ( @ NonNull String arg0 ) { this . xmlUrl = arg0 ; return this ; }
23,446
main decision check . in this class , does nothing . derived class could override this method for instance by calling an external decision procedure , use a library to decide validity in a given region , etc. . concode_field_sep boolean result concode_elem_sep Function constraint concode_elem_sep HashMap<DecisionEntryK...
boolean function ( Region arg0 , Function arg1 , boolean arg2 ) { return true ; }
23,447
update the gem system after installing rubygems . concode_field_sep boolean updateSystem concode_elem_sep Optional<String> updateSystemVersion concode_elem_sep String RUBYGEMS_URI_TEMPLATE concode_elem_sep Optional<String> updateSystemVersion concode_elem_sep boolean updateSystem concode_elem_sep Optional<String> versi...
Builder function ( boolean arg0 ) { this . updateSystem = arg0 ; this . updateSystemVersion = Optional . absent ( ) ; return this ; }
23,448
ensures that an object reference passed as a parameter to the calling method is not null . concode_field_sep PlaceHolder placeHolder concode_field_sep void checkState
T function ( T arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } return arg0 ; }
23,449
add a problem concode_field_sep List<Problem> problems concode_elem_sep boolean hasFatal concode_field_sep void add concode_elem_sep void add concode_elem_sep void add concode_elem_sep Iterator<Problem> iterator concode_elem_sep Problems addAll concode_elem_sep boolean hasFatal concode_elem_sep void throwIfFatalPresent...
Problems function ( Problem arg0 ) { add ( arg0 ) ; return this ; }
23,450
process a single chunk concode_field_sep TProcessor processor_ concode_elem_sep TProtocolFactory inputProtocolFactory_ concode_elem_sep TFileTransport inputTransport_ concode_elem_sep TProtocolFactory outputProtocolFactory_ concode_elem_sep TTransport outputTransport_ concode_field_sep void processUntil
void function ( int arg0 ) { processChunk ( arg0 , arg0 ) ; }
23,451
return a hex-encoded string value as a byte array . concode_field_sep JSONObject object concode_field_sep JSONArray parseJSONArray concode_elem_sep JSONArray parseJSONArray concode_elem_sep org.json.simple.JSONArray getArray concode_elem_sep void put concode_elem_sep boolean remove concode_elem_sep void throwIfFieldsMi...
byte [ ] function ( String arg0 ) { String loc0 = ( String ) this . object . get ( arg0 ) ; if ( loc0 == null ) { return null ; } return Utils . hex2Byte ( loc0 ) ; }
23,452
like getdata , but does not lazily create the bundle . a null is returned if the bundle does not already exist . see #getdata for further information on this . concode_field_sep Message next concode_elem_sep int sPoolSize concode_elem_sep Bundle data concode_elem_sep int FLAG_IN_USE concode_elem_sep int flags concode_e...
Bundle function ( ) { return data ; }
23,453
action listener for the changes the selected panel stack in the jsp version of component showcase . concode_field_sep String selectedPanel concode_field_sep String getSelectedPanel concode_elem_sep void setSelectedPanel
void function ( ActionEvent arg0 ) { FacesContext loc0 = FacesContext . getCurrentInstance ( ) ; Map loc1 = loc0 . getExternalContext ( ) . getRequestParameterMap ( ) ; selectedPanel = ( String ) loc1 . get ( "srini_string" ) ; }
23,454
returns the node referenced by the given fragment identifier . this is called when the whole uri just contains a fragment identifier and there is no xml base uri in effect . concode_field_sep DocumentLoader documentLoader concode_elem_sep String documentURI concode_elem_sep SVGOMDocument document concode_field_sep Elem...
Node function ( String arg0 , Element arg1 ) { return arg1 . getOwnerDocument ( ) . getElementById ( arg0 ) ; }
23,455
checks whether checkpointing is forced , despite currently non-checkpointable iteration feedback . concode_field_sep CheckpointingMode DEFAULT_MODE concode_elem_sep long DEFAULT_TIMEOUT concode_elem_sep CheckpointingMode checkpointingMode concode_elem_sep long checkpointTimeout concode_elem_sep long minPauseBetweenChec...
boolean function ( ) { return forceCheckpointing ; }
23,456
removes all components from this vector and sets its size to zero . concode_field_sep int m_CapacityIncrement concode_elem_sep long serialVersionUID concode_elem_sep int m_Size concode_elem_sep int m_SpecialElement concode_elem_sep int m_Counter concode_elem_sep FastVector m_Vector concode_elem_sep Object[] m_Objects c...
void function ( ) { m_Objects = new Object [ m_Objects . length ] ; m_Size = 0 ; }
23,457
sets the value of the widgetaction property . concode_field_sep Layout layout concode_elem_sep Widgetaction widgetaction concode_elem_sep Label label concode_elem_sep Widgetinfo widgetinfo concode_field_sep Layout getLayout concode_elem_sep Widgetinfo getWidgetinfo concode_elem_sep Label getLabel concode_elem_sep Widge...
void function ( Widgetaction arg0 ) { this . widgetaction = arg0 ; }
23,458
number of bits concode_field_sep int bitLength concode_elem_sep int BYTE_INDEX_MASK concode_elem_sep int offset concode_elem_sep int byteLength concode_elem_sep int BYTE_POSITION_MASK concode_elem_sep MemorySegment memorySegment concode_field_sep void setMemorySegment concode_elem_sep void set concode_elem_sep boolean ...
int function ( ) { return bitLength ; }
23,459
gets the name of the input channel . concode_field_sep boolean mDisposeAfterWriteToParcel concode_elem_sep int mPtr concode_elem_sep String TAG concode_elem_sep boolean DEBUG concode_elem_sep Creator<InputChannel> CREATOR concode_field_sep void transferToBinderOutParameter concode_elem_sep void nativeWriteToParcel conc...
String function ( ) { String loc0 = nativeGetName ( ) ; return loc0 != null ? loc0 : "srini_string" ; }
23,460
gets the value of the statusmessage property . concode_field_sep StatusDetailType statusDetail concode_elem_sep String statusMessage concode_elem_sep StatusCodeType statusCode concode_field_sep void setStatusDetail concode_elem_sep void setStatusMessage concode_elem_sep StatusCodeType getStatusCode concode_elem_sep voi...
String function ( ) { return statusMessage ; }
23,461
check if siren is turned on or not concode_field_sep boolean on concode_elem_sep String room concode_field_sep void setRoom concode_elem_sep String getRoom concode_elem_sep void setOn
boolean function ( ) { return on ; }
23,462
clears all bits sets to false . concode_field_sep int width concode_elem_sep int[] bits concode_elem_sep int height concode_elem_sep int rowSize concode_field_sep void setRegion concode_elem_sep int getHeight concode_elem_sep void set concode_elem_sep int[] getTopLeftOnBit concode_elem_sep int hashCode concode_elem_sep...
void function ( ) { int loc0 = bits . length ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { bits [ loc1 ] = 0 ; } }
23,463
make an instance managed and persistent . concode_field_sep Provider<EntityManager> entityManagerProvider concode_elem_sep DaoUtils daoUtils concode_field_sep ViewInstanceDataEntity mergeData concode_elem_sep ViewInstanceEntity findByResourceId concode_elem_sep ViewInstanceEntity merge concode_elem_sep ViewInstanceEnti...
void function ( ViewInstanceEntity arg0 ) { entityManagerProvider . get ( ) . persist ( arg0 ) ; }
23,464
moves the iterator to the next segment of the path forwards along the primary direction of traversal as long as there are more points in that direction . concode_field_sep CubicCurve2D cubic concode_elem_sep int index concode_elem_sep GAffineTransform affine concode_field_sep int getWindingRule concode_elem_sep int cur...
void function ( ) { index ++ ; }
23,465
waits up to 10 minutes for a specified aws dynamodb table to move into the active state . if the table does n't transition to the active state , then an amazonclientexception is thrown . concode_field_sep int DEFAULT_WAIT_TIMEOUT concode_elem_sep int DEFAULT_WAIT_INTERVAL concode_field_sep boolean doesTableExist concod...
void function ( AmazonDynamoDB arg0 , String arg1 ) { awaitTableToBecomeActive ( arg0 , arg1 , DEFAULT_WAIT_TIMEOUT , DEFAULT_WAIT_INTERVAL ) ; }
23,466
returns the contents of this principal in the form realm : username concode_field_sep String realm concode_elem_sep String username concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String getRealm concode_elem_sep String toString concode_elem_sep String getUsername
String function ( ) { return username ; }
23,467
checks if any of the views currently shown are clickable concode_field_sep int TIMEOUT concode_elem_sep ActivityUtils activityUtils concode_elem_sep Searcher searcher concode_elem_sep Sleeper sleeper concode_elem_sep MatchCounter matchCounter concode_elem_sep ViewFetcher viewFetcher concode_elem_sep int MINITIMEOUT con...
boolean function ( ) { ArrayList < View > loc0 = new ArrayList < View > ( ) ; loc0 . addAll ( viewFetcher . getAllViews ( true ) ) ; for ( View loc1 : loc0 ) { if ( loc1 . getTouchables ( ) . size ( ) > 0 ) return true ; } return false ; }
23,468
measuretype concode_field_sep PlaceHolder placeHolder concode_field_sep Person readPersonInfo concode_elem_sep Reminder readPersonReminder concode_elem_sep Reminder editPersonReminder concode_elem_sep int sendPersonEmail concode_elem_sep Goal readPersonGoal concode_elem_sep MeasureHistory registerPersonMeasurement conc...
List < String > function ( ) { PeopleService loc0 = new PeopleService ( ) ; People loc1 = loc0 . getPeopleImplPort ( ) ; return loc1 . readMeasureTypes ( ) ; }
23,469
create an instance of includedfeatures concode_field_sep PlaceHolder placeHolder concode_field_sep ActivationAgreementRequest.Subscribers createActivationAgreementRequestSubscribers concode_elem_sep ServiceType.SelectedFeatures createServiceTypeSelectedFeatures concode_elem_sep ExistingLineType createExistingLineType c...
IncludedFeatures function ( ) { return new IncludedFeatures ( ) ; }
23,470
sets the value of the code property . concode_field_sep String code concode_elem_sep Boolean visible concode_elem_sep Roles roles concode_elem_sep Boolean documentation concode_elem_sep Groups groups concode_elem_sep Langs langs concode_elem_sep long serialVersionUID concode_elem_sep String label concode_elem_sep Integ...
void function ( String arg0 ) { this . code = arg0 ; }
23,471
just copy a file concode_field_sep char ILLEGAL_FILENAME_CHARS_REPLACE concode_elem_sep char[] ILLEGAL_FILENAME_CHARS concode_field_sep void zip concode_elem_sep String sanitizeFileName concode_elem_sep String sanitizeFileName concode_elem_sep void zipDirectory concode_elem_sep void unzip concode_elem_sep boolean delet...
void function ( File arg0 , File arg1 ) { if ( arg0 . getAbsolutePath ( ) . equals ( arg1 . getAbsolutePath ( ) ) ) { return ; } try { FileUtils . copyFile ( arg0 , arg1 ) ; } catch ( Exception loc0 ) { throw new RuntimeException ( loc0 ) ; } }
23,472
sets the value of the title property . concode_field_sep JAXBElement<? extends BaseUnitType> baseUnit concode_elem_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String typ...
void function ( String arg0 ) { this . title = arg0 ; }
23,473
sets the value of the bidderid property . concode_field_sep long itemId concode_elem_sep long bidderId concode_elem_sep double bidPrice concode_field_sep long getItemId concode_elem_sep long getBidderId concode_elem_sep void setBidPrice concode_elem_sep void setItemId concode_elem_sep double getBidPrice
void function ( long arg0 ) { this . bidderId = arg0 ; }
23,474
executes the request . this method is called from the webview thread . to do a non-trivial amount of work , use : cordova.getthreadpool . execute runnable ; to run on the ui thread , use : cordova.getactivity . runonuithread runnable ; concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface c...
boolean function ( String arg0 , String arg1 , CallbackContext arg2 ) { JSONArray loc0 = new JSONArray ( arg1 ) ; return execute ( arg0 , loc0 , arg2 ) ; }
23,475
returns the path location in which the pentaho metadata folder will be created concode_field_sep String METADATA_FOLDER_NAME concode_elem_sep String FILE_EXTENSION concode_field_sep String getMetadataFolderName concode_elem_sep String getMetadataFolderPath concode_elem_sep String getFileExtension
String function ( ) { return ClientRepositoryPaths . getEtcFolderPath ( ) ; }
23,476
mark the level of result determinism imposed by the statement , which can save us from a difficult determination based on the plan graph . concode_field_sep AbstractPlanNode rootPlanGraph concode_elem_sep AbstractPlanNode subPlanGraph concode_elem_sep int m_generatedParameterCount concode_elem_sep StatementPartitioning...
void function ( boolean arg0 , boolean arg1 , String arg2 ) { m_statementHasLimitOrOffset = arg0 ; m_statementIsOrderDeterministic = arg1 ; if ( arg2 != null ) { m_contentDeterminismDetail = arg2 ; } }
23,477
insert a version of an object with optional replacement . concode_field_sep SetContextDomain<Version<Versioned>> domain concode_elem_sep long serialVersionUID concode_field_sep void clear concode_elem_sep Versioned best concode_elem_sep Versioned best concode_elem_sep Versioned best concode_elem_sep Versioned best conc...
boolean function ( Version < Versioned > arg0 , boolean arg1 ) { return domain . insert ( arg0 , arg1 ) ; }
23,478
assert that we 've received the message and resets the mock endpoint concode_field_sep MockEndpoint mMockEndpoint concode_field_sep void resetMockEndpoint concode_elem_sep T getBody concode_elem_sep MockEndpoint getMockEndpoint concode_elem_sep Message getMessage concode_elem_sep void setMockEndpoint concode_elem_sep E...
void function ( File arg0 ) { Document loc0 = XmlFixture . toDoc ( arg0 ) ; assertMessageReceived ( loc0 ) ; }
23,479
gets the value of the eventtype property . concode_field_sep String imei concode_elem_sep String subscriberId concode_elem_sep long serialVersionUID concode_elem_sep EventType eventType concode_elem_sep String imsi concode_elem_sep String msisdn concode_elem_sep String brand concode_elem_sep XMLGregorianCalendar eventD...
EventType function ( ) { return eventType ; }
23,480
get the log writer for this managedconnectionfactory instance . concode_field_sep Logger log concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep ManagedConnection createManagedConne...
PrintWriter function ( ) { log . finest ( "srini_string" ) ; return logwriter ; }
23,481
generates a session state using the provided client id , client callback url and browser state cookie id and adds the generated value to the url as a query parameter concode_field_sep String RANDOM_ALG_SHA1 concode_elem_sep String DIGEST_ALG_SHA256 concode_elem_sep OIDCSessionManager sessionManager concode_elem_sep Log...
String function ( String arg0 , String arg1 , String arg2 , Cookie arg3 , String arg4 ) { String loc0 = getSessionStateParam ( arg1 , arg2 , arg3 == null ? null : arg3 . getValue ( ) ) ; return addSessionStateToURL ( arg0 , loc0 , arg4 ) ; }
23,482
returns the address of this agent concode_field_sep AgentService service concode_elem_sep String ADMIN concode_elem_sep int lastID concode_elem_sep String COORDINATOR concode_field_sep void init concode_elem_sep String getName concode_elem_sep void sendMessage concode_elem_sep void sendMessage concode_elem_sep void add...
String function ( ) { return service . getAddress ( ) ; }
23,483
constructs a proxyinfo object that points at a direct proxyon the specified host and port . concode_field_sep String LOCAL_EXCL_LIST concode_elem_sep Creator<ProxyInfo> CREATOR concode_elem_sep String mExclusionList concode_elem_sep String[] mParsedExclusionList concode_elem_sep Uri mPacFileUrl concode_elem_sep String ...
ProxyInfo function ( String arg0 , int arg1 ) { return new ProxyInfo ( arg0 , arg1 , null ) ; }
23,484
set whether the encoder should encode alpha transparency not supported in this imageencoder . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] encode concode_elem_sep void encode concode_elem_sep void setQuality concode_elem_sep float getQuality concode_elem_sep boolean isEncodingAlpha
void function ( boolean arg0 ) { }
23,485
return the spelexpressionparser to use . concode_field_sep String expression concode_elem_sep SpelExpressionParser parser concode_elem_sep ParameterNameDiscoverer parameterNameDiscoverer concode_elem_sep AnnotatedElementKey element concode_field_sep ParameterNameDiscoverer getParameterNameDiscoverer concode_elem_sep Ex...
SpelExpressionParser function ( ) { return this . parser ; }
23,486
unsupported . concode_field_sep BufferedReader reader concode_elem_sep String segment concode_elem_sep String DASH_COMMENT concode_elem_sep String SLASH_COMMENT concode_elem_sep String SEMI concode_field_sep Object next concode_elem_sep void closeReader concode_elem_sep void setValue concode_elem_sep boolean hasNext co...
long function ( ) { throw new UnsupportedOperationException ( ) ; }
23,487
get unencrypted byte from encrypted hex string concode_field_sep PlaceHolder placeHolder concode_field_sep MessageDigest getMD5Digest concode_elem_sep MessageDigest getSHA1Digest concode_elem_sep MessageDigest getSHA256Digest concode_elem_sep String calculateSHA512Hash concode_elem_sep String calculateSHA256Hash concod...
byte [ ] function ( String arg0 , String arg1 ) { try { return createAesDecryptionCipher ( arg0 ) . doFinal ( ByteUtilities . decode ( arg1 ) ) ; } catch ( Exception loc0 ) { throw new IllegalStateException ( "srini_string" , loc0 ) ; } }
23,488
returns the stateholder . concode_field_sep HomematicContext instance concode_elem_sep HomematicClient homematicClient concode_elem_sep StateHolder stateHolder concode_elem_sep EventPublisher eventPublisher concode_elem_sep HomematicConfig config concode_elem_sep ServerId serverId concode_elem_sep Collection<HomematicB...
StateHolder function ( ) { return stateHolder ; }
23,489
return the difference between when the timer was created and the current time . concode_field_sep long _start concode_elem_sep DateTimeFormatter shortFormat concode_elem_sep long _nanos concode_elem_sep DateTimeFormatter longFormat concode_elem_sep DateTimeFormatter logFormat concode_field_sep String startAsShortString...
long function ( ) { return System . currentTimeMillis ( ) - _start ; }
23,490
method determines what will be stored as principal of the created authentication object . by default when forceprincipalasstring is true string representation of the nameid returned from saml message is used . otherwise userdetail object is used , when set , when not nameid object from the credential is returned . othe...
Object function ( SAMLCredential arg0 , Object arg1 ) { if ( isForcePrincipalAsString ( ) ) { return arg0 . getNameID ( ) . getValue ( ) ; } else if ( arg1 != null ) { return arg1 ; } else { return arg0 . getNameID ( ) ; } }
23,491
sets all nodes to hidden . concode_field_sep NodeDrawer nodeDrawer concode_elem_sep WeakHashMap visibleNodes concode_elem_sep NodePlacer nodePlacer concode_elem_sep boolean valid concode_elem_sep TreeModel tree concode_elem_sep Map nodeToPoint concode_elem_sep boolean inverted concode_elem_sep boolean defaultVisible co...
void function ( ) { defaultVisible = false ; visibleNodes . clear ( ) ; }
23,492
performs a dynamic query on the database and returns the matching rows . concode_field_sep CheckoutLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep int getCheckoutsCount ...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . arg0 ( arg0 ) ; }
23,493
indicates whether or not the specified modifiers contain the synchronized modifier . concode_field_sep int FINAL concode_elem_sep int BRIDGE concode_elem_sep int PUBLIC concode_elem_sep int STRICT concode_elem_sep int PRIVATE concode_elem_sep int INTERFACE concode_elem_sep int VARARGS concode_elem_sep int TRANSIENT con...
boolean function ( int arg0 ) { return ( ( arg0 & SYNCHRONIZED ) != 0 ) ; }
23,494
tests whether all components of the test geometry are contained in the interior of the target geometry . handles both linear and point components . concode_field_sep PointOnGeometryLocator targetPointLocator concode_elem_sep PreparedPolygon prepPoly concode_field_sep boolean isAnyTestComponentInTarget concode_elem_sep ...
boolean function ( Geometry arg0 ) { List loc0 = ComponentCoordinateExtracter . getCoordinates ( arg0 ) ; for ( Iterator loc1 = loc0 . iterator ( ) ; loc1 . hasNext ( ) ; ) { Coordinate loc2 = ( Coordinate ) loc1 . next ( ) ; int loc3 = targetPointLocator . locate ( loc2 ) ; if ( loc3 != Location . INTERIOR ) return fa...
23,495
predicate , can a new eperson be created . invokes canselfregister of every authentication method in the stack , and returns true if any of them is true . concode_field_sep AuthenticationMethod methodStack[] concode_elem_sep Logger log concode_field_sep Iterator<AuthenticationMethod> authenticationMethodIterator concod...
boolean function ( Context arg0 , HttpServletRequest arg1 , String arg2 ) { for ( int loc0 = 0 ; loc0 < methodStack . length ; ++ loc0 ) { if ( methodStack [ loc0 ] . canSelfRegister ( arg0 , arg1 , arg2 ) ) { return true ; } } return false ; }
23,496
send the proxied message to this endpoint concode_field_sep boolean binding concode_elem_sep Endpoint endpoint concode_elem_sep CamelContext camelContext concode_field_sep T build concode_elem_sep T build concode_elem_sep ProxyBuilder binding
ProxyBuilder function ( String arg0 ) { this . endpoint = camelContext . getEndpoint ( arg0 ) ; return this ; }
23,497
whether there were errors during the loading phase . concode_field_sep boolean hasTargetPatternError concode_elem_sep ImmutableSet<Target> targetsToAnalyze concode_elem_sep boolean hasLoadingError concode_elem_sep ImmutableSet<Target> testsToRun concode_field_sep Collection<Target> getTargets concode_elem_sep boolean h...
boolean function ( ) { return hasLoadingError ; }
23,498
set the ip address of the user concode_field_sep String password concode_elem_sep String onBehalfOf concode_elem_sep String location concode_elem_sep String IPAddress concode_elem_sep String username concode_field_sep void setPassword concode_elem_sep String getPassword concode_elem_sep String getLocation concode_elem_...
void function ( String arg0 ) { this . IPAddress = arg0 ; }
23,499
gets the frame index for specified timestamp . concode_field_sep int FRAME_DURATION_MS_FOR_MIN concode_elem_sep int MIN_FRAME_DURATION_MS concode_field_sep int[] getFrameTimeStampsFromDurations concode_elem_sep boolean isOutsideRange concode_elem_sep void fixFrameDurations concode_elem_sep void appendMemoryString conco...
int function ( int arg0 [ ] , int arg1 ) { int loc0 = Arrays . binarySearch ( arg0 , arg1 ) ; if ( loc0 < 0 ) { return - loc0 - 1 - 1 ; } else { return loc0 ; } }