idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
8,600
retrieve the content length of the request . concode_field_sep ActionRequest request concode_field_sep String getCharacterEncoding concode_elem_sep String getContentType concode_elem_sep String toString concode_elem_sep InputStream getInputStream
int function ( ) { return request . getContentLength ( ) ; }
8,601
gets cell 's column index within cellcollection . concode_field_sep boolean mEditable concode_elem_sep CellCollection mCellCollection concode_elem_sep Object mCellCollectionLock concode_elem_sep CellGroup mSector concode_elem_sep int mRowIndex concode_elem_sep boolean mValid concode_elem_sep int mColumnIndex concode_el...
int function ( ) { return mColumnIndex ; }
8,602
get the snap dir used by this filetxn snap log concode_field_sep int VERSION concode_elem_sep String version concode_elem_sep File dataDir concode_elem_sep SnapShot snapLog concode_elem_sep Logger LOG concode_elem_sep TxnLog txnLog concode_elem_sep File snapDir concode_field_sep boolean truncateLog concode_elem_sep Fil...
File function ( ) { return this . snapDir ; }
8,603
returns the nick of a given index . concode_field_sep char[] operatorsArr concode_elem_sep String[] argsArr concode_elem_sep String line concode_elem_sep char[] modesArr concode_field_sep String getLine concode_elem_sep String toString concode_elem_sep void parse concode_elem_sep int getModesCount concode_elem_sep int ...
String function ( int arg0 ) { return argsArr [ arg0 - 1 ] ; }
8,604
performs a dynamic query on the database and returns the matching rows . concode_field_sep ServiceTracker<KaleoConditionLocalService,KaleoConditionLocalService> _serviceTracker concode_field_sep com.liferay.portal.workflow.kaleo.model.KaleoCondition fetchKaleoCondition concode_elem_sep com.liferay.portal.workflow.kaleo...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . arg0 ( arg0 ) ; }
8,605
the default locale to be used when locating resources . concode_field_sep Locale defaultLocale concode_elem_sep Set loadedLocales concode_elem_sep String PROPERTY_BUNDLE concode_elem_sep String[] propertyBundles concode_elem_sep Logger logger concode_elem_sep String LOG_CATEGORY concode_elem_sep String LCDS_PROPERTY_BU...
Locale function ( ) { if ( defaultLocale == null ) defaultLocale = Locale . getDefault ( ) ; return defaultLocale ; }
8,606
retrieve the argument , if any , of an option . concode_field_sep Map hashcodeMap concode_elem_sep Map options concode_elem_sep List args concode_elem_sep Option[] optionsArray concode_field_sep void addArg concode_elem_sep Iterator iterator concode_elem_sep boolean hasOption concode_elem_sep boolean hasOption concode_...
String function ( String arg0 , String arg1 ) { String loc0 = getOptionValue ( arg0 ) ; return ( loc0 != null ) ? loc0 : arg1 ; }
8,607
returns the object responsible to evaluate the cost of a solution . concode_field_sep Random random concode_elem_sep Solution initialSolution concode_elem_sep Double optimalSolutionCost concode_elem_sep CostEvaluator costEvaluator concode_field_sep void setOptimalSolutionCost concode_elem_sep Random getRandom concode_e...
CostEvaluator function ( ) { return costEvaluator ; }
8,608
check if folder exists at the given path . if not - it will be created with with all subdirectories . concode_field_sep PlaceHolder placeHolder concode_field_sep void copyFile concode_elem_sep void writeToFile concode_elem_sep void writeToFile concode_elem_sep String readFromFile concode_elem_sep String readFromFile co...
void function ( String arg0 ) { ensureDirectoryExists ( new File ( arg0 ) ) ; }
8,609
closes the camera driver if still in use . concode_field_sep String TAG concode_elem_sep int requestedFramingRectHeight concode_elem_sep AutoFocusManager autoFocusManager concode_elem_sep boolean reverseImage concode_elem_sep int MIN_FRAME_WIDTH concode_elem_sep int MAX_FRAME_HEIGHT concode_elem_sep CameraConfiguration...
void function ( ) { if ( camera != null ) { camera . release ( ) ; camera = null ; framingRect = null ; framingRectInPreview = null ; } }
8,610
is this an array type ? concode_field_sep QName _itemXmlType concode_elem_sep ComplexType _itemComplexType concode_elem_sep boolean _isArray concode_elem_sep QName _xmlType concode_elem_sep long serialVersionUID concode_field_sep QName getItemXmlType concode_elem_sep QName getXmlType concode_elem_sep ComplexType getIte...
boolean function ( ) { return _isArray ; }
8,611
return a classpath resource as a stream . concode_field_sep PlaceHolder placeHolder concode_field_sep String getReaderAsString concode_elem_sep File createJar concode_elem_sep String getResourceAsString concode_elem_sep void copyCharStream concode_elem_sep void zipDir concode_elem_sep void zipDir concode_elem_sep void ...
InputStream function ( String arg0 , int arg1 ) { ParamChecker . notEmpty ( arg0 , "srini_string" ) ; InputStream loc0 = Thread . currentThread ( ) . getContextClassLoader ( ) . getResourceAsStream ( arg0 ) ; if ( loc0 == null ) { throw new IllegalArgumentException ( XLog . format ( "srini_string" , arg0 ) ) ; } return...
8,612
the version of the health check . you can optionally pass this value in a call to updatehealthcheck to prevent overwriting another change to the health check . constraints : range : 1 - concode_field_sep Long healthCheckVersion concode_elem_sep String callerReference concode_elem_sep String id concode_elem_sep HealthCh...
void function ( Long arg0 ) { this . healthCheckVersion = arg0 ; }
8,613
determines whether the bean can be cast to a different class type . this should be used instead of instanceof to determine a bean 's castability , because in the future there may be new types of bean , even beans spanning multiple objects . concode_field_sep boolean guiAvailable concode_elem_sep boolean designTime conc...
boolean function ( Object arg0 , Class < ? > arg1 ) { return arg1 . isInstance ( arg0 ) ; }
8,614
returns true if this object is equal to the specified object , and false otherwise . concode_field_sep long serialVersionUID concode_elem_sep TimePeriodAnchor MIDDLE concode_elem_sep TimePeriodAnchor START concode_elem_sep String name concode_elem_sep TimePeriodAnchor END concode_field_sep Object readResolve concode_el...
boolean function ( Object arg0 ) { if ( this == arg0 ) { return true ; } if ( ! ( arg0 instanceof TimePeriodAnchor ) ) { return false ; } TimePeriodAnchor loc0 = ( TimePeriodAnchor ) arg0 ; if ( ! this . name . equals ( loc0 . name ) ) { return false ; } return true ; }
8,615
resets for next reuse . concode_field_sep boolean consumed concode_elem_sep char[][] dateTokens concode_elem_sep long currentDateMillis concode_elem_sep int last concode_elem_sep int offset concode_elem_sep Calendar tempCalGMT concode_elem_sep SimpleDateFormat sdfd concode_elem_sep SimpleDateFormat sdfts concode_elem_s...
void function ( ) { last = - 1 ; offset = - 1 ; state = 0 ; }
8,616
converts an array of strings into a set of actionerror messages concode_field_sep String FAILED_KEY concode_field_sep boolean getFailedValidation concode_elem_sep void setFailedValidation concode_elem_sep boolean isValidEmailAddress concode_elem_sep ActionErrors validateDynaActionForm concode_elem_sep ActionErrors vali...
ActionErrors function ( ValidatorError ... arg0 ) { ActionErrors loc0 = new ActionErrors ( ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 . add ( ActionMessages . GLOBAL_MESSAGE , new ActionMessage ( arg0 [ loc1 ] . getKey ( ) , arg0 [ loc1 ] . getValues ( ) ) ) ; } return loc0 ; }
8,617
get the configuration file for the provided id concode_field_sep Logger LOGGER concode_field_sep void load concode_elem_sep void load
XmlFile function ( XStream arg0 , String arg1 ) { return new XmlFile ( arg0 , new File ( Jenkins . getInstance ( ) . getRootDir ( ) , arg1 + "srini_string" ) ) ; }
8,618
switch on or off the automatic deletion of partially written files that are left when an exception is thrown during a download concode_field_sep ConnectionContext context concode_field_sep void setAutoLogin concode_elem_sep String getControlEncoding concode_elem_sep void setFileLockingEnabled concode_elem_sep boolean g...
void function ( boolean arg0 ) { context . setDeleteOnFailure ( arg0 ) ; }
8,619
gets the value of the repositories property . concode_field_sep RealmsType realms concode_elem_sep RepositoriesType repositories concode_elem_sep StoresType stores concode_field_sep void setRepositories concode_elem_sep StoresType getStores concode_elem_sep void setStores concode_elem_sep RealmsType getRealms concode_e...
RepositoriesType function ( ) { return repositories ; }
8,620
sound file path for the local notification . concode_field_sep long interval concode_elem_sep JSONObject options concode_elem_sep AssetUtil assets concode_elem_sep String EXTRA concode_elem_sep Context context concode_field_sep Boolean isAutoClear concode_elem_sep String getText concode_elem_sep long getRepeatInterval ...
Uri function ( ) { Uri loc0 = null ; try { loc0 = Uri . parse ( options . optString ( "srini_string" ) ) ; } catch ( Exception loc1 ) { loc1 . printStackTrace ( ) ; } return loc0 ; }
8,621
gettypeface concode_field_sep AssetManager mAssetManager concode_elem_sep String EXT_TTF concode_elem_sep String mInternalDir concode_elem_sep String mExternalDir concode_elem_sep String EXT_ZIP concode_elem_sep int MODE_EXTERNAL concode_elem_sep String DIR_NAME concode_elem_sep String TAG concode_elem_sep String mZipF...
Typeface function ( ) { return getTypeface ( mFontFileName ) ; }
8,622
get the targetfilename . concode_field_sep String filename concode_elem_sep String targetFilename concode_elem_sep String index concode_elem_sep String href concode_elem_sep String title concode_elem_sep String day concode_elem_sep LocalDateTime scheduledStart concode_field_sep boolean checkTargetFileExists concode_ele...
String function ( ) { return targetFilename ; }
8,623
reinitializes a locatorimpl concode_field_sep int line concode_elem_sep int column concode_elem_sep boolean W3CDebug concode_elem_sep String uri concode_field_sep int getLineNumber concode_elem_sep int getColumnNumber concode_elem_sep String getURI
LocatorImpl function ( Parser arg0 , int arg1 , int arg2 ) { if ( W3CDebug ) { System . err . println ( "srini_string" + arg0 + "srini_string" + arg1 + "srini_string" + arg2 + "srini_string" ) ; } uri = arg0 . source . getURI ( ) ; this . line = arg1 ; this . column = arg2 ; return this ; }
8,624
gets the value of the item 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 item property . for example , to add a new item , do as follo...
List < Items . Item > function ( ) { if ( item == null ) { item = new ArrayList < > ( ) ; } return this . item ; }
8,625
create an instance of documentation concode_field_sep QName _ResourceReference_QNAME concode_elem_sep QName _Resource_QNAME concode_field_sep Example createExample concode_elem_sep Content createContent concode_elem_sep JAXBElement<ResourceType> createResource concode_elem_sep Navigation createNavigation concode_elem_s...
Documentation function ( ) { return new Documentation ( ) ; }
8,626
gets the target folder path as a file that includes the project location concode_field_sep PlaceHolder placeHolder concode_field_sep IProject getTargetProject concode_elem_sep void refreshTargetProject concode_elem_sep boolean createEmptyProject concode_elem_sep FeatureConfiguration getOutletFeatureConfiguration concod...
File function ( GeneratorEntry arg0 ) { String loc0 = getOutletFeatureConfiguration ( arg0 ) . getParameterValue ( ICoreFeatureConstants . OUTLET_FEATURE_TARGET_FOLDER ) . getStringValue ( ) ; return new File ( getTargetProject ( arg0 ) . getLocation ( ) . toFile ( ) . getPath ( ) + File . separator + loc0 ) ; }
8,627
returns the rest of the enumeration as a list concode_field_sep Enumeration<T> enumerator concode_field_sep T next concode_elem_sep Iterator<T> iterator concode_elem_sep boolean hasNext concode_elem_sep void remove
List < T > function ( ) { return Collections . list ( enumerator ) ; }
8,628
sets the color used when writing the label of the axis . concode_field_sep JRFont labelFont concode_elem_sep Boolean verticalTickLabels concode_elem_sep Color tickLabelColor concode_elem_sep JRFont tickLabelFont concode_elem_sep String tickLabelMask concode_elem_sep Color lineColor concode_elem_sep long serialVersionUI...
void function ( Color arg0 ) { this . labelColor = arg0 ; }
8,629
gets the description of the startup concode_field_sep String name concode_elem_sep String fileName concode_elem_sep String description concode_elem_sep boolean isEdited concode_elem_sep String artifactContainerName concode_field_sep void setName concode_elem_sep void setFileName concode_elem_sep String getName concode_...
String function ( ) { return description ; }
8,630
returns the amount of memory committed for use by this memory pool in bytes . this amount is guaranteed to be available , unlike the maximum . concode_field_sep long init concode_elem_sep long committed concode_elem_sep long maximum concode_elem_sep long used concode_field_sep long getUsed concode_elem_sep long getInit...
long function ( ) { return committed ; }
8,631
if the stopwatch is active , record the starting time for a time segment . if the stopwatch is inactive , the method returns immediately . concode_field_sep long serialVersionUID concode_elem_sep long stop concode_elem_sep Statistics stats concode_elem_sep String SECONDS concode_elem_sep boolean minimumInitialized conc...
void function ( ) { if ( active ) { start = System . currentTimeMillis ( ) ; } }
8,632
returns the osgi service identifier . concode_field_sep MicroblogsEntryService _service concode_field_sep void clearService concode_elem_sep java.util.List<com.liferay.microblogs.model.MicroblogsEntry> getMicroblogsEntries concode_elem_sep java.util.List<com.liferay.microblogs.model.MicroblogsEntry> getMicroblogsEntrie...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
8,633
test method for java.lang.object #hashcode . concode_field_sep PlaceHolder placeHolder concode_field_sep void testWait concode_elem_sep void testGetClass concode_elem_sep void testWaitLongInt concode_elem_sep void testRollbackTransaction concode_elem_sep void testNewSVNRepoManager concode_elem_sep void testFinalize con...
void function ( ) { fail ( "srini_string" ) ; }
8,634
returns true if there is an active run , false otherwise . concode_field_sep TextListener fTextListener concode_elem_sep ChangeType fType concode_elem_sep SelectionListener fSelectionListener concode_elem_sep int fNextOffset concode_elem_sep boolean DEBUG concode_elem_sep TypingRun fRun concode_elem_sep ITextViewer fVi...
boolean function ( ) { return fRun != null ; }
8,635
create an instance of getresponseverb concode_field_sep QName _CapabilityMasterResponse_QNAME concode_elem_sep QName _CapabilityMasterRequest_QNAME concode_field_sep GetRequestVerb createGetRequestVerb concode_elem_sep DeleteRequest createDeleteRequest concode_elem_sep DeleteResponse createDeleteResponse concode_elem_s...
GetResponseVerb function ( ) { return new GetResponseVerb ( ) ; }
8,636
initialize a service . the service state is checked before the operation begins . this process is not thread safe . concode_field_sep Log LOG concode_field_sep void stop concode_elem_sep Exception stopQuietly concode_elem_sep void start concode_elem_sep void ensureCurrentState concode_elem_sep void deploy
void function ( Service arg0 , HiveConf arg1 ) { Service . STATE loc0 = arg0 . getServiceState ( ) ; ensureCurrentState ( loc0 , Service . STATE . NOTINITED ) ; arg0 . init ( arg1 ) ; }
8,637
search for items . concode_field_sep Logger log concode_field_sep void deleteItemContent concode_elem_sep void addItemMetaData concode_elem_sep ItemDataIfc saveItem concode_elem_sep void deleteItem concode_elem_sep void deleteItemMetaData concode_elem_sep ItemDataIfc getItem concode_elem_sep ItemDataIfc getItem
Map function ( String arg0 ) { Map loc0 = new HashMap ( ) ; try { ItemService loc1 = new ItemService ( ) ; loc0 = loc1 . getItemsByKeyword ( arg0 ) ; } catch ( Exception loc1 ) { throw new AssessmentServiceException ( loc1 ) ; } return loc0 ; }
8,638
default implementation of inputstream #read byte , int , int . reads byte after byte uses inputstream #read , which is very slow . use a better implementation when possible . concode_field_sep PlaceHolder placeHolder concode_field_sep void write concode_elem_sep void write
int function ( InputStream arg0 , byte [ ] arg1 , int arg2 , int arg3 ) { int loc0 = 0 ; for ( ; loc0 < arg3 ; loc0 ++ ) { int loc1 = arg0 . read ( ) ; if ( loc1 == - 1 ) { break ; } arg1 [ arg2 + loc0 ] = ( byte ) loc1 ; } return loc0 ; }
8,639
returns a hash code . concode_field_sep long serialVersionUID concode_elem_sep Object obj concode_elem_sep Comparable x concode_field_sep Object getObject concode_elem_sep Comparable getComparable concode_elem_sep boolean equals concode_elem_sep Object clone concode_elem_sep int compareTo concode_elem_sep void setObjec...
int function ( ) { int loc0 ; loc0 = this . x . hashCode ( ) ; loc0 = 29 * loc0 + ( this . obj != null ? this . obj . hashCode ( ) : 0 ) ; return loc0 ; }
8,640
return the actual property name for the given property path . concode_field_sep PlaceHolder placeHolder concode_field_sep int getFirstNestedPropertySeparatorIndex concode_elem_sep boolean isNestedOrIndexedProperty concode_elem_sep boolean matchesProperty concode_elem_sep String canonicalPropertyName concode_elem_sep in...
String function ( String arg0 ) { int loc0 = ( arg0 . endsWith ( PropertyAccessor . PROPERTY_KEY_SUFFIX ) ? arg0 . indexOf ( PropertyAccessor . PROPERTY_KEY_PREFIX_CHAR ) : - 1 ) ; return ( loc0 != - 1 ? arg0 . substring ( 0 , loc0 ) : arg0 ) ; }
8,641
returns true if there 's another tls mode to try . concode_field_sep int nextSocketAddressIndex concode_elem_sep List<Route> postponedRoutes concode_elem_sep int TLS_MODE_MODERN concode_elem_sep Address address concode_elem_sep Iterator<Proxy> proxySelectorProxies concode_elem_sep ConnectionPool pool concode_elem_sep D...
boolean function ( ) { return nextTlsMode != TLS_MODE_NULL ; }
8,642
get the component class . concode_field_sep BasicComponent component concode_elem_sep Class<?> componentClass concode_elem_sep Map<Method,InterceptorFactory> componentInterceptors concode_elem_sep InterceptorFactory preDestroy concode_elem_sep String componentName concode_elem_sep ServiceName serviceName concode_elem_s...
Class < ? > function ( ) { return componentClass ; }
8,643
gets the value of the buffering mode concode_field_sep List<String> produceMediaTypes concode_elem_sep Bus bus concode_elem_sep List<String> consumeMediaTypes concode_elem_sep boolean enableStreaming concode_elem_sep ResourceBundle BUNDLE concode_elem_sep boolean enableBuffering concode_elem_sep Logger LOG concode_fiel...
boolean function ( ) { return enableBuffering ; }
8,644
set the start date as a string expression . must be paired with #setendstr string . concode_field_sep String endStr concode_elem_sep String typeStr concode_elem_sep String startStr concode_elem_sep Date endDate concode_elem_sep Date startDate concode_field_sep void setTypeStr concode_elem_sep void setStartDate concode_...
void function ( String arg0 ) { this . startStr = arg0 ; }
8,645
get the unts that this statistic is measured in concode_field_sep String units concode_elem_sep String reference concode_elem_sep String key concode_elem_sep int value concode_field_sep int getValue concode_elem_sep String getKey concode_elem_sep void setReference concode_elem_sep int compareTo concode_elem_sep void se...
String function ( ) { return this . units ; }
8,646
method for obtaining the external dependencies for this du , if any . concode_field_sep boolean isInstalled concode_elem_sep Logger logger concode_elem_sep String diShortName concode_elem_sep Collection<ManagementAction> installActions concode_elem_sep Collection<ManagementAction> uninstallActions concode_elem_sep Coll...
Collection < String > function ( ) { Collection < String > loc0 = new HashSet < String > ( dependencies ) ; loc0 . removeAll ( componentIDs ) ; return loc0 ; }
8,647
unlocks this activity if it is not busy concode_field_sep Request request concode_elem_sep ConcurrentMap<MgcpConnection> activeConnections concode_elem_sep MgcpProvider mgcpProvider concode_elem_sep MgcpEndpointStateListener stateListener concode_elem_sep ConcurrentCyclicFIFO<MgcpConnection> connections concode_elem_se...
void function ( ) { if ( this . state . get ( ) == STATE_LOCKED ) { this . state . set ( STATE_FREE ) ; if ( this . stateListener != null ) this . stateListener . onFreed ( this ) ; } }
8,648
setter for the tool id concode_field_sep UserNotificationPreferencesRegistrationService userNotificationPreferencesRegistrationService concode_elem_sep String defaultValue concode_elem_sep Map<String,String> rawOptions concode_elem_sep Log logger concode_elem_sep String type concode_elem_sep String sectionTitle concode...
void function ( String arg0 ) { this . toolId = arg0 ; }
8,649
returns a proxy instance that implements interfacetype bydispatching method invocations to handler . the class loader of interfacetype will be used to define the proxy class . to implementmultiple interfaces or specify a class loader , use proxy #newproxyinstance . concode_field_sep PlaceHolder placeHolder concode_fiel...
T function ( Class < T > arg0 , InvocationHandler arg1 ) { checkNotNull ( arg1 ) ; checkArgument ( arg0 . isInterface ( ) , "srini_string" , arg0 ) ; Object loc0 = Proxy . newProxyInstance ( arg0 . getClassLoader ( ) , new Class < ? > [ ] { arg0 } , arg1 ) ; return arg0 . cast ( loc0 ) ; }
8,650
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 , CordovaArgs arg1 , CallbackContext arg2 ) { return false ; }
8,651
convenience method to clear a passed arraylist basically clones the functionality of a vector.removeall concode_field_sep LogBean singleton concode_elem_sep MessageLog messageLog concode_elem_sep ChatState state concode_elem_sep Log log concode_elem_sep String autoLoad concode_elem_sep ArrayList controlLog concode_elem...
ArrayList function ( ArrayList arg0 ) { for ( int loc0 = 0 , loc1 = arg0 . size ( ) ; loc0 < loc1 ; loc0 ++ ) { arg0 . remove ( 0 ) ; } return ( arg0 ) ; }
8,652
locks the given inode in read mode , and adds it to this lock list . concode_field_sep List<InodeTree.LockMode> mLockModes concode_elem_sep List<Inode<?>> mInodes concode_field_sep void lockWrite concode_elem_sep void unlockLast concode_elem_sep List<Inode<?>> getInodes concode_elem_sep void close
void function ( Inode < ? > arg0 ) { arg0 . lockRead ( ) ; mInodes . add ( arg0 ) ; mLockModes . add ( InodeTree . LockMode . READ ) ; }
8,653
getter method for the comments concode_field_sep int subSubCatId concode_elem_sep String deptName concode_elem_sep int tat concode_elem_sep String comments concode_elem_sep int deptId concode_elem_sep int subCatId concode_elem_sep int escRuleId concode_elem_sep List escRuleDetails concode_elem_sep int flowLevel concode...
String function ( ) { return comments ; }
8,654
logs an event if an event logger is configured . concode_field_sep Map<String,RemoteCacheNoWait<?,?>> caches concode_elem_sep RemoteHttpCacheManager instance concode_elem_sep ICacheEventLogger cacheEventLogger concode_elem_sep RemoteHttpCacheMonitor monitor concode_elem_sep IRemoteCacheAttributes remoteCacheAttributes ...
void function ( String arg0 , String arg1 , String arg2 ) { if ( cacheEventLogger != null ) { cacheEventLogger . logApplicationEvent ( arg0 , arg1 , arg2 ) ; } }
8,655
returns the size of the linked list concode_field_sep Node head concode_elem_sep Node next concode_elem_sep Integer item concode_elem_sep int sizeM concode_field_sep void push_front concode_elem_sep void set concode_elem_sep void setData concode_elem_sep void clear concode_elem_sep void insert concode_elem_sep void mai...
int function ( ) { return sizeM ; }
8,656
add all equations which contain a given cell to the work list . concode_field_sep Graph equations concode_elem_sep boolean EAGER concode_elem_sep DF_Solution cells concode_elem_sep boolean DEBUG concode_elem_sep Comparator<DF_Equation> dfComparator concode_elem_sep HashSet<DF_Equation> newEquations concode_elem_sep Tre...
void function ( DF_LatticeCell arg0 ) { for ( Enumeration < DF_Equation > loc0 = getEquations ( ) ; loc0 . hasMoreElements ( ) ; ) { DF_Equation loc1 = loc0 . nextElement ( ) ; if ( loc1 . hasCell ( arg0 ) ) { addToWorkList ( loc1 ) ; } } }
8,657
loads the routes from the classpath concode_field_sep PlaceHolder placeHolder concode_field_sep RoutesDefinition loadRoutesFromXML concode_elem_sep RoutesDefinition loadRoutesFromFile concode_elem_sep RoutesDefinition loadRoutesFromFile concode_elem_sep RoutesDefinition loadRoutesFromURL concode_elem_sep RoutesDefiniti...
RoutesDefinition function ( ModelCamelContext arg0 , String arg1 ) { InputStream loc0 = ObjectHelper . loadResourceAsStream ( arg1 ) ; ObjectHelper . notNull ( loc0 , "srini_string" + arg1 + "srini_string" ) ; return ModelHelper . createModelFromXml ( arg0 , loc0 , RoutesDefinition . class ) ; }
8,658
tries to return the correct username for the given host . some xmpp service provider like gtalk require the username to be concatenated with the host part e.g. user - > user@server.tld concode_field_sep String[] USERNAME_IS_FULL_JID concode_field_sep void savePreferences concode_elem_sep XMPPConnection tryToCreateAccou...
String function ( String arg0 , String arg1 ) { for ( String loc0 : USERNAME_IS_FULL_JID ) { if ( arg1 . equals ( loc0 ) ) { return arg0 + "srini_string" + arg1 ; } } return arg0 ; }
8,659
test to see that add method inserts three items concode_field_sep PlaceHolder placeHolder concode_field_sep void test16 concode_elem_sep void test15 concode_elem_sep void test14 concode_elem_sep void test13 concode_elem_sep void test12 concode_elem_sep void test11 concode_elem_sep void test10 concode_elem_sep void test...
void function ( ) { SingleLinkedList < String > loc0 = new SingleLinkedList < String > ( ) ; loc0 . add ( "srini_string" ) ; loc0 . add ( "srini_string" ) ; loc0 . add ( "srini_string" ) ; assertEquals ( 3 , loc0 . size ( ) ) ; assertEquals ( "srini_string" , loc0 . toString ( ) ) ; }
8,660
set a default to use when no profile is configured . concode_field_sep String SPRING_PROFILE_ACTIVE concode_elem_sep long serialVersionUID concode_elem_sep Logger log concode_elem_sep Properties BUILD_PROPERTIES concode_field_sep Properties readProperties concode_elem_sep String getDefaultActiveProfiles
void function ( SpringApplication arg0 ) { Map < String , Object > loc0 = new HashMap < > ( ) ; loc0 . put ( SPRING_PROFILE_ACTIVE , getDefaultActiveProfiles ( ) ) ; arg0 . setDefaultProperties ( loc0 ) ; }
8,661
sets the create date of this workflow instance link . concode_field_sep WorkflowInstanceLink _workflowInstanceLink concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep voi...
void function ( Date arg0 ) { _workflowInstanceLink . setCreateDate ( arg0 ) ; }
8,662
annotate operators e.g. , quantifiers and polarity of tokens in a sentence concode_field_sep Redwood.RedwoodChannels log concode_field_sep Annotator coref concode_elem_sep Annotator sentiment concode_elem_sep Annotator gender concode_elem_sep Annotator openie concode_elem_sep Annotator custom concode_elem_sep Annotator...
Annotator function ( Properties arg0 ) { Properties loc0 = PropertiesUtils . extractPrefixedProperties ( arg0 , Annotator . STANFORD_NATLOG + '.' ) ; return new NaturalLogicAnnotator ( loc0 ) ; }
8,663
sets the staticdataurl value for this widgetimageuploadresponse . concode_field_sep java.lang.String relativeImageUrl concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String staticDataUrl conc...
void function ( java . lang . String arg0 ) { this . staticDataUrl = arg0 ; }
8,664
records a log entry representing a new connection action on the specified session object . concode_field_sep Log log concode_elem_sep SimpleLog appLog concode_elem_sep boolean logStatements concode_elem_sep LockFile lf concode_elem_sep boolean syncFile concode_field_sep void checkpoint concode_elem_sep int getLogSize c...
void function ( Session arg0 ) { if ( logStatements ) { writeToLog ( arg0 , arg0 . getUser ( ) . getConnectStatement ( ) ) ; } }
8,665
creates a flexibleaggregationstrategy with no particular type , i.e. performing no casts or type conversion of pick expression results . concode_field_sep PlaceHolder placeHolder concode_field_sep AggregationStrategy beanAllowNull concode_elem_sep AggregationStrategy beanAllowNull concode_elem_sep AggregationStrategy g...
FlexibleAggregationStrategy < Object > function ( ) { return new FlexibleAggregationStrategy < Object > ( ) ; }
8,666
finds the position of the given pattern in this blob . concode_field_sep byte[] binaryData concode_elem_sep boolean isClosed concode_elem_sep ExceptionInterceptor exceptionInterceptor concode_field_sep int setBytes concode_elem_sep int setBytes concode_elem_sep void truncate concode_elem_sep void checkClosed concode_el...
long function ( java . sql . Blob arg0 , long arg1 ) { checkClosed ( ) ; return position ( arg0 . getBytes ( 0 , ( int ) arg0 . length ( ) ) , arg1 ) ; }
8,667
removing all the appenders which were added in the non osigi environment , after the carbon starts up . since another appender thread is there from osgi environment , it will be a conflict to access the log file by non osgi and osgi appenders which resulted log rotation fails in windows . this fix was introduced for th...
void function ( ) { try { Logger . getRootLogger ( ) . removeAllAppenders ( ) ; } catch ( Throwable loc0 ) { System . err . println ( "srini_string" ) ; } }
8,668
updates the org labor in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep OrgLaborLocalService _orgLaborLocalService concode_field_sep com.liferay.portal.model.OrgLabor getOrgLabor concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem...
com . liferay . portal . model . OrgLabor function ( com . liferay . portal . model . OrgLabor arg0 ) { return _orgLaborLocalService . updateOrgLabor ( arg0 ) ; }
8,669
look at something concode_field_sep PlaceHolder placeHolder concode_field_sep void help concode_elem_sep void printWin concode_elem_sep void use concode_elem_sep void attack concode_elem_sep void get concode_elem_sep void pun concode_elem_sep Room go concode_elem_sep void printPoints concode_elem_sep void main concode_...
void function ( Inventory arg0 , Room arg1 , String arg2 ) { if ( arg2 . equals ( "srini_string" ) ) { arg1 . enterRoom ( ) ; } else { arg1 . look ( arg2 ) ; arg0 . look ( arg2 ) ; } }
8,670
returns a copy of this object concode_field_sep List headers concode_elem_sep long serialVersionUID concode_field_sep Header getCondensedHeader concode_elem_sep void setHeaders concode_elem_sep void addHeader concode_elem_sep void updateHeader concode_elem_sep Header[] getHeaders concode_elem_sep Header getFirstHeader ...
HeaderGroup function ( ) { HeaderGroup loc0 = new HeaderGroup ( ) ; loc0 . headers . addAll ( this . headers ) ; return loc0 ; }
8,671
return the view name to be resolved by the dispatcherservlet via a viewresolver , or null if we are using a view object . concode_field_sep Object view concode_elem_sep ModelMap model concode_elem_sep HttpStatus status concode_elem_sep boolean cleared concode_field_sep boolean wasCleared concode_elem_sep Map<String,Obj...
String function ( ) { return ( this . view instanceof String ? ( String ) this . view : null ) ; }
8,672
returns the name of the bucket containing the uploaded object . concode_field_sep String bucketName concode_elem_sep String versionId concode_elem_sep String eTag concode_elem_sep String key concode_field_sep String getKey concode_elem_sep String getVersionId concode_elem_sep void setVersionId concode_elem_sep String g...
String function ( ) { return bucketName ; }
8,673
deletes the email address from the database . also notifies the appropriate model listeners . concode_field_sep EmailAddressLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_s...
com . liferay . portal . kernel . model . EmailAddress function ( com . liferay . portal . kernel . model . EmailAddress arg0 ) { return getService ( ) . deleteEmailAddress ( arg0 ) ; }
8,674
test of getaddress method , of class host . concode_field_sep PlaceHolder placeHolder concode_field_sep void setUpClass concode_elem_sep void testSetAddress concode_elem_sep void testSetPhone concode_elem_sep void testGetPhone concode_elem_sep void testGetLatitude concode_elem_sep void tearDownClass concode_elem_sep vo...
void function ( ) { System . out . println ( "srini_string" ) ; Host loc0 = new Host ( ) ; String loc1 = "srini_string" ; String loc2 = loc0 . getAddress ( ) ; assertEquals ( loc1 , loc2 ) ; fail ( "srini_string" ) ; }
8,675
adds an entry in the process log when a workitem is added to a queue since that signifies a resourcing status change . additions to the admin worklisted queue is ignored . concode_field_sep int WORKLISTED concode_elem_sep int ALLOCATED concode_elem_sep int STARTED concode_elem_sep boolean _persisting concode_elem_sep M...
void function ( WorkItemRecord arg0 ) { if ( _queueType < WORKLISTED ) EventLogger . log ( arg0 , _ownerID , _queueType ) ; }
8,676
checks whether the level has the same intvalue as one of the pre-defined levels . if so , the pre-defined level object is returned . since the resource bundle name is not taken into consideration , it is possible to resolve level objects that have been de-serialized by another implementation , even if the other impleme...
Object function ( ) { for ( int loc0 = 0 ; loc0 < knownLevels . length ; loc0 ++ ) if ( value == knownLevels [ loc0 ] . intValue ( ) ) return knownLevels [ loc0 ] ; return this ; }
8,677
this method allows to read request 's result from user table . concode_field_sep SQLiteDatabase database concode_elem_sep String[] allcolumns concode_elem_sep UserHelper dbHelper concode_field_sep User insertGetUser concode_elem_sep List<User> getAllUsers concode_elem_sep boolean insertUser concode_elem_sep User getUse...
User function ( Cursor arg0 ) { User loc0 = new User ( ) ; loc0 . setmId ( arg0 . getInt ( 0 ) ) ; loc0 . setmName ( arg0 . getString ( 1 ) ) ; loc0 . setmSurname ( arg0 . getString ( 2 ) ) ; loc0 . setmMail ( arg0 . getString ( 3 ) ) ; loc0 . setmPassword ( arg0 . getString ( 4 ) ) ; loc0 . setmPhoto ( arg0 . getStrin...
8,678
inits the recovery thread open . concode_field_sep String[] recoveryMethodNames concode_elem_sep int TIMEOUT concode_elem_sep SeleniumTestBase caller concode_elem_sep RecoveryThreadTask recovery concode_elem_sep long thresholdTimeout concode_elem_sep Timer timer concode_elem_sep String[] onerrorMethodNames concode_fiel...
void function ( final ProceedingJoinPoint arg0 ) { advice ( arg0 ) ; }
8,679
gets the version value for this remoteserverinfo . concode_field_sep java.lang.String baseUrl concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.atlassian.jira.rpc.soap.beans.RemoteTimeInfo serverTime concode_elem_sep java.util.Calendar buildDate concode_elem_sep...
java . lang . String function ( ) { return version ; }
8,680
gets the timestamp of the log statement in milliseconds since unix epoch . concode_field_sep Level level concode_elem_sep ThreadLocal<SimpleDateFormat> DATE_FORMAT concode_elem_sep String message concode_elem_sep long timestamp concode_field_sep Level getLevel concode_elem_sep Map<String,Object> toMap concode_elem_sep ...
long function ( ) { return timestamp ; }
8,681
main concode_field_sep Node mParent concode_elem_sep List<Node> mChildren concode_elem_sep Node root concode_elem_sep String mName concode_field_sep void testCombAny concode_elem_sep String getName concode_elem_sep List<String> getComb concode_elem_sep void testInsertDulLeafNode concode_elem_sep String synonymPath conc...
void function ( String [ ] arg0 ) { Scopely loc0 = new Scopely ( ) ; loc0 . testInsertIntoTree ( ) ; loc0 . testInsertDulLeafNode ( ) ; loc0 . testCombLeafNode ( ) ; loc0 . testCombAny ( ) ; loc0 . testCollapseComb ( ) ; loc0 . testsynonymDetect ( ) ; }
8,682
called by the reactor when we have selected readable . concode_field_sep boolean bPaused concode_elem_sep SocketChannel channel concode_elem_sep long binding concode_elem_sep SSLContext sslContext concode_elem_sep boolean bWatchOnly concode_elem_sep SSLEngine sslEngine concode_elem_sep boolean bAttached concode_elem_se...
void function ( ByteBuffer arg0 ) { if ( channel . read ( arg0 ) == - 1 ) throw new IOException ( "srini_string" ) ; }
8,683
loads and initializes opencv library from current application package . roughly , it 's an analog of system.loadlibrary `` opencv_java '' . concode_field_sep String OPENCV_VERSION_2_4_4 concode_elem_sep String OPENCV_VERSION_2_4_8 concode_elem_sep String OPENCV_VERSION_3_0_0 concode_elem_sep String OPENCV_VERSION_2_4_3...
boolean function ( boolean arg0 ) { return StaticHelper . initOpenCV ( arg0 ) ; }
8,684
returns the filter . concode_field_sep NotificationFilter filter concode_elem_sep Object passback concode_elem_sep NotificationListener listener concode_field_sep Object getPassback concode_elem_sep boolean equals concode_elem_sep NotificationListener getListener
NotificationFilter function ( ) { return filter ; }
8,685
returns the root maven dependency and all of its child dependency tree concode_field_sep String baseVersion concode_elem_sep List<String> parentProfiles concode_elem_sep Boolean useResolver concode_elem_sep String description concode_elem_sep String version concode_elem_sep boolean abstractProfile concode_elem_sep Inte...
DependencyDTO function ( ) { return rootDependency ; }
8,686
returns a new instance of lazy lazy < t > , which calls provider #get atmost once on the provider held by this object . concode_field_sep Provider<T> provider concode_field_sep Provider<Lazy<T>> create
Lazy < T > function ( ) { return DoubleCheck . lazy ( provider ) ; }
8,687
non-javadoc . concode_field_sep WebDriver driver concode_elem_sep File outputDirectory concode_field_sep void onConfigurationFailure concode_elem_sep void setDriver concode_elem_sep String getProperties concode_elem_sep void onConfigurationSuccess concode_elem_sep void onConfigurationSkip concode_elem_sep void onFinish...
void function ( final ITestResult arg0 ) { }
8,688
return a list of dictionaries in the current application . currently , this is every directory in the dictionaries directory . concode_field_sep PagesManager pagesManager concode_field_sep void deletePage concode_elem_sep void copyPage concode_elem_sep SortedSet<String> listPages concode_elem_sep SortedSet<String> list...
SortedSet < String > function ( ) { return this . pagesManager . listDictionaries ( ) ; }
8,689
determine if log level will be logged 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 void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void setLogLevel concode_e...
boolean function ( int arg0 ) { return ( arg0 >= LOGLEVEL ) ; }
8,690
gettype concode_field_sep String m_type concode_elem_sep String m_value concode_field_sep String getValue concode_elem_sep void setValue concode_elem_sep void setType
String function ( ) { return m_type ; }
8,691
gets the value of the scalabletype property . concode_field_sep Integer duration concode_elem_sep Integer minimumBitRate concode_elem_sep Size size concode_elem_sep Integer bitRate concode_elem_sep ScalableType scalableType concode_elem_sep List<String> codecs concode_elem_sep VideoDeliveryType deliveryType concode_ele...
ScalableType function ( ) { return scalableType ; }
8,692
begin delete query concode_field_sep PlaceHolder placeHolder concode_field_sep List<SchemaTableName> listTables concode_elem_sep boolean supportsMetadataDelete concode_elem_sep void createTable concode_elem_sep ColumnMetadata getColumnMetadata concode_elem_sep ColumnHandle getSampleWeightColumnHandle concode_elem_sep v...
ConnectorTableHandle function ( ConnectorSession arg0 , ConnectorTableHandle arg1 ) { throw new PrestoException ( NOT_SUPPORTED , "srini_string" ) ; }
8,693
a list of data points , each of which represents 15 minutes of activity . concode_field_sep com.amazonaws.internal.SdkInternalList<SendDataPoint> sendDataPoints concode_field_sep java.util.List<SendDataPoint> getSendDataPoints concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep GetSendStatist...
void function ( java . util . Collection < SendDataPoint > arg0 ) { if ( arg0 == null ) { this . sendDataPoints = null ; return ; } this . sendDataPoints = new com . amazonaws . internal . SdkInternalList < SendDataPoint > ( arg0 ) ; }
8,694
sets the value of the justthisaccount property . concode_field_sep Boolean justThisAccount concode_elem_sep String newEmail2 concode_elem_sep String newEmail concode_elem_sep String currentPassword concode_field_sep void setCurrentPassword concode_elem_sep String getNewEmail concode_elem_sep String getCurrentPassword c...
void function ( Boolean arg0 ) { this . justThisAccount = arg0 ; }
8,695
creates an empty status i.e. one with no message shown for the user . concode_field_sep Status NONE concode_elem_sep String name concode_elem_sep StatusType type concode_elem_sep String url concode_field_sep Optional<String> getUrl concode_elem_sep Status game concode_elem_sep String getStatusMessage concode_elem_sep S...
Status function ( ) { return NONE ; }
8,696
rename the file with oldname to newname . if a file with newname already exists , it is deleted before the renaming operation proceeds . if a file with oldname does not exist , no file will exist after the operation . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep FileUtil fileUtil concode_elem_s...
boolean function ( String arg0 , String arg1 ) { boolean loc0 = delete ( arg1 ) ; if ( exists ( arg0 ) ) { File loc1 = new File ( arg0 ) ; return loc1 . renameTo ( new File ( arg1 ) ) ; } return loc0 ; }
8,697
method declaration concode_field_sep String ls concode_elem_sep Vector vList concode_elem_sep int MAX_LINELENGTH concode_elem_sep Vector vSwitches concode_elem_sep Vector vSwitchOn concode_elem_sep Vector vSwitchOff concode_field_sep boolean processFile concode_elem_sep void writeFileLines concode_elem_sep void showUsa...
void function ( ) { int loc0 = vList . size ( ) ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { System . out . print ( "srini_string" ) ; String loc2 = ( String ) vList . elementAt ( loc1 ) ; if ( ! processFile ( loc2 ) ) { System . out . println ( "srini_string" + loc2 + "srini_string" ) ; } } System . out . println ...
8,698
sets the rule type to apply . this will widen or narrow the range of phonetic encodings considered . concode_field_sep PhoneticEngine engine concode_field_sep Object encode concode_elem_sep String encode concode_elem_sep void setNameType concode_elem_sep boolean isConcat concode_elem_sep NameType getNameType concode_el...
void function ( RuleType arg0 ) { this . engine = new PhoneticEngine ( this . engine . getNameType ( ) , arg0 , this . engine . isConcat ( ) ) ; }
8,699
sets the pdf/x mode concode_field_sep PDFUAMode pdfUAMode concode_elem_sep PDFVTMode pdfVTMode concode_elem_sep PDFXMode pdfXMode concode_elem_sep PDFDocument doc concode_elem_sep PDFAMode pdfAMode concode_field_sep boolean isIDEntryRequired concode_elem_sep void verifyTitleAbsent concode_elem_sep boolean isAnnotationA...
void function ( PDFVTMode arg0 ) { if ( arg0 == null ) { arg0 = PDFVTMode . DISABLED ; } this . pdfVTMode = arg0 ; validateProfileCombination ( ) ; }