idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
17,400
get the model number of the current model . concode_field_sep int current_model_pos concode_elem_sep int current_chain_pos concode_elem_sep int current_group_pos concode_elem_sep Structure structure concode_field_sep Group next concode_elem_sep void setModelPos concode_elem_sep int getGroupPos concode_elem_sep boolean ...
int function ( ) { return current_model_pos ; }
17,401
check if audit is required based on the service names and audit configuration . concode_field_sep Logger LOG concode_elem_sep AuditSupport auditSupport concode_field_sep List<GenericAuditEntity> buildAuditEntities concode_elem_sep void persistAuditEntity concode_elem_sep void auditEvent concode_elem_sep void auditOpera...
boolean function ( String arg0 ) { if ( EagleConfigFactory . load ( ) . isServiceAuditingEnabled ( ) && ( "srini_string" . equals ( arg0 ) || "srini_string" . equals ( arg0 ) ) ) { return true ; } return false ; }
17,402
gets the value of the informationonthenationalhighereducationsystem property . concode_field_sep AdditionalInformationType additionalInformation concode_elem_sep AttachmentsType attachments concode_elem_sep InformationIdentifyingTheHolderOfTheQualificationType informationIdentifyingTheHolderOfTheQualification concode_e...
RichTextTagType function ( ) { return informationOnTheNationalHigherEducationSystem ; }
17,403
registers a package name to use for shortname resolution . concode_field_sep String UNABLE_TO_INSTANTIATE_EXCEPTION_MESSAGE concode_elem_sep String IGNORING_EXCEPTION_MESSAGE concode_elem_sep Log LOG concode_elem_sep ClassLoader moduleClassLoader concode_elem_sep Set<String> packages concode_field_sep Object doMakeObje...
void function ( String arg0 ) { packages . add ( arg0 ) ; }
17,404
used for eager loading . < p : datatable value = '' # mybean.list '' ... > cache : because the datatable repeatedly calls this method , the value is stored on #list attribute to avoid multiple call in database . the #list value is initialized at the first call when is null and reused by next calls . concode_field_sep L...
Iterable < T > function ( ) { if ( list == null ) { log . debug ( "srini_string" ) ; list = getService ( ) . findAll ( getPredicate ( ) ) ; } return list ; }
17,405
convenience layer on top of restrict that returns the source files as file objects containing absolute paths if srcdir is absolute . concode_field_sep Task task concode_elem_sep File destDir concode_elem_sep FileUtils FILE_UTILS concode_field_sep Resource getResource concode_elem_sep String[] restrict concode_elem_sep ...
File [ ] function ( String [ ] arg0 , File arg1 , File arg2 , FileNameMapper arg3 , long arg4 ) { String [ ] loc0 = restrict ( arg0 , arg1 , arg2 , arg3 , arg4 ) ; File [ ] loc1 = new File [ loc0 . length ] ; for ( int loc2 = 0 ; loc2 < loc0 . length ; loc2 ++ ) { loc1 [ loc2 ] = new File ( arg1 , loc0 [ loc2 ] ) ; } r...
17,406
returns a native peer object for this font . concode_field_sep long serialVersionUID concode_elem_sep int PLAIN concode_elem_sep int BOLD concode_elem_sep int LAYOUT_NO_START_CONTEXT concode_elem_sep int LAYOUT_RIGHT_TO_LEFT concode_elem_sep int TRUETYPE_FONT concode_elem_sep int LAYOUT_NO_LIMIT_CONTEXT concode_elem_se...
FontPeer function ( ) { if ( peer != null ) return ( peer ) ; peer = Toolkit . getDefaultToolkit ( ) . getFontPeer ( name , style ) ; return ( peer ) ; }
17,407
this function fills a rectangle with a vertical gradient . this implementation does not use the gradient mechanism based on background patterns since they do not work stable on all systems . concode_field_sep PlaceHolder placeHolder concode_field_sep void fillVerticalGradientRoundedRectangle concode_elem_sep Color mixC...
void function ( Graphics arg0 , Rectangle arg1 , Color arg2 , Color arg3 ) { arg0 . pushState ( ) ; arg0 . setForegroundColor ( arg3 ) ; arg0 . setBackgroundColor ( arg2 ) ; arg0 . fillGradient ( arg1 . x , arg1 . y , arg1 . width , arg1 . height , true ) ; arg0 . popState ( ) ; }
17,408
find a principal type with the given id . concode_field_sep Provider<EntityManager> entityManagerProvider concode_elem_sep DaoUtils daoUtils concode_field_sep PrincipalTypeEntity ensurePrincipalTypeCreated concode_elem_sep PrincipalTypeEntity merge concode_elem_sep void create concode_elem_sep List<PrincipalTypeEntity>...
PrincipalTypeEntity function ( Integer arg0 ) { return entityManagerProvider . get ( ) . find ( PrincipalTypeEntity . class , arg0 ) ; }
17,409
this is called during the activation of a message endpoint . concode_field_sep String name concode_elem_sep Logger log concode_field_sep void setName concode_elem_sep String getName concode_elem_sep void stop concode_elem_sep int hashCode concode_elem_sep void endpointDeactivation concode_elem_sep boolean equals concod...
void function ( MessageEndpointFactory arg0 , ActivationSpec arg1 ) { }
17,410
return false . monotonic functions are not settable . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isValueAcceptable concode_elem_sep Object getValue concode_elem_sep InequalityTerm[] getVariables concode_elem_sep void setValue concode_elem_sep Object getAssociatedObject concode_elem_sep String t...
boolean function ( ) { return false ; }
17,411
get a probability estimate for a value concode_field_sep KernelEstimator[] m_Estimators concode_elem_sep DiscreteEstimator m_Weights concode_field_sep String toString concode_elem_sep void main concode_elem_sep Estimator getEstimator concode_elem_sep void addValue concode_elem_sep String getRevision
double function ( double arg0 , double arg1 ) { return getEstimator ( arg1 ) . getProbability ( arg0 ) ; }
17,412
returns the name of the lock store implementation . default : null equivalent deprecated property : com.arjuna.ats.txoj.lockstore.lockstoretype concode_field_sep String multipleLockStore concode_elem_sep String lockStoreDir concode_elem_sep String singleLockStore concode_elem_sep String lockStoreType concode_elem_sep b...
String function ( ) { return lockStoreType ; }
17,413
set the scopemetadataresolver to use for detected bean classes . the default is an annotationscopemetadataresolver . concode_field_sep BeanDefinitionRegistry registry concode_elem_sep ConditionEvaluator conditionEvaluator concode_elem_sep ScopeMetadataResolver scopeMetadataResolver concode_elem_sep BeanNameGenerator be...
void function ( ScopeMetadataResolver arg0 ) { this . scopeMetadataResolver = ( arg0 != null ? arg0 : new AnnotationScopeMetadataResolver ( ) ) ; }
17,414
create an empty project if this project does not exist . concode_field_sep PlaceHolder placeHolder concode_field_sep IProject getTargetProject concode_elem_sep void refreshTargetProject concode_elem_sep File getTargetFolder concode_elem_sep FeatureConfiguration getOutletFeatureConfiguration concode_elem_sep boolean get...
boolean function ( IProject arg0 ) { if ( ! arg0 . exists ( ) ) { try { NullProgressMonitor loc0 = new NullProgressMonitor ( ) ; arg0 . create ( loc0 ) ; arg0 . open ( loc0 ) ; return true ; } catch ( CoreException loc0 ) { loc0 . printStackTrace ( ) ; } } return false ; }
17,415
returns list of changes . concode_field_sep long releaseTime concode_elem_sep VersionChange[] changes concode_elem_sep String recentVersion concode_elem_sep Map locations concode_field_sep String getRecentVersion concode_elem_sep long getReleaseTime concode_elem_sep Map getLocations
VersionChange [ ] function ( ) { return changes ; }
17,416
get the minimum x in this glyf concode_field_sep short minY concode_elem_sep short minX concode_elem_sep short maxY concode_elem_sep short maxX concode_elem_sep short numContours concode_elem_sep boolean isCompound concode_field_sep void setMinY concode_elem_sep void setData concode_elem_sep void setMinX concode_elem_s...
short function ( ) { return minX ; }
17,417
the clusteruser corresponding to the given offset . represents an unprivileged user . concode_field_sep int NUM_USERS concode_elem_sep String ORG_NAME concode_elem_sep String hostname concode_elem_sep ClusterUser accumuloAdmin concode_elem_sep MiniKdc kdc concode_elem_sep boolean started concode_elem_sep Logger log con...
ClusterUser function ( int arg0 ) { checkArgument ( started , "srini_string" ) ; checkArgument ( arg0 >= 0 && arg0 < NUM_USERS , "srini_string" + NUM_USERS ) ; return clientPrincipals . get ( arg0 ) ; }
17,418
downloads an animated gif logo . the given callback will not be called if the download failed or there is already an ongoing url fetching for the same url . concode_field_sep Bitmap image concode_elem_sep String altText concode_elem_sep String onClickUrl concode_elem_sep long mNativeLogoBridge concode_elem_sep String a...
void function ( AnimatedLogoCallback arg0 , String arg1 ) { nativeGetAnimatedLogo ( mNativeLogoBridge , arg0 , arg1 ) ; }
17,419
drops the given role using the sentry service and updates the impala catalog . if the rpc to the sentry service fails the impala catalog will not be modified . returns the removed role or null if the role did not exist in the catalog . throws exception if there was any error updating the sentry service . concode_field_...
Role function ( User arg0 , String arg1 ) { sentryPolicyService_ . dropRole ( arg0 , arg1 , false ) ; return catalog_ . removeRole ( arg1 ) ; }
17,420
sets the regexp query expression to use . concode_field_sep Logger logR concode_elem_sep String queryExpression concode_elem_sep Boolean allowNulls concode_elem_sep String metadataKey concode_elem_sep Pattern pattern concode_field_sep void setMetadataKey concode_elem_sep String getQueryExpression concode_elem_sep Boole...
void function ( String arg0 ) { if ( arg0 == null || "srini_string" . equals ( arg0 ) ) { throw new IllegalArgumentException ( ) ; } else { queryExpression = arg0 ; } }
17,421
construct a & - separated list of the given values , percentencoded . concode_field_sep String OAUTH_SIGNATURE concode_elem_sep String OAUTH_TIMESTAMP concode_elem_sep String CONSUMER_KEY_UNKNOWN concode_elem_sep String OAUTH_CONSUMER_KEY concode_elem_sep String OAUTH_TOKEN concode_elem_sep String SIGNATURE_METHOD_REJE...
String function ( Iterable arg0 ) { StringBuilder loc0 = new StringBuilder ( ) ; for ( Object loc1 : arg0 ) { if ( loc0 . length ( ) > 0 ) { loc0 . append ( "srini_string" ) ; } loc0 . append ( OAuth . percentEncode ( toString ( loc1 ) ) ) ; } return loc0 . toString ( ) ; }
17,422
method sorts an array in ascending order using the merge sort algorithm . concode_field_sep PlaceHolder placeHolder concode_field_sep List<SortEvent<T>> bubbleSort concode_elem_sep List<SortEvent<T>> insertionSort concode_elem_sep void swap concode_elem_sep void eventSort concode_elem_sep List<SortEvent<T>> mergeSortHe...
List < SortEvent < T >> function ( T [ ] arg0 ) { return mergeSortHelper ( arg0 , 0 , arg0 . length ) ; }
17,423
gets the jms provider minor version number . concode_field_sep ActiveMQConnectionMetaData INSTANCE concode_elem_sep String PROVIDER_VERSION concode_elem_sep int PROVIDER_MINOR_VERSION concode_elem_sep int PROVIDER_MAJOR_VERSION concode_field_sep String getJMSVersion concode_elem_sep int getJMSMajorVersion concode_elem_...
int function ( ) { return PROVIDER_MINOR_VERSION ; }
17,424
gets the end point of the transition , a float between 0.0 and 1.0 . defaults to 1.0 . concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep...
float function ( ) { return to ; }
17,425
gets the value of the id property . concode_field_sep BigInteger priorityRanking concode_elem_sep List<String> groupName concode_elem_sep Status relationshipStatus concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep List<RelatedProduct.ItemCompatibility> itemCompatibility concode_elem_sep...
String function ( ) { return id ; }
17,426
sets the email address . concode_field_sep String name concode_elem_sep Reference uri concode_elem_sep String email concode_field_sep void setName concode_elem_sep void writeElement concode_elem_sep String getName concode_elem_sep void setUri concode_elem_sep String getEmail concode_elem_sep Reference getUri
void function ( String arg0 ) { this . email = arg0 ; }
17,427
create a list of doubles from a vector . concode_field_sep PlaceHolder placeHolder concode_field_sep void writeWorld concode_elem_sep World readWorld concode_elem_sep List<CompoundTag> writeInventory concode_elem_sep Vector listToVector concode_elem_sep CompoundTag writeItem concode_elem_sep ItemStack readItem concode_...
List < Double > function ( Vector arg0 ) { return Arrays . asList ( arg0 . getX ( ) , arg0 . getY ( ) , arg0 . getZ ( ) ) ; }
17,428
synchronously deletes each directory one at a time . should be executed in its own thread , as this may take a long time . concode_field_sep Logger logger concode_elem_sep Executor directoryCleaner concode_elem_sep String appId concode_elem_sep ConcurrentMap<AppExecId,ExecutorShuffleInfo> executors concode_elem_sep Tra...
void function ( String [ ] arg0 ) { for ( String loc0 : arg0 ) { try { JavaUtils . deleteRecursively ( new File ( loc0 ) ) ; logger . debug ( "srini_string" + loc0 ) ; } catch ( Exception loc1 ) { logger . error ( "srini_string" + loc0 , loc1 ) ; } } }
17,429
sets the http proxy that will be used by connections created by this client . this takes precedence over #setproxyselector , which is only honored when this proxy is null which it is by default . to disable proxy use completely , call setproxy proxy.no _ proxy . concode_field_sep ProxySelector proxySelector concode_ele...
OkHttpClient function ( Proxy arg0 ) { this . proxy = arg0 ; return this ; }
17,430
adds the s v n revision to the database . also notifies the appropriate model listeners . concode_field_sep SVNRevisionLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.socialcoding.model.SVNRevision getFirstSVNRevision concode_elem_sep com.liferay.portal.ker...
com . liferay . socialcoding . model . SVNRevision function ( com . liferay . socialcoding . model . SVNRevision arg0 ) { return getService ( ) . addSVNRevision ( arg0 ) ; }
17,431
returns the number of rows that match the dynamic query . concode_field_sep TalendProcessLocalService _talendProcessLocalService concode_field_sep com.genpact.model.TalendProcess createTalendProcess concode_elem_sep void setWrappedService concode_elem_sep com.genpact.model.TalendProcess updateTalendProcess concode_elem...
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , com . liferay . portal . kernel . dao . orm . Projection arg1 ) { return _talendProcessLocalService . dynamicQueryCount ( arg0 , arg1 ) ; }
17,432
returns the index of the character that has been hit . concode_field_sep FontRenderContext aaOffFontRenderContext concode_elem_sep FontRenderContext fontRenderContext concode_elem_sep TextNode node concode_elem_sep TextHit hit concode_elem_sep TextLayoutFactory textLayoutFactory concode_field_sep TextNode getTextNode c...
int function ( ) { return hit . getCharIndex ( ) ; }
17,433
internal concode_field_sep ThreadLocal<Connection> DEFAULT_CONNECTION concode_elem_sep String DEFAULT_URL concode_elem_sep boolean registered concode_elem_sep Driver INSTANCE concode_field_sep int getMajorVersion concode_elem_sep Driver load concode_elem_sep int getMinorVersion concode_elem_sep void unload concode_elem...
void function ( Connection arg0 ) { DEFAULT_CONNECTION . set ( arg0 ) ; }
17,434
adds a copy of hssfconditionalformatting object to the sheet this method could be used to copy hssfconditionalformatting object from one sheet to another . for example : hssfconditionalformatting cf = sheet.getconditionalformattingat index ; newsheet.addconditionalformatting cf ; concode_field_sep HSSFSheet _sheet conc...
int function ( HSSFConditionalFormatting arg0 ) { CFRecordsAggregate loc0 = arg0 . getCFRecordsAggregate ( ) . cloneCFAggregate ( ) ; return _conditionalFormattingTable . add ( loc0 ) ; }
17,435
ensures that reference is non-null , throwing a verifyexception with a custommessage otherwise . concode_field_sep PlaceHolder placeHolder concode_field_sep void verify concode_elem_sep void verify
T function ( @ Nullable T arg0 , @ Nullable String arg1 , @ Nullable Object ... arg2 ) { verify ( arg0 != null , arg1 , arg2 ) ; return arg0 ; }
17,436
returns the entry with the primary key . concode_field_sep EntryLocalService _service concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep int searchCount concode_elem_sep int searchUsersAndContactsCount concode_elem_sep com.liferay.contacts.model.Entry u...
com . liferay . contacts . model . Entry function ( long arg0 ) { return getService ( ) . getEntry ( arg0 ) ; }
17,437
activity registration options concode_field_sep Map<String,Object> clientConfigurationParameters concode_elem_sep ActivityTypeRegistrationOptions activityTypeRegistrationOptions concode_elem_sep String stateResultType concode_elem_sep AmazonSimpleWorkflowClient amazonSWClient concode_elem_sep ActivitySchedulingOptions ...
void function ( ActivityTypeRegistrationOptions arg0 ) { this . activityTypeRegistrationOptions = arg0 ; }
17,438
provides serialization support . concode_field_sep Class periodClass concode_elem_sep Paint dividerPaint concode_elem_sep RectangleInsets padding concode_elem_sep Stroke DEFAULT_DIVIDER_STROKE concode_elem_sep Font labelFont concode_elem_sep DateFormat dateFormat concode_elem_sep Paint DEFAULT_LABEL_PAINT concode_elem_...
void function ( ObjectOutputStream arg0 ) { arg0 . defaultWriteObject ( ) ; SerialUtilities . writePaint ( this . labelPaint , arg0 ) ; SerialUtilities . writeStroke ( this . dividerStroke , arg0 ) ; SerialUtilities . writePaint ( this . dividerPaint , arg0 ) ; }
17,439
the total size of the behavioral data that is collected by the agent during an assessment . concode_field_sep String messageType concode_elem_sep Long count concode_elem_sep Long dataSize concode_field_sep String getMessageType concode_elem_sep MessageTypeTelemetry withDataSize concode_elem_sep MessageTypeTelemetry wit...
void function ( Long arg0 ) { this . dataSize = arg0 ; }
17,440
runs #parse if it has not yet been run successfully . concode_field_sep ParseObserver observer concode_elem_sep int endOffset concode_elem_sep DirectClassFile cf concode_elem_sep int offset concode_elem_sep int context concode_elem_sep StdAttributeList list concode_elem_sep AttributeFactory attributeFactory concode_fie...
void function ( ) { if ( endOffset < 0 ) { parse ( ) ; } }
17,441
notify this lineid that it is no longer in use . will stopposition tracking . call this when this lineid is no longerneeded . concode_field_sep String fileName concode_elem_sep int lineIdx concode_elem_sep Set<LineHighlight> listeners concode_elem_sep Position pos concode_elem_sep Document doc concode_field_sep void re...
void function ( ) { if ( doc != null ) { doc . removeDocumentListener ( this ) ; doc = null ; } }
17,442
sets the streetnumber . concode_field_sep String streetName concode_elem_sep int streetNumber concode_elem_sep String city concode_elem_sep String countryCode concode_elem_sep String description concode_elem_sep Locale locale concode_field_sep String getCountryCode concode_elem_sep void setCity concode_elem_sep void se...
void function ( int arg0 ) { this . streetNumber = arg0 ; }
17,443
returns the intent that was used to initiate this call to the facebook application . concode_field_sep UUID callId concode_elem_sep Intent requestIntent concode_elem_sep int requestCode concode_elem_sep AppCall currentPendingCall concode_field_sep void setRequestIntent concode_elem_sep AppCall finishPendingCall concode...
Intent function ( ) { return requestIntent ; }
17,444
gets the value of the description property . concode_field_sep String m_sName concode_elem_sep String m_sDescription concode_elem_sep List<MockJAXBIssue> m_aIssue concode_elem_sep long m_nID concode_field_sep void setName concode_elem_sep String getName concode_elem_sep MockJAXBIssue getOnlyIssue concode_elem_sep List<...
String function ( ) { return m_sDescription ; }
17,445
set the original text of the pattern for use in diagnostics concode_field_sep String originalText concode_elem_sep String systemId concode_elem_sep int lineNumber concode_elem_sep Executable executable concode_field_sep NodeTest getNodeTest concode_elem_sep String getSystemId concode_elem_sep int getHostLanguage concod...
void function ( String arg0 ) { originalText = arg0 ; }
17,446
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_2_4_3 concode_elem_sep String OPENCV_VERSION_2_4_7...
boolean function ( ) { return StaticHelper . initOpenCV ( false ) ; }
17,447
calculates the hash code with the given hash algorithm . concode_field_sep String txt concode_field_sep String getMd5 concode_elem_sep MessageDigest getMessageDigest concode_elem_sep String toHexString concode_elem_sep String getSha256 concode_elem_sep String getSha512 concode_elem_sep String getSha1
String function ( HashAlgorithm arg0 ) { if ( txt == null ) { return null ; } MessageDigest loc0 = getMessageDigest ( arg0 . arg0 ( ) ) ; loc0 . update ( txt . getBytes ( ) ) ; byte [ ] loc1 = loc0 . digest ( ) ; return toHexString ( loc1 ) ; }
17,448
returns the leaf node level cause concode_field_sep PlaceHolder placeHolder concode_field_sep boolean containsCause
Throwable function ( Throwable arg0 ) { Throwable loc0 = arg0 . getCause ( ) ; if ( loc0 . getCause ( ) != null ) { return getOriginalCause ( loc0 ) ; } return loc0 ; }
17,449
get the typecode of the servicecontext . concode_field_sep ServiceContext value concode_field_sep void _read concode_elem_sep void _write
org . omg . CORBA . TypeCode function ( ) { return ServiceContextHelper . type ( ) ; }
17,450
removes all listeners from event router . concode_field_sep LinkedHashSet<ListenerMethod> listenerList concode_field_sep Collection<?> getListeners concode_elem_sep void fireEvent concode_elem_sep void fireEvent concode_elem_sep Logger getLogger concode_elem_sep void removeListener concode_elem_sep void removeListener ...
void function ( ) { listenerList = null ; }
17,451
retrieves the list of enrolled students . concode_field_sep CourseGrading courseGrading concode_elem_sep String courseCode concode_elem_sep ArrayList<FacultyMember> coordinators concode_elem_sep ArrayList<CourseSession> tutorialGroups concode_elem_sep ArrayList<CourseSession> labGroups concode_elem_sep String name conc...
ArrayList < Student > function ( ) { return enrolledStudents ; }
17,452
builds a csv list from the specified string , separator string and quote string . all arguments are assumed to be non-null . separates each list element with the value of the separator argument . prepends and appends each element with the value of the quote argument . no attempt is made to escape the quote character se...
String function ( String [ ] arg0 , String arg1 , String arg2 ) { int loc0 = arg0 . length ; StringBuffer loc1 = new StringBuffer ( loc0 * 16 ) ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { loc1 . append ( arg2 ) ; loc1 . append ( arg0 [ loc2 ] ) ; loc1 . append ( arg2 ) ; if ( loc2 + 1 < loc0 ) { loc1 . append ( ar...
17,453
set if this fixture is a sensor . concode_field_sep World world concode_elem_sep short[] tmp concode_elem_sep Filter filter concode_elem_sep Body body concode_elem_sep long addr concode_field_sep float getRestitution concode_elem_sep World getWorld concode_elem_sep float jniGetRestitution concode_elem_sep boolean testP...
void function ( boolean arg0 ) { jniSetSensor ( addr , arg0 ) ; }
17,454
sets the whiteboxpluginhost to which the plugin tool is tied . this is the class that the plugin will send all feedback messages , progress updates , and return objects . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgress...
void function ( WhiteboxPluginHost arg0 ) { myHost = arg0 ; }
17,455
check if the user approval bypass setting has made in the identity.xml concode_field_sep String OPENID_ADMIN_COOKIE concode_elem_sep OpenIDProviderService openIDProviderService concode_elem_sep String OPENID_PROVIDER_SERVICE concode_elem_sep Log log concode_elem_sep Integer sessionTimeout concode_elem_sep boolean isUse...
boolean function ( ) { return isUserApprovalBypassEnabled ; }
17,456
retrieve the content type of the request . concode_field_sep ActionRequest request concode_field_sep String getCharacterEncoding concode_elem_sep String toString concode_elem_sep int getContentLength concode_elem_sep InputStream getInputStream
String function ( ) { return request . getContentType ( ) ; }
17,457
gets the cached list of permissions from a bundle . concode_field_sep String TOKEN_SOURCE_KEY concode_elem_sep long INVALID_BUNDLE_MILLISECONDS concode_elem_sep String TOKEN_KEY concode_elem_sep String PERMISSIONS_KEY concode_elem_sep String EXPIRATION_DATE_KEY concode_elem_sep String DECLINED_PERMISSIONS_KEY concode_e...
List < String > function ( Bundle arg0 ) { Validate . notNull ( arg0 , "srini_string" ) ; return arg0 . getStringArrayList ( PERMISSIONS_KEY ) ; }
17,458
write an element close tag , such as , on a standalone line . if indent = false is passed , indentation will not be added . concode_field_sep ArrayList<String> stack concode_elem_sep OutputStream stream concode_elem_sep BufferedWriter writer concode_elem_sep String encoding concode_field_sep void writeEscaped concode_e...
void function ( ) { closeElement ( true ) ; }
17,459
wait for all previous mvcc transactions complete concode_field_sep boolean completed concode_elem_sep long writeNumber concode_elem_sep long FIXED_SIZE concode_elem_sep Object readWaiters concode_elem_sep long NO_WRITE_NUMBER concode_elem_sep long memstoreRead concode_elem_sep LinkedList<WriteEntry> writeQueue concode_...
void function ( ) { WriteEntry loc0 = beginMemstoreInsert ( ) ; waitForPreviousTransactionsComplete ( loc0 ) ; }
17,460
fixme comment this concode_field_sep List<Item> items concode_elem_sep String orderid concode_elem_sep String person concode_elem_sep ShipTo shipto concode_field_sep String getPerson concode_elem_sep void addItem concode_elem_sep List<Item> getItems concode_elem_sep ShipTo getShipto concode_elem_sep void setItems conco...
Item function ( int arg0 ) { return items . remove ( arg0 ) ; }
17,461
f0 - > `` void '' concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( VoidType arg0 , A arg1 ) { arg0 . f0 . accept ( this , arg1 ) ; }
17,462
get the list of glyph objects concode_field_sep ArrayList kerning concode_elem_sep int code2 concode_elem_sep HashMap glyphLookup concode_elem_sep int code concode_elem_sep int code1 concode_elem_sep Shape shape concode_elem_sep double leading concode_elem_sep boolean isUnicode concode_elem_sep ArrayList glyphs concode...
ArrayList function ( ) { return glyphs ; }
17,463
extract the boolean from the given any . this implementation expects the any to hold the instance of booleanseqholder that is returned by any #extract_streamable . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean[] read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode...
boolean [ ] function ( Any arg0 ) { BooleanSeqHolder loc0 = ( BooleanSeqHolder ) arg0 . extract_Streamable ( ) ; return loc0 . value ; }
17,464
gets the expiry date . concode_field_sep Date expiryDate concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep String title concode_elem_sep String body concode_elem_sep Date startDate concode_field_sep Date getStartDate concode_elem_sep void setStartDate concode_elem_sep String getTitle co...
Date function ( ) { return expiryDate ; }
17,465
logs a message with the debug level . concode_field_sep ALogger logger concode_elem_sep play.api.Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep v...
void function ( String arg0 ) { logger . underlyingLogger ( ) . debug ( arg0 ) ; }
17,466
creates a new s v n repository with the primary key . does not add the s v n repository to the database . concode_field_sep SVNRepositoryLocalService _svnRepositoryLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.socialcoding.model.SVNRepository updateSVNRepository c...
com . liferay . socialcoding . model . SVNRepository function ( long arg0 ) { return _svnRepositoryLocalService . createSVNRepository ( arg0 ) ; }
17,467
this method is used by combobox editor of bindtoexistingbeanstep.mytablecelleditor concode_field_sep String myType concode_elem_sep String myName concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep int compareTo
String function ( ) { return myName ; }
17,468
dispose of the runtime you initialized . concode_field_sep Node node concode_elem_sep Ruby runtime concode_field_sep Object rubyToJava concode_elem_sep Object rubyToJava concode_elem_sep RubyObjectAdapter newObjectAdapter concode_elem_sep ClassCache createClassCache concode_elem_sep IRubyObject run concode_elem_sep IRu...
void function ( Ruby arg0 ) { arg0 . tearDown ( ) ; }
17,469
setter for property packskipimages . concode_field_sep int packImageHeight concode_elem_sep int unpackSkipImages concode_elem_sep boolean packLsbFirst concode_elem_sep int packSkipImages concode_elem_sep boolean packSwapBytes concode_elem_sep int unpackImageHeight concode_elem_sep int packSkipRows concode_elem_sep int ...
void function ( final int arg0 ) { this . packSkipImages = arg0 ; }
17,470
print a byte and then flush the output stream . concode_field_sep String charsetName concode_elem_sep Locale US_LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep ...
void function ( byte arg0 ) { out . print ( arg0 ) ; out . flush ( ) ; }
17,471
get this node 's height , as defined in the style . concode_field_sep CSSNode mParent concode_elem_sep CSSStyle style concode_elem_sep CSSNode nextChild concode_elem_sep ArrayList<CSSNode> mChildren concode_elem_sep int lineIndex concode_elem_sep MeasureFunction mMeasureFunction concode_elem_sep CachedCSSLayout lastLay...
float function ( ) { return style . dimensions [ DIMENSION_HEIGHT ] ; }
17,472
writes a coil state to the slave . concode_field_sep WriteSingleRegisterRequest m_WriteSingleRegisterRequest concode_elem_sep ReadInputDiscretesRequest m_ReadInputDiscretesRequest concode_elem_sep WriteMultipleCoilsRequest m_WriteMultipleCoilsRequest concode_elem_sep ReadInputRegistersRequest m_ReadInputRegistersReques...
boolean function ( int arg0 , int arg1 , boolean arg2 ) { m_WriteCoilRequest . setUnitID ( arg0 ) ; m_WriteCoilRequest . setReference ( arg1 ) ; m_WriteCoilRequest . setCoil ( arg2 ) ; m_Transaction . setRequest ( m_WriteCoilRequest ) ; m_Transaction . execute ( ) ; return ( ( WriteCoilResponse ) m_Transaction . getRes...
17,473
return object representing prototype for class concode_field_sep PlaceHolder placeHolder concode_field_sep Object resolveAddress concode_elem_sep int tie concode_elem_sep int tied concode_elem_sep int instance concode_elem_sep int address concode_elem_sep int address concode_elem_sep void untie concode_elem_sep int get...
Object function ( Object arg0 , String arg1 ) { throw new RuntimeException ( "srini_string" ) ; }
17,474
modified to be compatible with double concode_field_sep Edge next concode_elem_sep int windCnt2 concode_elem_sep Edge.Side side concode_elem_sep Edge nextInAEL concode_elem_sep DoublePoint bot concode_elem_sep double deltaX concode_elem_sep Edge prev concode_elem_sep Edge nextInLML concode_elem_sep DoublePoint delta co...
void function ( DoublePoint arg0 ) { this . top . set ( arg0 ) ; }
17,475
error log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void set...
void function ( String arg0 , String arg1 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . e ( arg0 , arg1 ) ; }
17,476
auto generated getter method concode_field_sep com.amazon.ec2.RevokeSecurityGroupEgressType localRevokeSecurityGroupEgress concode_elem_sep javax.xml.namespace.QName MY_QNAME concode_field_sep java.lang.String generatePrefix concode_elem_sep void setRevokeSecurityGroupEgress concode_elem_sep void serialize concode_elem...
com . amazon . ec2 . RevokeSecurityGroupEgressType function ( ) { return localRevokeSecurityGroupEgress ; }
17,477
sets the value of the projectcodetypeobjectid property . concode_field_sep Integer projectCodeTypeObjectId concode_elem_sep Date lastUpdateDate concode_elem_sep Boolean isBaseline concode_elem_sep String projectCodeTypeName concode_elem_sep Integer projectObjectId concode_elem_sep Boolean isTemplate concode_elem_sep St...
void function ( Integer arg0 ) { this . projectCodeTypeObjectId = arg0 ; }
17,478
register an application with its secret . executors need to first authenticate themselves with the same secret before fetching shuffle files written by other executors in this application . concode_field_sep ConcurrentHashMap<String,String> shuffleSecretMap concode_elem_sep Logger logger concode_elem_sep String SPARK_S...
void function ( String arg0 , String arg1 ) { if ( ! shuffleSecretMap . contains ( arg0 ) ) { shuffleSecretMap . put ( arg0 , arg1 ) ; logger . info ( "srini_string" , arg0 ) ; } else { logger . debug ( "srini_string" , arg0 ) ; } }
17,479
set a default locale that this resolver will return if no other locale found . concode_field_sep Locale defaultLocale concode_field_sep Locale getDefaultLocale
void function ( Locale arg0 ) { this . defaultLocale = arg0 ; }
17,480
creates an instance of ssliosession decorating the given iosession . this method can be overridden in a super class in order to provide a different implementation of ssl i/o session . concode_field_sep SSLIOSessionHandler sslHandler concode_elem_sep NHttpServiceHandler handler concode_elem_sep SSLContext sslcontext con...
SSLIOSession function ( final IOSession arg0 , final SSLContext arg1 , final SSLIOSessionHandler arg2 ) { return new SSLIOSession ( arg0 , arg1 , arg2 ) ; }
17,481
get a sax2 org.xml.sax.ext.lexicalhandler for the output . concode_field_sep ContentHandler handler concode_elem_sep String systemId concode_elem_sep String FEATURE concode_elem_sep LexicalHandler lexhandler concode_field_sep void setHandler concode_elem_sep String getSystemId concode_elem_sep void setLexicalHandler co...
LexicalHandler function ( ) { return lexhandler ; }
17,482
returns the tick values . concode_field_sep double log10 concode_elem_sep int[] r concode_elem_sep int[] b concode_elem_sep String paletteName concode_elem_sep double[] tickValues concode_elem_sep double minZ concode_elem_sep boolean stepped concode_elem_sep int[] g concode_elem_sep long serialVersionUID concode_elem_s...
double [ ] function ( ) { return this . tickValues ; }
17,483
remove duplicate element from list concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isNullFieldsPresent concode_elem_sep Date convertLongToDate
Set < String > function ( List < String > arg0 ) { Set < String > loc0 = new HashSet < String > ( arg0 ) ; return loc0 ; }
17,484
returns the user uuid of this user huyen . concode_field_sep UserHuyen _userHuyen concode_field_sep void setName concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getMaHuyen concode_elem_se...
java . lang . String function ( ) { return _userHuyen . getUserUuid ( ) ; }
17,485
returns all the permissiongroup s available in the system . concode_field_sep Class owner concode_elem_sep SortedSet<Permission> permissions concode_elem_sep SortedSet<PermissionGroup> PERMISSIONS concode_elem_sep Localizable title concode_field_sep void add concode_elem_sep List<Permission> getPermissions concode_elem...
List < PermissionGroup > function ( ) { return new ArrayList < PermissionGroup > ( PERMISSIONS ) ; }
17,486
configures this builder to produce tests appropriate for the given features . this method may be called more than once to add features in multiple groups . concode_field_sep Set<Method> suppressedTests concode_elem_sep Logger logger concode_elem_sep G subjectGenerator concode_elem_sep String name concode_elem_sep Runna...
B function ( Feature < ? > ... arg0 ) { return withFeatures ( Arrays . asList ( arg0 ) ) ; }
17,487
skips over a complete xml element on the input . precondition : the cursor is at a start_element . postcondition : the cursor is at an end_element . concode_field_sep Collection<String> TOPLEVEL_ELEMENT_NAMES concode_field_sep TestCase parseTestSuite concode_elem_sep void parseContainedElements concode_elem_sep TestXml...
void function ( XMLStreamReader arg0 ) { int loc0 = 1 ; while ( true ) { int loc1 = arg0 . next ( ) ; switch ( loc1 ) { case XMLStreamConstants . START_ELEMENT : loc0 ++ ; break ; case XMLStreamConstants . END_ELEMENT : if ( -- loc0 == 0 ) { return ; } break ; } } }
17,488
update the error with single values . concode_field_sep int setSize concode_elem_sep ErrorCalculationMode mode concode_elem_sep double globalError concode_field_sep double calculateESS concode_elem_sep double calculateMSE concode_elem_sep void setMode concode_elem_sep void reset concode_elem_sep ErrorCalculationMode ge...
void function ( final double arg0 , final double arg1 ) { double loc0 = arg1 - arg0 ; this . globalError += loc0 * loc0 ; this . setSize ++ ; }
17,489
tests whether the provided string is a flag , i.e. whether the string is non-null , starts with a '' - '' dash , and has at least one character following the dash . concode_field_sep HashMap<String,String> argumentMap concode_field_sep String getValue concode_elem_sep boolean isValue concode_elem_sep boolean hasFlag co...
boolean function ( String arg0 ) { if ( arg0 != null ) { if ( arg0 . startsWith ( "srini_string" ) && arg0 . length ( ) > 1 ) { return true ; } else return false ; } return false ; }
17,490
sets the value of the dateto property . concode_field_sep BigDecimal trainingHours concode_elem_sep XMLGregorianCalendar dateTo concode_elem_sep String collaboratingInstitution concode_elem_sep XMLGregorianCalendar dateFrom concode_field_sep void setCollaboratingInstitution concode_elem_sep String getCollaboratingInsti...
void function ( XMLGregorianCalendar arg0 ) { this . dateTo = arg0 ; }
17,491
merge all connections from call ` other ' into ` this ' concode_field_sep Customer caller concode_elem_sep Customer receiver concode_elem_sep Vector connections concode_field_sep boolean isConnected concode_elem_sep void pickup concode_elem_sep boolean includes concode_elem_sep void hangup
void function ( Call arg0 ) { for ( Enumeration loc0 = arg0 . connections . elements ( ) ; loc0 . hasMoreElements ( ) ; ) { Connection loc1 = ( Connection ) loc0 . nextElement ( ) ; arg0 . connections . removeElement ( loc1 ) ; connections . addElement ( loc1 ) ; } }
17,492
the default implementation of this method in abstractelementvisitor6 will always throw unknownelementexception . this behavior is not required of a subclass . concode_field_sep PlaceHolder placeHolder concode_field_sep R visit concode_elem_sep R visit
R function ( Element arg0 , P arg1 ) { throw new UnknownElementException ( arg0 , arg1 ) ; }
17,493
called when a non-recoverable exception has occurred . timeout exceptions are considered recoverable and wo n't trigger this call . concode_field_sep PlaceHolder placeHolder concode_field_sep void onComplete
void function ( Exception arg0 ) { arg0 . printStackTrace ( ) ; }
17,494
string concode_field_sep Object parent concode_elem_sep String value concode_elem_sep String space concode_field_sep void setSpace concode_elem_sep Object getParent concode_elem_sep String getSpace concode_elem_sep void afterUnmarshal concode_elem_sep void setValue concode_elem_sep void setParent
String function ( ) { return value ; }
17,495
get time luminous reading was taken . concode_field_sep int warnluminous concode_elem_sep Date timeOfReading concode_elem_sep String ID concode_elem_sep long time concode_elem_sep int priority concode_field_sep int getwarnluminous concode_elem_sep long getTime concode_elem_sep int getPriority concode_elem_sep String ge...
Date function ( ) { return timeOfReading ; }
17,496
reads an int from an inputstream concode_field_sep PlaceHolder placeHolder concode_field_sep int readLine
int function ( InputStream arg0 ) { int loc0 = 0 ; for ( int loc1 = 24 ; loc1 >= 0 ; loc1 -= 8 ) { int loc2 = arg0 . read ( ) ; if ( loc2 == - 1 ) { throw new IOException ( ) ; } loc0 += loc2 << loc1 ; } return loc0 ; }
17,497
a new method that interrupts the worker thread . call this method to force the worker to stop what it 's doing . concode_field_sep Thread thread concode_elem_sep Integer threadPriority concode_elem_sep Object value concode_elem_sep ThreadVar threadVar concode_field_sep void setThreadPriority concode_elem_sep Object get...
void function ( ) { Thread loc0 = threadVar . get ( ) ; if ( loc0 != null ) { loc0 . interrupt ( ) ; } threadVar . clear ( ) ; }
17,498
append content in the current tag element . concode_field_sep BufferedElement parent concode_elem_sep Collection<BufferedAttribute> dynamicAttributes concode_elem_sep Map<String,String> data concode_elem_sep BufferedEndTagElement endTagElement concode_elem_sep String startTagElementName concode_elem_sep String endTagEl...
void function ( char [ ] arg0 , int arg1 , int arg2 ) { getCurrentTagElement ( ) . append ( arg0 , arg1 , arg2 ) ; }
17,499
specifies a general information string for this identity . first , if there is a security manager , its checksecurityaccess method is called with `` setidentityinfo '' as its argument to see if it 's ok to specify the information string . concode_field_sep Vector certificates concode_elem_sep IdentityScope scope concod...
void function ( String arg0 ) { SecurityManager loc0 = System . getSecurityManager ( ) ; if ( loc0 != null ) loc0 . checkSecurityAccess ( "srini_string" ) ; this . info = arg0 ; }