idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
13,700
connects ipc shared memory endpoint . concode_field_sep PlaceHolder placeHolder concode_field_sep IpcEndpoint connectEndpoint concode_elem_sep IpcEndpoint connectTcpEndpoint
IpcEndpoint function ( int arg0 , IgniteLogger arg1 ) { return new IpcSharedMemoryClientEndpoint ( arg0 , arg1 ) ; }
13,701
test retrieval of account by string - userid , with no account found . concode_field_sep MockMvc mockMvc concode_elem_sep AccountService service concode_elem_sep AccountRepository repo concode_field_sep void doFindAccountByAuthTokenNull concode_elem_sep void testLogout concode_elem_sep void doFindAccountUserId concode_...
void function ( ) { when ( repo . findByUserid ( ServiceTestConfiguration . BAD_USER_ID ) ) . thenReturn ( null ) ; service . findAccount ( ServiceTestConfiguration . BAD_USER_ID ) ; }
13,702
open a session for the sessionfactory that this interceptor uses . the default implementation delegates to the sessionfactory #opensession method and sets the session 's flush mode to `` manual '' . concode_field_sep Log logger concode_elem_sep SessionFactory sessionFactory concode_elem_sep String PARTICIPATE_SUFFIX co...
Session function ( ) { try { Session loc0 = getSessionFactory ( ) . openSession ( ) ; loc0 . setFlushMode ( FlushMode . MANUAL ) ; return loc0 ; } catch ( HibernateException loc0 ) { throw new DataAccessResourceFailureException ( "srini_string" , loc0 ) ; } }
13,703
reports the length of cns payload concode_field_sep int payloadLength concode_elem_sep long applicationId concode_elem_sep int operationType concode_elem_sep byte[] request concode_elem_sep int PAYLOAD_OFFSET concode_elem_sep int objectId concode_elem_sep int reserved concode_elem_sep byte[] payload concode_field_sep i...
int function ( ) { return payloadLength ; }
13,704
returns the specified name qualified with the specified prefix . the name is not modified if the prefix is null or if the name is already qualified . example : getqualifiedname null , `` name '' returns `` name '' . getqualifiedname `` prefix '' , `` name '' returns `` prefix.name '' and getqualifiedname `` prefix2 '' ...
String function ( String arg0 , String arg1 ) { logger . debug ( "srini_string" , arg0 , arg1 ) ; return new QualifiedTableName ( arg1 , arg0 , ( String ) null ) . getQualifiedName ( ) ; }
13,705
returns all keys in this symbol table . to iterate over all of the keys in the symbol table named st , use the foreach notation : for key key : st.keys . concode_field_sep TreeMap<Key,Value> st concode_field_sep Key ceiling concode_elem_sep boolean contains concode_elem_sep Iterator<Key> iterator concode_elem_sep Key m...
Iterable < Key > function ( ) { return st . keySet ( ) ; }
13,706
add additional details such as the bean type and method signature to the given error message . concode_field_sep AnnotatedElementKey methodKey concode_elem_sep String condition concode_elem_sep Method method concode_elem_sep Log logger concode_elem_sep ApplicationContext applicationContext concode_elem_sep Class<?> tar...
String function ( Object arg0 , String arg1 ) { StringBuilder loc0 = new StringBuilder ( arg1 ) . append ( "srini_string" ) ; loc0 . append ( "srini_string" ) ; loc0 . append ( "srini_string" ) . append ( arg0 . getClass ( ) . getName ( ) ) . append ( "srini_string" ) ; loc0 . append ( "srini_string" ) . append ( this ...
13,707
converts the input parameter to string and then delegates to the wrapped org.slf4j.logger instance . concode_field_sep long serialVersionUID concode_elem_sep LocationAwareLogger logger concode_elem_sep String name concode_elem_sep String FQCN concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void ...
void function ( Object arg0 ) { logger . log ( null , FQCN , LocationAwareLogger . INFO_INT , String . valueOf ( arg0 ) , null , null ) ; }
13,708
serialize an instance , restore it , and check for equality . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testEquals
void function ( ) { ContourEntity loc0 = new ContourEntity ( new Rectangle2D . Double ( 1.0 , 2.0 , 3.0 , 4.0 ) , "srini_string" , "srini_string" ) ; ContourEntity loc1 = ( ContourEntity ) TestUtilities . serialised ( loc0 ) ; assertEquals ( loc0 , loc1 ) ; }
13,709
returns the groups a user belongs to concode_field_sep int ret concode_elem_sep Logger LOGGER concode_elem_sep pam_handle_t pht concode_elem_sep String[] factors concode_field_sep UnixUser authenticate concode_elem_sep void dispose concode_elem_sep void finalize concode_elem_sep void check
Set < String > function ( String arg0 ) { return new UnixUser ( arg0 ) . getGroups ( ) ; }
13,710
true iff this period overlaps the given period . concode_field_sep DateValue start concode_elem_sep DateValue end concode_field_sep boolean contains concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DateValue start concode_elem_sep PeriodValue create concode_elem_sep DateValue end concode_e...
boolean function ( PeriodValue arg0 ) { DateValue loc0 = this . start , loc1 = this . end , loc2 = arg0 . start ( ) , loc3 = arg0 . end ( ) ; return loc0 . compareTo ( loc3 ) < 0 && loc2 . compareTo ( loc1 ) < 0 ; }
13,711
this method was generated by mybatis generator . this method returns the value of the database column user_info . weixinnum concode_field_sep String nick concode_elem_sep String weixinnum concode_elem_sep Date createtime concode_elem_sep String signature concode_elem_sep String openid concode_elem_sep String sex concod...
String function ( ) { return weixinnum ; }
13,712
factory method . assessmenthelperifc . concode_field_sep String VERSION_SUPPORTED_STRING concode_field_sep SectionHelperIfc getSectionHelperInstance concode_elem_sep ItemHelperIfc getItemHelperInstance
AssessmentHelperIfc function ( int arg0 ) { switch ( arg0 ) { case QTIVersion . VERSION_1_2 : return new AssessmentHelper12Impl ( ) ; case QTIVersion . VERSION_2_0 : return new AssessmentHelper20Impl ( ) ; default : throw new IllegalArgumentException ( VERSION_SUPPORTED_STRING ) ; } }
13,713
returns the option by its code . concode_field_sep int code concode_elem_sep long offset concode_elem_sep TimeOption TODAY concode_elem_sep TimeOption THIS_WEEK concode_elem_sep TimeOption ALL concode_elem_sep String title concode_elem_sep TimeOption[] OPTIONS concode_field_sep long getOffset concode_elem_sep String to...
TimeOption function ( int arg0 ) { switch ( arg0 ) { case 0 : return ALL ; case 1 : return TODAY ; case 2 : return THIS_WEEK ; default : throw new IllegalArgumentException ( "srini_string" + arg0 ) ; } }
13,714
write the given contents with utf-8 encoding to the given file . concode_field_sep String TEMP_DIR_PREFIX concode_elem_sep int BUFFER_SIZE concode_field_sep File zipDirectory concode_elem_sep File zipDirectory concode_elem_sep File findFile concode_elem_sep String removeExt concode_elem_sep String getExtFromFileName co...
void function ( File arg0 , String arg1 ) { Writer loc0 = new OutputStreamWriter ( new FileOutputStream ( arg0 ) , "srini_string" ) ; try { loc0 . write ( arg1 ) ; } finally { loc0 . close ( ) ; } }
13,715
clip a curve , and return a curveset2d . if the curve is totally outside the box , return a curveset2d with 0 curves inside . if the curve is totally inside the box , return a curveset2d with only one curve , which is the original curve . concode_field_sep PlaceHolder placeHolder concode_field_sep ContourArray2D<Contou...
CurveSet2D < ContinuousOrientedCurve2D > function ( ContinuousOrientedCurve2D arg0 , Box2D arg1 ) { CurveArray2D < ContinuousOrientedCurve2D > loc0 = new CurveArray2D < ContinuousOrientedCurve2D > ( ) ; for ( ContinuousCurve2D loc1 : Curves2D . clipContinuousCurve ( arg0 , arg1 ) ) if ( loc1 instanceof ContinuousOrient...
13,716
attempt to update the marble with a new x value , boundary checking enabled to make sure the new co-ordinate is valid . concode_field_sep int mLives concode_elem_sep int mColor concode_elem_sep int mRadius concode_elem_sep View mView concode_elem_sep int mX concode_elem_sep int mY concode_field_sep int getLives concode...
void function ( float arg0 ) { mX += arg0 ; if ( mX + mRadius >= mView . getWidth ( ) ) mX = mView . getWidth ( ) - mRadius ; else if ( mX - mRadius < 0 ) mX = mRadius ; }
13,717
gets the value of the expirationdate property . concode_field_sep XMLGregorianCalendar timeFrom concode_elem_sep XMLGregorianCalendar timeTo concode_elem_sep String adjustmentID concode_elem_sep BigDecimal riskScore concode_elem_sep String userID concode_elem_sep XMLGregorianCalendar expirationDate concode_field_sep vo...
XMLGregorianCalendar function ( ) { return expirationDate ; }
13,718
returns the value for key by searching the resource bundles in inverse order or null if no value can be found for key . concode_field_sep String SUFFIX_NAME concode_elem_sep String SUFFIX_WIDTH concode_elem_sep String SUFFIX_FROMDATACACHE concode_elem_sep String SUFFIX_HEIGHT concode_elem_sep String SUFFIX_LABEL concod...
String function ( String arg0 ) { Iterator loc0 = bundles . iterator ( ) ; while ( loc0 . hasNext ( ) ) { try { return ( ( PropertyResourceBundle ) loc0 . next ( ) ) . getString ( arg0 ) ; } catch ( MissingResourceException loc1 ) { } } return null ; }
13,719
returns the 3-digit code associated with this warning . concode_field_sep Pattern WARN_DATE_PATTERN concode_elem_sep String ASCTIME_DATE concode_elem_sep String HOST concode_elem_sep Date warnDate concode_elem_sep int warnCode concode_elem_sep int offs concode_elem_sep String IPV4ADDRESS concode_elem_sep int init_offs ...
int function ( ) { return warnCode ; }
13,720
obtiene una propiedad booleana dada por su nombre . concode_field_sep String FP_PREDETERMINADO_RUTA_1 concode_elem_sep int prop_formato_ancho_linea_maximo concode_elem_sep String prop_tag_objeto_secundario_bd_desc concode_elem_sep String prop_jb_ambito_identificadores concode_elem_sep String prop_tag_excepcion_2_nombre...
boolean function ( String arg0 , boolean arg1 ) { String loc0 = getPropiedad ( arg0 ) ; if ( loc0 == null ) return arg1 ; int loc1 = Comun . toEntero ( loc0 ) ; return loc1 > 0 ; }
13,721
add information message . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep Object getElValue concode_elem_sep ServletContext getServletContext concode_elem_sep Object getManagedBean concode_elem_sep String getJsfEl concod...
void function ( String arg0 ) { addInfoMessage ( null , arg0 ) ; }
13,722
obtain a mutex for modifying the flashmap list as handled by #retrieveflashmaps and #updateflashmaps , the default implementation returns a shared static mutex . subclasses are encouraged to return a more specific mutex , or null to indicate that no synchronization is necessary . concode_field_sep Log logger concode_el...
Object function ( HttpServletRequest arg0 ) { return DEFAULT_FLASH_MAPS_MUTEX ; }
13,723
removes the node from the list . concode_field_sep Node next concode_elem_sep boolean marked concode_elem_sep int sizeT2 concode_elem_sep int sizeT1 concode_elem_sep Long2ObjectMap<Node> data concode_elem_sep Node headB2 concode_elem_sep PolicyStats policyStats concode_elem_sep Node prev concode_elem_sep Node headT1 co...
void function ( ) { checkState ( key != Long . MIN_VALUE ) ; prev . next = next ; next . prev = prev ; prev = next = null ; type = null ; }
13,724
f0 - > dotexpression | identifier concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( VarRef arg0 ) { arg0 . f0 . accept ( this ) ; }
13,725
executes the request . this method is called from the webview thread . to do a non-trivial amount of work , use : cordova.getthreadpool . execute runnable ; to run on the ui thread , use : cordova.getactivity . runonuithread runnable ; concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface c...
boolean function ( String arg0 , String arg1 , CallbackContext arg2 ) { JSONArray loc0 = new JSONArray ( arg1 ) ; return execute ( arg0 , loc0 , arg2 ) ; }
13,726
get the domain description concode_field_sep String owner concode_elem_sep Long modifiedTime concode_elem_sep String readers concode_elem_sep String description concode_elem_sep Long createdTime concode_elem_sep String id concode_elem_sep String writers concode_field_sep Long getModifiedTime concode_elem_sep String get...
String function ( ) { return description ; }
13,727
gets the value of the uri property . concode_field_sep Object parent concode_elem_sep List<Object> content concode_elem_sep String uri concode_elem_sep CTCustomXmlPr customXmlPr concode_elem_sep String element concode_field_sep Object getParent concode_elem_sep void setCustomXmlPr concode_elem_sep List<Object> getEGCon...
String function ( ) { return uri ; }
13,728
retrieves content-length from props . if it is not available return #default_content_length . concode_field_sep Logger log concode_elem_sep String SEPARATOR concode_elem_sep Map<QName,String> customProps concode_elem_sep Date modified concode_elem_sep String etag concode_elem_sep Long contentLength concode_elem_sep Str...
String function ( Response arg0 ) { Propstat loc0 = arg0 . getPropstat ( ) ; if ( loc0 . equals ( "srini_string" ) || null == loc0 ) { return null ; } return loc0 . getProp ( ) . getGetetag ( ) ; }
13,729
called whenever the osgi framework starts our bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; }
13,730
gets state of thread 's stripe . concode_field_sep int DFLT_STRIPE_CNT concode_elem_sep ThreadLocal<Integer> THREAD_IDX concode_elem_sep int WRITER_MASK concode_elem_sep AtomicInteger[] states concode_field_sep boolean enterBusy concode_elem_sep void block concode_elem_sep void leaveBusy concode_elem_sep Integer initia...
AtomicInteger function ( ) { return states [ THREAD_IDX . get ( ) % states . length ] ; }
13,731
add an event to the feedlet 's generated event stream concode_field_sep int sequenceNumber concode_elem_sep int feedletIndex concode_elem_sep TraceEngine engine concode_elem_sep boolean CHECK_TYPES concode_elem_sep EventChunk events concode_elem_sep boolean enabled concode_field_sep int getFeedletIndex concode_elem_sep...
void function ( EventType arg0 , int arg1 , int arg2 ) { if ( ! enabled ) return ; addEventInternal ( arg0 , arg1 , arg2 ) ; }
13,732
an array of serviceerror objects that describe the specified service errors . concode_field_sep com.amazonaws.internal.SdkInternalList<ServiceError> serviceErrors concode_field_sep DescribeServiceErrorsResult withServiceErrors concode_elem_sep DescribeServiceErrorsResult withServiceErrors concode_elem_sep java.util.Lis...
void function ( java . util . Collection < ServiceError > arg0 ) { if ( arg0 == null ) { this . serviceErrors = null ; return ; } this . serviceErrors = new com . amazonaws . internal . SdkInternalList < ServiceError > ( arg0 ) ; }
13,733
returns the osgi service identifier . concode_field_sep JIRAChangeGroupLocalService _service concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep int getJIRAChangeGroupsCount concode_elem_sep com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery con...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
13,734
returns a copy of the encrypted data . concode_field_sep AlgorithmParameters algP concode_elem_sep org.bouncycastle.asn1.pkcs.EncryptedPrivateKeyInfo infoObj concode_field_sep String getAlgName concode_elem_sep AlgorithmParameters getAlgParameters concode_elem_sep PKCS8EncodedKeySpec getKeySpec concode_elem_sep byte[] ...
byte [ ] function ( ) { return infoObj . getEncryptedData ( ) ; }
13,735
returns a copy of the date formatter . 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...
DateFormat function ( ) { return ( DateFormat ) this . dateFormat . clone ( ) ; }
13,736
test method for com.google.code.magja.service.customer.customeraddressremoteserviceimpl #getbyid java.lang.integer . concode_field_sep CustomerRemoteService customerService concode_elem_sep CustomerAddressRemoteService service concode_elem_sep Integer address_id concode_field_sep void testDelete concode_elem_sep void t...
void function ( ) { testSave ( ) ; try { CustomerAddress loc0 = service . getById ( address_id ) ; System . out . println ( loc0 . toString ( ) ) ; } catch ( ServiceException loc1 ) { fail ( loc1 . getMessage ( ) ) ; } }
13,737
filters for records of the rank relation where the rank is greater than the given threshold . output format : 0 : rank 1 : url 2 : avg_duration concode_field_sep int RANKFILTER concode_elem_sep String visitsPath concode_elem_sep String[] KEYWORDS concode_elem_sep String ranksPath concode_elem_sep String documentsPath c...
boolean function ( Tuple3 < Integer , String , Integer > arg0 ) { return ( arg0 . f0 > RANKFILTER ) ; }
13,738
version of api . concode_field_sep String applicationOwner concode_elem_sep String apiVersion concode_elem_sep String subscriptionPolicy concode_elem_sep String consumerKey concode_elem_sep String keyEnvType concode_elem_sep String apiName concode_elem_sep String apiProvider concode_elem_sep String applicationName conc...
String function ( ) { return apiVersion ; }
13,739
informs the stats that the build finished concode_field_sep TimeProvider timeProvider concode_elem_sep MemoryInfo memory concode_elem_sep Clock totalTime concode_elem_sep long allBuildsTime concode_elem_sep long currentBuildStart concode_elem_sep int currentPerformance concode_elem_sep int buildCount concode_field_sep ...
void function ( ) { long loc0 = Math . max ( timeProvider . getCurrentTime ( ) - currentBuildStart , 1 ) ; allBuildsTime += loc0 ; currentPerformance = performance ( allBuildsTime , memory ) ; }
13,740
sets the value of the type property . concode_field_sep DQCompletenessCommissionType dqCompletenessCommission concode_elem_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep St...
void function ( String arg0 ) { this . type = arg0 ; }
13,741
sort cols . concode_field_sep boolean ifNotExists concode_elem_sep HCatTable hcatTable concode_field_sep Builder tblProps concode_elem_sep String getLocation concode_elem_sep int getNumBuckets concode_elem_sep List<HCatFieldSchema> getPartitionCols concode_elem_sep List<Order> getSortCols concode_elem_sep String getDat...
Builder function ( ArrayList < Order > arg0 ) { this . hcatTable . arg0 ( arg0 ) ; return this ; }
13,742
generates the textual output and saves it for later for comparison concode_field_sep StringWriter sw concode_elem_sep String comparisonOutput concode_elem_sep TargetCompiler targetCompiler concode_elem_sep TraceClassVisitor visitor concode_elem_sep PrintWriter pw concode_field_sep String getTargetFolder concode_elem_se...
void function ( ) { generate ( visitor ) ; comparisonOutput = sw . toString ( ) ; }
13,743
returns true if and only if this boundary is inside of the given boundary . it means it gives true if the given boundary 's minimum value is not greater then this boundary 's minimum value and the given boundary 's maximum value is not less then this boundary 's maximum value . concode_field_sep double min concode_elem...
boolean function ( Boundary arg0 ) { return arg0 . min <= this . min && arg0 . max >= this . max ; }
13,744
constructs a new string by decoding the specified array of bytes using the given charset . this method catches unsupportedencodingexception and re-throws it as illegalstateexception , which should never happen for a required charset name . use this method when the encoding is required to be in the jre . concode_field_s...
String function ( byte [ ] arg0 , String arg1 ) { if ( arg0 == null ) { return null ; } try { return new String ( arg0 , arg1 ) ; } catch ( UnsupportedEncodingException loc0 ) { throw StringUtils . newIllegalStateException ( arg1 , loc0 ) ; } }
13,745
called when the harvester finishes . concode_field_sep boolean stopping concode_field_sep String getOutputType concode_elem_sep void harvest concode_elem_sep void harvest concode_elem_sep void stop concode_elem_sep boolean isStopping concode_elem_sep void fireStartHarvest concode_elem_sep void fireAbortHarvest concode_...
void function ( ProgressListener arg0 , HarvestSource arg1 , boolean arg2 , Object arg3 ) { HarvestEvent loc0 = new HarvestEvent ( arg1 , arg2 , arg3 ) ; fireProgress ( arg0 , loc0 ) ; }
13,746
creates the log-entry format with level info and logs under the loggers name org.eclipse.smarthome.model.script . < loggername > concode_field_sep String LOGGER_NAME_PREFIX concode_field_sep void logError concode_elem_sep void logWarn concode_elem_sep void logDebug
void function ( String arg0 , String arg1 , Object ... arg2 ) { LoggerFactory . getLogger ( LOGGER_NAME_PREFIX . concat ( arg0 ) ) . info ( arg1 , arg2 ) ; }
13,747
non-private for test only access concode_field_sep Map<Integer,List<LazyField>> fields concode_elem_sep IndexReader reader concode_elem_sep int docID concode_elem_sep String name concode_elem_sep Document doc concode_elem_sep IndexableField realValue concode_elem_sep int fieldNum concode_elem_sep Set<String> fieldNames...
boolean function ( ) { return null != realValue ; }
13,748
util method to write an attribute without the ns prefix concode_field_sep javax.xml.namespace.QName MY_QNAME concode_elem_sep com.amazon.ec2.DescribeAvailabilityZonesResponseType localDescribeAvailabilityZonesResponse concode_field_sep void setDescribeAvailabilityZonesResponse concode_elem_sep java.lang.String generate...
void function ( java . lang . String arg0 , java . lang . String arg1 , java . lang . String arg2 , javax . xml . stream . XMLStreamWriter arg3 ) { if ( arg0 . equals ( "srini_string" ) ) { arg3 . writeAttribute ( arg1 , arg2 ) ; } else { registerPrefix ( arg3 , arg0 ) ; arg3 . writeAttribute ( arg0 , arg1 , arg2 ) ; }...
13,749
returns true if this object is equal to the specified object , and false otherwise . concode_field_sep SortOrder ASCENDING concode_elem_sep SortOrder DESCENDING concode_elem_sep long serialVersionUID concode_elem_sep String name concode_field_sep Object readResolve concode_elem_sep int hashCode concode_elem_sep String ...
boolean function ( final Object arg0 ) { if ( this == arg0 ) { return true ; } if ( ! ( arg0 instanceof SortOrder ) ) { return false ; } final SortOrder loc0 = ( SortOrder ) arg0 ; if ( ! this . name . equals ( loc0 . toString ( ) ) ) { return false ; } return true ; }
13,750
get the attribute that was change . concode_field_sep String newValue concode_elem_sep User modifiedUser concode_elem_sep Log LOG concode_elem_sep Calendar modifiedDate concode_elem_sep int id concode_elem_sep Attribute attribute concode_elem_sep String oldValue concode_field_sep Change createFromResponse concode_elem_...
Attribute function ( ) { return attribute ; }
13,751
allows the jsdocparser to update the character offset so that getcharno returns a valid character position . concode_field_sep int cursor concode_elem_sep char[] stringBuffer concode_elem_sep int sourceEnd concode_elem_sep int EOF_CHAR concode_elem_sep int initLineno concode_elem_sep int lineEndChar concode_elem_sep St...
void function ( ) { charno = getOffset ( ) ; }
13,752
sets the value of the languagecode property . concode_field_sep List<String> nilReason concode_elem_sep CodeListValueType languageCode concode_field_sep CodeListValueType getLanguageCode concode_elem_sep List<String> getNilReason
void function ( CodeListValueType arg0 ) { this . languageCode = arg0 ; }
13,753
ereugt das haupt-panel . concode_field_sep JTextArea _medienAnzeigerTextArea concode_elem_sep JPanel _hauptPanel concode_field_sep void erzeugeMedienAnzeiger concode_elem_sep JPanel getUIPanel concode_elem_sep JTextArea getMedienAnzeigerTextArea
void function ( ) { _hauptPanel = new JPanel ( new BorderLayout ( ) ) ; }
13,754
test getanddecrement concode_field_sep long[] mTestValues concode_field_sep void getAndIncrementTest concode_elem_sep void decrementAndGetTestLogic concode_elem_sep void constructorTest concode_elem_sep void incrementAndGetTestTest concode_elem_sep void getAndIncrementTestLogic concode_elem_sep void incrementAndGetTest...
void function ( ) { for ( long loc0 : mTestValues ) { final SimpleAtomicLong loc1 = new SimpleAtomicLong ( loc0 ) ; getAndDecrementTestLogic ( loc1 , loc0 , loc0 , loc0 - 1 ) ; } }
13,755
close the given jdbc statement and ignore any thrown exception . this is useful for typical finally blocks in manual jdbc code . concode_field_sep byte[] Hexhars concode_field_sep String readClob concode_elem_sep byte[] readBlob concode_elem_sep T getResultSetValue concode_elem_sep T getResultSetValue concode_elem_sep ...
void function ( Statement arg0 ) { if ( arg0 != null ) { try { arg0 . close ( ) ; } catch ( Exception loc0 ) { } } }
13,756
helper method for handle errors . concode_field_sep String CONF_LOCATION concode_elem_sep Log log concode_field_sep byte[] serialize concode_elem_sep String getProperty concode_elem_sep T getProperty concode_elem_sep OMElement loadXMLConfig concode_elem_sep Properties loadProperties concode_elem_sep byte[] asBytes
void function ( String arg0 , Exception arg1 ) { log . error ( arg0 ) ; throw new SynapseCommonsException ( arg0 , arg1 ) ; }
13,757
tests execution with an invalid max value should throw an exception . concode_field_sep String SUFFIX concode_elem_sep CellProcessor processorChain2 concode_elem_sep CellProcessor processor2 concode_elem_sep CellProcessor processorChain concode_elem_sep int MAX_SIZE concode_elem_sep CellProcessor processor concode_fiel...
void function ( ) { processor = new Truncate ( 0 ) ; }
13,758
send a unsolicited complete request . concode_field_sep SyncParticipantClient CLIENT concode_field_sep void sendParticipantCompleteClose concode_elem_sep void sendCannotComplete concode_elem_sep void sendFail concode_elem_sep void sendCompensate concode_elem_sep void sendExit concode_elem_sep void sendCoordinatorComple...
void function ( final CoordinationContextType arg0 , final MAP arg1 ) { }
13,759
set whether this request is allowed to load icons from non http s urls e.g. the omni.ja . for example web content referencing internal urls should not lead to us loading icons from internal data structures like the omni.ja . concode_field_sep IconRequest internal concode_field_sep IconRequestBuilder privileged concode_...
IconRequestBuilder function ( boolean arg0 ) { internal . arg0 = arg0 ; return this ; }
13,760
add an element to the list - causes sorting concode_field_sep Node parent concode_elem_sep int maxSearchDistance concode_elem_sep Node[][] nodes concode_elem_sep float cost concode_elem_sep int depth concode_elem_sep ArrayList<Node> list concode_elem_sep int x concode_elem_sep Array<Node> closed concode_elem_sep Sorted...
void function ( Node arg0 ) { list . add ( arg0 ) ; Collections . sort ( list ) ; }
13,761
called when an activity you launched exits , giving you the requestcode you started it with , the resultcode it returned , and any additional data from it . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceN...
void function ( int arg0 , int arg1 , Intent arg2 ) { }
13,762
factory method that parses given input and construct matching pointer instance , if it represents a valid json pointer : if not , a illegalargumentexception is thrown . concode_field_sep int _matchingElementIndex concode_elem_sep JsonPointer _head concode_elem_sep JsonPointer _nextSegment concode_elem_sep String _match...
JsonPointer function ( String arg0 ) { if ( ( arg0 == null ) || arg0 . length ( ) == 0 ) { return EMPTY ; } if ( arg0 . charAt ( 0 ) != '/' ) { throw new IllegalArgumentException ( "srini_string" + "srini_string" * "srini_string" ) ; } return _parseTail ( arg0 ) ; }
13,763
converts a fieldmask to its canonical form . in the canonical form of a fieldmask , all field paths are sorted alphabetically and redundant field paths are moved . concode_field_sep String FIELD_SEPARATOR_REGEX concode_elem_sep String FIELD_PATH_SEPARATOR concode_elem_sep String FIELD_PATH_SEPARATOR_REGEX concode_elem_...
FieldMask function ( FieldMask arg0 ) { return new FieldMaskTree ( arg0 ) . toFieldMask ( ) ; }
13,764
writes properties to a file . concode_field_sep String VAR_START concode_elem_sep String ARG_PREFIX concode_elem_sep int SMALLEST_POSSIBLE_ALIASED_STRING concode_elem_sep String VAR_END concode_field_sep Properties safeReadProperties concode_elem_sep int findMatchingBrace concode_elem_sep Properties getPropertiesFromCo...
void function ( File arg0 , Properties arg1 ) { FileOutputStream loc0 = null ; try { loc0 = new FileOutputStream ( arg0 ) ; arg1 . store ( loc0 , "srini_string" ) ; } finally { if ( loc0 != null ) { loc0 . close ( ) ; } } }
13,765
get the name of the host where this indexer process is running . concode_field_sep String hostName concode_elem_sep String indexerName concode_elem_sep String error concode_field_sep String getIndexerName concode_elem_sep String getError concode_elem_sep boolean isRunning concode_elem_sep String toString
String function ( ) { return hostName ; }
13,766
clears out the contents of this revisionobjectlist . concode_field_sep List<K> coreKeys concode_elem_sep int index concode_elem_sep List<K> addedElementKeys concode_elem_sep Map<K,V> internalMap concode_elem_sep long iteratorVersion concode_elem_sep long internalListVersion concode_elem_sep List<K> clonedElementKeys co...
void function ( ) { addedElementKeys . clear ( ) ; removedElementKeys . clear ( ) ; clonedElementKeys . clear ( ) ; internalMap . clear ( ) ; internalListVersion ++ ; }
13,767
sets the value of the startdate property . concode_field_sep Double balance concode_elem_sep XMLGregorianCalendar endDate concode_elem_sep long serialVersionUID concode_elem_sep Boolean fullyPaidOff concode_elem_sep XMLGregorianCalendar startDate concode_elem_sep String status concode_elem_sep BigInteger unbilledInstal...
void function ( XMLGregorianCalendar arg0 ) { this . startDate = arg0 ; }
13,768
returns the id concode_field_sep String createdAt concode_elem_sep Metadata metadata concode_elem_sep String id concode_elem_sep W entity concode_elem_sep String url concode_elem_sep String updatedAt concode_field_sep V withEntity concode_elem_sep String getUrl concode_elem_sep Metadata getMetadata concode_elem_sep Str...
String function ( ) { return this . id ; }
13,769
columnnumber returns the column number of the current context node . note : xalan does not normally record location information for each node . to obtain it , you must set the custom trax attribute `` http://xml.apache.org/xalan/features/source_location '' true in the transformerfactory before generating the transforme...
int function ( ExpressionContext arg0 ) { Node loc0 = arg0 . getContextNode ( ) ; int loc1 = ( ( DTMNodeProxy ) loc0 ) . getDTMNodeNumber ( ) ; SourceLocator loc2 = ( ( DTMNodeProxy ) loc0 ) . getDTM ( ) . getSourceLocatorFor ( loc1 ) ; if ( loc2 != null ) return loc2 . getColumnNumber ( ) ; else return - 1 ; }
13,770
returns the transparency mode for this lineargradientpaint . concode_field_sep ColorSpaceEnum colorSpace concode_elem_sep int transparency concode_elem_sep CycleMethodEnum REPEAT concode_elem_sep CycleMethodEnum cycleMethod concode_elem_sep float[] fractions concode_elem_sep ColorSpaceEnum SRGB concode_elem_sep Color[]...
int function ( ) { return transparency ; }
13,771
this is the method a contract uses to request the fulfillment of an obligation . the way a contracthandler resolves an obligation is by calling the abstract method ` handleobligation ' . once an attempt has been made to fulfill the response , an obligationresponse is returned , expressing whether the obligation was suc...
ObligationResponse function ( FillObligation arg0 ) { Obligation loc0 = arg0 . getObligation ( ) ; return handleObligation ( loc0 ) ; }
13,772
to get the construction cost by construction type code and floor number concode_field_sep EntityManager entityManager concode_field_sep List getAllStructureClassification concode_elem_sep Session getCurrentSession concode_elem_sep StructureClassification findById concode_elem_sep StructureClassification create concode_...
StructureClassification function ( String arg0 , Integer arg1 ) { Query loc0 = getCurrentSession ( ) . createQuery ( "srini_string" ) ; loc0 . setString ( "srini_string" , arg0 ) ; loc0 . setInteger ( "srini_string" , arg1 ) ; return ( StructureClassification ) loc0 . uniqueResult ( ) ; }
13,773
gets the value of the layout property . concode_field_sep Layout layout concode_elem_sep String scrolling concode_elem_sep String flavour concode_elem_sep String src concode_elem_sep String background concode_elem_sep String width concode_elem_sep BigDecimal refresh concode_elem_sep String frameborder concode_elem_sep ...
Layout function ( ) { return layout ; }
13,774
sets the value of the method property . concode_field_sep ContactMethodType method concode_elem_sep CreditDataType creditData concode_elem_sep ContactNameDataType nameData concode_elem_sep long serialVersionUID concode_elem_sep String id concode_elem_sep OperationType operation concode_elem_sep ContactBaseDataType base...
void function ( ContactMethodType arg0 ) { this . method = arg0 ; }
13,775
creates a new preference configuration of the described save participant . concode_field_sep ISaveParticipantPreferenceConfiguration fPreferenceConfiguration concode_elem_sep IPostSaveListener fPostSaveListener concode_field_sep ISaveParticipantPreferenceConfiguration getPreferenceConfiguration concode_elem_sep IPostSa...
ISaveParticipantPreferenceConfiguration function ( ) { return new AbstractSaveParticipantPreferenceConfiguration ( ) { protected String getPostSaveListenerId ( ) { return fPostSaveListener . getId ( ) ; } protected String getPostSaveListenerName ( ) { return fPostSaveListener . getName ( ) ; } } ; }
13,776
remove whitespace from mime containing encoded base64 data . concode_field_sep int SIGN concode_elem_sep boolean fDebug concode_elem_sep int FOURBYTE concode_elem_sep int EIGHTBIT concode_elem_sep int LOOKUPLENGTH concode_elem_sep int TWENTYFOURBITGROUP concode_elem_sep int BASELENGTH concode_elem_sep int SIXTEENBIT co...
int function ( char [ ] arg0 ) { if ( arg0 == null ) { return 0 ; } int loc0 = 0 ; int loc1 = arg0 . length ; for ( int loc2 = 0 ; loc2 < loc1 ; loc2 ++ ) { if ( ! isWhiteSpace ( arg0 [ loc2 ] ) ) { arg0 [ loc0 ++ ] = arg0 [ loc2 ] ; } } return loc0 ; }
13,777
returns the hashcode for the function concode_field_sep double volume concode_elem_sep double minDistance concode_elem_sep Logger log concode_elem_sep Map<double[],Double> points concode_elem_sep Random sampler concode_field_sep Map<double[],Double> discretise concode_elem_sep int getDimensions concode_elem_sep double ...
int function ( ) { return points . hashCode ( ) ; }
13,778
returns the from user id of this entry . concode_field_sep Entry _entry concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setContent concode_elem_sep bool...
long function ( ) { return _entry . getFromUserId ( ) ; }
13,779
check whether the given host/rack string represents an arbitrary host name . concode_field_sep String ANY concode_elem_sep long serialVersionUID concode_field_sep int compare concode_elem_sep Resource getCapability concode_elem_sep boolean getRelaxLocality concode_elem_sep String getResourceName concode_elem_sep Execut...
boolean function ( String arg0 ) { return ANY . equals ( arg0 ) ; }
13,780
set the language associated with the species concode_field_sep boolean immortal concode_elem_sep String language concode_elem_sep String type concode_field_sep boolean isImmortal concode_elem_sep String getLanguage concode_elem_sep void setImmortal concode_elem_sep String getType concode_elem_sep void setType
void function ( String arg0 ) { this . language = arg0 ; }
13,781
sets whether the photo represented by this object was generated by the user or by the application . concode_field_sep Bitmap bitmap concode_elem_sep Uri imageUrl concode_elem_sep String caption concode_elem_sep Creator<SharePhoto> CREATOR concode_elem_sep boolean userGenerated concode_field_sep Builder setImageUrl conc...
Builder function ( final boolean arg0 ) { this . userGenerated = arg0 ; return this ; }
13,782
determine if a reply code is a positive preliminary response . all codes beginning with a 1 are positive preliminary responses . postitive preliminary responses are used to indicate tentative success . no further commands can be issued to the ftp server after a positive preliminary response until a follow up response i...
boolean function ( int arg0 ) { return ( arg0 >= 100 && arg0 < 200 ) ; }
13,783
used for calls only interested in creating a placeholder shell for a type . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean hasShell concode_elem_sep boolean canUseByReference concode_elem_sep Object getDefaultPrimitiveValue concode_elem_sep Object decodeObject concode_elem_sep Object decodeObject
Object function ( Object arg0 , Class arg1 ) { return null ; }
13,784
create a userdetailsrepositoryresourcefactorybean with a resource that is a properties file in the format defined in userdetailsresourcefactorybean concode_field_sep UserDetailsResourceFactoryBean userDetails concode_field_sep void setResourceLocation concode_elem_sep MapUserDetailsRepository getObject concode_elem_sep...
UserDetailsRepositoryResourceFactoryBean function ( Resource arg0 ) { UserDetailsRepositoryResourceFactoryBean loc0 = new UserDetailsRepositoryResourceFactoryBean ( ) ; loc0 . setResource ( arg0 ) ; return loc0 ; }
13,785
return of auto generated keys is not yet supported . concode_field_sep int m_updateCount concode_elem_sep SPIConnection m_connection concode_elem_sep ResultSet m_resultSet concode_elem_sep ArrayList m_batch concode_elem_sep String m_cursorName concode_elem_sep int m_maxRows concode_elem_sep int m_fetchSize concode_elem...
boolean function ( String arg0 , String [ ] arg1 ) { throw new UnsupportedFeatureException ( "srini_string" ) ; }
13,786
parses a hex byte in the given string , at position ` ptr ' . concode_field_sep int frameskip concode_elem_sep boolean updateRam concode_elem_sep BufferedReader in concode_elem_sep ScreenMatrix screen concode_elem_sep int playerBAction concode_elem_sep boolean useRLE concode_elem_sep PrintStream out concode_elem_sep bo...
int function ( String arg0 , int arg1 ) { int loc0 = arg0 . charAt ( arg1 + 1 ) ; int loc1 = arg0 . charAt ( arg1 ) ; if ( loc0 >= 'A' ) loc0 -= 'A' - 10 ; else loc0 -= '0' ; if ( loc1 >= 'A' ) loc1 -= 'A' - 10 ; else loc1 -= '0' ; return ( loc1 << 4 ) + loc0 ; }
13,787
based on optional properties , create a new methodfactory . by default , this will create a code-generation-based invocationmethodfactory . if security restricts code generation , reflectionmethodfactory will be used . if we are dumping class definitions , dumpinginvocationmethodfactory will be used . see methodfactory...
MethodFactory function ( ClassLoader arg0 ) { if ( Options . INVOKEDYNAMIC_HANDLES . load ( ) ) { return new InvokeDynamicMethodFactory ( arg0 ) ; } else { return new InvocationMethodFactory ( arg0 ) ; } }
13,788
reduces the size of the array to the specified size . if the array is already smaller than the specified size , no action is taken . concode_field_sep boolean ordered concode_elem_sep ArrayIterator<T> iterator concode_elem_sep int size concode_elem_sep Array<T> array concode_elem_sep int index concode_elem_sep T[] item...
void function ( int arg0 ) { if ( size <= arg0 ) return ; for ( int loc0 = arg0 ; loc0 < size ; loc0 ++ ) items [ loc0 ] = null ; size = arg0 ; }
13,789
mutator for the ssn concode_field_sep String _address concode_elem_sep String _ssn concode_elem_sep Date _dob concode_elem_sep String _gender concode_elem_sep String _workPhone concode_elem_sep String _homePhone concode_elem_sep String _id concode_elem_sep String _fmpSponsorSsn concode_elem_sep String _patientName conc...
void function ( final String arg0 ) { this . _ssn = arg0 ; }
13,790
initializes the repository factory concode_field_sep PlaceHolder placeHolder concode_field_sep void contextDestroyed
void function ( ServletContextEvent arg0 ) { RepositoryManager . initialize ( arg0 . getServletContext ( ) ) ; }
13,791
compose error message by inserting the strings in the add parameters in placeholders within the error message . the message string contains $ $ markers for each context variable . context variables are supplied in the add parameters . concode_field_sep String MESSAGE_TAG concode_elem_sep int SQL_STATE_DIGITS concode_el...
HsqlException function ( Throwable arg0 , int arg1 , int arg2 , final Object [ ] arg3 ) { String loc0 = getMessage ( arg1 , arg2 , arg3 ) ; int loc1 = arg2 < ERROR_CODE_BASE ? arg1 : arg2 ; return new HsqlException ( arg0 , loc0 . substring ( SQL_STATE_DIGITS + 1 ) , loc0 . substring ( 0 , SQL_STATE_DIGITS ) , - loc1 )...
13,792
returns file object not null for incoming image uri . file object can reference to non-existing file . concode_field_sep File cacheDir concode_elem_sep Bitmap.CompressFormat compressFormat concode_elem_sep int DEFAULT_BUFFER_SIZE concode_elem_sep int compressQuality concode_elem_sep Bitmap.CompressFormat DEFAULT_COMPRE...
File function ( String arg0 ) { String loc0 = fileNameGenerator . generate ( arg0 ) ; File loc1 = cacheDir ; if ( ! cacheDir . exists ( ) && ! cacheDir . mkdirs ( ) ) { if ( reserveCacheDir != null && ( reserveCacheDir . exists ( ) || reserveCacheDir . mkdirs ( ) ) ) { loc1 = reserveCacheDir ; } } return new File ( loc...
13,793
return the default type to use or null if the metadata does not define anydefault . concode_field_sep String DEFAULT_ATTRIBUTE concode_elem_sep String VALUES_EL concode_elem_sep MetadataHolder<String,ProjectType> projectTypes concode_elem_sep Map<K,T> content concode_elem_sep String ID_ATTRIBUTE concode_elem_sep Map<St...
ProjectType function ( ) { if ( this . projectTypes . getDefaultItem ( ) != null ) { return this . projectTypes . getDefaultItem ( ) ; } String loc0 = getDefaults ( ) . get ( "srini_string" ) ; if ( loc0 != null ) { return this . projectTypes . getContent ( ) . get ( loc0 ) ; } return null ; }
13,794
sets the fldfilterchecked value for this crmcustomfieldfilter . concode_field_sep java.lang.Boolean fldFilterChecked concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef fldFilter concode_elem_sep java.lang.Boolean fldFilterNotNull concode_elem_sep java.lang.String fldFilterVal concode_elem_sep java...
void function ( java . lang . Boolean arg0 ) { this . fldFilterChecked = arg0 ; }
13,795
sets the cloudlet exec list . concode_field_sep List<? extends ResCloudlet> cloudletFinishedList concode_elem_sep double previousTime concode_elem_sep List<? extends ResCloudlet> cloudletPausedList concode_elem_sep List<? extends ResCloudlet> cloudletWaitingList concode_elem_sep List<? extends ResCloudlet> cloudletFail...
void function ( List < T > arg0 ) { this . cloudletExecList = arg0 ; }
13,796
adds a new friend request to the received ones . concode_field_sep ArrayList<Key<User>> friends concode_elem_sep ArrayList<Key<PactType>> usedPactTypes concode_elem_sep String password concode_elem_sep ArrayList<Key<PactRequest>> sentPactRequests concode_elem_sep String surname concode_elem_sep String name concode_elem...
void function ( final Key < FriendRequest > arg0 ) { receivedFriendRequests . add ( arg0 ) ; }
13,797
returns the paint associated with the specified key , or null . concode_field_sep long serialVersionUID concode_elem_sep Map store concode_field_sep boolean containsKey concode_elem_sep void writeObject concode_elem_sep boolean equals concode_elem_sep void clear concode_elem_sep Object clone concode_elem_sep void put c...
Paint function ( Comparable arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return ( Paint ) this . store . get ( arg0 ) ; }
13,798
sets the value of the show property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep JAXBElement<? extends CodeListDictionaryType> codeListDictionary concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_...
void function ( String arg0 ) { this . show = arg0 ; }
13,799
sends a tablemodelevent to all registered listeners to informthem that some rows have been updated . concode_field_sep long serialVersionUID concode_elem_sep EventListenerList listenerList concode_field_sep T[] getListeners concode_elem_sep void addTableModelListener concode_elem_sep void removeTableModelListener conco...
void function ( int arg0 , int arg1 ) { fireTableChanged ( new TableModelEvent ( this , arg0 , arg1 , TableModelEvent . ALL_COLUMNS , TableModelEvent . UPDATE ) ) ; }