idx
int64
0
25k
question
stringlengths
68
5.61k
target
stringlengths
21
500
24,200
throw assertionexception with a given message . use this method surrounded with if block with assert condition in case you plan to do string concatenation to producethe message . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertCondition concode_elem_sep T assertNotNull
void function ( String arg0 ) { throw new AssertionException ( arg0 ) ; }
24,201
wait until the thread is done or at least try to . concode_field_sep DiskLog log concode_elem_sep long startSeqno concode_elem_sep int eventsRead concode_elem_sep AtomicCounter lastSeqno concode_elem_sep int howMany concode_elem_sep Throwable error concode_elem_sep Logger logger concode_elem_sep Thread myThread concode...
boolean function ( long arg0 ) { if ( myThread == null ) return false ; else { try { myThread . join ( arg0 ) ; } catch ( InterruptedException loc0 ) { } return ! myThread . isAlive ( ) ; } }
24,202
second method concode_field_sep PlaceHolder placeHolder concode_field_sep void binMe
void function ( InputStream arg0 ) { }
24,203
returns the description string for this option . concode_field_sep boolean swigCMemOwn concode_elem_sep long swigCPtr concode_field_sep String getKey concode_elem_sep int getIntValue concode_elem_sep double getDoubleValue concode_elem_sep ConversionOption cloneObject concode_elem_sep void setDescription concode_elem_se...
String function ( ) { return libsbmlJNI . ConversionOption_getDescription ( swigCPtr , this ) ; }
24,204
sets a list of histogramquestionscoresbeans concode_field_sep ArrayList itemBeans concode_elem_sep String sequence concode_elem_sep long serialVersionUID concode_elem_sep String partName concode_field_sep void addItemBean concode_elem_sep void setSequence concode_elem_sep void setPartName concode_elem_sep ArrayList get...
void function ( ArrayList arg0 ) { itemBeans = arg0 ; }
24,205
sets the authentication date and returns this instance . concode_field_sep Principal principal concode_elem_sep List<CredentialMetaData> credentials concode_elem_sep Map<String,Class<? extends Exception>> failures concode_elem_sep Map<String,Object> attributes concode_elem_sep Date authenticationDate concode_elem_sep M...
AuthenticationBuilder function ( final Date arg0 ) { this . authenticationDate = arg0 ; return this ; }
24,206
sets the property value . concode_field_sep String displayName concode_elem_sep IFormat format concode_elem_sep String objectName concode_elem_sep String attributeName concode_elem_sep Object value concode_elem_sep boolean isTimelineSupported concode_field_sep String getValueString concode_elem_sep Object getValue conc...
void function ( Object arg0 ) { this . value = arg0 ; }
24,207
this is called after the jvm warmup phase to make sure the data structure is well initalized . no need to do anything for this . note the ugly hack to reset the init size of the queue after warmup otherwise queue size grows as fast as its add ops execute : they are always successful , as opposed to its remove . concode...
void function ( ) { queue . clear ( ) ; fill ( Parameters . range , Parameters . size ) ; return ; }
24,208
sets the datafinal value for this ossturbonetgetlogcertifyin . concode_field_sep java.lang.String designador concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String instancia concode_elem_sep java.lang.String numeroProtocolo concode_elem_sep java.lang.Object __equalsCalc concode...
void function ( java . util . Calendar arg0 ) { this . dataFinal = arg0 ; }
24,209
sets the value of the value property . concode_field_sep String name concode_elem_sep String value concode_field_sep void setName concode_elem_sep String getValue concode_elem_sep String getName concode_elem_sep boolean isSetValue concode_elem_sep boolean isSetName
void function ( String arg0 ) { this . value = arg0 ; }
24,210
reports progress within the current sub-task , with a number between 0 and 100 concode_field_sep float total concode_elem_sep float work concode_elem_sep ProgressListener listener concode_elem_sep float base concode_field_sep void setTask concode_elem_sep void setProgress concode_elem_sep void start concode_elem_sep Pr...
void function ( int arg0 ) { work += arg0 ; listener . progress ( base + work / total ) ; }
24,211
gets the value of the features property . concode_field_sep JAXBElement<ArrayOfFeatureVendorServer> features concode_elem_sep JAXBElement<ArrayOfConditionalParameter> conditionalParams concode_elem_sep JAXBElement<ArrayOfstring> users concode_field_sep void setFeatures concode_elem_sep void setUsers concode_elem_sep JA...
JAXBElement < ArrayOfFeatureVendorServer > function ( ) { return features ; }
24,212
returns the name of a resource without the path information . the resource name of a file is the name of the file . the resource name of a folder is the folder name with trailing '' / '' . the resource name of the root folder is / . example : / system/workplace / has the resource name workplace / . concode_field_sep Cm...
String function ( String arg0 ) { if ( "srini_string" . equals ( arg0 ) ) { return "srini_string" ; } String loc0 = ( arg0 . substring ( 0 , arg0 . length ( ) - 1 ) ) ; return arg0 . substring ( loc0 . lastIndexOf ( '/' ) + 1 ) ; }
24,213
returns snapshot name concode_field_sep String NAME concode_elem_sep int hashCode concode_elem_sep String name concode_elem_sep String UUID concode_elem_sep String uuid concode_field_sep void writeTo concode_elem_sep String getUUID concode_elem_sep int hashCode concode_elem_sep XContentBuilder toXContent concode_elem_s...
String function ( ) { return name ; }
24,214
get the transpose of the matrix , i.e. a matrix where rows and columns are interchanged . concode_field_sep ArrayList<IntSet> row_list concode_field_sep int numberOfEntries concode_elem_sep HashMap<Integer,IntSet> nonEmptyRows concode_elem_sep void set concode_elem_sep void grow concode_elem_sep IntList getEntriesByCol...
IMatrix < Boolean > function ( ) { SparseBooleanMatrix loc0 = new SparseBooleanMatrix ( ) ; for ( int loc1 = 0 ; loc1 < row_list . size ( ) ; loc1 ++ ) { for ( int loc2 : this . get ( loc1 ) ) { loc0 . set ( loc2 , loc1 , true ) ; } } return loc0 ; }
24,215
retrieve the named delegate concode_field_sep String TEXT concode_elem_sep OrderFormatDelegate authorDelegate concode_elem_sep OrderFormatDelegate dateDelegate concode_elem_sep String AUTHOR concode_elem_sep OrderFormatDelegate titleDelegate concode_elem_sep String TITLE concode_elem_sep String DATE concode_elem_sep St...
OrderFormatDelegate function ( String arg0 ) { if ( arg0 != null && arg0 . length ( ) > 0 ) { for ( int loc0 = 0 ; loc0 < delegates . length ; loc0 ++ ) { if ( delegates [ loc0 ] . equals ( arg0 ) ) { return ( OrderFormatDelegate ) PluginManager . getNamedPlugin ( OrderFormatDelegate . class , arg0 ) ; } } } return nul...
24,216
called when a button is pressed , equivalent to guiscreen.actionperformed . concode_field_sep String unlocalizedName concode_elem_sep boolean skipRegistry concode_field_sep void updateScreen concode_elem_sep void updateScreen concode_elem_sep void onOpened concode_elem_sep void onClosed concode_elem_sep void renderScre...
void function ( IGuiLexiconEntry arg0 , GuiButton arg1 ) { }
24,217
method to trim the user message after it exceeds a maximum length the length cap is 150 characters concode_field_sep String color concode_elem_sep String DEFAULT_NICK concode_elem_sep String buttonImage concode_elem_sep Log log concode_elem_sep boolean minimized concode_elem_sep String autoLoad concode_elem_sep String ...
String function ( String arg0 ) { if ( arg0 . length ( ) > 150 ) { arg0 = ( arg0 . substring ( 0 , 150 ) + "srini_string" ) ; } return arg0 ; }
24,218
will return false since @should can not be used in field documentation . concode_field_sep String HEADER concode_elem_sep String NAME concode_field_sep boolean inPackage concode_elem_sep String getName concode_elem_sep boolean inOverview concode_elem_sep boolean inMethod concode_elem_sep boolean inConstructor concode_e...
boolean function ( ) { return false ; }
24,219
returns -1 , 0 or +1 concode_field_sep HashMap nameToJavaName concode_elem_sep Collator collator concode_elem_sep HsqlName name concode_elem_sep boolean equalIsIdentical concode_elem_sep Locale locale concode_elem_sep Collation defaultCollation concode_field_sep int compareIgnoreCase concode_elem_sep HsqlName getName c...
int function ( String arg0 , String arg1 ) { int loc0 ; if ( collator == null ) { loc0 = arg0 . compareTo ( arg1 ) ; } else { loc0 = collator . compare ( arg0 , arg1 ) ; } return ( loc0 == 0 ) ? 0 : ( loc0 < 0 ? - 1 : 1 ) ; }
24,220
returns the panel which is inserted in the `` after check in '' group box of the checkin project or checkin file dialogs . concode_field_sep CheckinHandler DUMMY concode_field_sep void checkinSuccessful concode_elem_sep ReturnResult beforeCheckin concode_elem_sep ReturnResult beforeCheckin concode_elem_sep RefreshableO...
RefreshableOnComponent function ( final Disposable arg0 ) { return null ; }
24,221
write the #value field to the given stream.this method first writes the array size as corba long and then all any 's . concode_field_sep ArrayTypeCode typecode concode_elem_sep Any[] value concode_field_sep void _read concode_elem_sep TypeCode _type
void function ( OutputStream arg0 ) { arg0 . write_long ( value . length ) ; for ( int loc0 = 0 ; loc0 < value . length ; loc0 ++ ) { arg0 . write_any ( value [ loc0 ] ) ; } }
24,222
set the primary type of event . concode_field_sep int reason concode_elem_sep int code concode_elem_sep String data concode_elem_sep Session session concode_elem_sep int USER_CODES concode_elem_sep Date time concode_field_sep void setData concode_elem_sep int getReason concode_elem_sep Date getTimestamp concode_elem_se...
void function ( int arg0 ) { this . code = arg0 ; }
24,223
sets the vehicle type id . concode_field_sep int vehicleTypeId concode_elem_sep boolean isEnabled concode_elem_sep List<VehicleInformationModel> vehicleInformationModels concode_elem_sep long serialVersionUID concode_elem_sep String vehicleTypeName concode_field_sep VehicleInformationModel removeVehicleInformationModel...
void function ( int arg0 ) { this . vehicleTypeId = arg0 ; }
24,224
gets blog statistic article count . concode_field_sep StatisticRepository statisticRepository concode_elem_sep Logger LOGGER concode_field_sep int getPublishedBlogArticleCount concode_elem_sep int getPublishedBlogCommentCount concode_elem_sep int getBlogCommentCount concode_elem_sep JSONObject getStatistic concode_elem...
int function ( ) { final JSONObject loc0 = statisticRepository . get ( Statistic . STATISTIC ) ; if ( null == loc0 ) { throw new RepositoryException ( "srini_string" ) ; } return loc0 . getInt ( Statistic . STATISTIC_BLOG_ARTICLE_COUNT ) ; }
24,225
put item in the queue concode_field_sep int itemId concode_elem_sep String name concode_elem_sep ItemQueue queue concode_field_sep placeholderType placeHolder
void function ( ) { Item loc0 = new Item ( name , itemId ++ ) ; queue . put ( loc0 ) ; Random loc1 = new Random ( ) ; Thread . sleep ( loc1 . nextInt ( 2000 ) ) ; }
24,226
this method is used for getting the unique id uid of moduletype . it is unique in scope of ruleengine . the uid can consists of segments separated by column . the first segment contains system moduletype , which corresponds to the modulehandler of the same type , and the rest are optional andcontains uids of custom mod...
String function ( ) { return UID ; }
24,227
remove the background from the game . concode_field_sep Color color concode_elem_sep Rectangle frame concode_field_sep void timePassed concode_elem_sep void addToGame concode_elem_sep void drawOn
void function ( GameLevel arg0 ) { arg0 . removeSprite ( this ) ; }
24,228
returns the java driver com.datastax.driver.core.datatype for the c internal type . concode_field_sep MethodHandle methodParseOne concode_elem_sep CodecRegistry codecRegistry concode_field_sep ByteBuffer serialize concode_elem_sep Class<?> asJavaClass concode_elem_sep boolean isNullOrEmpty concode_elem_sep TypeCodec<Ob...
DataType function ( AbstractType arg0 ) { CQL3Type loc0 = arg0 . asCQL3Type ( ) ; String loc1 = loc0 . getType ( ) . toString ( ) ; return driverTypeFromAbstractType ( loc1 ) ; }
24,229
returns a string representation of the entry concode_field_sep String submitTime concode_elem_sep String objId concode_elem_sep String epersonId concode_elem_sep String tasks concode_field_sep List<String> getTaskNames concode_elem_sep String getEpersonId concode_elem_sep long getSubmitTime concode_elem_sep String getO...
String function ( ) { return epersonId + "srini_string" + submitTime + "srini_string" + tasks + "srini_string" + objId ; }
24,230
sets the euclideandistance object to use for splitting nodes . concode_field_sep EuclideanDistance m_EuclideanDistance concode_elem_sep Instances m_Instances concode_elem_sep int[] m_InstList concode_elem_sep boolean m_NormalizeNodeWidth concode_elem_sep int MIN concode_elem_sep int WIDTH concode_elem_sep int MAX conco...
void function ( EuclideanDistance arg0 ) { m_EuclideanDistance = arg0 ; }
24,231
returns the function value . concode_field_sep double a concode_elem_sep double b concode_field_sep placeholderType placeHolder
double function ( double arg0 ) { return this . a + this . b * arg0 ; }
24,232
sets the value of the value property . concode_field_sep String unit concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal value concode_field_sep BigDecimal getValue concode_elem_sep void setUnit concode_elem_sep String getUnit
void function ( BigDecimal arg0 ) { this . value = arg0 ; }
24,233
send an info log message . concode_field_sep boolean DEBUG concode_field_sep void d concode_elem_sep void d concode_elem_sep void e concode_elem_sep void e concode_elem_sep void e concode_elem_sep void e concode_elem_sep String buildTag concode_elem_sep void v concode_elem_sep void v concode_elem_sep void w concode_ele...
void function ( String arg0 ) { if ( DEBUG ) android . util . Log . i ( buildTag ( ) , buildMessage ( arg0 ) ) ; }
24,234
a name-spaced guid for example , us-east-1 :23 ec4050-6aea-7089-a2dd-08002example created by amazon cognito . guid generation is unique within a region . constraints : length : 1 - 55 pattern : \ w - + : 0-9a-f - + concode_field_sep String identityPoolId concode_field_sep void setIdentityPoolId concode_elem_sep int has...
String function ( ) { return identityPoolId ; }
24,235
iconifyframe concode_field_sep String HAS_BEEN_ICONIFIED_PROPERTY concode_elem_sep int dragMode concode_elem_sep int DEFAULT_DRAG_MODE concode_elem_sep int FASTER_DRAG_MODE concode_elem_sep int OUTLINE_DRAG_MODE concode_field_sep boolean wasIcon concode_elem_sep void setWasIcon concode_elem_sep void removeIconFor conco...
void function ( JInternalFrame arg0 ) { }
24,236
send a debug log message concode_field_sep int sLevel concode_elem_sep boolean allowV concode_elem_sep int LEVEL_FATAL concode_elem_sep boolean allowI concode_elem_sep boolean allowW concode_elem_sep int LEVEL_ERROR concode_elem_sep int LEVEL_WARNING concode_elem_sep String tagPrefix concode_elem_sep boolean allowD con...
void function ( String arg0 , Object ... arg1 ) { if ( ! allowD ) return ; StackTraceElement loc0 = getCallerStackTraceElement ( ) ; String loc1 = generateTag ( loc0 ) ; if ( sLevel > LEVEL_DEBUG ) { return ; } if ( arg1 . length > 0 ) { arg0 = String . format ( arg0 , arg1 ) ; } Log . d ( loc1 , arg0 ) ; }
24,237
gets the value of the entryid property . concode_field_sep String timeStamp concode_elem_sep String seqNum concode_elem_sep String reasonCode concode_elem_sep String dataRef concode_elem_sep String value concode_elem_sep String dataSet concode_elem_sep String configRef concode_elem_sep String entryID concode_field_sep ...
String function ( ) { return entryID ; }
24,238
sets the identifier of the schedule . concode_field_sep String DEFAULT_DATE_FORMAT concode_elem_sep int MILLISECONDS_PER_SECOND concode_elem_sep String dateFormat concode_elem_sep String description concode_elem_sep int MINUTES_PER_HOUR concode_elem_sep int DAYS_PER_WEEK concode_elem_sep boolean startOnStartup concode_...
void function ( Integer arg0 ) { this . id = arg0 ; }
24,239
creates an opengraphobject suitable for posting via , e.g. , a native share dialog . the object will have no properties other than a ` create_object ' and ` data ' property , ready to be populated . concode_field_sep PlaceHolder placeHolder concode_field_sep List<String> getSeeAlso concode_elem_sep GraphObjectList<Grap...
T function ( Class < T > arg0 , String arg1 ) { return createForPost ( arg0 , arg1 , null , null , null , null ) ; }
24,240
returns the byte at position i in the tuple . if that field is not a byte , you will get a runtime error . concode_field_sep com.twitter.heron.api.tuple.Tuple delegate concode_field_sep List<Object> select concode_elem_sep Double getDouble concode_elem_sep Integer getInteger concode_elem_sep Boolean getBooleanByField c...
Byte function ( int arg0 ) { return delegate . getByte ( arg0 ) ; }
24,241
retrieves the queryobjectgenerator for the given jdbc driver . if the jdbc driver does not provide its own queryobjectgenerator , null is returned . concode_field_sep Properties connProperties concode_elem_sep int loginTimeout concode_elem_sep String driver concode_elem_sep PrintWriter logWriter concode_elem_sep Connec...
PooledConnection function ( jdbcConnection arg0 ) { LifeTimeConnectionWrapper loc0 = new LifeTimeConnectionWrapper ( arg0 , this . connectionDefaults ) ; JDBCPooledConnection loc1 = new JDBCPooledConnection ( loc0 ) ; loc0 . setPooledConnection ( loc1 ) ; return loc1 ; }
24,242
returns the spring bean id for this bean . concode_field_sep StartupsService _startupsService concode_field_sep void setWrappedService concode_elem_sep java.lang.Object invokeMethod concode_elem_sep StartupsService getWrappedService concode_elem_sep void setBeanIdentifier concode_elem_sep StartupsService getWrappedStar...
java . lang . String function ( ) { return _startupsService . getBeanIdentifier ( ) ; }
24,243
create an instance of userextensionconfigkeylist concode_field_sep PlaceHolder placeHolder concode_field_sep UserExtensionConfigList createUserExtensionConfigList concode_elem_sep UserExtensionConfigItemList createUserExtensionConfigItemList concode_elem_sep UserExtensionConfigItemKeyList createUserExtensionConfigItemK...
UserExtensionConfigKeyList function ( ) { return new UserExtensionConfigKeyList ( ) ; }
24,244
unconditionally sets the value of both the reference and mark . concode_field_sep T reference concode_elem_sep boolean mark concode_elem_sep Pair<V> pair concode_field_sep boolean weakCompareAndSet concode_elem_sep boolean compareAndSet concode_elem_sep boolean casPair concode_elem_sep Pair<T> of concode_elem_sep V get...
void function ( V arg0 , boolean arg1 ) { Pair < V > loc0 = pair ; if ( arg0 != loc0 . reference || arg1 != loc0 . mark ) this . pair = Pair . of ( arg0 , arg1 ) ; }
24,245
sets the modified date of this microblogs entry . concode_field_sep MicroblogsEntry _microblogsEntry concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCach...
void function ( Date arg0 ) { _microblogsEntry . setModifiedDate ( arg0 ) ; }
24,246
determines if the specified coordinate is in the target touch zone for a corner handle . concode_field_sep int TARGET_RADIUS_DP concode_field_sep boolean isInHorizontalTargetZone concode_elem_sep boolean focusCenter concode_elem_sep Handle getPressedHandle concode_elem_sep boolean isInVerticalTargetZone concode_elem_se...
boolean function ( float arg0 , float arg1 , float arg2 , float arg3 , float arg4 ) { if ( Math . abs ( arg0 - arg2 ) <= arg4 && Math . abs ( arg1 - arg3 ) <= arg4 ) { return true ; } return false ; }
24,247
send a single trackingevent to google analytics . concode_field_sep Tracker mTracker concode_field_sep Tracker getDefaultTracker
void function ( Context arg0 , TrackingEvent arg1 ) { getDefaultTracker ( arg0 . getApplicationContext ( ) ) . send ( new HitBuilders . EventBuilder ( arg1 . getCategory ( ) , arg1 . getAction ( ) ) . build ( ) ) ; }
24,248
this will create a thread name that is unique . the thread name is a combination of the original thread name with a prefix of the type of the object that will be running within it . concode_field_sep Class type concode_field_sep Thread newThread concode_elem_sep Thread newThread concode_elem_sep Thread createThread
String function ( Class arg0 , Thread arg1 ) { String loc0 = arg0 . getSimpleName ( ) ; String loc1 = arg1 . getName ( ) ; return String . format ( "srini_string" , loc0 , loc1 ) ; }
24,249
resets #nexttlsmode to the first option . 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 Dns dns co...
void function ( ) { nextTlsMode = ( address . getSslSocketFactory ( ) != null ) ? TLS_MODE_MODERN : TLS_MODE_COMPATIBLE ; }
24,250
returns the union of all the user 's roles within the groups . concode_field_sep RoleService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.model.Role updateRole concode_elem_sep void unsetUserRoles concode_elem_sep com.liferay.portal.kernel.model.Role ge...
java . util . List < com . liferay . portal . kernel . model . Role > function ( long arg0 , java . util . List < com . liferay . portal . kernel . model . Group > arg1 ) { return getService ( ) . getUserRelatedRoles ( arg0 , arg1 ) ; }
24,251
returns true if this is a `` new-style '' policy i.e. where not expected callers to use the constructor directly to instantiate it . concode_field_sep ThreadLocal<Boolean> constructing concode_elem_sep ManagementContextInternal managementContext concode_field_sep boolean isConstructing concode_elem_sep T constructNewSt...
boolean function ( Class < ? > arg0 ) { try { arg0 . getConstructor ( new Class [ 0 ] ) ; return true ; } catch ( NoSuchMethodException loc0 ) { return false ; } }
24,252
creates an concurrentlinkedqueue instance containing the given elements . concode_field_sep PlaceHolder placeHolder concode_field_sep SynchronousQueue<E> newSynchronousQueue concode_elem_sep PriorityBlockingQueue<E> newPriorityBlockingQueue concode_elem_sep PriorityBlockingQueue<E> newPriorityBlockingQueue concode_elem...
ConcurrentLinkedQueue < E > function ( Iterable < ? extends E > arg0 ) { if ( arg0 instanceof Collection ) { return new ConcurrentLinkedQueue < E > ( Collections2 . cast ( arg0 ) ) ; } ConcurrentLinkedQueue < E > loc0 = new ConcurrentLinkedQueue < E > ( ) ; Iterables . addAll ( loc0 , arg0 ) ; return loc0 ; }
24,253
returns the agreed id , delegating functionality to the #type . id . concode_field_sep PlaceHolder placeHolder concode_field_sep long[] extract concode_elem_sep long[] read concode_elem_sep void insert concode_elem_sep TypeCode type concode_elem_sep void write
String function ( ) { try { return type ( ) . id ( ) ; } catch ( BadKind loc0 ) { throw new Error ( "srini_string" , loc0 ) ; } }
24,254
returns the coordinates and type of the current path segment in the iteration . the return value is the path segment type : seg_moveto , seg_lineto , or seg_close . a double array of length 6 must be passed in and can be used to store the coordinates of the point s . each point is stored as a pair of double x , y coord...
int function ( double [ ] arg0 ) { if ( isDone ( ) ) { throw new NoSuchElementException ( "srini_string" ) ; } int loc0 = holdType ; if ( loc0 != SEG_CLOSE ) { arg0 [ 0 ] = hold [ holdIndex + 0 ] ; arg0 [ 1 ] = hold [ holdIndex + 1 ] ; if ( loc0 != SEG_MOVETO ) { loc0 = SEG_LINETO ; } } return loc0 ; }
24,255
configure the certificate chain to use when serving https responses . the first certificate is the server 's certificate , further certificates are included in the handshake so the client can build a trusted path to a ca certificate . concode_field_sep SslClient localhost concode_elem_sep List<X509Certificate> certific...
Builder function ( HeldCertificate arg0 , HeldCertificate ... arg1 ) { X509Certificate [ ] loc0 = new X509Certificate [ arg1 . length ] ; for ( int loc1 = 0 ; loc1 < arg1 . length ; loc1 ++ ) { loc0 [ loc1 ] = arg1 [ loc1 ] . certificate ; } return certificateChain ( arg0 . keyPair , arg0 . certificate , loc0 ) ; }
24,256
combines the specified updates into this one and returns the result . assumes that the current bodyupdates has no more array yet . concode_field_sep int[] bodyNumbers concode_elem_sep BodyUpdates[] more concode_elem_sep int index concode_elem_sep float[] acc_z concode_elem_sep float[] acc_y concode_elem_sep float[] acc...
BodyUpdates function ( BodyUpdates [ ] arg0 ) { if ( more != null ) { throw new Error ( "srini_string" ) ; } more = arg0 ; return this ; }
24,257
gets the value of the suspendedindicator property . concode_field_sep String issuingLocation concode_elem_sep String issuingAuthority concode_elem_sep XMLGregorianCalendar suspendedFromDate concode_elem_sep Boolean suspendedIndicator concode_elem_sep List<String> comment concode_elem_sep TimePeriod issuePeriod concode_...
Boolean function ( ) { return suspendedIndicator ; }
24,258
create the linkcapabilities with values depending on role type . concode_field_sep int RO_NETWORK_TYPE concode_elem_sep int RO_AVAILABLE_FWD_BW concode_elem_sep String DEFAULT concode_elem_sep String BULK_UPLOAD concode_elem_sep int RO_AVAILABLE_REV_BW concode_elem_sep int RW_MAX_ALLOWED_LATENCY concode_elem_sep HashMa...
LinkCapabilities function ( String arg0 ) { if ( DBG ) log ( "srini_string" ) ; return new LinkCapabilities ( ) ; }
24,259
see layoutstate #has_new_layout . concode_field_sep CSSNode mParent concode_elem_sep CSSNode nextAbsoluteChild concode_elem_sep CSSStyle style concode_elem_sep ArrayList<CSSNode> mChildren concode_elem_sep int lineIndex concode_elem_sep MeasureFunction mMeasureFunction concode_elem_sep CachedCSSLayout lastLayout concod...
boolean function ( ) { return mLayoutState == LayoutState . HAS_NEW_LAYOUT ; }
24,260
called whenever the osgi framework starts our bundle urtsi concode_field_sep Logger logger concode_field_sep void stop
void function ( BundleContext arg0 ) { if ( logger . isDebugEnabled ( ) ) { logger . debug ( "srini_string" ) ; } }
24,261
returns the event id of this event . concode_field_sep Event _event concode_field_sep long getLocationId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep java.lang.String g...
long function ( ) { return _event . getEventId ( ) ; }
24,262
convert a jsonobject into a well-formed , element-normal xml string . concode_field_sep Character SLASH concode_elem_sep Character QUOT concode_elem_sep Character APOS concode_elem_sep Character EQ concode_elem_sep Character QUEST concode_elem_sep Character BANG concode_elem_sep Character GT concode_elem_sep Character ...
String function ( Object arg0 ) { return toString ( arg0 , null ) ; }
24,263
the id of the vpc for the referenced security group , if applicable . concode_field_sep String groupName concode_elem_sep String groupId concode_elem_sep String vpcId concode_elem_sep String vpcPeeringConnectionId concode_elem_sep String userId concode_elem_sep String peeringStatus concode_field_sep UserIdGroupPair wit...
UserIdGroupPair function ( String arg0 ) { setVpcId ( arg0 ) ; return this ; }
24,264
returns the number of bone animation channels . each channel affects a single node . this method will return the same value as getchannels . size concode_field_sep double m_ticksPerSecond concode_elem_sep String m_name concode_elem_sep double m_duration concode_elem_sep List<AiNodeAnim> m_nodeAnims concode_field_sep St...
int function ( ) { return m_nodeAnims . size ( ) ; }
24,265
counts the number of matches of a given pattern in a given string . concode_field_sep int TOTAL_POINTS concode_field_sep int assessLetters concode_elem_sep int assessPassword concode_elem_sep int assessLength concode_elem_sep int assessSpecials concode_elem_sep boolean matches concode_elem_sep int assessNumbers
int function ( String arg0 , String arg1 ) { Pattern loc0 = Pattern . compile ( arg1 ) ; Matcher loc1 = loc0 . loc1 ( arg0 ) ; int loc2 = 0 ; while ( loc1 . find ( ) ) loc2 ++ ; return loc2 ; }
24,266
gets the used_tokens_total value for this token_usage_container . concode_field_sep com.omniture.www.User_token_usage[] token_usage concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep int overage_enabled concode_elem_sep int allowed_tokens concode_elem_sep int used_tokens_total concode_elem_...
int function ( ) { return used_tokens_total ; }
24,267
this is called by application and blocks the thread until authentication response is received . concode_field_sep boolean digestReceived concode_elem_sep Throwable exception concode_elem_sep float progressValue concode_elem_sep Reporter reporter concode_elem_sep Map<Integer,Counters.Counter> registeredCounters concode_...
void function ( ) { while ( digestReceived == false && exception == null ) { wait ( ) ; } if ( exception != null ) { throw new IOException ( exception . getMessage ( ) ) ; } }
24,268
add a listener to receive the notification when the country is detected or changed . concode_field_sep HashMap<CountryListener,ListenerTransport> mListeners concode_elem_sep ICountryDetector mService concode_elem_sep Handler mHandler concode_elem_sep String TAG concode_elem_sep CountryListener mListener concode_field_s...
void function ( CountryListener arg0 , Looper arg1 ) { synchronized ( mListeners ) { if ( ! mListeners . containsKey ( arg0 ) ) { ListenerTransport loc0 = new ListenerTransport ( arg0 , arg1 ) ; mService . addCountryListener ( loc0 ) ; mListeners . put ( arg0 , loc0 ) ; } } }
24,269
deletes the release from the database . also notifies the appropriate model listeners . concode_field_sep ReleaseLocalService _releaseLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery...
com . liferay . portal . kernel . model . Release function ( com . liferay . portal . kernel . model . Release arg0 ) { return _releaseLocalService . deleteRelease ( arg0 ) ; }
24,270
returns the active de.umass.lastfm.cache.expirationpolicy concode_field_sep ExpirationPolicy expirationPolicy concode_elem_sep boolean hashCacheEntryNames concode_field_sep boolean contains concode_elem_sep InputStream load concode_elem_sep void clear concode_elem_sep void setHashCacheEntryNames concode_elem_sep String...
ExpirationPolicy function ( ) { return expirationPolicy ; }
24,271
debug 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 setLogLevel concode_elem_sep void setLogLevel concode_elem_sep void e conco...
void function ( String arg0 , String arg1 ) { if ( LOG . DEBUG >= LOGLEVEL ) Log . d ( arg0 , arg1 ) ; }
24,272
gets the value of the publisher property . concode_field_sep String publicationPlace concode_elem_sep String reportNumber concode_elem_sep String totalPages concode_elem_sep ResponsibleParty publisher concode_field_sep String getPublicationPlace concode_elem_sep void setPublicationPlace concode_elem_sep Report withPubl...
ResponsibleParty function ( ) { return publisher ; }
24,273
sets the friendly name of this connection . this is returned by #tostring and is useful for providing applicationspecific identifying information in the logging . may be null for the default name of `` connection x '' , where x is the connection id . concode_field_sep TcpConnection tcp concode_elem_sep UdpConnection ud...
void function ( String arg0 ) { this . name = arg0 ; }
24,274
list of properties to set . concode_field_sep NullResourceLocksHolder lockHolder concode_elem_sep Log log concode_field_sep List<HierarchicalProperty> removeList concode_elem_sep Response propPatch
List < HierarchicalProperty > function ( HierarchicalProperty arg0 ) { HierarchicalProperty loc0 = arg0 . getChild ( new QName ( "srini_string" , "srini_string" ) ) ; HierarchicalProperty loc1 = loc0 . getChild ( new QName ( "srini_string" , "srini_string" ) ) ; List < HierarchicalProperty > loc2 = loc1 . getChildren (...
24,275
get custom serializer concode_field_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep com.netsuite.webservices.platform.core_2014_2.BaseRef baseRef concode_elem_sep com.netsuite.webservices.platform.core_2014_2.Statu...
org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; }
24,276
set attribute of an element concode_field_sep PlaceHolder placeHolder concode_field_sep com.google.gwt.user.client.Element getElementById concode_elem_sep String getAttribute concode_elem_sep String getAttribute concode_elem_sep String getAttribute concode_elem_sep String getAttribute concode_elem_sep boolean getBoolea...
void function ( String arg0 , String arg1 , String arg2 ) { com . google . gwt . dom . client . Element loc0 = getElementById ( arg0 ) ; if ( loc0 == null ) return ; loc0 . setAttribute ( arg1 , arg2 ) ; }
24,277
sets the value of the oid property . concode_field_sep Long oid concode_field_sep Long getOid
void function ( Long arg0 ) { this . oid = arg0 ; }
24,278
returns true if the driver thinks that it can open a connection to the given url . typically drivers will return true if they understand the subprotocol specified in the url and false if they do n't . concode_field_sep PlaceHolder placeHolder concode_field_sep Connection getConnection concode_elem_sep int getMajorVersi...
boolean function ( String arg0 ) { return arg0 != null && arg0 . regionMatches ( true , 0 , DatabaseManager . S_URL_PREFIX , 0 , DatabaseManager . S_URL_PREFIX . length ( ) ) ; }
24,279
get the value of a given state by querying the cil2p shef.network . concode_field_sep int CALCULATE_MULTIPLE_TIMES concode_elem_sep HashMap<MachineState,Double> mem concode_elem_sep ArrayList<Gdl> playerListGGP concode_elem_sep double sigmaOverTwo concode_elem_sep ArrayList<Term> playerList concode_elem_sep GaussianRan...
double function ( final MachineState arg0 , int arg1 ) { propagateInput ( arg0 ) ; return getPlayerScore ( playerList . get ( arg1 ) ) ; }
24,280
sets the event time at which this listener was last registered with a widget . concode_field_sep OutOfOrderListener chainedListener concode_elem_sep int active concode_field_sep boolean isActive concode_elem_sep void verifyKey
void function ( final int arg0 ) { active = arg0 ; }
24,281
handles the if-modified-since header . returns true if the request should proceed , false otherwise concode_field_sep String COMMON_LOG_PATTERN concode_elem_sep String RFC1123_PATTERN concode_elem_sep String RFC1036_PATTERN concode_elem_sep ThreadLocal<SimpleDateFormat> COMMON_LOG_PATTERN_FORMAT concode_elem_sep Atomic...
boolean function ( final String arg0 , final Date arg1 ) { if ( arg1 == null ) { return true ; } if ( arg0 == null ) { return true ; } Date loc0 = parseDate ( arg0 ) ; if ( loc0 == null ) { return true ; } return arg1 . getTime ( ) > ( loc0 . getTime ( ) + 999 ) ; }
24,282
returns a value . concode_field_sep JsonArray operations concode_elem_sep JsonObject values concode_field_sep Metadata add concode_elem_sep Metadata test concode_elem_sep String getPatch concode_elem_sep String pathToProperty concode_elem_sep void addOp concode_elem_sep Metadata replace concode_elem_sep String getID co...
String function ( String arg0 ) { final JsonValue loc0 = this . values . get ( this . pathToProperty ( arg0 ) ) ; if ( loc0 == null ) { return null ; } return loc0 . asString ( ) ; }
24,283
write an xml attribute concode_field_sep ThreadLocal<Stack<String>> registeredNSStack concode_elem_sep PicketLinkLogger logger concode_field_sep void writeNameSpace concode_elem_sep XMLOutputFactory getXMLOutputFactory concode_elem_sep void writeCharacters concode_elem_sep void flush concode_elem_sep void setPrefix con...
void function ( XMLStreamWriter arg0 , String arg1 , String arg2 , String arg3 , String arg4 ) { try { arg0 . writeAttribute ( arg1 , arg2 , arg3 , arg4 ) ; } catch ( XMLStreamException loc0 ) { throw logger . processingError ( loc0 ) ; } }
24,284
returns true if the persidno is for a company . concode_field_sep String DEFAULT_PERSIDNO_DELIMITER concode_field_sep String cleanupPersidno concode_elem_sep Integer ageFromPersidno concode_elem_sep Integer birthMonthFromPersidno concode_elem_sep Integer birthDayFromPersidno concode_elem_sep Date nextBirthday concode_e...
boolean function ( String arg0 ) { if ( arg0 == null ) { return false ; } arg0 = cleanupPersidno ( arg0 ) ; int loc0 = Integer . parseInt ( arg0 . substring ( 0 , 1 ) ) ; return loc0 == 4 || loc0 == 5 || loc0 == 6 || loc0 == 7 ; }
24,285
method yang digunakan untuk mengambil nilai angka dua concode_field_sep int min concode_elem_sep int angkaDua concode_elem_sep int angkaSatu concode_elem_sep Random rAcak concode_elem_sep int maks concode_field_sep int getMaks concode_elem_sep void angkaAcak concode_elem_sep void setMin concode_elem_sep void setMaks co...
int function ( ) { return this . angkaDua ; }
24,286
new annotation created with view tool . concode_field_sep DocumentViewController documentViewController concode_elem_sep Logger logger concode_field_sep void removeAnnotation concode_elem_sep void updateAnnotation concode_elem_sep void pageAnnotationsInitialized concode_elem_sep void processAnnotationAction
void function ( PageViewComponent arg0 , AnnotationComponent arg1 ) { Document loc0 = documentViewController . getDocument ( ) ; PageTree loc1 = loc0 . getPageTree ( ) ; Page loc2 = loc1 . getPage ( arg0 . getPageIndex ( ) ) ; loc2 . addAnnotation ( arg1 . getAnnotation ( ) ) ; arg0 . addAnnotation ( arg1 ) ; }
24,287
when istruncated is true , this element is present and contains the value to use for the marker parameter in a subsequent pagination request . concode_field_sep Boolean isTruncated concode_elem_sep String marker concode_elem_sep com.amazonaws.internal.SdkInternalList<String> policyNames concode_field_sep Boolean isTrun...
ListUserPoliciesResult function ( String arg0 ) { setMarker ( arg0 ) ; return this ; }
24,288
sets the status to ok . concode_field_sep IStatus OK_STATUS concode_elem_sep String fStatusMessage concode_elem_sep int fSeverity concode_field_sep boolean isWarning concode_elem_sep int getSeverity concode_elem_sep Throwable getException concode_elem_sep String getMessage concode_elem_sep boolean isMultiStatus concode...
void function ( ) { fStatusMessage = null ; fSeverity = IStatus . OK ; }
24,289
gets server reply string from the control port after an ftp command has been executed . this consists only of the last line of the response , and only the part after the response code . concode_field_sep int code concode_elem_sep String reply concode_field_sep boolean isPositiveIntermediate concode_elem_sep boolean isP...
String function ( ) { return reply ; }
24,290
the domain . concode_field_sep String instanceId concode_elem_sep String ip concode_elem_sep String domain concode_elem_sep String name concode_elem_sep String region concode_field_sep void setName concode_elem_sep void setRegion concode_elem_sep String getInstanceId concode_elem_sep ElasticIp withIp concode_elem_sep S...
void function ( String arg0 ) { this . domain = arg0 ; }
24,291
retrieves a the state name of a successor for the given transition constant . returns the default successor 's state name if no special setup was prepared . concode_field_sep String[] transitionNames concode_elem_sep int TRANSITION_STATIC_FIELD_ACCESS concode_elem_sep int TRANSITION_LAST concode_elem_sep String DEFAULT...
String function ( int arg0 ) { String loc0 = ( String ) transitions . get ( new Integer ( arg0 ) ) ; return ( loc0 == null ) ? defaultSuccessor : loc0 ; }
24,292
generates a publiv navigation link concode_field_sep String localSpace concode_elem_sep String localRealm concode_elem_sep boolean useCache concode_elem_sep boolean withBreadcrumb concode_elem_sep boolean cachable concode_field_sep void appendCreateLink concode_elem_sep void setUseCache concode_elem_sep void setCachabl...
void function ( StringBuffer arg0 , String arg1 , String arg2 ) { this . appendLink ( arg0 , arg1 , arg2 , null ) ; }
24,293
sets the message id of this attachment . concode_field_sep Attachment _attachment concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep Attachment getWrappedAttachment concode_elem_sep boolean isEscapedModel c...
void function ( long arg0 ) { _attachment . setMessageId ( arg0 ) ; }
24,294
convenience method to get this element as a bigdecimal . concode_field_sep PlaceHolder placeHolder concode_field_sep float getAsFloat concode_elem_sep BigInteger getAsBigInteger concode_elem_sep byte getAsByte concode_elem_sep JsonObject getAsJsonObject concode_elem_sep JsonNull getAsJsonNull concode_elem_sep boolean i...
BigDecimal function ( ) { throw new UnsupportedOperationException ( getClass ( ) . getSimpleName ( ) ) ; }
24,295
gets a string representation of the ` type ' . for internal and logging use only . concode_field_sep byte TYPE_L1CA concode_elem_sep byte mPrn concode_elem_sep byte TYPE_L5CNAV concode_elem_sep byte mType concode_elem_sep Creator<GpsNavigationMessage> CREATOR concode_elem_sep short mMessageId concode_elem_sep byte[] mD...
String function ( ) { switch ( mType ) { case TYPE_UNKNOWN : return "srini_string" ; case TYPE_L1CA : return "srini_string" ; case TYPE_L2CNAV : return "srini_string" ; case TYPE_L5CNAV : return "srini_string" ; case TYPE_CNAV2 : return "srini_string" ; default : return "srini_string" ; } }
24,296
isreadermtomaware concode_field_sep com.amazon.ec2.EnableVolumeIOType localEnableVolumeIO concode_elem_sep javax.xml.namespace.QName MY_QNAME concode_field_sep java.lang.String generatePrefix concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_sep void writeQName concode_elem_sep void writeQNam...
boolean function ( javax . xml . stream . XMLStreamReader arg0 ) { boolean loc0 = false ; try { loc0 = java . lang . Boolean . TRUE . equals ( arg0 . getProperty ( org . apache . axiom . om . OMConstants . IS_DATA_HANDLERS_AWARE ) ) ; } catch ( java . lang . IllegalArgumentException loc1 ) { loc0 = false ; } return loc...
24,297
set whether to toggle the ascending flag if the same property gets set again that is , #setproperty gets called with already set property name again . this is particularly useful for parameter binding through a web request , where clicking on the field header again might be supposed to trigger a resort for the same fie...
void function ( boolean arg0 ) { this . toggleAscendingOnProperty = arg0 ; }
24,298
gets the mediacost value for this programmaticsetting . concode_field_sep java.lang.String insertionOrderId concode_elem_sep boolean programmatic concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String[] traffickerEmails concode_elem_sep boolean __hashCodeCalc concode_elem_sep double mediaCost ...
double function ( ) { return mediaCost ; }
24,299
release resources associated with this client . you must call this , or significant resources sockets and memory may be leaked . concode_field_sep HttpClient delegate concode_elem_sep AndroidHttpClient client concode_elem_sep HttpRequestInterceptor sThreadCheckInterceptor concode_elem_sep ThreadLocal<Boolean> sThreadBl...
void function ( ) { getConnectionManager ( ) . shutdown ( ) ; }