code
stringlengths
20
663
nl
stringlengths
68
7.19k
void function ( PlayerCharacter arg0 , CDOMObject arg1 , Skill arg2 ) { PCClass loc0 = arg0 . getClassKeyed ( source . getKeyName ( ) ) ; if ( applyRank != null ) { SkillRankControl . modRanks ( - applyRank , loc0 , false , arg0 , arg2 ) ; } arg0 . removeLocalCost ( loc0 , arg2 , SkillCost . CLASS , arg1 ) ; }
removes a skill choice from a playercharacter . concode_field_sep PCClass source concode_elem_sep Integer applyRank concode_field_sep boolean allow concode_elem_sep Skill decodeChoice concode_elem_sep Integer getApplyRank concode_elem_sep void applyChoice concode_elem_sep void restoreChoice concode_elem_sep PCClass get...
int function ( ) { return timeout ; }
returns the timeout for the communication to a homematic gateway in seconds . concode_field_sep String UTF_ENCODING concode_elem_sep int DEFAULT_PORT_RF concode_elem_sep int cuxdPort concode_elem_sep String gatewayType concode_elem_sep String ISO_ENCODING concode_elem_sep int reconnectInterval concode_elem_sep String G...
Resource function ( ) { T loc0 = getContextObject ( ) ; if ( loc0 instanceof EObject ) { return ( ( EObject ) loc0 ) . eResource ( ) ; } return null ; }
returns the resource which is affected by this refactoring . default implementation returns the resource of the first context object . concode_field_sep RefactoringHelper helper concode_elem_sep List<T> contextObjects concode_field_sep TransactionalEditingDomain getEditingDomain concode_elem_sep List<?> getAffectedFile...
AnnoConnection1 function ( ) { log . finest ( "srini_string" ) ; return ( AnnoConnection1 ) connectionManager . allocateConnection ( mcf , null ) ; }
get connection from factory concode_field_sep Reference reference concode_elem_sep AnnoManagedConnectionFactory1 mcf concode_elem_sep ConnectionManager connectionManager concode_elem_sep Logger log concode_elem_sep long serialVersionUID concode_field_sep void setReference concode_elem_sep Reference getReference
ValidationResult function ( Object arg0 , Object arg1 , Throwable arg2 ) { return new ValidationResult ( EValidationResultType . ERROR , arg0 , arg1 , arg2 . getLocalizedMessage ( ) ) ; }
creates error result based on exception . concode_field_sep String msg concode_elem_sep Object data concode_elem_sep long serialVersionUID concode_elem_sep Object source concode_elem_sep ValidationResult SUCCESS concode_elem_sep EValidationResultType type concode_field_sep ValidationResult firstNonOk concode_elem_sep b...
void function ( ObjectName arg0 ) { }
called when an mbean is unregistered under the given objectname . allows subclasses to perform additional processing when an mbean is unregistered . the default implementation is empty . can be overridden in subclasses . concode_field_sep MBeanServer server concode_elem_sep Log logger concode_elem_sep RegistrationPolic...
String function ( ) { return fixedValue ; }
gets the value of the fixedvalue property . concode_field_sep Boolean advanced concode_elem_sep String defaultValue concode_elem_sep Boolean masked concode_elem_sep List<DisplayType> display concode_elem_sep String name concode_elem_sep String fixedValue concode_elem_sep List<DisplayType> description concode_elem_sep B...
boolean function ( ) { return isFinal && collator != null ; }
collation for individual object concode_field_sep HashMap nameToJavaName concode_elem_sep Collator collator concode_elem_sep Charset charset concode_elem_sep HashMap dbNameToCollation concode_elem_sep HsqlName name concode_elem_sep boolean equalIsIdentical concode_elem_sep boolean isFinal concode_elem_sep HsqlName sour...
void function ( int arg0 , String arg1 , String arg2 , GeographicPoint arg3 , GeographicPoint arg4 ) { MapGraph loc0 = new MapGraph ( ) ; feedback += "srini_string" + arg2 ; GraphLoader . loadRoadMap ( "srini_string" + arg1 , loc0 ) ; CorrectAnswer loc1 = new CorrectAnswer ( "srini_string" + arg1 + "srini_string" , tru...
run a test case on an adjacency list and adjacency matrix . concode_field_sep String feedback concode_elem_sep int correct concode_elem_sep int TESTS concode_field_sep String printOutput concode_elem_sep String printBFSList concode_elem_sep String appendFeedback concode_elem_sep void main concode_elem_sep void run conc...
String function ( ) { return oldValue ; }
get the old value of the attribute . 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...
int function ( ) { return ( ( location == null ? 0 : location . hashCode ( ) << 24 ) ^ ( groupID == null ? 0 : groupID . hashCode ( ) << 16 ) ^ ( className == null ? 0 : className . hashCode ( ) << 9 ) ^ ( data == null ? 0 : data . hashCode ( ) << 1 ) ^ ( restart ? 1 : 0 ) ) ; }
return the same hashcode for similar activationdescs . concode_field_sep MarshalledObject<?> data concode_elem_sep boolean restart concode_elem_sep ActivationGroupID groupID concode_elem_sep String className concode_elem_sep String location concode_elem_sep long serialVersionUID concode_field_sep String getLocation con...
B function ( JsonObjectBuilder arg0 , String arg1 , int ... arg2 ) { if ( arg2 . length == 1 ) { arg0 . add ( arg1 , arg2 [ 0 ] ) ; } else if ( arg2 . length > 1 ) { JsonArrayBuilder loc0 = Json . createArrayBuilder ( ) ; for ( int loc1 : arg2 ) { loc0 . add ( loc1 ) ; } arg0 . add ( arg1 , loc0 ) ; } return ( B ) this...
updates the javax.json.jsonobjectbuilder with the specified key value s pair . concode_field_sep JsonObjectBuilder headersBuilder concode_elem_sep Class<T> tokenType concode_elem_sep JsonObjectBuilder claimsBuilder concode_field_sep Class<T> getTokenType concode_elem_sep B audience concode_elem_sep JsonObjectBuilder ge...
Object function ( JScrollPane arg0 , CurrentPageChanger arg1 ) { MouseWheelCurrentPageListener loc0 = null ; if ( arg0 != null && arg1 != null ) { loc0 = new MouseWheelCurrentPageListener ( arg0 , arg1 ) ; arg0 . addMouseWheelListener ( loc0 ) ; } return loc0 ; }
install a mousewheelcurrentpagelistener as a mousewheellistener concode_field_sep JScrollPane scrollpane concode_elem_sep CurrentPageChanger currentPageChanger concode_elem_sep boolean calculatingCurrentPage concode_field_sep void uninstall concode_elem_sep void mouseWheelMoved
Logger function ( final String arg0 ) { if ( StringUtils . isBlank ( arg0 ) ) { return NOPLogger . NOP_LOGGER ; } synchronized ( loggerMap ) { if ( ! loggerMap . containsKey ( arg0 ) ) { final Logger loc0 = getRealLoggerInstance ( arg0 ) ; loggerMap . put ( arg0 , new CasDelegatingLogger ( loc0 ) ) ; } return loggerMap...
attempts to find the real logger instance that is doing the heavy lifting and routes the request to an instance of casdelegatinglogger . the instance is cached by the logger name . concode_field_sep Map<String,CasDelegatingLogger> loggerMap concode_elem_sep Class<? extends ILoggerFactory> realLoggerFactoryClass concode...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getMLModelId ( ) != null ) loc0 . append ( "srini_string" + getMLModelId ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; }
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String mLModelId concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep UpdateMLModelResult clone concode_elem_sep void setMLModelId concode_elem_sep String getMLModelId concode_elem_sep Update...
Object function ( String arg0 ) { return getValueBinding ( getJsfEl ( arg0 ) ) . getValue ( FacesContext . getCurrentInstance ( ) ) ; }
get managed bean based on the bean name . 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 String getJsfEl concode_elem_sep void resetMa...
String function ( ) { return next ; }
link to the next subset of resources qualified . \ nempty if no more resources are to be returned . \ n concode_field_sep String previous concode_elem_sep String next concode_elem_sep List<APIInfoDTO> list concode_elem_sep Integer count concode_field_sep String getPrevious concode_elem_sep List<APIInfoDTO> getList conc...
RasterLayout function ( int arg0 ) { if ( arg0 <= 0 ) { throw new IllegalArgumentException ( "srini_string" ) ; } this . tileWidth = arg0 ; return this ; }
sets tilewidth to the supplied value and marks it as valid . concode_field_sep int width concode_elem_sep int minY concode_elem_sep int minX concode_elem_sep int height concode_elem_sep int tileWidth concode_elem_sep int tileHeight concode_elem_sep int tileGridXOffset concode_elem_sep int tileGridYOffset concode_field_...
String function ( String arg0 ) { Calendar loc0 = new GregorianCalendar ( ) ; String loc1 = "srini_string" + loc0 . get ( Calendar . DATE ) + loc0 . get ( Calendar . MONTH ) + loc0 . get ( Calendar . YEAR ) + + loc0 . get ( Calendar . HOUR ) + loc0 . get ( Calendar . MILLISECOND ) ; return loc1 + "srini_string" + arg0 ...
generate file name . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean copyFile concode_elem_sep int getFolderSize concode_elem_sep File[] getFilesFolder concode_elem_sep void verifyFolder concode_elem_sep boolean deleteDir
boolean function ( ) { return getScopeInstance ( ) == Scopes . NO_SCOPE ; }
returns true if this is the default scope . in this case a new instance will be provided for each injection . concode_field_sep Scoping SINGLETON_ANNOTATION concode_elem_sep Scoping EAGER_SINGLETON concode_elem_sep Scoping UNSCOPED concode_elem_sep Scoping SINGLETON_INSTANCE concode_field_sep V acceptVisitor concode_el...
E function ( int arg0 ) { return get ( arg0 , null ) ; }
gets the object mapped from the specified key , or null if no such mapping has been made . concode_field_sep Object DELETED concode_elem_sep int[] EMPTY_INTS concode_elem_sep int[] mKeys concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep Object[] EMPTY_OBJECTS concode_elem_sep long[] EMPTY_LO...
InetSocketAddress function ( ) { return mAddress ; }
returns the inetsocketaddress of the remote . concode_field_sep TachyonConf mTachyonConf concode_elem_sep boolean mConnected concode_elem_sep TProtocol mProtocol concode_elem_sep String mMode concode_elem_sep long mServiceVersion concode_elem_sep InetSocketAddress mAddress concode_elem_sep Logger LOG concode_elem_sep i...
V function ( K arg0 ) { if ( arg0 != null ) { CacheEntry < K , V > loc0 = cache . remove ( arg0 ) ; if ( loc0 != null ) { loc0 . remove ( ) ; return loc0 . getValue ( ) ; } } return null ; }
removes an entry from the cache . concode_field_sep Map<K,CacheEntry<K,V>> cache concode_elem_sep long DEFAULT_THRESHOLD_SECS concode_elem_sep CacheEntry<K,V> before concode_elem_sep long lastUpdate concode_elem_sep CacheEntry<K,V> header concode_elem_sep long expirationThreshold concode_elem_sep List<EvictionListener<...
Position function ( ) { return begin ; }
gets the value of the begin property . concode_field_sep Boolean isLink concode_elem_sep CvType startStatus concode_elem_sep Interval beginInterval concode_elem_sep Position end concode_elem_sep Position begin concode_elem_sep Interval endInterval concode_elem_sep CvType endStatus concode_field_sep void setEndInterval ...
ConfigDeleteListener function ( ) { return delayedDeleteListener ; }
gets the delayed delete listener . this method is provided for unit-testing . concode_field_sep DN parent concode_elem_sep ConfigDeleteListener delayedDeleteListener concode_elem_sep DebugTracer TRACER concode_elem_sep DN child concode_elem_sep ConfigAddListener delayedAddListener concode_field_sep ConfigAddListener ge...
double function ( Point2D arg0 ) { double loc0 = ( arg0 . getX ( ) - x ) * ( arg0 . getX ( ) - x ) ; loc0 += ( arg0 . getY ( ) - y ) * ( arg0 . getY ( ) - y ) ; return Math . sqrt ( loc0 ) ; }
returns the euclidean distance between a specified point and this point . concode_field_sep double x concode_elem_sep double y concode_field_sep double getX concode_elem_sep double getY
User function ( HsqlName arg0 , String arg1 , boolean arg2 ) { User loc0 = granteeManager . addUser ( arg0 ) ; loc0 . setPassword ( arg1 , arg2 ) ; boolean loc1 = userList . add ( arg0 . arg0 , loc0 ) ; if ( ! loc1 ) { throw Error . error ( ErrorCode . X_28503 , arg0 . statementName ) ; } return loc0 ; }
creates a new user object under management of this object . a set of constraints regarding user creation is imposed : if the specified name is null , then an assertion_failed exception is thrown stating that the name is null . if this object 's collection already contains an element whose name attribute equals the name...
void function ( ) { socket . close ( ) ; }
closes this socket . concode_field_sep Socket socket concode_field_sep int getLocalPort concode_elem_sep int getPort concode_elem_sep IpAddress getAddress concode_elem_sep OutputStream getOutputStream concode_elem_sep int getSoTimeout concode_elem_sep void setSoTimeout concode_elem_sep String toString concode_elem_sep ...
void function ( String arg0 ) { this . state = arg0 ; }
sets the value of the state property . concode_field_sep String subdist concode_elem_sep String pc concode_elem_sep String lng concode_elem_sep String vtc concode_elem_sep String dist concode_elem_sep String state concode_elem_sep String lat concode_field_sep String getLat concode_elem_sep void setLng concode_elem_sep ...
boolean function ( Object arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } Entry loc0 [ ] = table ; for ( int loc1 = loc0 . length ; loc1 -- > 0 ; ) { for ( Entry loc2 = loc0 [ loc1 ] ; loc2 != null ; loc2 = loc2 . next ) { if ( loc2 . arg0 . equals ( arg0 ) ) { return true ; } } } return false ; }
tests if some key maps into the specified value in this hashtable . this operation is more expensive than the containskey method . note that this method is identical in functionality to containsvalue , which is part of the map interface in the collections framework . concode_field_sep Entry table[] concode_elem_sep Ent...
void function ( String arg0 , Object ... arg1 ) { log ( IStatus . INFO , arg0 , arg1 ) ; }
log info to the eclipse log . concode_field_sep ILog log concode_elem_sep MechanicLog DEFAULT concode_field_sep void logError concode_elem_sep void logError concode_elem_sep void log concode_elem_sep void log concode_elem_sep void logWarning concode_elem_sep MechanicLog getDefault
String function ( ) { if ( stop == null ) { return "srini_string" ; } else { return stop ; } }
gets the value of the stop property . concode_field_sep String diameter concode_elem_sep String shape concode_elem_sep String stop concode_elem_sep String rot concode_elem_sep String name concode_elem_sep String x concode_elem_sep String y concode_elem_sep String drill concode_elem_sep String first concode_elem_sep Str...
int function ( ) { return position ; }
get the last processed term position . concode_field_sep int maxTermFrequency concode_elem_sep int numOverlap concode_elem_sep int uniqueTermCount concode_elem_sep int offset concode_elem_sep int length concode_elem_sep PayloadAttribute payloadAttribute concode_elem_sep int lastStartOffset concode_elem_sep PositionIncr...
void function ( double arg0 ) { this . latitudeDegrees = arg0 ; }
sets the value of the latitudedegrees property . concode_field_sep double latitudeDegrees concode_elem_sep double longitudeDegrees concode_field_sep void setLongitudeDegrees concode_elem_sep double getLongitudeDegrees concode_elem_sep double getLatitudeDegrees
void function ( ) { FlowArrangement loc0 = new FlowArrangement ( ) ; assertFalse ( loc0 instanceof Cloneable ) ; }
immutable - cloning is not necessary . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSerialization concode_elem_sep void testEquals
float function ( ) { return 9f * 25.4f / ( 72f * getPixelUnitToMillimeter ( ) ) ; }
returns the medium font size . concode_field_sep Set extensions concode_elem_sep BridgeContext ctx concode_elem_sep Set FEATURES concode_field_sep float getStandardLighterFontWeight concode_elem_sep String getLanguages concode_elem_sep EventDispatcher getEventDispatcher concode_elem_sep void openLink concode_elem_sep S...
void function ( String arg0 ) { this . host = arg0 ; }
docker host concode_field_sep boolean followRedirectFilter concode_elem_sep Integer maxTotalConnections concode_elem_sep Integer port concode_elem_sep boolean tlsVerify concode_elem_sep boolean secure concode_elem_sep String password concode_elem_sep String certPath concode_elem_sep Integer maxPerRouteConnections conco...
void function ( TimeDistribution arg0 ) { for ( int loc0 = 0 ; loc0 < p . nTotal ; loc0 ++ ) AtomicArrays . INSTANCE . setVolatileLong ( counts , loc0 , AtomicArrays . INSTANCE . getVolatileLong ( arg0 . counts , loc0 ) ) ; }
copies other distribution into this one . concode_field_sep Precision p concode_elem_sep long SEC concode_elem_sep int bigSumSecsIndex concode_elem_sep int power1Base concode_elem_sep long[] counts concode_elem_sep long US concode_elem_sep int stripe concode_elem_sep long MIN concode_elem_sep int nBits concode_elem_sep...
String function ( ) { return name ; }
returns the name . concode_field_sep String phone concode_elem_sep String name concode_elem_sep String email concode_field_sep void setName concode_elem_sep String getPhone concode_elem_sep void setEmail concode_elem_sep String getEmail concode_elem_sep void setPhone
void function ( WorkingListener arg0 ) { workingEventSupport_ . addWorkingListener ( arg0 ) ; }
adds a listener to be notified when work in a different thread starts and stops . concode_field_sep DateFormat dateFormat_ concode_elem_sep String fromJobText_ concode_elem_sep String fromJobNumberText_ concode_elem_sep String generalTabText_ concode_elem_sep ChangeEventSupport changeEventSupport_ concode_elem_sep Stri...
void function ( ) { }
used to initialize the managed bean . concode_field_sep Log logger concode_elem_sep Effect valueChangeEffect concode_field_sep void effectChangeListener concode_elem_sep void setValueChangeEffect concode_elem_sep Effect getValueChangeEffect
Object function ( Subject arg0 , ConnectionRequestInfo arg1 ) { JcrSessionHandle loc0 = new JcrSessionHandle ( this ) ; addHandle ( loc0 ) ; return loc0 ; }
creates a new connection handle for the underlying physical connection represented by the managedconnection instance . concode_field_sep JcrManagedConnectionFactory mcf concode_elem_sep JcrSession session concode_elem_sep List<ConnectionEventListener> listeners concode_elem_sep List<JcrSessionHandle> handles concode_el...
boolean function ( final NamedElement arg0 ) { return arg0 . getName ( ) == null || ( arg0 . getName ( ) != null && ( arg0 . getName ( ) . isEmpty ( ) || arg0 . getName ( ) . equalsIgnoreCase ( "srini_string" ) ) ) ; }
checks if the name of the given element matches the requirements to be a ` default ' element . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isNamedExitTransition concode_elem_sep List<Transition>[] getExitSpecSortedTransitions concode_elem_sep Map<Region,List<Entry>> getRegionsWithoutDefaultEntry...
void function ( SessionFactory arg0 ) { this . sessionFactory = arg0 ; }
set session factory concode_field_sep Configuration configuration concode_elem_sep ApplicationContext applicationContext concode_elem_sep Log log concode_elem_sep SessionFactory sessionFactory concode_field_sep void deleteGlobalProperty concode_elem_sep GlobalProperty getGlobalPropertyByUuid concode_elem_sep String get...
com . liferay . contacts . model . Entry function ( long arg0 ) { return _entryLocalService . getEntry ( arg0 ) ; }
returns the entry with the primary key . concode_field_sep EntryLocalService _entryLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep int sea...
void function ( SessionFactory arg0 ) { this . sessionFactory = arg0 ; }
set the hibernate sessionfactory that should be used to create hibernate sessions . concode_field_sep SessionFactory sessionFactory concode_field_sep void afterPropertiesSet concode_elem_sep Session openSession concode_elem_sep Object invoke concode_elem_sep SessionFactory getSessionFactory
void function ( ) { ___currentMethod = null ; }
called by delegate method when finished concode_field_sep TAsyncClientManager ___manager concode_elem_sep TNonblockingTransport ___transport concode_elem_sep long ___timeout concode_elem_sep TAsyncMethodCall ___currentMethod concode_elem_sep Exception ___error concode_elem_sep TProtocolFactory ___protocolFactory concod...
DeclaredType function ( ) { return wrappedDeclaredSetType ( ) . get ( ) ; }
the set type itself . concode_field_sep PlaceHolder placeHolder concode_field_sep TypeMirror unwrappedElementType concode_elem_sep boolean isSet concode_elem_sep boolean isSet concode_elem_sep Equivalence.Wrapper<DeclaredType> wrappedDeclaredSetType concode_elem_sep boolean isRawType concode_elem_sep SetType from conco...
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , com . liferay . portal . kernel . dao . orm . Projection arg1 ) { return getService ( ) . dynamicQueryCount ( arg0 , arg1 ) ; }
returns the number of rows matching the dynamic query . concode_field_sep LayoutBranchLocalService _service concode_field_sep com.liferay.portal.model.LayoutBranch addLayoutBranch concode_elem_sep com.liferay.portal.model.LayoutBranch addLayoutBranch concode_elem_sep com.liferay.portal.model.LayoutBranch addLayoutBranc...
String function ( ) { StringBuilder loc0 = new StringBuilder ( "srini_string" ) ; loc0 . append ( this . name ) ; loc0 . append ( "srini_string" ) ; return ( loc0 . toString ( ) ) ; }
return a string representation of this object , which exposes only information that should be public . concode_field_sep String password concode_elem_sep Realm realm concode_elem_sep String name concode_elem_sep StringManager sm concode_elem_sep long serialVersionUID concode_elem_sep Principal userPrincipal concode_ele...
void function ( String arg0 ) { this . issuer = arg0 ; }
sets the value of the issuer property . concode_field_sep String attributeId concode_elem_sep List<AttributeValueType> attributeValue concode_elem_sep String dataType concode_elem_sep long serialVersionUID concode_elem_sep String issuer concode_field_sep String getIssuer concode_elem_sep List<AttributeValueType> getAtt...
int function ( ByteBuffer arg0 , NioChannel arg1 , Selector arg2 , long arg3 ) { return read ( arg0 , arg1 , arg2 , arg3 , true ) ; }
performs a blocking read using the bytebuffer for data to be read and a selector to block . if the selector parameter is null , then it will perform a busy read that could take up a lot of cpu cycles . concode_field_sep int maxSpareSelectors concode_elem_sep int threadCount concode_elem_sep boolean SHARED concode_elem_...
void function ( ) { System . out . println ( "srini_string" ) ; FFMpegTask loc0 = new FFMpegTask ( ) ; int loc1 = 0 ; int loc2 = loc0 . getSeconds ( ) ; assertEquals ( loc1 , loc2 ) ; loc1 = 10 ; loc0 . setSeconds ( loc1 ) ; loc2 = loc0 . getSeconds ( ) ; assertEquals ( loc1 , loc2 ) ; }
test of getseconds method , of class ffmpegtask . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetProgress concode_elem_sep void setUpClass concode_elem_sep void testSetSeconds concode_elem_sep void testGetDuration concode_elem_sep void setUp concode_elem_sep void tearDownClass concode_elem_sep ...
void function ( long arg0 ) { _socialActivityLimit . setClassPK ( arg0 ) ; }
sets the class p k of this social activity limit . concode_field_sep SocialActivityLimit _socialActivityLimit concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void set...
BasisBlade function ( BasisBlade arg0 , BasisBlade arg1 ) { return gp_op ( arg0 , arg1 , false ) ; }
return the geometric product of two basis blades concode_field_sep int bitmap concode_elem_sep double scale concode_field_sep double canonicalReorderingSign concode_elem_sep BasisBlade op concode_elem_sep BasisBlade cliffordConjugate concode_elem_sep int compare concode_elem_sep BasisBlade innerProduct concode_elem_sep...
int function ( ) { return this . shardId ; }
returns shard id where failure occurred concode_field_sep String reason concode_elem_sep String index concode_elem_sep int shardId concode_elem_sep String nodeId concode_elem_sep RestStatus status concode_field_sep String reason concode_elem_sep void writeTo concode_elem_sep void readFrom concode_elem_sep void toXConte...
void function ( String arg0 ) { HibernateSessionFactory . arg0 = arg0 ; sessionFactory = null ; }
return session factory session factory will be rebuilded in the next call concode_field_sep Configuration configuration concode_elem_sep String configFile concode_elem_sep ThreadLocal<Session> threadLocal concode_elem_sep String CONFIG_FILE_LOCATION concode_elem_sep org.hibernate.SessionFactory sessionFactory concode_f...
E function ( final String arg0 , @ Nullable final ArrayList < String > arg1 ) { this . bundle . putStringArrayList ( arg0 , arg1 ) ; return ( E ) this ; }
sets an array of string values in the object . concode_field_sep Bundle bundle concode_elem_sep Bundle bundle concode_field_sep SharePhoto getPhoto concode_elem_sep E putPhotoArrayList concode_elem_sep E putDoubleArray concode_elem_sep double getDouble concode_elem_sep E putDouble concode_elem_sep E putLong concode_ele...
void function ( boolean arg0 , Class arg1 , String arg2 , Object arg3 ) { if ( arg0 ) { System . out . println ( arg3 . toString ( ) ) ; } String loc0 = arg1 . getName ( ) ; if ( arg2 != null ) { loc0 += "srini_string" + arg2 ; } Log loc1 = LogFactory . getLog ( loc0 ) ; if ( loc1 . isDebugEnabled ( ) ) { loc1 . debug ...
logs the given debug message to stdout if verbose is on and to the log for the given class if the log level has been set to debug or higher . concode_field_sep PlaceHolder placeHolder concode_field_sep void warn
void function ( String arg0 ) { this . evidence = arg0 ; }
sets the value of the evidence property . concode_field_sep String evidence concode_elem_sep CitationType citation concode_elem_sep List<String> scope concode_elem_sep SourceDataType source concode_elem_sep String key concode_field_sep String getEvidence concode_elem_sep CitationType getCitation concode_elem_sep void s...
String function ( ) { return tooltip ; }
return the value of the tooltip property . concode_field_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_sep long serialVersionUID concode_elem_sep boolean leaf concode_elem_sep String leafIcon concode_elem_sep Strin...
void function ( boolean arg0 ) { this . ascending = arg0 ; }
specify the sort order : ascending true or descending false . concode_field_sep Comparator<T> comparator concode_elem_sep boolean ascending concode_field_sep int compare concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep boolean isAscending concode_elem_sep v...
Tile function ( ) { return node . getTile ( ) ; }
gets the corresponding tile . concode_field_sep Node node concode_elem_sep EscapeNode parent concode_elem_sep int depth concode_elem_sep int stepCost concode_elem_sep int heuristic concode_field_sep EscapeNode getParent concode_elem_sep int getDepth concode_elem_sep int getHeuristic concode_elem_sep long getId concode_...
void function ( ) { List < Event > loc0 = new ArrayList < Event > ( ) ; this . testUserGroup . setEvents ( loc0 ) ; Assert . assertEquals ( loc0 , this . testUserGroup . getEvents ( ) ) ; }
test method for ugportal.model.usergroup #getevents . concode_field_sep UserGroup testUserGroup concode_field_sep void testGetBlogposts concode_elem_sep void testGetInvitations concode_elem_sep void testSetInvitations concode_elem_sep void tearDown concode_elem_sep void testGetName concode_elem_sep void testGetTweets c...
void function ( ) { elementInfo . clear ( ) ; attributeInfo . clear ( ) ; resetType ( ) ; }
clear the list of validation info items . concode_field_sep List<SwordValidationInfo> unmarshallAttributeInfo concode_elem_sep String MISSING_ATTRIBUTE_WARNING concode_elem_sep List<SwordValidationInfo> unmarshallElementInfo concode_elem_sep String MISSING_ELEMENT_ERROR concode_elem_sep String message concode_elem_sep ...
void function ( com . intellij . tasks . mantis . model . AccountData arg0 ) { this . user_id = arg0 ; }
sets the user_id value for this profiledata . concode_field_sep java.lang.String os concode_elem_sep java.lang.String os_build concode_elem_sep com.intellij.tasks.mantis.model.AccountData user_id concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_s...
void function ( ) { click ( 1 ) ; }
emulates mouse click using button 1 in last location . concode_field_sep Control m_control concode_elem_sep int m_stateMask concode_elem_sep int m_lastDragX concode_elem_sep int m_lastDragY concode_elem_sep int m_dragButton concode_field_sep void endDrag concode_elem_sep void postModifiers concode_elem_sep void keyUp c...
void function ( ) { ZonedDateTime loc0 = ZonedDateTime . loc0 ( ) ; List < User > loc1 = userRepository . findAllByActivatedIsFalseAndCreatedDateBefore ( loc0 . minusDays ( 3 ) ) ; for ( User loc2 : loc1 ) { log . debug ( "srini_string" , loc2 . getLogin ( ) ) ; userRepository . delete ( loc2 ) ; } }
not activated users should be automatically deleted after 3 days . this is scheduled to get fired everyday , at 01:00 am . concode_field_sep PasswordEncoder passwordEncoder concode_elem_sep AuthorityRepository authorityRepository concode_elem_sep UserRepository userRepository concode_elem_sep Logger log concode_elem_se...
String function ( ) { return property ; }
returns the property that the question asks for . concode_field_sep String[] context concode_elem_sep String property concode_elem_sep int length concode_elem_sep long serialVersionUID concode_elem_sep String target concode_field_sep void calculateLength concode_elem_sep String getTarget concode_elem_sep void setContex...
int function ( ) { return lengthOfTask ; }
find out how much work needs to be done . concode_field_sep File file concode_elem_sep ResourceBundle messageBundle concode_elem_sep int lengthOfTask concode_elem_sep String dialogMessage concode_elem_sep Document document concode_elem_sep Logger logger concode_elem_sep boolean done concode_elem_sep int current concode...
Class [ ] function ( ) { Parameter [ ] loc0 = method . getParameters ( ) ; Class [ ] loc1 = new Class [ loc0 . length ] ; for ( int loc2 = 0 , loc3 = loc0 . length ; loc2 < loc3 ; loc2 ++ ) { loc1 [ loc2 ] = loc0 [ loc2 ] . getClazz ( ) ; } return loc1 ; }
returns an array of class objects that represent the formal parameter types , in declaration order , of the method . concode_field_sep com.badlogic.gwtref.client.Method method concode_field_sep boolean isAccessible concode_elem_sep boolean isStatic concode_elem_sep String getName concode_elem_sep void setAccessible con...
String function ( ) { return "srini_string" ; }
returns the xml namespace of the extension sub-packet root element . according the specification the namespace is always `` http://jabber.org/protocol/offline '' concode_field_sep String node concode_field_sep PacketExtension parseExtension concode_elem_sep void setNode concode_elem_sep String toXML concode_elem_sep St...
void function ( String arg0 ) { this . arcrole = arg0 ; }
sets the value of the arcrole property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep MDDistributionType mdDistribution concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode...
void function ( SourceCode arg0 ) { this . sourceCode = arg0 ; }
sets the value of the sourcecode property . concode_field_sep SourceCode sourceCode concode_elem_sep ResourceType templateRef concode_elem_sep Documentation documentation concode_elem_sep String id concode_elem_sep String title concode_elem_sep Example example concode_field_sep void setTemplateRef concode_elem_sep Stri...
Iterator < DependencyNode > function ( DependencyNode arg0 ) { return new BreadthFirstIterator ( arg0 ) ; }
creates and returns an iterator that traverses the subtree rooted at this node in breadth-first order . the first node returned by iterator #next is this node . modifying the tree by inserting , removing , or moving a node invalidates any iterators created before the modification . concode_field_sep Queue<Iterator<Depe...
void function ( ) { try { final int loc0 = 0 ; final int loc1 = document . getLength ( ) ; String loc2 = document . getText ( loc0 , loc1 ) ; checkSpelling ( document , loc2 , loc0 , loc1 ) ; } catch ( Exception loc0 ) { loc0 . printStackTrace ( ) ; } }
checks the spelling of all the text . concode_field_sep JTextComponent component concode_elem_sep String KEYWORDS_DOCUMENT_PROPERTY concode_elem_sep int LOWER_CASE concode_elem_sep Document document concode_elem_sep int start concode_elem_sep int UNKNOWN_CASE concode_elem_sep int UPPER_CASE concode_elem_sep int end con...
boolean function ( ) { return selected ; }
return whether the highlighting applies to selected text . concode_field_sep InputMethodHighlight UNSELECTED_CONVERTED_TEXT_HIGHLIGHT concode_elem_sep InputMethodHighlight SELECTED_CONVERTED_TEXT_HIGHLIGHT concode_elem_sep int CONVERTED_TEXT concode_elem_sep InputMethodHighlight SELECTED_RAW_TEXT_HIGHLIGHT concode_elem...
void function ( ) { RuntimeException loc0 = new RuntimeException ( TEST_ERROR_MESSAGE ) ; try { mCache . run ( "srini_string" , new ThrowingCallable ( loc0 ) ) ; Assert . fail ( "srini_string" ) ; } catch ( RuntimeException loc1 ) { Assert . assertSame ( loc0 , loc1 ) ; } }
tests for replaycallable s that runtimeexception s are correctly propagated . concode_field_sep String TEST_ERROR_MESSAGE concode_elem_sep long mCount concode_elem_sep Exception mException concode_elem_sep Long TEST_MAX_SIZE concode_elem_sep ReplayCache<Long> mCache concode_elem_sep Long TEST_TIMEOUT_MS concode_field_s...
int function ( int arg0 ) { int loc0 = 1 << MAX_HEADER_LIST_SIZE ; return ( loc0 & set ) != 0 ? values [ MAX_HEADER_LIST_SIZE ] : arg0 ; }
http/2 only . concode_field_sep int FLAG_CLEAR_PREVIOUSLY_PERSISTED_SETTINGS concode_elem_sep int DOWNLOAD_BANDWIDTH concode_elem_sep int HEADER_TABLE_SIZE concode_elem_sep int set concode_elem_sep int DEFAULT_INITIAL_WINDOW_SIZE concode_elem_sep int MAX_HEADER_LIST_SIZE concode_elem_sep int UPLOAD_BANDWIDTH concode_el...
void function ( ) { if ( size == map . length ) { int loc0 = map . length * 2 ; map = Arrays . copyOf ( map , loc0 ) ; } }
this method is very important as it decides whether the size of the map is needed to increase or not if it is needed , it increases the size in double if size is equal to map.length concode_field_sep Map<K,V>[] map concode_elem_sep int size concode_field_sep int size concode_elem_sep void printMap concode_elem_sep V ge...
void function ( String arg0 ) { this . user = arg0 ; }
sets the userid concode_field_sep int loginTimeout concode_elem_sep PrintWriter logWriter concode_elem_sep String user concode_elem_sep String database concode_elem_sep String password concode_field_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep void setPassword concode_elem_sep...
void function ( boolean arg0 ) { commit ( ) ; bAutoCommit = arg0 ; }
method declaration concode_field_sep Database dDatabase concode_elem_sep Vector tTransaction concode_elem_sep int iNestedOldTransIndex concode_elem_sep int iId concode_elem_sep jdbcConnection intConnection concode_elem_sep boolean script concode_elem_sep boolean bAutoCommit concode_elem_sep boolean bReadOnly concode_el...
String function ( ) { return vpcId ; }
the vpc id this subnet belongs to . concode_field_sep String subnetId concode_elem_sep ImmutableMap.Builder<String,String> tags concode_elem_sep State subnetState concode_elem_sep int availableIpAddressCount concode_elem_sep String vpcId concode_elem_sep String cidrBlock concode_elem_sep String availabilityZone concode...
JndiTemplate function ( ) { return this . jndiTemplate ; }
return the jndi template to use for jndi lookups . concode_field_sep JndiTemplate jndiTemplate concode_elem_sep Log logger concode_field_sep void setJndiTemplate concode_elem_sep Properties getJndiEnvironment concode_elem_sep void setJndiEnvironment
CertificateValidity function ( ) { return theCertificateValidity ; }
the thesigningcertificatevalidity object must be set before . concode_field_sep CertificateValidity theCertificateValidity concode_elem_sep List<CertificateValidity> certificateValidityList concode_field_sep void add concode_elem_sep void setTheCertificateValidity concode_elem_sep List<CertificateValidity> getCertifica...
Date function ( ) { return upddat ; }
this method was generated by mybatis generator . this method returns the value of the database column actctr.upddat concode_field_sep String ctrnme concode_elem_sep String ctrcde concode_elem_sep String ctrnmc concode_elem_sep String recsts concode_elem_sep String swfctr concode_elem_sep String amdtlr concode_elem_sep ...
DelegatedData function ( Data arg0 ) { return arg0 == null ? null : new DelegatedData ( arg0 ) ; }
subclasses will want to override this method to return a data object of their specific type . concode_field_sep Data delegate concode_elem_sep Iterator<? extends Data> iterator concode_elem_sep Iterable<DelegatedData> delegatedIterable concode_field_sep DelegatedData next concode_elem_sep String getName concode_elem_se...
byte [ ] function ( ) { return cipherKey == null ? DEFAULT_KEY : cipherKey ; }
return the encryption key . this will return the user-defined key if available or a default encryption key . concode_field_sep byte[] DEFAULT_KEY concode_elem_sep boolean isInitialized concode_elem_sep String ALGORITHM concode_elem_sep Logger log concode_elem_sep byte[] INIT_PARM concode_elem_sep byte[] cipherKey conco...
JSONBuilder function ( String arg0 , String arg1 , boolean arg2 ) { appendCommaAndKey ( arg0 ) ; if ( arg2 ) { params . append ( arg1 ) ; } else { arg1 = escapeString ( arg1 ) ; params . append ( '"' ) . append ( arg1 ) . append ( '"' ) ; } return this ; }
adds a string property as string literal optionally to a map . adds quotes and does json string escaping , as described at json.org . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_el...
Condition function ( ColumnVisibility arg0 ) { checkArgument ( arg0 != null , "srini_string" ) ; this . cv = new ArrayByteSequence ( arg0 . getExpression ( ) ) ; return this ; }
sets the visibility for the column to check . if not set it defaults to empty visibility . concode_field_sep ByteSequence val concode_elem_sep ByteSequence EMPTY concode_elem_sep ByteSequence cf concode_elem_sep ByteSequence cv concode_elem_sep IteratorSetting iterators[] concode_elem_sep ByteSequence cq concode_elem_s...
String function ( List < Object > arg0 , String arg1 , int arg2 , Object arg3 ) { if ( arg2 != Restriction . NOT_NULL && arg2 != Restriction . NULL ) { arg0 . add ( arg3 ) ; } return buildComparisonSQL ( arg1 , arg2 , "srini_string" ) ; }
create comparison sql but places the values into the params list concode_field_sep List<Object> args concode_elem_sep String orderSQL concode_elem_sep String whereSQL concode_field_sep void addArg concode_elem_sep String buildComparisonSQL concode_elem_sep void addArrayArg concode_elem_sep Object convertColumn concode_...
boolean function ( String arg0 ) { boolean loc0 = false ; if ( "srini_string" . equalsIgnoreCase ( arg0 ) ) { loc0 = true ; } else { loc0 = Boolean . parseBoolean ( arg0 ) ; } return loc0 ; }
the original implementation of mailsender used yes/no instead of true/false , so rather than run a db conversion to the new values , the conversion is made as the data is accessed concode_field_sep ToolManager toolManager concode_elem_sep ServerConfigurationService serverConfigurationService concode_elem_sep ExternalLo...
Node function ( ) { return this ; }
returns the node object that currently represents this node in the avl index structure . in current implementations of node this is always the same as the this object for memory and text tables but can be a different object for cached tables , where disknode objects may be freed from the cache . calling this method ret...
GenericArrayType function ( Type arg0 ) { return new GenericArrayTypeImpl ( arg0 ) ; }
returns an array type whose elements are all instances of componenttype . concode_field_sep PlaceHolder placeHolder concode_field_sep ParameterizedType providerOf concode_elem_sep ParameterizedType newParameterizedType concode_elem_sep WildcardType supertypeOf concode_elem_sep WildcardType subtypeOf concode_elem_sep Pa...
Code128Encoder function ( ) { return new DefaultCode128Encoder ( this . codeset ) ; }
returns the encoder to be used . the encoder is responsible for turning a string message into an array of character set indexes . override this method to supply your own implementation . concode_field_sep char FNC_2 concode_elem_sep char FNC_3 concode_elem_sep int codeset concode_elem_sep byte[] STOP concode_elem_sep b...
int function ( byte arg0 ) { return indexOf ( arg0 , 0 , this . len ) ; }
returns the index within this buffer of the first occurrence of the specified byte , starting the search at 0 and finishing at #length . if no such byte occurs in this buffer within those bounds , -1 is returned . concode_field_sep int len concode_elem_sep byte[] buffer concode_elem_sep long serialVersionUID concode_fi...
java . util . List < String > function ( ) { if ( toAddresses == null ) { toAddresses = new com . amazonaws . internal . ListWithAutoConstructFlag < String > ( ) ; toAddresses . setAutoConstruct ( true ) ; } return toAddresses ; }
the to : field s of the message . concode_field_sep com.amazonaws.internal.ListWithAutoConstructFlag<String> ccAddresses concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<String> bccAddresses concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<String> toAddresses concode_field_sep void set...
boolean function ( ) { return false ; }
no - this is a mutable data record . concode_field_sep long[] versionTimestamps concode_elem_sep long minimumVersionTimestamp concode_elem_sep long maximumVersionTimestamp concode_elem_sep boolean[] rawRecords concode_elem_sep MutableValueBuffer vals concode_elem_sep MutableKeyBuffer keys concode_elem_sep boolean[] del...
void function ( int arg0 ) { SmackConfiguration . arg0 = arg0 ; }
sets the port of the local socks5 proxy . default is 7777 . if you set the port to a negative value smack tries the absolute value and all following until it finds an open port . concode_field_sep Vector<String> defaultMechs concode_elem_sep ParsingExceptionCallback defaultCallback concode_elem_sep String SMACK_VERSION...
String function ( ) { return objectReference . toString ( ) + "srini_string" + object . toString ( ) ; }
string representation of this object . used mainly for debugging . concode_field_sep Reference objectReference concode_elem_sep Object object concode_field_sep Object getObject concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Reference getReference