idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
15,600
gets the property value as a string suitable for presentation to a human to edit . concode_field_sep java.util.Vector listeners concode_elem_sep Object source concode_elem_sep Object value concode_field_sep void setSource concode_elem_sep void firePropertyChange concode_elem_sep boolean supportsCustomEditor concode_ele...
String function ( ) { return ( this . value != null ) ? this . value . toString ( ) : null ; }
15,601
read properties from the the previous/version file in the given storage directory . concode_field_sep int namespaceID concode_elem_sep NodeType storageType concode_elem_sep long cTime concode_elem_sep String clusterID concode_elem_sep int layoutVersion concode_elem_sep String STORAGE_FILE_VERSION concode_field_sep Map<...
void function ( StorageDirectory arg0 ) { Properties loc0 = readPropertiesFile ( arg0 . getPreviousVersionFile ( ) ) ; setFieldsFromProperties ( loc0 , arg0 ) ; }
15,602
get the process cpu usage . supported platforms : all . concode_field_sep XContentBuilderString SYS concode_elem_sep XContentBuilderString PERCENT concode_elem_sep XContentBuilderString TOTAL_VIRTUAL concode_elem_sep long openFileDescriptors concode_elem_sep XContentBuilderString TOTAL_VIRTUAL_IN_BYTES concode_elem_sep...
short function ( ) { return percent ; }
15,603
blockchaineventlistener interface implementation concode_field_sep LogManager logManager concode_field_sep void receiveFromBlock concode_elem_sep boolean isTransactionRelevant concode_elem_sep void onChainDownloadStarted concode_elem_sep Message onPreMessageReceived concode_elem_sep void setLogManager concode_elem_sep ...
boolean function ( Sha256Hash arg0 , StoredBlock arg1 , AbstractBlockChain . NewBlockType arg2 , int arg3 ) { return true ; }
15,604
binds the given source sequence to an activity . this helper will schedule the given sequence to be observed on the main ui thread and ensure that no notifications will be forwarded to the activity in case it is scheduled to finish . you should unsubscribe from the returned observable in ondestroy at the latest , in or...
Observable < T > function ( Activity arg0 , Observable < T > arg1 ) { Assertions . assertUiThread ( ) ; return arg1 . observeOn ( mainThread ( ) ) . lift ( new OperatorConditionalBinding < T , Activity > ( arg0 , ACTIVITY_VALIDATOR ) ) ; }
15,605
make equals reflect value-identity instead of object-identity concode_field_sep int[] iV concode_field_sep void add concode_elem_sep int innerProduct concode_elem_sep int hashCode concode_elem_sep void addMultiple concode_elem_sep void subtract concode_elem_sep IntMathVec clone concode_elem_sep String toString concode_...
boolean function ( Object arg0 ) { if ( arg0 instanceof IntMathVec ) { IntMathVec loc0 = ( IntMathVec ) arg0 ; if ( loc0 . iV . length != iV . length ) return false ; for ( int loc1 = 0 ; loc1 < iV . length ; loc1 ++ ) { if ( iV [ loc1 ] != loc0 . iV [ loc1 ] ) return false ; } return true ; } return false ; }
15,606
creates a zookeeperleaderelectionservice instance and a new curatorframework client . concode_field_sep Logger LOG concode_field_sep CompletedCheckpointStore createCompletedCheckpoints concode_elem_sep ZooKeeperSubmittedJobGraphStore createSubmittedJobGraphs concode_elem_sep boolean isZooKeeperRecoveryMode concode_elem...
ZooKeeperLeaderElectionService function ( Configuration arg0 ) { CuratorFramework loc0 = startCuratorFramework ( arg0 ) ; return createLeaderElectionService ( loc0 , arg0 ) ; }
15,607
get the f-1 measure of the given class concode_field_sep Map<String,Map<String,Long>> linearizedMatrix concode_elem_sep int numberOfEvaluatedDocs concode_elem_sep double accuracy concode_elem_sep double avgClassificationTime concode_field_sep ConfusionMatrix getConfusionMatrix concode_elem_sep double getAccuracy concod...
double function ( String arg0 ) { double loc0 = getRecall ( arg0 ) ; double loc1 = getPrecision ( arg0 ) ; return loc1 > 0 && loc0 > 0 ? 2 * loc1 * loc0 / ( loc1 + loc0 ) : 0 ; }
15,608
check if this graphnode has the same name as other . concode_field_sep T name concode_field_sep T getName concode_elem_sep int hashCode concode_elem_sep void checkRep
boolean function ( Object arg0 ) { if ( ! ( arg0 instanceof GraphNode ) ) { return false ; } else { return this . getName ( ) . equals ( ( ( GraphNode ) arg0 ) . getName ( ) ) ; } }
15,609
initializes the cross-references between all classes , performs some basic checks , and shrinks the library class pool . concode_field_sep String VERSION concode_elem_sep Configuration configuration concode_elem_sep ClassPool programClassPool concode_elem_sep ClassPool libraryClassPool concode_field_sep void printSeeds...
void function ( ) { if ( configuration . verbose ) { System . out . println ( "srini_string" ) ; } new Initializer ( configuration ) . execute ( programClassPool , libraryClassPool ) ; }
15,610
returns the scalar 's value as a string . concode_field_sep PlaceHolder placeHolder concode_field_sep TemplateModel get concode_elem_sep boolean isEmpty
String function ( ) { return "srini_string" ; }
15,611
get dataset with bottom vertices . concode_field_sep Tuple2<EV,EV> edgeValues concode_elem_sep ExecutionEnvironment context concode_elem_sep DataSet<BipartiteEdge<KT,KB,EV>> edges concode_elem_sep Projection<KT,VVT,VVB,EV> projection concode_elem_sep Edge<KB,Tuple2<EV,EV>> edge concode_elem_sep DataSet<Vertex<KB,VVB>> ...
DataSet < Vertex < KB , VVB >> function ( ) { return bottomVertices ; }
15,612
returns false if the cookie should be discarded at the end of the `` session '' ; true otherwise . concode_field_sep String cookieDomain concode_elem_sep Date cookieExpiryDate concode_elem_sep int cookieVersion concode_elem_sep String name concode_elem_sep boolean isSecure concode_elem_sep String cookiePath concode_ele...
boolean function ( ) { return ( null != cookieExpiryDate ) ; }
15,613
test of size method , of class sparsematrix . concode_field_sep double[] b concode_elem_sep SparseMatrix sm concode_elem_sep double[][] A concode_field_sep void setUpClass concode_elem_sep void testGet concode_elem_sep void testSet concode_elem_sep void setUp concode_elem_sep void tearDownClass concode_elem_sep void te...
void function ( ) { System . out . println ( "srini_string" ) ; assertEquals ( 7 , sm . size ( ) ) ; }
15,614
gets the value of the appid property . concode_field_sep App.Redirect redirect concode_elem_sep String appId concode_elem_sep String scope concode_elem_sep long serialVersionUID concode_elem_sep String secret concode_elem_sep List<Url> url concode_field_sep App.Redirect getRedirect concode_elem_sep boolean isSetAppId c...
String function ( ) { return appId ; }
15,615
a list of categories that describe the type of support issue a case describes . categories consist of a category name and a category code . category names and codes are passed to aws support when you call createcase . concode_field_sep String code concode_elem_sep String name concode_elem_sep com.amazonaws.internal.Sdk...
java . util . List < Category > function ( ) { if ( categories == null ) { categories = new com . amazonaws . internal . SdkInternalList < Category > ( ) ; } return categories ; }
15,616
converts a string in jdbc timestamp escape format to a timestamp value . concode_field_sep Calendar today concode_elem_sep String zerodatetime concode_elem_sep Calendar tempCalGMT1 concode_elem_sep SimpleDateFormat sdfd concode_elem_sep SimpleDateFormat sdfts concode_elem_sep Date currentDate concode_elem_sep String sd...
Timestamp function ( String arg0 ) { if ( arg0 == null ) { throw new java . lang . IllegalArgumentException ( Trace . getMessage ( Trace . HsqlDateTime_null_string ) ) ; } arg0 = arg0 + zerodatetime . substring ( arg0 . length ( ) ) ; return Timestamp . valueOf ( arg0 ) ; }
15,617
returns true if the logger instance has error level logging enabled . concode_field_sep ALogger logger concode_elem_sep play.api.Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_s...
boolean function ( ) { return logger . isWarnEnabled ( ) ; }
15,618
returns the singleton instance of the commonidhandler . concode_field_sep CommonIdHandler instance concode_elem_sep Logger logger concode_elem_sep Map<ProviderName,Map<String,CommonId>> providerCommonIds concode_field_sep void loadMapping concode_elem_sep void setCommonId concode_elem_sep void addCommonId
CommonIdHandler function ( ) { if ( instance == null ) { instance = new CommonIdHandler ( ) ; } return instance ; }
15,619
sets the value of the jobstatstype property . concode_field_sep Long processingTimeMillis concode_elem_sep Long pendingTimeMillis concode_elem_sep String jobStatsType concode_elem_sep Integer progressPercent concode_field_sep void setPendingTimeMillis concode_elem_sep Integer getProgressPercent concode_elem_sep Long ge...
void function ( String arg0 ) { this . jobStatsType = arg0 ; }
15,620
returns the inactive date of this asset . concode_field_sep Asset _asset concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int...
Date function ( ) { return _asset . getInactiveDate ( ) ; }
15,621
returns the current status of versioning for this bucket versioning configuration object , indicating if versioning is enabled or not for a bucket . concode_field_sep Boolean isMfaDeleteEnabled concode_elem_sep String SUSPENDED concode_elem_sep String OFF concode_elem_sep String ENABLED concode_elem_sep String status c...
String function ( ) { return status ; }
15,622
get all the gestures of an entry concode_field_sep boolean PROFILE_LOADING_SAVING concode_elem_sep boolean mChanged concode_elem_sep int SEQUENCE_INVARIANT concode_elem_sep int ORIENTATION_SENSITIVE concode_elem_sep Learner mClassifier concode_elem_sep int ORIENTATION_INVARIANT concode_elem_sep int mOrientationStyle co...
ArrayList < Gesture > function ( String arg0 ) { ArrayList < Gesture > loc0 = mNamedGestures . get ( arg0 ) ; if ( loc0 != null ) { return new ArrayList < Gesture > ( loc0 ) ; } else { return null ; } }
15,623
returns the number of kaleo conditions . concode_field_sep KaleoConditionLocalService _kaleoConditionLocalService concode_field_sep com.liferay.portal.workflow.kaleo.model.KaleoCondition fetchKaleoCondition concode_elem_sep com.liferay.portal.workflow.kaleo.model.KaleoCondition updateKaleoCondition concode_elem_sep com...
int function ( ) { return _kaleoConditionLocalService . getKaleoConditionsCount ( ) ; }
15,624
getalignedsizerequirements concode_field_sep long serialVersionUID concode_elem_sep int maximum concode_elem_sep float alignment concode_elem_sep int minimum concode_elem_sep int preferred concode_field_sep SizeRequirements getTiledSizeRequirements concode_elem_sep void calculateTiledPositions concode_elem_sep String t...
SizeRequirements function ( SizeRequirements [ ] arg0 ) { return null ; }
15,625
tests if this map contains a mapping for the given key . concode_field_sep boolean nullKeyExists concode_elem_sep Reporter reporter concode_elem_sep int updateCounter concode_elem_sep float DEFAULT_LOAD_FACTOR concode_elem_sep Object nullKeyMapping concode_elem_sep int initCounter concode_elem_sep int DEFAULT_INITIAL_C...
boolean function ( Object arg0 ) { if ( arg0 == null ) { return nullKeyExists ; } return table . containsKey ( arg0 ) ; }
15,626
sets the value of the accessmethod property . concode_field_sep SAccessMethod accessMethod concode_elem_sep XMLGregorianCalendar activeSince concode_elem_sep XMLGregorianCalendar lastActive concode_elem_sep String name concode_elem_sep long oid concode_elem_sep SUserType type concode_elem_sep long userId concode_elem_s...
void function ( SAccessMethod arg0 ) { this . accessMethod = arg0 ; }
15,627
contains the content of the details parameter for the last call made by the activity to recordactivitytaskheartbeat . returns a reference to this object so that method calls can be chained together . constraints : length : 0 - 2048 concode_field_sep String timeoutType concode_elem_sep Long startedEventId concode_elem_s...
ActivityTaskTimedOutEventAttributes function ( String arg0 ) { this . details = arg0 ; return this ; }
15,628
sets the status value for this reportqueueresponse . concode_field_sep java.lang.String statusMsg concode_elem_sep int reportID concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String status c...
void function ( java . lang . String arg0 ) { this . status = arg0 ; }
15,629
add a context factory for the specified coordination type . concode_field_sep Map contextFactoryMap concode_elem_sep ContextFactoryMapper theMapper concode_field_sep ContextFactoryMapper getMapper concode_elem_sep void removeContextFactory concode_elem_sep ContextFactory getContextFactory
void function ( final String arg0 , final ContextFactory arg1 ) { synchronized ( contextFactoryMap ) { contextFactoryMap . put ( arg0 , arg1 ) ; } arg1 . install ( arg0 ) ; }
15,630
the default implementation returns the inputmessage that was passed in . concode_field_sep PlaceHolder placeHolder concode_field_sep Object afterBodyRead concode_elem_sep Object handleEmptyBody
HttpInputMessage function ( HttpInputMessage arg0 , MethodParameter arg1 , Type arg2 , Class < ? extends HttpMessageConverter < ? >> arg3 ) { return arg0 ; }
15,631
append the provided value . concode_field_sep ToStringStyler DEFAULT_TO_STRING_STYLER concode_elem_sep StringBuilder buffer concode_elem_sep ToStringStyler styler concode_elem_sep boolean styledFirstField concode_elem_sep Object object concode_field_sep void printFieldSeparatorIfNecessary concode_elem_sep String toStri...
ToStringCreator function ( Object arg0 ) { this . styler . styleValue ( this . buffer , arg0 ) ; return this ; }
15,632
opens the birthday statistics . concode_field_sep MainApp mainApp concode_field_sep void setMainApp concode_elem_sep void handleSave concode_elem_sep void handleAbout concode_elem_sep void handleOpen concode_elem_sep void handleSaveAs concode_elem_sep void handleExit concode_elem_sep void handleNew
void function ( ) { mainApp . showBirthdayStatistics ( ) ; }
15,633
sets the value of the distanceid property . concode_field_sep String generalType concode_elem_sep String absoluteValue concode_elem_sep String rcc8Value concode_elem_sep String directionId concode_elem_sep String specificType concode_elem_sep String foR concode_elem_sep String qualitativeValue concode_elem_sep String p...
void function ( String arg0 ) { this . distanceId = arg0 ; }
15,634
gets the value of the notonorafter property . concode_field_sep XMLGregorianCalendar notOnOrAfter concode_elem_sep long serialVersionUID concode_elem_sep XMLGregorianCalendar notBefore concode_field_sep void setNotOnOrAfter concode_elem_sep XMLGregorianCalendar getNotBefore concode_elem_sep void setNotBefore
XMLGregorianCalendar function ( ) { return notOnOrAfter ; }
15,635
returns the constant for the given string the search for the constant is case insensitive . if the constant does not already exist , a new constant is created with the given string as the name of the constant . concode_field_sep int ordinalCount concode_elem_sep String fieldName concode_elem_sep CaseInsensitiveMap<Race...
RaceSubType function ( String arg0 ) { initializeTypeMap ( ) ; RaceSubType loc0 = typeMap . get ( arg0 ) ; if ( loc0 == null ) { loc0 = new RaceSubType ( arg0 ) ; typeMap . put ( arg0 , loc0 ) ; } return loc0 ; }
15,636
writes a 32bit integer at the index . concode_field_sep PlaceHolder placeHolder concode_field_sep int read32bit concode_elem_sep int readU16bit concode_elem_sep void write16bit concode_elem_sep void copy32bit concode_elem_sep int readS16bit
void function ( int arg0 , byte [ ] arg1 , int arg2 ) { arg1 [ arg2 ] = ( byte ) ( arg0 >>> 24 ) ; arg1 [ arg2 + 1 ] = ( byte ) ( arg0 >>> 16 ) ; arg1 [ arg2 + 2 ] = ( byte ) ( arg0 >>> 8 ) ; arg1 [ arg2 + 3 ] = ( byte ) arg0 ; }
15,637
there is no one . concode_field_sep AttributeSet a concode_elem_sep AttributeSet b concode_field_sep Object getAttribute concode_elem_sep boolean containsAttributes concode_elem_sep Enumeration getAttributeNames concode_elem_sep boolean hasMoreElements concode_elem_sep boolean isDefined concode_elem_sep boolean isEqual...
AttributeSet function ( ) { return null ; }
15,638
create a request that , when processed , will run all the tests in a class . the odd name is necessary because class is a reserved word . concode_field_sep PlaceHolder placeHolder concode_field_sep Request filterWith concode_elem_sep Request filterWith concode_elem_sep Runner getRunner concode_elem_sep Request method c...
Request function ( Class < ? > arg0 ) { return new ClassRequest ( arg0 ) ; }
15,639
returns the name of the method . concode_field_sep com.artemis.gwtref.client.Method method concode_field_sep boolean isAccessible concode_elem_sep boolean isStatic concode_elem_sep void setAccessible concode_elem_sep boolean isAnnotationPresent concode_elem_sep boolean isVarArgs concode_elem_sep boolean isDefaultAccess...
String function ( ) { return method . getName ( ) ; }
15,640
load archive . cash is array 0 , list array 1 . concode_field_sep String FILENAME concode_elem_sep String ARCHIVESDIR concode_elem_sep String LOG_TAG concode_field_sep boolean deleteArchive concode_elem_sep int getArchiveCount concode_elem_sep void updateArchive concode_elem_sep void clear concode_elem_sep boolean hasA...
Object [ ] function ( ) { try { File loc0 = new InternalFile ( ARCHIVESDIR , getAFileArchive ( ) ) ; return getObjects ( loc0 ) ; } catch ( NoArchiveException | FileNotFoundException loc0 ) { throw new loadArchiveException ( ) ; } }
15,641
set email concode_field_sep String password concode_elem_sep String phone concode_elem_sep String lastName concode_elem_sep Integer userStatus concode_elem_sep String username concode_elem_sep Long id concode_elem_sep String firstName concode_elem_sep String email concode_field_sep String getPhone concode_elem_sep Stri...
void function ( String arg0 ) { this . email = arg0 ; }
15,642
load a project call id concode_field_sep nProjectService projectService concode_elem_sep mJuryOfAnnouncedProjectCallService juryOfAnnouncedProjectCallService concode_elem_sep mProjectCallsDAO projectCallsDAO concode_field_sep void editAProjectCall concode_elem_sep int removeAProjectCall concode_elem_sep String name con...
mProjectCalls function ( int arg0 ) { try { return projectCallsDAO . loadAProjectCallById ( arg0 ) ; } catch ( Exception loc0 ) { System . out . println ( "srini_string" + loc0 . getMessage ( ) ) ; return null ; } }
15,643
associates a stream with a single client connection , which is guaranteed to be the only reader of the stream . the getchunk method will be called serially on this connection and once the connection is closed , the stream will never be used again , enabling cleanup . this must be called before the first getchunk on the...
void function ( Channel arg0 , long arg1 ) { }
15,644
stops the cache and network dispatchers . concode_field_sep Map<String,Queue<Request<?>>> mWaitingRequests concode_elem_sep Set<Request<?>> mCurrentRequests concode_elem_sep PriorityBlockingQueue<Request<?>> mCacheQueue concode_elem_sep CacheDispatcher mCacheDispatcher concode_elem_sep ResponseDelivery mDelivery concod...
void function ( ) { if ( mCacheDispatcher != null ) { mCacheDispatcher . quit ( ) ; } for ( int loc0 = 0 ; loc0 < mDispatchers . length ; loc0 ++ ) { if ( mDispatchers [ loc0 ] != null ) { mDispatchers [ loc0 ] . quit ( ) ; } } }
15,645
creates a stylesheetdocument from the specified inputsource concode_field_sep ParserManager _sDefaultParserManager concode_elem_sep TrinidadLogger _LOG concode_field_sep void _registerFactory concode_elem_sep StyleSheetDocument mergeStyleSheetDocuments concode_elem_sep ParserManager _getDefaultParserManager concode_ele...
StyleSheetDocument function ( XMLProvider arg0 , InputSource arg1 ) { String loc0 = arg1 . getSystemId ( ) ; if ( ( loc0 == null ) ) { throw new IllegalArgumentException ( _LOG . getMessage ( "srini_string" ) ) ; } return createStyleSheetDocument ( arg0 , new DefaultNameResolver ( new File ( loc0 ) , null ) , loc0 ) ; ...
15,646
compare two json arrays concode_field_sep PlaceHolder placeHolder concode_field_sep void assertSameJSON concode_elem_sep void assertSameJSONObject
void function ( String arg0 , JSONArray arg1 , JSONArray arg2 ) { Assert . assertEquals ( arg0 , arg1 . length ( ) , arg2 . length ( ) ) ; if ( arg1 . toString ( ) . equals ( arg2 . toString ( ) ) ) { return ; } else { for ( int loc0 = 0 ; loc0 < arg1 . length ( ) ; loc0 ++ ) { assertSameJSON ( arg0 , arg1 . get ( loc0...
15,647
closes the given reader , logging any ioexception that 's thrown rather thanpropagating it . while it 's not safe in the general case to ignore exceptions that are thrown when closing an i/o resource , it should generally be safe in the case of a resource that 's being used only for reading , such as a reader . unlike ...
void function ( @ Nullable Reader arg0 ) { try { close ( arg0 , true ) ; } catch ( IOException loc0 ) { throw new AssertionError ( loc0 ) ; } }
15,648
die default http-header setzen . muss vor dem ersten aufruf der rest-api erfolgen . concode_field_sep Logger LOG concode_elem_sep String MARATHON_ENDPOINT concode_elem_sep String JWT_FILE concode_field_sep void printRunningApps concode_elem_sep void main concode_elem_sep void submitApp
void function ( ) { Unirest . setDefaultHeader ( "srini_string" , "srini_string" ) ; Unirest . setDefaultHeader ( "srini_string" , "srini_string" ) ; String loc0 = Resources . toString ( Resources . getResource ( JWT_FILE ) , Charsets . UTF_8 ) ; Unirest . setDefaultHeader ( "srini_string" , "srini_string" + loc0 ) ; }
15,649
notifies all connection state listeners that a connection has been initiated , but has not been established yet . the individual listeners then perform their specified actions to take when waiting for a connection . concode_field_sep List<MessageReceiver> messageReceivers concode_elem_sep List<ConnectionStateListener> ...
void function ( ) { for ( ConnectionStateListener loc0 : connectionStateListeners ) { loc0 . connecting ( ) ; } }
15,650
gets the value of the creatives property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the creatives property . for example , to add a new item , d...
List < Creative > function ( ) { if ( creatives == null ) { creatives = new ArrayList < Creative > ( ) ; } return this . creatives ; }
15,651
returns the size of substring that does not contain any trailing spaces concode_field_sep PlaceHolder placeHolder concode_field_sep String arrayToString concode_elem_sep String toZeroPaddedString concode_elem_sep String[] split concode_elem_sep String getList concode_elem_sep String getList concode_elem_sep String getL...
int function ( String arg0 ) { int loc0 = arg0 . length ( ) ; while ( loc0 > 0 ) { loc0 -- ; if ( arg0 . charAt ( loc0 ) != ' ' ) { return loc0 + 1 ; } } return 0 ; }
15,652
test method subtract with parameters 53.4 and 27.1 ... concode_field_sep double PRECISION concode_field_sep void whenDivisionThenResultIsRigth concode_elem_sep void whenMultiplicationThenResultIsRigth concode_elem_sep void whenAdditionThenResultIsRight
void function ( ) { final Calculator loc0 = new Calculator ( ) ; loc0 . subtract ( 53.4 , 27.1 ) ; final double loc1 = loc0 . result ; assertEquals ( 26.3d , loc1 , PRECISION ) ; }
15,653
checkout object from pool concode_field_sep HashSet<T> inUse concode_elem_sep HashSet<T> available concode_field_sep void checkIn concode_elem_sep T create concode_elem_sep String toString
T function ( ) { if ( available . size ( ) <= 0 ) { available . add ( create ( ) ) ; } T loc0 = available . iterator ( ) . next ( ) ; available . remove ( loc0 ) ; inUse . add ( loc0 ) ; return loc0 ; }
15,654
detect special key press . concode_field_sep boolean specialKeydetection concode_elem_sep long ptr concode_elem_sep Logger logger concode_elem_sep boolean isStarted concode_field_sep long init concode_elem_sep boolean registerSpecial concode_elem_sep boolean registerSpecial concode_elem_sep void stop concode_elem_sep v...
void function ( boolean arg0 ) { if ( ptr != 0 ) { detectSpecialKeyPress ( ptr , arg0 ) ; this . specialKeydetection = arg0 ; } }
15,655
gets the value of the template property . concode_field_sep RecordRef template concode_elem_sep String internalId concode_elem_sep Double cost concode_elem_sep RecordRef campaignGroup concode_elem_sep RecordRef channel concode_elem_sep String description concode_elem_sep XMLGregorianCalendar dateScheduled concode_elem_...
RecordRef function ( ) { return template ; }
15,656
flatten out an array of strings into one string , in the form '' s1 , s2 , s3 , ... '' concode_field_sep PlaceHolder placeHolder concode_field_sep String trimTrailingNewlines
String function ( String [ ] arg0 ) { StringBuilder loc0 = new StringBuilder ( "srini_string" ) ; for ( String loc1 : arg0 ) { loc0 . append ( loc1 + "srini_string" ) ; } if ( arg0 . length > 0 ) { loc0 . delete ( loc0 . length ( ) - 2 , Integer . MAX_VALUE ) ; } loc0 . append ( "srini_string" ) ; return loc0 . toStrin...
15,657
returns argument 1 . concode_field_sep short ARGS_ARE_XY_VALUES concode_elem_sep short ARG_1_AND_2_ARE_WORDS concode_elem_sep int glyphIndex concode_elem_sep int xtranslate concode_elem_sep short ROUND_XY_TO_GRID concode_elem_sep short WE_HAVE_AN_X_AND_Y_SCALE concode_elem_sep short flags concode_elem_sep int ytranslat...
short function ( ) { return argument1 ; }
15,658
creates a client and `` starts '' it , i.e. grabs the console prompt . concode_field_sep Map<String,Serializable> NO_INITIAL_SESSION concode_field_sep ShellServer newServer concode_elem_sep RmiLocation remoteLocation concode_elem_sep RmiLocation remoteLocation concode_elem_sep RmiLocation remoteLocation
ShellClient function ( ShellServer arg0 , Map < String , Serializable > arg1 , CtrlCHandler arg2 ) { return new SameJvmClient ( arg1 , arg0 , arg2 ) ; }
15,659
shortens and escapes the given string . concode_field_sep int MAX_STRING_LEN concode_elem_sep String INDENT concode_field_sep String print concode_elem_sep void print concode_elem_sep String escapeString concode_elem_sep void appendQuotedBytes concode_elem_sep String deCamelCaseify
String function ( String arg0 ) { if ( ! arg0 . startsWith ( "srini_string" ) && arg0 . length ( ) > MAX_STRING_LEN ) { arg0 = arg0 . substring ( 0 , MAX_STRING_LEN ) + "srini_string" ; } return escapeString ( arg0 ) ; }
15,660
returns the fully qualified class name of this class name . concode_field_sep ClassName _className concode_field_sep long getClassNameId concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeA...
java . lang . String function ( ) { return _className . getClassName ( ) ; }
15,661
returns the image . concode_field_sep int endLine concode_elem_sep Token next concode_elem_sep String image concode_elem_sep int endColumn concode_elem_sep Token specialToken concode_elem_sep int beginColumn concode_elem_sep int kind concode_elem_sep int beginLine concode_field_sep Token newToken
String function ( ) { return image ; }
15,662
sets the maximum numeric value concode_field_sep boolean numericok concode_elem_sep HashMap strings concode_elem_sep int max concode_elem_sep int CASE_UPPER concode_elem_sep String prefix concode_elem_sep HashMap values concode_elem_sep String description concode_elem_sep int CASE_SENSITIVE concode_elem_sep int CASE_LO...
void function ( int arg0 ) { this . max = arg0 ; }
15,663
extract the invalidslot from given any . concode_field_sep PlaceHolder placeHolder concode_field_sep InvalidSlot read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write
InvalidSlot function ( Any arg0 ) { try { EmptyExceptionHolder loc0 = ( EmptyExceptionHolder ) arg0 . extract_Streamable ( ) ; return ( InvalidSlot ) loc0 . value ; } catch ( ClassCastException loc0 ) { BAD_OPERATION loc1 = new BAD_OPERATION ( "srini_string" ) ; loc1 . minor = Minor . Any ; loc1 . initCause ( loc0 ) ; ...
15,664
setvalidmin sets whether the min value has been calculated correctly concode_field_sep boolean validMax concode_elem_sep Long sequence concode_elem_sep String min concode_elem_sep String decimalPlaces concode_elem_sep String DEFAULT_MIN concode_elem_sep String DEFAULT_MAX concode_elem_sep String max concode_elem_sep lo...
void function ( boolean arg0 ) { this . validMin = arg0 ; }
15,665
sets the value of the value property . concode_field_sep String image concode_elem_sep UnicodeSequenceType value concode_field_sep UnicodeSequenceType getValue concode_elem_sep String getImage concode_elem_sep void setImage
void function ( UnicodeSequenceType arg0 ) { this . value = arg0 ; }
15,666
gets display name of nameaddress returns null id display name does not exist concode_field_sep String name concode_elem_sep SipURL url concode_field_sep boolean hasDisplayName concode_elem_sep void removeDisplayName concode_elem_sep void setAddress concode_elem_sep boolean equals concode_elem_sep boolean equals concode...
String function ( ) { return name ; }
15,667
this method will find and return the dictionary value for a given surrogate key . applicable scenarios : 1 . query final result preparation : while convert the final result which will be surrogate key back to original dictionary values this method will be used concode_field_sep ColumnReverseDictionaryInfo columnReverse...
String function ( int arg0 ) { return columnReverseDictionaryInfo . getDictionaryValueForKey ( arg0 ) ; }
15,668
returns the delegatingfilterproxy #getcontextattribute or null if theparent applicationcontext should be used . the default behavior is to usethe parent applicationcontext . if #getdispatcherwebapplicationcontextsuffix is non-null the webapplicationcontext for the dispatcher will be used . this means the child applicat...
String function ( ) { String loc0 = getDispatcherWebApplicationContextSuffix ( ) ; if ( loc0 == null ) { return null ; } return SERVLET_CONTEXT_PREFIX + loc0 ; }
15,669
convert the given name to lower case . by default , conversions will happen within the us locale . concode_field_sep Class<T> mappedClass concode_elem_sep Map<String,PropertyDescriptor> mappedFields concode_elem_sep ConversionService conversionService concode_elem_sep Set<String> mappedProperties concode_elem_sep Log l...
String function ( String arg0 ) { return arg0 . toLowerCase ( Locale . US ) ; }
15,670
throws mutabilityexception if this instance isimmutable . concode_field_sep boolean mutable concode_field_sep void setImmutable concode_elem_sep boolean isMutable concode_elem_sep boolean isImmutable concode_elem_sep void throwIfMutable
void function ( ) { if ( ! mutable ) { throw new MutabilityException ( "srini_string" ) ; } }
15,671
this method was generated by mybatis generator . this method sets the value of the database column quick4j . . permission.id concode_field_sep String description concode_elem_sep Long id concode_elem_sep String permissionSign concode_elem_sep String permissionName concode_field_sep Long getId concode_elem_sep void setP...
void function ( Long arg0 ) { this . id = arg0 ; }
15,672
returns the path to the jar file . concode_field_sep String description concode_elem_sep String id concode_elem_sep String defaultSubDirectory concode_elem_sep boolean isDirectory concode_field_sep SearchGUIPathKey getKeyFromId concode_elem_sep void setPathPreference concode_elem_sep void setPathPreference concode_elem...
String function ( ) { return CompomicsWrapper . getJarFilePath ( this . getClass ( ) . getResource ( "srini_string" ) . getPath ( ) , "srini_string" ) ; }
15,673
retrieve the content length of the request . concode_field_sep ActionRequest request concode_field_sep String getCharacterEncoding concode_elem_sep String getContentType concode_elem_sep String toString concode_elem_sep InputStream getInputStream
int function ( ) { return request . getContentLength ( ) ; }
15,674
gets the value of the ordstat property . concode_field_sep BigDecimal cxlQty concode_elem_sep String encTxt concode_elem_sep String clOrdID2 concode_elem_sep BigDecimal cumQty concode_elem_sep BigDecimal leavesQty concode_elem_sep String ordID concode_elem_sep BigInteger encTxtLen concode_elem_sep String clOrdID concod...
String function ( ) { return ordStat ; }
15,675
sets the value of the type property . concode_field_sep JAXBElement<? extends AbstractTimePrimitiveType> abstractTimePrimitive 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 co...
void function ( String arg0 ) { this . type = arg0 ; }
15,676
gets a random element from the provided list . concode_field_sep Logger LOGGER concode_field_sep void sleep concode_elem_sep LocalDate getCurrentDate concode_elem_sep long getCurrentTime concode_elem_sep Set<T> asSet concode_elem_sep String getFileName
T function ( List < T > arg0 ) { return arg0 . get ( new Random ( ) . nextInt ( arg0 . size ( ) ) ) ; }
15,677
get next value without incrementing concode_field_sep long lastValue concode_elem_sep long currValue concode_elem_sep int dataType concode_elem_sep HsqlName name concode_elem_sep long increment concode_elem_sep long startValue concode_field_sep long getValue concode_elem_sep long getValue concode_elem_sep HsqlName getN...
long function ( ) { return currValue ; }
15,678
returns a typemirror representing the type of a node a node will always have a type even when it has no tree . concode_field_sep AssignmentContext assignmentContext concode_elem_sep Block block concode_elem_sep boolean inSource concode_elem_sep boolean lvalue concode_elem_sep TypeMirror type concode_field_sep Tree getT...
TypeMirror function ( ) { return type ; }
15,679
helper method that should be called when a native view starts a native gesture e.g. a native scrollview takes control of a gesture stream and starts scrolling . this will handle dispatching the appropriate events to js to make sure the gesture in js is canceled . concode_field_sep PlaceHolder placeHolder concode_field_...
void function ( View arg0 , MotionEvent arg1 ) { RootViewUtil . getRootView ( arg0 ) . onChildStartedNativeGesture ( arg1 ) ; }
15,680
returns true if the descriptor represents a primitive type concode_field_sep Map<Class<?>,String> primitives concode_field_sep String[] parameterDescriptors concode_elem_sep String[] parameterDescriptors concode_elem_sep String[] parameterDescriptors concode_elem_sep String makeDescriptor concode_elem_sep String makeDe...
boolean function ( String arg0 ) { if ( arg0 . length ( ) == 1 ) { return true ; } return false ; }
15,681
returns true if words containing digits should be skipped during spell checking . concode_field_sep String SPELLING_IGNORE_NON_LETTERS concode_elem_sep String SPELLING_IGNORE_SINGLE_LETTERS concode_elem_sep String SPELLING_IGNORE_SENTENCE concode_elem_sep String SPELLING_IGNORE_UPPER concode_elem_sep String SPELLING_LO...
boolean function ( ) { return preferenceStore . getBoolean ( SPELLING_IGNORE_DIGITS ) ; }
15,682
create an empty project if this project does not exist . concode_field_sep PlaceHolder placeHolder concode_field_sep IProject getTargetProject concode_elem_sep void refreshTargetProject concode_elem_sep File getTargetFolder concode_elem_sep FeatureConfiguration getOutletFeatureConfiguration concode_elem_sep boolean get...
boolean function ( IProject arg0 ) { if ( ! arg0 . exists ( ) ) { try { NullProgressMonitor loc0 = new NullProgressMonitor ( ) ; arg0 . create ( loc0 ) ; arg0 . open ( loc0 ) ; return true ; } catch ( CoreException loc0 ) { loc0 . printStackTrace ( ) ; } } return false ; }
15,683
gets the parametrosap value for this produtosap . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep br.com.gvt.www.tv.configuracaoTV.ParametroTV[] parametroSAP concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String descrica...
br . com . gvt . www . tv . configuracaoTV . ParametroTV [ ] function ( ) { return parametroSAP ; }
15,684
get the node that represents a source dom tree . concode_field_sep Node node concode_elem_sep String systemID concode_elem_sep String FEATURE concode_field_sep String getSystemId concode_elem_sep void setSystemId concode_elem_sep void setNode
Node function ( ) { return node ; }
15,685
gets the x. concode_field_sep RectF rect concode_elem_sep double x concode_elem_sep double y concode_field_sep double getY concode_elem_sep RectF getRect
double function ( ) { return x ; }
15,686
this method should parse text , but it does n't work for one primitive char . concode_field_sep char mark concode_field_sep List<Char> parseToChars concode_elem_sep char getMark concode_elem_sep List<Mark> parseToMarks concode_elem_sep void setMark concode_elem_sep int hashCode concode_elem_sep boolean equals concode_e...
List < Text > function ( ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
15,687
determine if bars are filled with color or not concode_field_sep double binSize concode_elem_sep ColorWrap color concode_elem_sep double scaleFactor concode_elem_sep boolean isOnReset concode_elem_sep double size concode_elem_sep PlotSheet plotSheet concode_elem_sep boolean isOnFrame concode_elem_sep boolean autoscale ...
void function ( boolean arg0 ) { this . filling = arg0 ; if ( this . fillColor == null && arg0 ) { this . fillColor = this . color . brighter ( ) ; } }
15,688
rb_is_global_id and is_global_id concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isInstanceVariable concode_elem_sep boolean isNameCharacter19 concode_elem_sep boolean isInitialCharacter concode_elem_sep boolean isValidConstantName19 concode_elem_sep boolean isValidInstanceVariableName concode_elem_...
boolean function ( String arg0 ) { return arg0 . length ( ) > 0 && arg0 . charAt ( 0 ) == '$' ; }
15,689
this method be called as a setter , but not from the decode , since for things to happen in the right phases , you should call setsubmittedvalue - in the component or renderer 's decode - method , and allow the validate - method here to bubble the submittedvalue into value in the correct phase . concode_field_sep Objec...
void function ( UIComponent arg0 , Object arg1 ) { value = arg1 ; setLocalValueInValueBinding = true ; }
15,690
flush the outputs concode_field_sep String prefix concode_elem_sep PrintStream out concode_elem_sep boolean verbose concode_elem_sep boolean extraVerbose concode_elem_sep int pos concode_elem_sep PrintStream err concode_elem_sep String fieldIndent concode_elem_sep int LINE_LENGTH concode_field_sep void setErr concode_e...
void function ( ) { out . flush ( ) ; err . flush ( ) ; }
15,691
simply selects the home view to render by returning its name . concode_field_sep Log logger concode_elem_sep TwitterService twitterService concode_field_sep String home
String function ( Model arg0 ) { final Collection < TwitterMessage > loc0 = twitterService . getTwitterMessages ( ) ; logger . info ( "srini_string" + loc0 . size ( ) + "srini_string" ) ; arg0 . addAttribute ( "srini_string" , loc0 ) ; return "srini_string" ; }
15,692
converts a string in the format of the defined dateutil #date_pattern to a localdate object.returns null if the string could not be converted . concode_field_sep String DATE_PATTERN concode_elem_sep DateTimeFormatter DATE_FORMATTER concode_field_sep boolean validDate concode_elem_sep String format
LocalDate function ( String arg0 ) { try { return DATE_FORMATTER . parse ( arg0 , LocalDate :: from ) ; } catch ( DateTimeParseException loc0 ) { return null ; } }
15,693
pass emplist as null and check weather employee list return from empservice and actual emplist are not same concode_field_sep Employee employee concode_elem_sep List<Employee> empList concode_elem_sep EmployeeService empService concode_elem_sep List<Employee> employeeList concode_elem_sep Employee emp concode_field_sep...
void function ( ) { emp . setCode ( 11 ) ; emp . setName ( "srini_string" ) ; emp . setCity ( "srini_string" ) ; empService . setEmployeeList ( employeeList ) ; empList . add ( null ) ; empService . addEmployee ( emp ) ; assertNotSame ( empList , empService . getEmployeeList ( ) ) ; }
15,694
creates a new message from the specified text . concode_field_sep PlaceHolder placeHolder concode_field_sep void write concode_elem_sep void write
Message function ( String arg0 , Object arg1 , ProcessingUnit arg2 ) { return new SimpleMessage ( arg0 , arg1 , arg2 ) ; }
15,695
sets the value of the amount property . concode_field_sep Double amount concode_elem_sep Boolean apply concode_elem_sep Long line concode_elem_sep String type concode_elem_sep Double discAmt concode_elem_sep Double total concode_elem_sep String refNum concode_elem_sep Double due concode_elem_sep XMLGregorianCalendar di...
void function ( Double arg0 ) { this . amount = arg0 ; }
15,696
returns the client 's authenticator . this method never returns null . concode_field_sep Proxy proxy concode_elem_sep List<String> transports concode_elem_sep int uriPort concode_elem_sep SSLSocketFactory sslSocketFactory concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep OkAuthenticator authenticator ...
OkAuthenticator function ( ) { return authenticator ; }
15,697
this is called when a resource adapter instance is bootstrapped . concode_field_sep String property concode_field_sep String getProperty concode_elem_sep void endpointActivation concode_elem_sep void stop concode_elem_sep int hashCode concode_elem_sep void setProperty concode_elem_sep void endpointDeactivation concode_...
void function ( BootstrapContext arg0 ) { }
15,698
adds the node collection to the selection . concode_field_sep ArrayList<Edge> edges concode_elem_sep ArrayList<Node> nodes concode_elem_sep Graph graph concode_field_sep boolean contains concode_elem_sep boolean contains concode_elem_sep ArrayList<Node> getNodes concode_elem_sep boolean addNode concode_elem_sep void ad...
void function ( Collection < Node > arg0 ) { for ( Node loc0 : arg0 ) { addNode ( loc0 ) ; } }
15,699
gets the distance of the url from the scanner in meters . concode_field_sep String mUrl concode_elem_sep boolean mHasBeenDisplayed concode_elem_sep long mScanTimestamp concode_elem_sep String URL_KEY concode_elem_sep String DISTANCE_KEY concode_elem_sep double mDistance concode_elem_sep String SCAN_TIMESTAMP_KEY concod...
double function ( ) { return mDistance ; }