code
stringlengths
20
663
nl
stringlengths
68
7.19k
int function ( int arg0 ) { int loc0 = usableBitSetSizes [ 0 ] ; for ( int loc1 = 0 ; loc1 < usableBitSetSizes . length ; loc1 ++ ) { if ( usableBitSetSizes [ loc1 ] <= arg0 ) { loc0 = usableBitSetSizes [ loc1 ] ; } } return loc0 ; }
rounds down required maxnumberofbits to the nearest number that is made up of all ones as a binary number . use this method where controlling memory use is paramount . concode_field_sep FixedBitSet filter concode_elem_sep HashFunction hashFunction concode_elem_sep int bloomSize concode_elem_sep int usableBitSetSizes[] ...
float [ ] function ( ) { float [ ] loc0 = new float [ this . fractions . length ] ; System . arraycopy ( this . fractions , 0 , loc0 , 0 , this . fractions . length ) ; return loc0 ; }
returns a copy of the array of floats used by this gradient to calculate color distribution . 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 ColorSpaceE...
Properties function ( Map < String , User > arg0 ) { Properties loc0 = new Properties ( ) ; for ( User loc1 : arg0 . values ( ) ) { loc0 . setProperty ( loc1 . getUsername ( ) , serializeUser ( loc1 ) ) ; } return loc0 ; }
stores the provided user map into a properties object concode_field_sep Logger LOGGER concode_elem_sep PropertyFileWatcher userDefinitionsFile concode_elem_sep TreeMap<String,User> userMap concode_field_sep String serializeUser concode_elem_sep void storeUsers concode_elem_sep TreeMap<String,User> loadUsersFromProperti...
void function ( boolean arg0 ) { this . clip = arg0 ; }
sets the clip . concode_field_sep boolean drawPath concode_elem_sep boolean fillPath concode_elem_sep double[] xValue concode_elem_sep Stroke drawStroke concode_elem_sep Paint drawPaint concode_elem_sep Paint fillPaint concode_elem_sep Composite composite concode_elem_sep double[] yValue concode_elem_sep boolean clip c...
String function ( int arg0 ) { arg0 += ASCII_STARTING_POINT ; return String . valueOf ( ( char ) arg0 ) ; }
retrieves a character from the alphabet . concode_field_sep int columns concode_elem_sep int intValue concode_elem_sep int NUMBER_OF_ITEMS concode_elem_sep DataModel rowDataModel concode_elem_sep SelectItem[] columnsItems concode_elem_sep Object column concode_elem_sep Object row concode_elem_sep DataModel columnDataMo...
Number function ( ) { return maxValue ; }
returns the max value . concode_field_sep boolean readable concode_elem_sep boolean virtual concode_elem_sep Object defaultValue concode_elem_sep Number maxValue concode_elem_sep HmChannel channel concode_elem_sep String description concode_elem_sep boolean readOnly concode_elem_sep HmValueType type concode_elem_sep Ob...
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...
IType function ( ) { if ( builder != null ) { return ( IType ) builder ; } else { return ( IType ) message ; } }
gets the base class interface for the field . this may either be a builder or a message . it will return whatever is more efficient . concode_field_sep GeneratedMessage.BuilderParent parent concode_elem_sep boolean isClean concode_elem_sep BType builder concode_elem_sep MType message concode_field_sep BType getBuilder ...
void function ( Key arg0 ) { if ( arg0 == null ) throw new NullPointerException ( "srini_string" ) ; set . remove ( arg0 ) ; }
removes the key from the set if the key is present . concode_field_sep TreeSet<Key> set concode_field_sep void add concode_elem_sep Key ceiling concode_elem_sep Key max concode_elem_sep SET<Key> intersects concode_elem_sep boolean isEmpty concode_elem_sep void main concode_elem_sep SET<Key> union concode_elem_sep boole...
void function ( Method arg0 , InterceptorFactory arg1 , int arg2 ) { OrderedItemContainer < InterceptorFactory > loc0 = clientInterceptors . get ( arg0 ) ; if ( loc0 == null ) { clientInterceptors . put ( arg0 , loc0 = new OrderedItemContainer < InterceptorFactory > ( ) ) ; } loc0 . add ( arg1 , arg2 ) ; }
adds a client interceptor to the given method concode_field_sep Map<Class<?>,Object> privateData concode_elem_sep ViewInstanceFactory viewInstanceFactory concode_elem_sep Set<Method> asyncMethods concode_elem_sep ServiceName viewServiceName concode_elem_sep OrderedItemContainer<InterceptorFactory> clientPreDestroyInter...
void function ( String arg0 ) { this . statusCode = arg0 ; }
sets the value of the statuscode property . concode_field_sep String reason concode_elem_sep String usageContext concode_elem_sep TimePeriod effectivePeriod concode_elem_sep String subStatusCode concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep String statusCode concode_field_s...
Resource function ( ) { return fairShare ; }
get the fair share assigned to this schedulable . concode_field_sep FairScheduler scheduler concode_elem_sep float fairSharePreemptionThreshold concode_elem_sep FSParentQueue parent concode_elem_sep SchedulingPolicy policy concode_elem_sep long fairSharePreemptionTimeout concode_elem_sep long minSharePreemptionTimeout ...
Example function ( ) { setPropertySelector ( NotNullOrZeroPropertySelector . INSTANCE ) ; return this ; }
exclude zero-valued properties . equivalent to calling #setpropertyselector passing in notnullorzeropropertyselector #instance concode_field_sep NotNullOrZeroPropertySelector INSTANCE concode_elem_sep boolean isIgnoreCaseEnabled concode_elem_sep NotNullPropertySelector INSTANCE concode_elem_sep AllPropertySelector INST...
boolean function ( ) { return this . ttl < System . currentTimeMillis ( ) ; }
true if the entry is expired . concode_field_sep long serverDate concode_elem_sep byte[] data concode_elem_sep Map<String,String> responseHeaders concode_elem_sep String etag concode_elem_sep long lastModified concode_elem_sep long softTtl concode_elem_sep long ttl concode_field_sep Entry get concode_elem_sep void clea...
void function ( Set < Integer > arg0 ) { this . nodeTopoToMerge . addAll ( arg0 ) ; }
specify the types of node which should be merged . concode_field_sep Map<Id<Link>,Id<Link>> originalToSimplifiedLinkIdMatching concode_elem_sep Set<Id<Node>> nodeIdsToRemove concode_elem_sep Set<Integer> nodeTopoToMerge concode_elem_sep Map<Id<Link>,List<Id<Link>>> simplifiedToOriginalLinkIdMatching concode_elem_sep bo...
void function ( int arg0 ) { GmlBrush loc0 = new GmlBrush ( ) ; int loc1 = 0 ; beginStroke ( arg0 , loc1 , loc0 ) ; }
begins the recording of a new gmlstroke note : you must keep track of the sessionid and use the same id to end the stroke otherwise the stroke wo n't be added to the gml . concode_field_sep float DEFAULT_MIN_POINTS_DISTANCE concode_elem_sep float minStrokeLength concode_elem_sep Vec3D normalizer concode_elem_sep Gml gm...
void function ( ) { long loc0 = getCRC32 ( ) ; long loc1 = calcCRC32 ( ) ; if ( loc1 != loc0 ) { throw new IOException ( String . format ( "srini_string" , loc1 , loc0 ) ) ; } }
checks the data integrity by comparing the saved crc32 checksum with the actual checksum . if no exception is thrown , the data is ok . concode_field_sep ByteBuffer bb concode_elem_sep int offset concode_elem_sep int size concode_elem_sep String name concode_elem_sep boolean readOnly concode_elem_sep long crc32 concode...
void function ( String arg0 , boolean arg1 , ConnectionRunnable arg2 , Application arg3 ) { play . api . db . DB . withConnection ( arg0 , arg1 , connectionFunction ( arg2 ) , arg3 ) ; }
executes a block of code , providing a jdbc connection . the connection and all created statements are automatically released . concode_field_sep PlaceHolder placeHolder concode_field_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep Connec...
void function ( String arg0 , String arg1 ) { end ( ) ; }
this method is called when the end of a matching xml element is encountered . the default implementation delegates to the deprecated method #end end without thenamespace and name parameters , to retain backwards compatibility . concode_field_sep String namespaceURI concode_elem_sep Digester digester concode_field_sep D...
Integer function ( ) { return sequenceId ; }
gets the sequenceid attribute . concode_field_sep Integer sequenceId concode_field_sep void setSequenceId
List < Order > function ( ) { logger . info ( "srini_string" ) ; List < Order > loc0 = entityManager . createQuery ( "srini_string" ) . getResultList ( ) ; logger . info ( "srini_string" ) ; return loc0 ; }
return all the users stored in the database . concode_field_sep EntityManager entityManager concode_elem_sep Logger logger concode_field_sep Order getById concode_elem_sep void updateFarmer concode_elem_sep List<Order> getHistoryByUserID concode_elem_sep Order getByOrderNumber concode_elem_sep Farmer findFarmer concode...
String function ( ) { return this . id ; }
the id of the action . concode_field_sep ActionResponse response concode_elem_sep Failure failure concode_elem_sep String opType concode_elem_sep String index concode_elem_sep int id concode_elem_sep String type concode_elem_sep String message concode_field_sep String getIndex concode_elem_sep String getIndex concode_e...
FileChannel function ( ) { return file ; }
get the file instance in use . the application may read from the file for example for online backup , but not write to it or truncate it . concode_field_sep FreeSpaceBitSet freeSpace concode_elem_sep String fileName concode_elem_sep FileLock fileLock concode_elem_sep long writeBytes concode_elem_sep FileChannel file co...
long function ( ) { return creationTime ; }
get the creationtime of the truth-value concode_field_sep long[] evidentialBase concode_elem_sep long creationTime concode_elem_sep long currentSerial concode_elem_sep int baseLength concode_field_sep void init concode_elem_sep TreeSet<Long> toSet concode_elem_sep int hashCode concode_elem_sep long get concode_elem_sep...
int function ( K2 arg0 , V2 arg1 , int arg2 ) { return ( arg0 . hashCode ( ) & Integer . MAX_VALUE ) % arg2 ; }
use object #hashcode to partition . concode_field_sep PlaceHolder placeHolder concode_field_sep void configure
Object function ( ) { return nextHeader ( ) ; }
returns the next header . same as #nextheader nextheader , but not type-safe . concode_field_sep String headerName concode_elem_sep Header[] allHeaders concode_elem_sep int currentIndex concode_field_sep Header nextHeader concode_elem_sep boolean hasNext concode_elem_sep int findNext concode_elem_sep void remove concod...
void function ( BigDecimal arg0 ) { this . remainingFinancedAmount = arg0 ; }
sets the value of the remainingfinancedamount property . concode_field_sep Boolean selectable concode_elem_sep long serialVersionUID concode_elem_sep String adjustedTerm concode_elem_sep String type concode_elem_sep BigDecimal remainingFinancedAmountWithTax concode_elem_sep BigDecimal finalDownPayment concode_elem_sep ...
void function ( EObject arg0 ) { EcoreUtil . remove ( arg0 ) ; if ( arg0 . eResource ( ) != null ) { arg0 . eResource ( ) . getContents ( ) . remove ( arg0 ) ; } }
simply removes an eobject from its container . concode_field_sep Map nameFeatureMap concode_elem_sep Object NULL_TOKEN concode_field_sep boolean shouldOverrideCopyOperation concode_elem_sep void setName concode_elem_sep boolean canContain concode_elem_sep XMLResource getResource concode_elem_sep String getName concode_...
IProject function ( Statechart arg0 ) { return ResourcesPlugin . getWorkspace ( ) . getRoot ( ) . getFile ( new Path ( arg0 . eResource ( ) . getURI ( ) . toPlatformString ( true ) ) ) . getProject ( ) ; }
get the iproject containing the given statechart concode_field_sep SGenFactory factory concode_field_sep void setDefaultValue concode_elem_sep FeatureParameterValue createParameterValue concode_elem_sep FeatureConfiguration createDefaultFeatureConfiguration concode_elem_sep boolean projectExists concode_elem_sep Featur...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; for ( int loc1 = 0 ; loc1 < digest . length ; loc1 ++ ) { loc0 . append ( HEX_TABLE [ ( digest [ loc1 ] & 0xf0 ) >> 4 ] ) ; loc0 . append ( HEX_TABLE [ digest [ loc1 ] & 0xf ] ) ; } return loc0 . toString ( ) ; }
converts this sha1 digest into a hexadecimal string . concode_field_sep Logger logger concode_elem_sep int DIGEST_SIZE concode_elem_sep int DIGEST_HEX_SIZE concode_elem_sep byte[] digest concode_elem_sep char[] HEX_TABLE concode_field_sep boolean equals concode_elem_sep byte hexValue concode_elem_sep byte[] getDigest c...
void function ( int arg0 , final Object arg1 , final Exception arg2 ) { if ( arg0 > 3 ) { arg0 = 3 ; } this . printStream . print ( LEVELS [ arg0 ] ) ; this . printStream . println ( arg1 ) ; arg2 . printStackTrace ( this . printStream ) ; if ( arg0 < 3 ) { System . out . flush ( ) ; } }
logs an message to the main-log stream . all attached logstreams will also receive this message . if the given log-level is higher than the given debug-level in the main config file , no logging will be done . the exception 's stacktrace will be appended to the log-stream concode_field_sep long serialVersionUID concode...
InputStreamReader function ( ) { InputStream loc0 = ResourceUtils . getResourceAsStream ( this , this ) ; if ( loc0 == null ) { return null ; } InputStreamReader loc1 = new InputStreamReader ( loc0 ) ; return loc1 ; }
get the inputstreamreader for this resource . uses the classloader from this resource . concode_field_sep String _name concode_field_sep void setName concode_elem_sep URL getURL concode_elem_sep String getName concode_elem_sep InputStream getInputStream
long function ( ) { return virtualMemoryUsage ; }
get the virtual memory usage . concode_field_sep long cumulativeCpuUsage concode_elem_sep long heapUsage concode_elem_sep long virtualMemoryUsage concode_elem_sep long physicalMemoryUsage concode_field_sep void setVirtualMemoryUsage concode_elem_sep long getPhysicalMemoryUsage concode_elem_sep void setCumulativeCpuUsag...
Boolean function ( ) { return futurePaymentIndicator ; }
gets the value of the futurepaymentindicator property . concode_field_sep XMLGregorianCalendar date concode_elem_sep String sequenceNumber concode_elem_sep String amount concode_elem_sep String createdUserId concode_elem_sep long serialVersionUID concode_elem_sep String type concode_elem_sep XMLGregorianCalendar creati...
String function ( ) { return year ; }
gets the year value of the date . note if the original date value can not be parsed , this method returns the unparsed string . concode_field_sep int OFFSET_HH concode_elem_sep int OFFSET_MM concode_elem_sep String month concode_elem_sep int OFFSET_SS concode_elem_sep String second concode_elem_sep int OFFSET_YYYY conc...
void function ( ) { }
this method resets the outgoing events . concode_field_sep boolean event1 concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void enterSequence_main_region_B_subregion1_default concode_elem_sep SCInterface getSCInterface concode_elem_s...
Intent function ( int arg0 ) { return mIntents . get ( arg0 ) ; }
get the intent at the specified index . useful if you need to modify the flags or extras of an intent that was previously added , for example with #addparentstack activity . concode_field_sep TaskStackBuilderImpl IMPL concode_elem_sep ArrayList<Intent> mIntents concode_elem_sep String TAG concode_elem_sep Context mSour...
boolean function ( Level arg0 , Level arg1 ) { if ( ( arg0 == null ) || ( arg1 == null ) ) { return false ; } else if ( Level . OFF . equals ( arg0 ) || Level . OFF . equals ( arg1 ) ) { return false ; } else if ( Level . ALL . equals ( arg1 ) ) { return true ; } else { return arg0 . intValue ( ) >= arg1 . intValue ( )...
verifies if the given level is above the required threshold for logging . concode_field_sep PlaceHolder placeHolder concode_field_sep Map<String,Integer> getAmbiguousMenmonics concode_elem_sep Map<String,Integer> getAmbiguousMenmonics concode_elem_sep Map<Integer,String> generateMnemonicMap concode_elem_sep Map<Integer...
String function ( ) { return RevisionUtils . extract ( "srini_string" ) ; }
returns the revision string . concode_field_sep long serialVersionUID concode_elem_sep Instance[] m_Instances concode_elem_sep int MIN_RECORD_SIZE concode_elem_sep int m_nCount concode_elem_sep VaryNode[] m_VaryNodes concode_elem_sep int m_nStartNode concode_field_sep void print concode_elem_sep void getCounts concode_...
boolean function ( State arg0 ) { switch ( arg0 ) { case main_region_Start : return stateVector [ 0 ] == State . main_region_Start ; case main_region_End : return stateVector [ 0 ] == State . main_region_End ; default : return false ; } }
returns true if the given state is currently active otherwise false . concode_field_sep ITimer timer concode_elem_sep boolean[] timeEvents concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void init concode_elem_sep void exitAction concode_elem_sep void reactMain_region_End conc...
void function ( float arg0 ) { this . lowerLeftY = arg0 ; }
setter for property lowerlefty . concode_field_sep float upperRightX concode_elem_sep float upperRightY concode_elem_sep float lowerLeftY concode_elem_sep float lowerLeftX concode_field_sep float getHeight concode_elem_sep boolean contains concode_elem_sep float getLowerLeftX concode_elem_sep void setLowerLeftX concode...
void function ( ) { replay ( providerDao ) ; try { providerServiceImpl . getProvider ( - 1 ) ; fail ( "srini_string" ) ; } catch ( IllegalArgumentException loc1 ) { } verify ( providerDao ) ; }
test get provider with invalid id concode_field_sep ProviderDao providerDao concode_elem_sep ProviderServiceImpl providerServiceImpl concode_field_sep void testUpdateProvider concode_elem_sep void testAddNullProvider concode_elem_sep void setUp concode_elem_sep void testAddNewProvider concode_elem_sep void testGetProvi...
SecretKey function ( ) { try { KeyGenerator loc0 = KeyGenerator . getInstance ( "srini_string" ) ; loc0 . init ( Constants . AES_KEY_LEN_BITS ) ; return loc0 . generateKey ( ) ; } catch ( NoSuchAlgorithmException loc0 ) { return null ; } }
generate a random aes_key_length bit aes key concode_field_sep String TAG concode_field_sep SecretKeySpec hashPassphrase concode_elem_sep byte[] decryptWithKey concode_elem_sep byte[] encryptSecretKey concode_elem_sep byte[] generateSalt concode_elem_sep SerializedSecretsV1 encryptWithPassphrase concode_elem_sep byte[]...
ByteSource function ( String arg0 , QueryOptions arg1 , Action < ? super Consul . Builder > arg2 ) { return Exceptions . uncheck ( ( ) -> ByteSource . wrap ( arg2 . with ( Consul . builder ( ) ) . build ( ) . keyValueClient ( ) . getValue ( arg0 , arg1 ) . transform ( v -> v . getValueAsString ( ) . or ( "srini_string"...
read the specified key as a bytesource using the specified configuration to connection to consul and the provided queryoptions . the returned value can then be passed to the existing parsing options in ratpack.server.serverconfigbuilder to provide configuration . import ratpack.consul.ratpackconsulconfig ; import ratpa...
SuggesterStatus function ( ) { return suggester ; }
the value of a suggester and its current status . concode_field_sep SuggesterStatus suggester concode_field_sep DefineSuggesterResult withSuggester concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DefineSuggesterResult clone concode_elem_sep String toString concode_elem_sep void setSuggest...
void function ( T arg0 ) { }
called when view is detached from view hierarchy and allows for some additional cleanup by the viewmanager subclass . concode_field_sep PlaceHolder placeHolder concode_field_sep Map<String,String> getNativeProps concode_elem_sep Map<String,Object> getExportedViewConstants concode_elem_sep String getName concode_elem_se...
STHueDir function ( ) { if ( hueDir == null ) { return STHueDir . CW ; } else { return hueDir ; } }
gets the value of the huedir property . concode_field_sep STHueDir hueDir concode_elem_sep List<Object> egColorChoice concode_elem_sep STClrAppMethod meth concode_field_sep STClrAppMethod getMeth concode_elem_sep void setMeth concode_elem_sep void setHueDir concode_elem_sep List<Object> getEGColorChoice
int function ( ) { return connectionType_ ; }
returns the type of the connection made from the workstation to the shared resource . possible values are #disk_drive disk_drive and #spooled_output_queue spooled_output_queue . concode_field_sep int connectionType_ concode_elem_sep int numberOfFilesOpen_ concode_elem_sep long sessionID_ concode_elem_sep long serialVer...
int function ( ) { return used ; }
get the number of ranges actually in use concode_field_sep int hashCode concode_elem_sep int size concode_elem_sep int used concode_elem_sep int i concode_elem_sep int[] startPoints concode_elem_sep int current concode_elem_sep int[] endPoints concode_field_sep boolean add concode_elem_sep int next concode_elem_sep int...
Router function ( @ NotNull final String arg0 , @ NotNull final Handler < Context > arg1 ) { addPattern ( Method . HEAD , arg0 , arg1 ) ; return this ; }
specify a handlers that will be called for a matching http head concode_field_sep Map<Method,List<Route>> routes concode_elem_sep Map<String,Handler<Context>> paramHandlers concode_field_sep Router all concode_elem_sep Router all concode_elem_sep void handle concode_elem_sep Router delete concode_elem_sep Router delete...
String function ( ) { return this . resourceId ; }
specifies the arn of the resource . concode_field_sep String resourceId concode_elem_sep com.amazonaws.internal.SdkInternalList<Tag> tagsList concode_field_sep ResourceTag withResourceId concode_elem_sep int hashCode concode_elem_sep java.util.List<Tag> getTagsList concode_elem_sep boolean equals concode_elem_sep Resou...
String function ( ) { return this . data ; }
the textual data of the content . concode_field_sep String charset concode_elem_sep String data concode_field_sep void setCharset concode_elem_sep void setData concode_elem_sep Content withData concode_elem_sep Content withCharset concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Content cl...
java . lang . Boolean function ( ) { return _class ; }
gets the _ class value for this postingtransactionsummaryfield . concode_field_sep java.lang.Boolean period concode_elem_sep java.lang.Boolean item concode_elem_sep java.lang.Boolean book concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Boolean subsidiary concode_elem_sep java.lang.Object __equalsCalc...
CertPathBuilderResult function ( CertPathParameters arg0 ) { return spiImpl . engineBuild ( arg0 ) ; }
builds a certification path with the specified algorithm parameters . concode_field_sep Engine ENGINE concode_elem_sep String DEFAULT_PROPERTY concode_elem_sep Provider provider concode_elem_sep CertPathBuilderSpi spiImpl concode_elem_sep String SERVICE concode_elem_sep String PROPERTY_NAME concode_elem_sep String algo...
void function ( int arg0 ) { this . nameColumnLength = arg0 ; }
sets the name column length . concode_field_sep HashMap fileEntrySettings concode_elem_sep long deleteMarkDeletedDelta concode_elem_sep int valueColumnLengthInK concode_elem_sep String nameColumnName concode_elem_sep int queryTimeout concode_elem_sep String valueColumnName concode_elem_sep int nameColumnLength concode_...
boolean function ( ) { return false ; }
returns true if this writer has encountered and suppressed an error . used by printwriters as an alternative to checked exceptions . concode_field_sep Object lock concode_field_sep void flush concode_elem_sep void close concode_elem_sep void write concode_elem_sep void write concode_elem_sep void write concode_elem_sep...
String function ( ) { int loc0 = signature . lastIndexOf ( ')' ) ; if ( loc0 < 0 ) { throw new IllegalArgumentException ( "srini_string" + signature ) ; } return signature . substring ( loc0 + 1 ) ; }
get the method return type signature . concode_field_sep int index concode_elem_sep String signature concode_elem_sep int totalArgumentSize concode_elem_sep int parameterOffset[] concode_field_sep String next concode_elem_sep int[] getParameterOffset concode_elem_sep Iterator<String> parameterSignatureIterator concode_...
String function ( ) { return remark ; }
this method was generated by mybatis generator . this method returns the value of the database column sys_user_thirdparty . remark _ concode_field_sep Integer createBy concode_elem_sep String provider concode_elem_sep Date createTime concode_elem_sep Integer updateBy concode_elem_sep String openId concode_elem_sep Bool...
String function ( List < GeographicPoint > arg0 ) { String loc0 = "srini_string" ; for ( GeographicPoint loc1 : arg0 ) { loc0 += loc1 + "srini_string" ; } return loc0 ; }
print a bfs path in readable form concode_field_sep String feedback concode_elem_sep int correct concode_elem_sep int TESTS concode_field_sep String printOutput concode_elem_sep String appendFeedback concode_elem_sep void main concode_elem_sep void run concode_elem_sep void judge concode_elem_sep void runTest
void function ( Node arg0 ) { this . navigationNode = arg0 ; }
sets the value of the navigationnode property . concode_field_sep Node navigationNode concode_field_sep Node getNavigationNode
JournalFormatter function ( Configuration arg0 ) { try { return CommonUtils . createNewClassInstance ( arg0 . < JournalFormatter > getClass ( Constants . MASTER_JOURNAL_FORMATTER_CLASS ) , null , null ) ; } catch ( Exception loc0 ) { throw Throwables . propagate ( loc0 ) ; } }
factory method for journalformatter . concode_field_sep PlaceHolder placeHolder concode_field_sep void serialize concode_elem_sep JournalInputStream deserialize
boolean function ( CharSequence arg0 ) { return compiled . matcher ( arg0 ) . matches ( ) ; }
match input against the compiled glob pattern concode_field_sep Pattern compiled concode_elem_sep boolean hasWildcard concode_elem_sep char BACKSLASH concode_field_sep Pattern compiled concode_elem_sep void set concode_elem_sep Pattern compile concode_elem_sep void error concode_elem_sep boolean hasWildcard
Set < String > function ( ) { return geoSorts . keySet ( ) ; }
returns all fields in this geo sort concode_field_sep Map<String,GeoDistanceSortBuilder> geoSorts concode_field_sep boolean contains concode_elem_sep GeoDistanceSortBuilder applyOrder concode_elem_sep void addField concode_elem_sep boolean isEmpty
void function ( ) { if ( session != null ) { session . close ( ) ; } session = null ; try { socket . close ( ) ; } catch ( IOException loc0 ) { } synchronized ( server . serverConnSet ) { server . serverConnSet . remove ( this ) ; } }
closes this connection . concode_field_sep Thread runnerThread concode_elem_sep Server server concode_elem_sep boolean keepAlive concode_elem_sep RowOutputBinary rowOut concode_elem_sep Session session concode_elem_sep byte[] mainBuffer concode_elem_sep RowInputBinary rowIn concode_elem_sep String password concode_elem...
void function ( HttpServletResponse arg0 ) { arg0 . addHeader ( HEADER_CACHE_CONTROL , "srini_string" ) ; }
prevents the response from being cached , through setting corresponding http cache-control : no-store header . concode_field_sep int order concode_elem_sep String HEADER_CACHE_CONTROL concode_elem_sep Log logger concode_elem_sep Set<?> mappedHandlers concode_elem_sep Class<?>[] mappedHandlerClasses concode_elem_sep Log...
void function ( final ViewGroup arg0 , final boolean arg1 ) { for ( int loc0 = 0 ; loc0 < arg0 . getChildCount ( ) ; loc0 ++ ) { final View loc1 = arg0 . getChildAt ( loc0 ) ; if ( loc1 == null ) continue ; loc1 . setSelected ( arg1 ) ; if ( loc1 instanceof ViewGroup ) { setSelectedForAllChildrenRecursively ( ( ViewGro...
recursively sets selected flag for all views contained in viewgroup . very useful for something like settings screens , when you need to select/unselect all controls inside a layout via switch , radiobutton or checkbox concode_field_sep PlaceHolder placeHolder concode_field_sep void setEnabledForAllChildrenRecursively ...
int function ( AsyncCall arg0 ) { int loc0 = 0 ; for ( AsyncCall loc1 : runningAsyncCalls ) { if ( loc1 . host ( ) . equals ( arg0 . host ( ) ) ) loc0 ++ ; } return loc0 ; }
returns the number of running calls that share a host with call . concode_field_sep ExecutorService executorService concode_elem_sep Deque<RealCall> runningSyncCalls concode_elem_sep int maxRequestsPerHost concode_elem_sep Deque<AsyncCall> readyAsyncCalls concode_elem_sep Deque<AsyncCall> runningAsyncCalls concode_elem...
void function ( String arg0 ) { type = arg0 ; }
sets the value of the type property . concode_field_sep List<JAXBElement<String>> numberOrCaptionOrTitle concode_elem_sep BigInteger level concode_elem_sep String type concode_field_sep BigInteger getLevel concode_elem_sep String getType concode_elem_sep List<JAXBElement<String>> getNumberOrCaptionOrTitle concode_elem_...
void function ( final String arg0 , final String arg1 ) { System . out . print ( arg0 + "srini_string" + "srini_string" + arg1 ) ; }
sends a debug message to the user . concode_field_sep PlaceHolder placeHolder concode_field_sep void warning concode_elem_sep void warning concode_elem_sep void error concode_elem_sep void error
String function ( ) { return title ; }
returns the explanation title concode_field_sep String owner concode_elem_sep String country concode_elem_sep java.util.GregorianCalendar created concode_elem_sep ArrayList<ExplanationChunk> chunks concode_elem_sep String language concode_elem_sep String title concode_field_sep String getLanguage concode_elem_sep Strin...
int function ( ) { return this . responses . size ( ) ; }
gets the total number of response in the list . concode_field_sep ServiceResult overallResult concode_elem_sep Vector<TResponse> responses concode_field_sep void add concode_elem_sep TResponse getResponseAtIndex concode_elem_sep Iterator<TResponse> iterator concode_elem_sep ServiceResult getOverallResult concode_elem_s...
void function ( ) { SharedPreferences . Editor loc0 = getPrefs ( ) . edit ( ) ; loc0 . remove ( options . getIdStr ( ) ) ; if ( Build . VERSION . SDK_INT < 9 ) { loc0 . commit ( ) ; } else { loc0 . apply ( ) ; } }
remove the notification from the android shared preferences . concode_field_sep Class<?> defaultReceiver concode_elem_sep Class<?> receiver concode_elem_sep String PREF_KEY concode_elem_sep Context context concode_elem_sep Options options concode_elem_sep NotificationCompat.Builder builder concode_field_sep void cancel...
String function ( ) { return id ; }
required concode_field_sep String imageUrl concode_elem_sep String name concode_elem_sep String description concode_elem_sep String id concode_elem_sep String region concode_elem_sep Map<String,Object> additionalProperties concode_field_sep void setName concode_elem_sep void setImageUrl concode_elem_sep void setRegion ...
String function ( byte [ ] arg0 ) { return StringUtils . newString ( arg0 , CharEncoding . UTF_16 ) ; }
constructs a new string by decoding the specified array of bytes using the utf-16 charset . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] getBytesUtf16 concode_elem_sep byte[] getBytesUtf16Le concode_elem_sep String newStringUsAscii concode_elem_sep String newStringUtf8 concode_elem_sep byte[] getB...
int function ( ) { return strength ; }
returns strength of this unit concode_field_sep int strength concode_elem_sep float STRENGTH_COEFF concode_elem_sep int MAX_STRENGTH concode_elem_sep int MIN_STRENGTH concode_field_sep boolean isRangedUnit concode_elem_sep boolean isCloseCombatUnit concode_elem_sep boolean isStrongAgainst
void function ( java . lang . String arg0 ) { _portletItem . setUserUuid ( arg0 ) ; }
sets the user uuid of this portlet item . concode_field_sep PortletItem _portletItem concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_...
String function ( ) { return configurationCategory ; }
returns the category name of this configuration option concode_field_sep ValueConverter<T> valueConverter concode_elem_sep Logger logger concode_elem_sep T defaultValue concode_elem_sep String valueAsString concode_elem_sep String defaultValueAsString concode_elem_sep String errorMessage concode_elem_sep boolean sensit...
Path function ( Path arg0 , String arg1 , FileAttribute [ ] arg2 ) { return create ( arg0 , arg1 , null , true , arg2 ) ; }
creates a temporary directory in the given directory , or in in the temporary directory if dir is null . concode_field_sep boolean isPosix concode_elem_sep SecureRandom random concode_elem_sep FileAttribute<Set<PosixFilePermission>> dirPermissions concode_elem_sep Path tmpdir concode_elem_sep FileAttribute<Set<PosixFil...
String function ( ) { return mSerialNumber ; }
returns the unique serial number for the mtp device concode_field_sep String mVersion concode_elem_sep String mSerialNumber concode_elem_sep String mManufacturer concode_elem_sep String mModel concode_field_sep String getVersion concode_elem_sep String getModel concode_elem_sep String getManufacturer
boolean function ( ) { return writeable ; }
returns true , if the property is writeable . concode_field_sep String unit concode_elem_sep String name concode_elem_sep List<String> supportedValues concode_elem_sep boolean writeable concode_elem_sep Ability ability concode_elem_sep String value concode_elem_sep Date timestamp concode_field_sep String getValue conco...
void function ( IRecommender arg0 , String arg1 ) { System . err . println ( "srini_string" + arg1 ) ; arg0 . loadModel ( arg1 ) ; }
load the model parameters of a recommender from a file . concode_field_sep PlaceHolder placeHolder concode_field_sep BufferedReader getReader concode_elem_sep PrintWriter getWriter concode_elem_sep void save concode_elem_sep void save
void function ( List < ElectronicPaymentClaim > arg0 , String arg1 ) { for ( ElectronicPaymentClaim loc0 : arg0 ) { loc0 . setReferenceFinancialDocumentNumber ( arg1 ) ; loc0 . setPaymentClaimStatusCode ( ElectronicPaymentClaim . ClaimStatusCodes . CLAIMED ) ; businessObjectService . save ( loc0 ) ; } }
sets the referencefinancialdocumentnumber on each of the payments passed in with the given document number and then saves them . concode_field_sep String ELECTRONIC_FUNDS_CLAIMANT_GROUP_PARAMETER concode_elem_sep ParameterService parameterService concode_elem_sep String ELECTRONIC_PAYMENT_CLAIM_ACCOUNTS_PARAMETER conco...
void function ( boolean arg0 ) { this . chunked = arg0 ; }
specifies the ` chunked ' flag . the default implementation sets the value of the #chunked chunked attribute . concode_field_sep long bytesWritten concode_elem_sep AbstractRequest request concode_elem_sep long totalSize concode_elem_sep HttpListener httpListener concode_elem_sep Header contentEncoding concode_elem_sep ...
ImageIcon function ( final E arg0 , final String arg1 , final String arg2 ) { return getIcon ( arg0 , arg1 , arg2 , DEFAULT_EXTENSION ) ; }
returns cached or just loaded enum icon for the specified state . state string will be used to determine icon name automatically . concode_field_sep String DEFAULT_EXTENSION concode_elem_sep Map<Enum,Map<String,ImageIcon>> icons concode_field_sep placeholderType placeHolder
boolean function ( Object arg0 ) { try { SocketAddress loc0 = ( SocketAddress ) arg0 ; if ( port != loc0 . port ) return false ; if ( ! ipaddr . equals ( loc0 . ipaddr ) ) return false ; return true ; } catch ( Exception loc0 ) { return false ; } }
wthether it is equal to object obj . concode_field_sep int port concode_elem_sep IpAddress ipaddr concode_field_sep void init concode_elem_sep int getPort concode_elem_sep Object clone concode_elem_sep IpAddress getAddress concode_elem_sep String toString
int function ( ) { return maxSize ; }
for caches that do not override #sizeof , this returns the maximum number of entries in the cache . for all other caches , this returns the maximum sum of the sizes of the entries in this cache . concode_field_sep int evictionCount concode_elem_sep int putCount concode_elem_sep int hitCount concode_elem_sep int size co...
String function ( String arg0 ) { return org . solrmarc . arg0 . CallNumUtils . getLCB4FirstCutter ( arg0 ) ; }
return the portion of the lc call number string that occurs before the cutter . concode_field_sep PlaceHolder placeHolder concode_field_sep String getSecondLCcutterSuffix concode_elem_sep String removeDeweyVolSuffix concode_elem_sep String getSecondLCcutter concode_elem_sep String getDeweyShelfKey concode_elem_sep Stri...
void function ( String arg0 ) { this . id = arg0 ; }
define el valor de la propiedad id . concode_field_sep List<ReferenceType> reference concode_elem_sep String id concode_field_sep String getId concode_elem_sep List<ReferenceType> getReference
SAMLMessageContext function ( SAMLMessageContext arg0 , boolean arg1 ) { Endpoint loc0 = arg0 . getPeerEntityEndpoint ( ) ; if ( loc0 == null ) { throw new SAMLException ( "srini_string" ) ; } return sendMessage ( arg0 , arg1 , getBinding ( loc0 ) ) ; }
method sends saml message contained in the context to the specified peerentityenpoint . binding is automatically determined based on the selected endpoint . concode_field_sep Logger log concode_elem_sep Collection<SAMLBinding> bindings concode_field_sep void verifyContext concode_elem_sep SAMLBinding getBinding concode...
Class function ( ) { return String . class ; }
the resource key type . the resourcekey used or passed to this resourcehome must have match this type corresponds to org.globus.wsrf.resourcekey #getvalue resourcekey.getvalue . concode_field_sep Cache cache concode_elem_sep QName keyTypeName concode_elem_sep Manager manager concode_elem_sep GroupTranslate translate co...
BigInteger function ( ) { return this . privateExponent ; }
gets the rsa private exponent . concode_field_sep BigInteger modulus concode_elem_sep BigInteger privateExponent concode_field_sep BigInteger getModulus
void function ( String arg0 ) { store . setName ( id , arg0 ) ; }
sets the name of this instance . in pdstore every instance can be given a name . if the instance already has a name , the name will be overwritten . if the given name is null , an existing name will be removed . concode_field_sep GUID roleFullNameId concode_elem_sep GUID typeId concode_elem_sep PDStore store concode_el...
void function ( EntityNamespaceResolver < T > arg0 ) { this . entityNamespaceResolver = arg0 ; }
sets the entity namespace resolver . concode_field_sep EntityNamespaceResolver<T> entityNamespaceResolver concode_elem_sep EntityCodeResolver<T> entityCodeResolver concode_elem_sep EntityDescriptionResolver<T> entityDescriptionResolver concode_field_sep EntityNamespaceResolver<T> getEntityNamespaceResolver concode_elem...
void function ( CoverageDevice arg0 ) { this . coverageDevice = arg0 ; }
sets the value of the coveragedevice property . concode_field_sep SpecificationValue eligibilityType concode_elem_sep String universalLineId concode_elem_sep String suspendedReasonCode concode_elem_sep Boolean eps concode_elem_sep long serialVersionUID concode_elem_sep Boolean claimBlock concode_elem_sep CoverageDevice...
InnerClassAccess function ( String arg0 , String arg1 ) { Map < String , InnerClassAccess > loc0 = getAccessMapForClass ( arg0 ) ; return loc0 . get ( arg1 ) ; }
get the innerclassaccess in given class with the given method name . concode_field_sep boolean DEBUG concode_elem_sep int accessCount concode_elem_sep InnerClassAccess access concode_elem_sep byte[] instructionList concode_elem_sep JavaClass javaClass concode_elem_sep String methodName concode_elem_sep Map<String,Map<S...
COSBase function ( ) { return catalog ; }
convert this standard java object to a cos object . concode_field_sep COSDictionary catalog concode_field_sep String getVersion concode_elem_sep void setFDF concode_elem_sep void setVersion concode_elem_sep void writeXML concode_elem_sep void setSignature concode_elem_sep PDSignature getSignature concode_elem_sep FDFDi...
Vector function ( ) { return this . tailStack ; }
returns the tailstack concode_field_sep byte[] seedActive concode_elem_sep int tailLength concode_elem_sep int maxHeight concode_elem_sep byte[] seedNext concode_elem_sep boolean isInitialized concode_elem_sep byte[] firstNode concode_elem_sep int firstNodeHeight concode_elem_sep Digest messDigestTree concode_elem_sep ...
void function ( File arg0 ) { this . repository = arg0 ; }
sets the directory used to temporarily store files that are larger than the configured size threshold . concode_field_sep int sizeThreshold concode_elem_sep int DEFAULT_SIZE_THRESHOLD concode_elem_sep File repository concode_elem_sep FileCleaningTracker fileCleaningTracker concode_field_sep void setSizeThreshold concod...
void function ( Integer arg0 ) { this . itemId = arg0 ; }
sets item id . concode_field_sep Integer itemId concode_elem_sep String cgd concode_elem_sep String deaccessionOwnInst concode_elem_sep String deaccessionNotes concode_elem_sep String deaccessionDate concode_elem_sep String itemBarcode concode_elem_sep String title concode_elem_sep String deaccessionCreatedBy concode_f...
Object function ( ) { return fElement ; }
returns the input element . concode_field_sep Object fPropertyName concode_elem_sep Object fElement concode_elem_sep List fExpansion concode_field_sep boolean equals concode_elem_sep List getExpansion concode_elem_sep Object getPropertyName