idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
13,400
iterates over the children and children 's children to check if a figure is a direct child or indirect child of the given parent . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_ele...
boolean function ( IFigure arg0 , IFigure arg1 ) { boolean loc0 = false ; for ( Object loc1 : arg0 . getChildren ( ) ) { if ( loc1 == arg1 ) { return true ; } if ( loc1 instanceof IFigure ) { loc0 = isChildFigure ( ( IFigure ) loc1 , arg1 ) ; if ( loc0 ) { break ; } } } return loc0 ; }
13,401
logs a message with org.apache.log4j.priority.fatal . concode_field_sep String FQCN concode_elem_sep String name concode_elem_sep Logger logger concode_elem_sep Priority traceLevel concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep void trace concode_elem_sep void debug ...
void function ( Object arg0 ) { getLogger ( ) . log ( FQCN , Priority . FATAL , arg0 , null ) ; }
13,402
clears the record of the elements output so far to the main output . concode_field_sep TupleTag<O> mainOutputTag concode_elem_sep PipelineOptions options concode_elem_sep CounterSet counterSet concode_elem_sep DoFn<I,O> origFn concode_elem_sep DoFn<I,O> fn concode_elem_sep Map<PCollectionView<?>,Iterable<WindowedValue<...
void function ( ) { peekOutputElements ( ) . clear ( ) ; }
13,403
returns the date of the first day of a week concode_field_sep int DAYS_TILL_END_OF_WEEK concode_field_sep Calendar endOfWeek concode_elem_sep Calendar dateToCalendar concode_elem_sep String format concode_elem_sep int currentMonth concode_elem_sep Calendar beginningOfMonth concode_elem_sep Calendar endOfMonth concode_e...
Calendar function ( final int arg0 , final int arg1 ) { final Calendar loc0 = new GregorianCalendar ( ) ; loc0 . clear ( ) ; loc0 . set ( Calendar . YEAR , arg0 ) ; loc0 . set ( Calendar . WEEK_OF_YEAR , arg1 ) ; return loc0 ; }
13,404
small icon resource id for the local notification . concode_field_sep long interval concode_elem_sep JSONObject options concode_elem_sep AssetUtil assets concode_elem_sep String EXTRA concode_elem_sep Context context concode_field_sep Boolean isAutoClear concode_elem_sep int getIdAsInt concode_elem_sep String getText c...
int function ( ) { String loc0 = options . optString ( "srini_string" , "srini_string" ) ; int loc1 = assets . getResIdForDrawable ( loc0 ) ; if ( loc1 == 0 ) { loc1 = android . R . drawable . screen_background_dark ; } return loc1 ; }
13,405
sets the value of the arg0 property . concode_field_sep String arg0 concode_field_sep String getArg0
void function ( String arg1 ) { this . arg0 = arg1 ; }
13,406
tests if this info has an id . concode_field_sep String id concode_field_sep String getId concode_elem_sep String toString concode_elem_sep Info copy
boolean function ( ) { return id != null ; }
13,407
returns the elapsed-time concode_field_sep double epsilon concode_elem_sep String database_distanceType concode_elem_sep int numberOfAttributes concode_elem_sep long serialVersionUID concode_elem_sep int minPoints concode_elem_sep int databaseSize concode_elem_sep FastVector resultVector concode_elem_sep boolean optics...
String function ( ) { return elapsedTime + "srini_string" ; }
13,408
sets the value of the name property . concode_field_sep short timeStamp concode_elem_sep String code concode_elem_sep PositionMemberList positionMemberList concode_elem_sep AuthorisationLimitList authorisationLimitList concode_elem_sep PositionAttributeList attributeList concode_elem_sep Integer referenceCount concode_...
void function ( String arg0 ) { this . name = arg0 ; }
13,409
creates a new builder to build a endisland populator . concode_field_sep PlaceHolder placeHolder concode_field_sep void setRadiusDecrement concode_elem_sep void setRadiusDecrement concode_elem_sep Builder radiusDecrement concode_elem_sep Builder radiusDecrement concode_elem_sep Builder startingRadius concode_elem_sep B...
Builder function ( ) { return Sponge . getRegistry ( ) . createBuilder ( Builder . class ) ; }
13,410
set the duration of the effect in seconds concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep float delay...
void function ( float arg0 ) { this . duration = arg0 ; ea . add ( "srini_string" , arg0 ) ; }
13,411
get the head element for this xhtmldocument container . concode_field_sep head head concode_elem_sep String codeset concode_elem_sep html html concode_elem_sep Doctype doctype concode_elem_sep long serialVersionUID concode_elem_sep body body concode_elem_sep title title concode_field_sep html getHtml concode_elem_sep b...
head function ( ) { return ( head ) ; }
13,412
the same as above , but specifically for google book search . concode_field_sep Collection<String> TRANSLATED_HELP_ASSET_LANGUAGES concode_elem_sep Map<String,String> GOOGLE_PRODUCT_SEARCH_COUNTRY_TLD concode_elem_sep String DEFAULT_LANGUAGE concode_elem_sep Map<String,String> GOOGLE_COUNTRY_TLD concode_elem_sep String...
String function ( Context arg0 ) { return doGetTLD ( GOOGLE_BOOK_SEARCH_COUNTRY_TLD , arg0 ) ; }
13,413
called on the event dispatching thread not on the worker thread after the construct method has returned . concode_field_sep Thread thread concode_elem_sep Integer threadPriority concode_elem_sep Object value concode_elem_sep ThreadVar threadVar concode_field_sep void setThreadPriority concode_elem_sep Object getValue c...
void function ( ) { }
13,414
stops the stopwatch . future reads will return the fixed duration that had elapsed up to this point . concode_field_sep Ticker ticker concode_elem_sep long elapsedNanos concode_elem_sep boolean isRunning concode_elem_sep long startTick concode_field_sep long elapsed concode_elem_sep String abbreviate concode_elem_sep S...
Stopwatch function ( ) { long loc0 = ticker . read ( ) ; checkState ( isRunning , "srini_string" ) ; isRunning = false ; elapsedNanos += loc0 - startTick ; return this ; }
13,415
returns the list of lowercase strings for filename , each line as an element of the returned list . the order of elements in the list is same as that of lines in the file . this method is the same as #readlines string except that all elementsof the list are in lowercase . concode_field_sep PlaceHolder placeHolder conco...
List < String > function ( String arg0 ) { List < String > loc0 = new ArrayList < String > ( ) ; BufferedReader loc1 = new BufferedReader ( new FileReader ( arg0 ) ) ; String loc2 ; while ( ( loc2 = loc1 . readLine ( ) ) != null ) { loc0 . add ( loc2 . toLowerCase ( ) ) ; } loc1 . close ( ) ; return loc0 ; }
13,416
traverse backwards to the previous song concode_field_sep List songs concode_elem_sep String name concode_elem_sep boolean DEBUG concode_elem_sep int cursor concode_elem_sep PropertyChangeSupport listeners concode_field_sep void setName concode_elem_sep void removeSong concode_elem_sep String getName concode_elem_sep S...
void function ( ) { if ( hasPrevious ( ) ) { cursor -- ; listeners . firePropertyChange ( "srini_string" , cursor + 1 , cursor ) ; } }
13,417
returns a hash code value for the object . concode_field_sep Reference reference concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep void setResourceAdapter concode_elem_sep String getName concode_elem_sep void setRefere...
int function ( ) { int loc0 = 17 ; if ( name != null ) { loc0 += 31 * loc0 + 7 * name . hashCode ( ) ; } else { loc0 += 31 * loc0 + 7 ; } return loc0 ; }
13,418
returns a string representation of this object . concode_field_sep long serialVersionUID concode_elem_sep Font font concode_field_sep int charWidth concode_elem_sep int charWidth concode_elem_sep int getMaxDecent concode_elem_sep int getMaxDescent concode_elem_sep int charsWidth concode_elem_sep int getAscent concode_e...
String function ( ) { return ( this . getClass ( ) + "srini_string" + font + "srini_string" + getAscent ( ) + "srini_string" + getDescent ( ) + "srini_string" + getHeight ( ) + "srini_string" ) ; }
13,419
determines if the specified task should be allowed or not . concode_field_sep ObserverLord<FilterEditorObserver> observerLord concode_elem_sep List<String> filteredOutTaskNames concode_elem_sep List<String> filteredOutProjectNames concode_elem_sep boolean filterOutTasksWithNoDescription concode_field_sep void filterCha...
boolean function ( TaskView arg0 ) { return BasicProjectAndTaskFilter . doesAllowTask ( arg0 , filteredOutTaskNames , filterOutTasksWithNoDescription ) ; }
13,420
shows notification that some conflicts were still not resolved - after user invoked the conflict resolver by pressing the link on the notification . concode_field_sep String myErrorNotificationTitle concode_elem_sep String myMergeDescription concode_elem_sep boolean reverse concode_elem_sep MergeDialogCustomizer myMerg...
void function ( ) { notifyWarning ( "srini_string" , "srini_string" + myParams . myErrorNotificationAdditionalDescription ) ; }
13,421
tests if this object is equal to another . concode_field_sep long serialVersionUID concode_elem_sep Number x concode_elem_sep Number y concode_field_sep Number getX concode_elem_sep void setY concode_elem_sep void setY concode_elem_sep Number getY concode_elem_sep double getYValue concode_elem_sep int hashCode concode_...
boolean function ( Object arg0 ) { if ( arg0 == this ) { return true ; } if ( ! ( arg0 instanceof XYDataItem ) ) { return false ; } XYDataItem loc0 = ( XYDataItem ) arg0 ; if ( ! this . x . equals ( loc0 . x ) ) { return false ; } if ( ! ObjectUtilities . equal ( this . y , loc0 . y ) ) { return false ; } return true ;...
13,422
gets the current sfsb invocation off the invocation call stack concode_field_sep ThreadLocal<SFSBCallStackThreadData> CURRENT concode_elem_sep Map<String,ExtendedEntityManager> creationTimeXPCRegistration concode_elem_sep int creationBeanNestingLevel concode_elem_sep ArrayList<Map<String,ExtendedEntityManager>> invocat...
Map < String , ExtendedEntityManager > function ( ) { ArrayList < Map < String , ExtendedEntityManager >> loc0 = currentSFSBCallStack ( ) ; Map < String , ExtendedEntityManager > loc1 = null ; if ( loc0 != null ) { loc1 = loc0 . get ( loc0 . size ( ) - 1 ) ; } return loc1 ; }
13,423
get the client id . concode_field_sep String clientId concode_elem_sep byte[] clientSecret concode_field_sep String getClientSecret concode_elem_sep byte[] getClientSecretAsByteArray
String function ( ) { return clientId ; }
13,424
prints a message at verbose priority . concode_field_sep int ERROR concode_elem_sep int VERBOSE concode_elem_sep int WARN concode_elem_sep int NONE concode_elem_sep int ASSERT concode_elem_sep int DEBUG concode_elem_sep LogNode mLogNode concode_elem_sep int INFO concode_field_sep void println concode_elem_sep void prin...
void function ( String arg0 , String arg1 , Throwable arg2 ) { println ( VERBOSE , arg0 , arg1 , arg2 ) ; }
13,425
sets the priority value for this taskdetail . concode_field_sep java.lang.String contactname concode_elem_sep java.lang.String subject concode_elem_sep java.lang.String duedate concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String...
void function ( java . lang . String arg0 ) { this . priority = arg0 ; }
13,426
add an indexed constructor arg value . the current index is tracked internally and all additions are at the present point . concode_field_sep int constructorArgIndex concode_elem_sep AbstractBeanDefinition beanDefinition concode_field_sep BeanDefinitionBuilder setAutowireMode concode_elem_sep BeanDefinitionBuilder addC...
BeanDefinitionBuilder function ( Object arg0 ) { this . beanDefinition . getConstructorArgumentValues ( ) . addIndexedArgumentValue ( this . constructorArgIndex ++ , arg0 ) ; return this ; }
13,427
sets the value of the servicename property . concode_field_sep Long operations concode_elem_sep String requestId concode_elem_sep Long responseTime concode_elem_sep String methodName concode_elem_sep String serviceName concode_field_sep Long getOperations concode_elem_sep String getMethodName concode_elem_sep void setM...
void function ( String arg0 ) { this . serviceName = arg0 ; }
13,428
sets the value of the description property . concode_field_sep String endDate concode_elem_sep String name concode_elem_sep String description concode_elem_sep long serialVersionUID concode_elem_sep String value concode_elem_sep String startDate concode_field_sep void setName concode_elem_sep String getValue concode_el...
void function ( String arg0 ) { this . description = arg0 ; }
13,429
return the name of the runner or an empty string . non-empty names will include a trailing space character so that they can be used as a prefix . concode_field_sep Set<CommandException.Option> NO_EXCEPTION_OPTIONS concode_elem_sep Class<?>[] optionCommandClasses concode_elem_sep String name concode_elem_sep Class<?>[] ...
String function ( ) { return this . name ; }
13,430
calculate how many cycles are needed for given qty and units per cycle concode_field_sep PlaceHolder placeHolder concode_field_sep BigDecimal estimateWorkingTime concode_elem_sep BigDecimal estimateWorkingTime concode_elem_sep BigDecimal estimateWorkingTime concode_elem_sep BigDecimal getResourceBaseValue concode_elem_...
int function ( int arg0 , BigDecimal arg1 ) { BigDecimal loc0 = arg1 ; BigDecimal loc1 = BigDecimal . valueOf ( arg0 ) ; if ( loc1 . signum ( ) > 0 ) { loc0 = arg1 . divide ( loc1 , 0 , RoundingMode . UP ) ; } return loc0 . intValue ( ) ; }
13,431
set session cookies attribute secure . concode_field_sep Duration expires concode_elem_sep String path concode_elem_sep String idName concode_elem_sep String domain concode_elem_sep boolean secure concode_elem_sep boolean httpOnly concode_field_sep SessionCookieConfig expires concode_elem_sep void setDomain concode_ele...
void function ( boolean arg0 ) { this . secure = arg0 ; }
13,432
start the container . concode_field_sep Server server concode_elem_sep Set<Class<? extends Fraction>> defaultFractionTypes concode_elem_sep List<Fraction> dependentFractions concode_elem_sep Map<Class<? extends Fraction>,Fraction> fractions concode_elem_sep List<Interface> interfaces concode_elem_sep Domain domain conc...
Container function ( ) { this . deployer = this . server . start ( this ) ; return this ; }
13,433
the unique identifier of the record in the stream . concode_field_sep String sequenceNumber concode_elem_sep java.nio.ByteBuffer data concode_elem_sep String partitionKey concode_elem_sep java.util.Date approximateArrivalTimestamp concode_field_sep void setApproximateArrivalTimestamp concode_elem_sep void setData conco...
String function ( ) { return this . sequenceNumber ; }
13,434
provides an image for tesseract to recognize . does not copy the image buffer . the source image must persist until after recognize or getutf8chars is called . concode_field_sep int PSM_CIRCLE_WORD concode_elem_sep int RIL_BLOCK concode_elem_sep int RIL_WORD concode_elem_sep int PSM_SINGLE_WORD concode_elem_sep int PSM...
void function ( Bitmap arg0 ) { Pix loc0 = ReadFile . readBitmap ( arg0 ) ; if ( loc0 == null ) { throw new RuntimeException ( "srini_string" ) ; } nativeSetImagePix ( loc0 . getNativePix ( ) ) ; }
13,435
gets the value of the id property . concode_field_sep IdentifierType senderMessageID concode_elem_sep ObjectCrossReferenceType objectCrossReference concode_elem_sep ApplicationType application concode_elem_sep long serialVersionUID concode_elem_sep IdentifierType id concode_elem_sep CodeType transactionCode concode_fie...
IdentifierType function ( ) { return id ; }
13,436
test of isempty method , of class headersmap . concode_field_sep StringKeyIgnoreCaseMultivaluedMap map concode_field_sep void testEqualsAndHashCode concode_elem_sep void testClear concode_elem_sep void testRemove concode_elem_sep void testEntrySet concode_elem_sep void testPut concode_elem_sep void testGetFirst concode...
void function ( ) { assertTrue ( map . isEmpty ( ) ) ; map . add ( "srini_string" , "srini_string" ) ; assertTrue ( ! map . isEmpty ( ) ) ; map . clear ( ) ; assertTrue ( map . isEmpty ( ) ) ; }
13,437
assign a new value to a global variable . supports saxon : assign . concode_field_sep GlobalParameterSet globalParameters concode_elem_sep SlotManager globalVariableMap concode_elem_sep ValueRepresentation[] globals concode_elem_sep boolean[] busy concode_field_sep Value applyFunctionConversionRules concode_elem_sep vo...
void function ( GlobalVariable arg0 , ValueRepresentation arg1 ) { defineGlobalVariable ( arg0 , arg1 ) ; }
13,438
returns the number of equivalence classes in the currently selected data representation . concode_field_sep GroupStatistics groupStatistics concode_field_sep int getMinimalEquivalenceClassSizeIncludingOutliers concode_elem_sep double getAverageEquivalenceClassSize concode_elem_sep int getNumberOfOutlyingEquivalenceClas...
int function ( ) { return groupStatistics . getNumberOfGroups ( ) ; }
13,439
return the system identifier for the location . a file name must always be provided as a file : ... url . concode_field_sep String systemId concode_elem_sep int columnNumber concode_elem_sep long serialVersionUID concode_elem_sep int lineNumber concode_field_sep int getLineNumber concode_elem_sep int hashCode concode_e...
String function ( ) { return systemId ; }
13,440
copies asset file to destination path concode_field_sep boolean isWorking concode_field_sep void copyAssetDirectory concode_elem_sep void copyAssetDirectoryToAppDirectory
void function ( AssetManager arg0 , String arg1 , String arg2 ) { InputStream loc0 = arg0 . open ( arg1 ) ; OutputStream loc1 = new FileOutputStream ( arg2 ) ; byte [ ] loc2 = new byte [ 8192 ] ; int loc3 ; while ( ( loc3 = loc0 . read ( loc2 ) ) > 0 ) { loc1 . write ( loc2 , 0 , loc3 ) ; } loc0 . close ( ) ; loc1 . cl...
13,441
returns the name . 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 Object ...
String function ( ) { return name ; }
13,442
create an instance of getdatabaseinforesponse concode_field_sep QName _ArrayOfString_QNAME concode_elem_sep QName _String_QNAME concode_field_sep GetMobileCodeInfo createGetMobileCodeInfo concode_elem_sep GetDatabaseInfo createGetDatabaseInfo concode_elem_sep ArrayOfString createArrayOfString concode_elem_sep JAXBEleme...
GetDatabaseInfoResponse function ( ) { return new GetDatabaseInfoResponse ( ) ; }
13,443
casts the array to a short array . concode_field_sep Map<Class<? extends Number>,Integer> floatHierarchy concode_elem_sep Map<Class<? extends Number>,Integer> intHierarchy concode_field_sep long castToLong concode_elem_sep D mapToDataType concode_elem_sep short castToShort concode_elem_sep short castToShort concode_ele...
short [ ] function ( final Object [ ] arg0 ) { final short [ ] loc0 = new short [ arg0 . length ] ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { final Object loc2 = arg0 [ loc1 ] ; if ( loc2 instanceof Number ) { loc0 [ loc1 ] = Numbers . castToShort ( ( Number ) loc2 ) ; } } return loc0 ; }
13,444
gets the value of the code property . concode_field_sep String code concode_elem_sep XMLGregorianCalendar record concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_elem_sep String label concode_field_sep void setRecord concode_elem_sep String getLabel concode_elem_sep void unsetId concode_elem_sep ...
String function ( ) { return code ; }
13,445
create a subset group excluding processes specified by strided intervals of ranks . java binding of the mpi operation mpi_group_range_excl . triplet array is defined as for rangeincl , the ranges indicating ranks in this group to be excluded from the new group . concode_field_sep long nullHandle concode_elem_sep long h...
Group function ( int [ ] [ ] arg0 ) { MPI . check ( ) ; return new Group ( rangeExcl ( handle , arg0 ) ) ; }
13,446
checks argument is not null or empty concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isTrue concode_elem_sep T notNull concode_elem_sep String format concode_elem_sep boolean isFalse concode_elem_sep T withinRange
T function ( final T arg0 , final String arg1 ) { return notEmpty ( arg0 , "srini_string" , arg1 ) ; }
13,447
removes all rules from all mapping tables . concode_field_sep Scheduler scheduler concode_elem_sep List<Rule> timerEventTriggeredRules concode_elem_sep String SCRIPT_FILE concode_elem_sep List<Rule> systemStartupTriggeredRules concode_elem_sep String RULE_NAME concode_elem_sep Map<String,Set<Rule>> commandEventTriggere...
void function ( ) { clear ( TriggerType . STARTUP ) ; clear ( TriggerType . SHUTDOWN ) ; clear ( TriggerType . UPDATE ) ; clear ( TriggerType . CHANGE ) ; clear ( TriggerType . COMMAND ) ; clear ( TriggerType . TIMER ) ; }
13,448
getname concode_field_sep PrefabGraph m_graph concode_elem_sep OnmsResource m_resource concode_elem_sep Date m_end concode_elem_sep Date m_start concode_field_sep PrefabGraph getPrefabGraph concode_elem_sep Collection<RrdGraphAttribute> getRequiredRrGraphdAttributes concode_elem_sep OnmsResource getResource concode_ele...
String function ( ) { return m_graph . getName ( ) ; }
13,449
returns the hashcode for the distribution . concode_field_sep double C concode_elem_sep Logger log concode_elem_sep Random rng concode_elem_sep double[] alphas concode_field_sep double sampleFromGamma concode_elem_sep double getCDF concode_elem_sep double getDensity concode_elem_sep double[] sample concode_elem_sep Map...
int function ( ) { return - 32 + Arrays . asList ( alphas ) . hashCode ( ) ; }
13,450
checks if a value is present in the cache . if the disk cached is enabled , this will also check whether the value has been persisted to disk . concode_field_sep ConcurrentMap<KeyT,ValT> cache concode_elem_sep long expirationInMinutes concode_elem_sep int DISK_CACHE_SDCARD concode_elem_sep String diskCacheDirectory con...
boolean function ( Object arg0 ) { return cache . containsKey ( arg0 ) || ( isDiskCacheEnabled && getFileForKey ( ( KeyT ) arg0 ) . exists ( ) ) ; }
13,451
sets the value of the vyrazovani property . concode_field_sep TJineUdaje jineUdaje concode_elem_sep TPopis popis concode_elem_sep TIdentifikace identifikace concode_elem_sep TPristupnost pristupnost concode_elem_sep TTrideniVecneSkupiny trideni concode_elem_sep TPuvodSeskupeni puvod concode_elem_sep TSouvislosti souvis...
void function ( TVyrazovani arg0 ) { this . vyrazovani = arg0 ; }
13,452
creates a wavedata container from the specified in the classpath concode_field_sep ByteBuffer data concode_elem_sep int format concode_elem_sep int samplerate concode_field_sep void dispose concode_elem_sep ByteBuffer convertAudioBytes
WaveData function ( String arg0 ) { return create ( Thread . currentThread ( ) . getContextClassLoader ( ) . getResource ( arg0 ) ) ; }
13,453
formats a protocol version . concode_field_sep BasicLineFormatter DEFAULT concode_field_sep String formatHeader concode_elem_sep CharArrayBuffer formatHeader concode_elem_sep int estimateProtocolVersionLen concode_elem_sep CharArrayBuffer initBuffer concode_elem_sep String formatRequestLine concode_elem_sep CharArrayBu...
String function ( final ProtocolVersion arg0 , LineFormatter arg1 ) { if ( arg1 == null ) arg1 = BasicLineFormatter . DEFAULT ; return arg1 . appendProtocolVersion ( null , arg0 ) . toString ( ) ; }
13,454
gets the timer label . concode_field_sep boolean SINGLE_THREAD concode_elem_sep TimerListener listener concode_elem_sep boolean active concode_elem_sep long time concode_elem_sep String label concode_field_sep void init concode_elem_sep void halt concode_elem_sep long getTime concode_elem_sep void start concode_elem_se...
String function ( ) { return label ; }
13,455
log error messages . concode_field_sep String PATTERN concode_elem_sep int traceId concode_field_sep String compute concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep void trace concode_elem_sep void trace concode_elem_sep void debug concode_elem_sep void debug concode_el...
void function ( final String arg0 ) { Log . error ( arg0 ) ; }
13,456
create logback configuration for enabling sift appender . a new log file is created for each task . it is based on mdc as long as compute engine is not executed in its own process but in the same process as web server . concode_field_sep String MAX_LOGS_PROPERTY concode_elem_sep Settings settings concode_elem_sep long ...
Appender < ILoggingEvent > function ( LoggerContext arg0 , Props arg1 ) { File loc0 = new File ( arg1 . nonNullValue ( ProcessProperties . PATH_DATA ) ) ; File loc1 = logsDirFromDataDir ( loc0 ) ; return createAppenderConfiguration ( arg0 , loc1 ) ; }
13,457
create a new unmodifiable view of the specified mapping . methods that attempt to modify the returned map will throw unsupportedoperationexception s. concode_field_sep String extension concode_elem_sep String mimeType concode_elem_sep Map<String,Mapping> map concode_elem_sep MimeMappings DEFAULT concode_field_sep Strin...
MimeMappings function ( MimeMappings arg0 ) { return new MimeMappings ( arg0 , false ) ; }
13,458
create a profiler for given system concode_field_sep Color color concode_elem_sep boolean added concode_elem_sep long max concode_elem_sep int SAMPLES concode_elem_sep long[] times concode_elem_sep int lastMaxCounter concode_elem_sep int index concode_elem_sep boolean drawGraph concode_elem_sep ObjectMap<String,SystemP...
SystemProfiler function ( BaseSystem arg0 , World arg1 ) { return SystemProfiler . add ( new SystemProfiler ( arg0 , arg1 ) ) ; }
13,459
returns true if the modifiers include the strictfp modifier . concode_field_sep int PROTECTED concode_elem_sep int PRIVATE concode_elem_sep int NATIVE concode_elem_sep int ANNOTATION concode_elem_sep int ENUM concode_elem_sep int INTERFACE concode_elem_sep int FINAL concode_elem_sep int VOLATILE concode_elem_sep int ST...
boolean function ( int arg0 ) { return ( arg0 & STRICT ) != 0 ; }
13,460
set the count of named parameters in the sql statement . each parameter name counts once ; repeated occurrences do not count here . concode_field_sep int totalParameterCount concode_elem_sep List<String> parameterNames concode_elem_sep int namedParameterCount concode_elem_sep String originalSql concode_elem_sep List<in...
void function ( int arg0 ) { this . namedParameterCount = arg0 ; }
13,461
evaluates javascript code represented as a string . concode_field_sep double Infinity concode_elem_sep double NaN concode_elem_sep ScriptEngine js concode_elem_sep Object undefined concode_field_sep int parseInt concode_elem_sep double parseFloat concode_elem_sep String encodeURI concode_elem_sep String decodeURI conco...
Object function ( String arg0 ) { js = js == null ? new ScriptEngineManager ( ) . getEngineByName ( "srini_string" ) : js ; return js . eval ( arg0 ) ; }
13,462
the consumer label key when watching at some resources concode_field_sep int poolSize concode_elem_sep String caCertData concode_elem_sep String resourceName concode_elem_sep String portName concode_elem_sep String oauthToken concode_elem_sep String clientKeyAlgo concode_elem_sep String clientCertFile concode_elem_sep ...
String function ( ) { return labelKey ; }
13,463
returns the specially constructed system_authorization_name user object for the current database object . concode_field_sep HashMappedList userList concode_elem_sep GranteeManager granteeManager concode_elem_sep User sysUser concode_field_sep HsqlArrayList listVisibleUsers concode_elem_sep void removeSchemaReference co...
User function ( ) { return sysUser ; }
13,464
creates an empty sortedset instance . concode_field_sep PlaceHolder placeHolder concode_field_sep HashSet<K> newHashSet concode_elem_sep HashSet<E> newHashSet
SortedSet < E > function ( ) { return new TreeSet < E > ( ) ; }
13,465
gets the value of the renewalperiodseconds property . concode_field_sep BigInteger renewalPeriodSeconds concode_elem_sep BigInteger validityPeriodSeconds concode_field_sep void setValidityPeriodSeconds concode_elem_sep BigInteger getValidityPeriodSeconds concode_elem_sep void setRenewalPeriodSeconds
BigInteger function ( ) { return renewalPeriodSeconds ; }
13,466
sets the filter_string value for this filterdata . concode_field_sep com.intellij.tasks.mantis.model.AccountData owner concode_elem_sep java.math.BigInteger project_id concode_elem_sep java.lang.String filter_string concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.Boolean is_public concode_elem...
void function ( java . lang . String arg0 ) { this . filter_string = arg0 ; }
13,467
determine if sd card exists . concode_field_sep String LOG_TAG concode_field_sep File constructFilePaths concode_elem_sep long getFreeExternalStorageSpace concode_elem_sep boolean testFileExists concode_elem_sep long getFreeSpaceInBytes
boolean function ( ) { String loc0 = Environment . getExternalStorageState ( ) ; boolean loc1 ; if ( loc0 . equals ( Environment . MEDIA_MOUNTED ) ) { loc1 = true ; } else { loc1 = false ; } return loc1 ; }
13,468
returns true if two possibly-null objects are equal . concode_field_sep Charset US_ASCII concode_elem_sep byte[] EMPTY_BYTE_ARRAY concode_elem_sep AtomicReference<byte[]> skipBuffer concode_elem_sep char[] DIGITS concode_elem_sep Charset UTF_8 concode_elem_sep String[] EMPTY_STRING_ARRAY concode_elem_sep Charset ISO_88...
boolean function ( Object arg0 , Object arg1 ) { return arg0 == arg1 || ( arg0 != null && arg0 . equals ( arg1 ) ) ; }
13,469
getter method for userid concode_field_sep Integer deptId concode_elem_sep long serialVersionUID concode_elem_sep String userId concode_field_sep void setDeptId concode_elem_sep Integer getDeptId concode_elem_sep String toString concode_elem_sep void setUserId
String function ( ) { return userId ; }
13,470
returns true , if a user and a password is set . concode_field_sep String password concode_elem_sep int port concode_elem_sep String name concode_elem_sep String host concode_elem_sep boolean https concode_elem_sep String user concode_field_sep void setName concode_elem_sep void setHost concode_elem_sep void setPasswor...
boolean function ( ) { return user != null && password != null ; }
13,471
gets a particular node . first looks in buffer ; if not found will look in the underlying storage concode_field_sep String BUFFER_SIZE_PROPERTY concode_elem_sep Logger logger concode_elem_sep int buffer_size concode_elem_sep DiskStorage storage concode_elem_sep Map<NodeIdentifier,Node> buffer concode_elem_sep Set<Node>...
Node function ( NodeIdentifier arg0 ) { Node loc0 = buffer . get ( arg0 ) ; if ( loc0 == null ) { loc0 = storage . get ( arg0 ) ; if ( loc0 != null ) { put ( loc0 ) ; } } return loc0 ; }
13,472
gets the readresponse value for this readresponselist . concode_field_sep com.netsuite.webservices.platform.messages_2014_2.ReadResponse[] readResponse concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep c...
com . netsuite . webservices . platform . messages_2014_2 . ReadResponse [ ] function ( ) { return readResponse ; }
13,473
this method was generated by mybatis generator . this method returns the value of the database column syslog.data1 concode_field_sep Date createtime concode_elem_sep String data4 concode_elem_sep String data3 concode_elem_sep String data2 concode_elem_sep String data1 concode_elem_sep Integer id concode_field_sep void ...
String function ( ) { return data1 ; }
13,474
gets the city value for this getcompanymatchesbyname_parameterstype . concode_field_sep uk.co.graydon.ws.GraydonDataService.types.CompanyMatches_ParametersType companyMatches_Parameters concode_elem_sep uk.co.graydon.ws.GraydonDataService.types.Authentication_ParametersType authentication_Parameters concode_elem_sep ja...
java . lang . String function ( ) { return city ; }
13,475
utility method that replaces the values of a map , which must be instances of list , with unmodifiable equivalents . concode_field_sep List<Unit> tails concode_elem_sep Map<Unit,List<Unit>> unitToPreds concode_elem_sep SootMethod method concode_elem_sep Chain<Unit> unitChain concode_elem_sep Map<Unit,List<Unit>> unitTo...
void function ( Map < ? , List < Unit >> arg0 ) { for ( Entry < ? , List < Unit >> loc0 : arg0 . entrySet ( ) ) { List < Unit > loc1 = loc0 . getValue ( ) ; if ( loc1 . size ( ) == 0 ) { loc0 . setValue ( Collections . < Unit > emptyList ( ) ) ; } else { loc0 . setValue ( Collections . unmodifiableList ( loc1 ) ) ; } }...
13,476
returns the correct client socketchannel class based on iomode . concode_field_sep PlaceHolder placeHolder concode_field_sep PooledByteBufAllocator createPooledByteBufAllocator concode_elem_sep TransportFrameDecoder createFrameDecoder concode_elem_sep EventLoopGroup createEventLoop concode_elem_sep ThreadFactory create...
Class < ? extends Channel > function ( IOMode arg0 ) { switch ( arg0 ) { case NIO : return NioSocketChannel . class ; case EPOLL : return EpollSocketChannel . class ; default : throw new IllegalArgumentException ( "srini_string" + arg0 ) ; } }
13,477
sets the value of the maxstorage property . concode_field_sep Integer maxNumberOfPublishedWorkflows concode_elem_sep Integer currentNumberOfPublishedWorkflows concode_elem_sep Integer currentNumberOfNonInteractiveUsers concode_elem_sep Integer currentNumberOfCustomEntities concode_elem_sep long serialVersionUID concode...
void function ( Integer arg0 ) { this . maxStorage = arg0 ; }
13,478
returns true whether it 's time to log a message depending on verbose and the number of items generated . concode_field_sep long bytesCount concode_elem_sep long lastPrintedNumUniqueBytes concode_elem_sep int lastPrintedNumUniqueTexts concode_elem_sep int printNum concode_elem_sep boolean forever concode_elem_sep Strin...
boolean function ( ) { return verbose && logStep > 0 && itemCount % logStep == 0 ; }
13,479
returns a string representation of the non-hidden explicitly or implicitly specified options ; option values are shell-escaped . concode_field_sep PlaceHolder placeHolder concode_field_sep String getTypeDescription concode_elem_sep String getTypeDescription concode_elem_sep String getTypeDescription concode_elem_sep St...
String function ( OptionsProvider arg0 ) { return asShellEscapedString ( arg0 . asListOfUnparsedOptions ( ) ) ; }
13,480
this implementation always returns null . concode_field_sep String DEFAULT_CONTEXT_CONFIG_LOCATION concode_elem_sep Log logger concode_elem_sep ConfigurableApplicationContext applicationContext concode_elem_sep String CONFIG_LOCATION_DELIMITERS concode_elem_sep String contextConfigLocation concode_field_sep void setCon...
XAResource [ ] function ( ActivationSpec [ ] arg0 ) { return null ; }
13,481
returns a list of the axes if any that need to be drawn at the right of the plot area . concode_field_sep List axesAtLeft concode_elem_sep List axesAtRight concode_elem_sep List axesAtTop concode_elem_sep List axesAtBottom concode_field_sep void add concode_elem_sep List getAxesAtTop concode_elem_sep List getAxesAtBott...
List function ( ) { return this . axesAtRight ; }
13,482
create a callable that always returns null . concode_field_sep INonThrowingRunnableWithParameter<PARAMTYPE> m_aRunnable concode_elem_sep DATATYPE m_aResult concode_field_sep DATATYPE call concode_elem_sep String toString
AdapterRunnableToCallableWithParameter < Object , PARAMTYPE > function ( @ Nonnull final INonThrowingRunnableWithParameter < PARAMTYPE > arg0 ) { return new AdapterRunnableToCallableWithParameter < Object , PARAMTYPE > ( arg0 ) ; }
13,483
returns the tracker , which is responsible for deleting temporary files . 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 concode_elem_sep void setFileCleanin...
FileCleaningTracker function ( ) { return fileCleaningTracker ; }
13,484
convert this curve to a tristimulus cie xyz color by integrating against the cie color matching functions . concode_field_sep double[] CIE_ybar concode_elem_sep int WAVELENGTH_MIN concode_elem_sep double[] CIE_xbar concode_elem_sep int WAVELENGTH_STEP concode_elem_sep int WAVELENGTH_MAX concode_elem_sep double[] CIE_zb...
XYZColor function ( ) { float loc0 = 0 , loc1 = 0 , loc2 = 0 ; for ( int loc3 = 0 , loc4 = WAVELENGTH_MIN ; loc3 < CIE_xbar . length ; loc3 ++ , loc4 += WAVELENGTH_STEP ) { float loc5 = sample ( loc4 ) ; loc0 += loc5 * CIE_xbar [ loc3 ] ; loc1 += loc5 * CIE_ybar [ loc3 ] ; loc2 += loc5 * CIE_zbar [ loc3 ] ; } return ne...
13,485
sets the value of the partyemailsinnerset property . concode_field_sep ArrayOfAMLCDDFatcaDataVerificationServicePartyEmailsInnerSetTupleType partyEmailsInnerSet concode_field_sep ArrayOfAMLCDDFatcaDataVerificationServicePartyEmailsInnerSetTupleType getPartyEmailsInnerSet
void function ( ArrayOfAMLCDDFatcaDataVerificationServicePartyEmailsInnerSetTupleType arg0 ) { this . partyEmailsInnerSet = arg0 ; }
13,486
sets the uri part responsible for service resolution . concode_field_sep String rawBaseUri concode_elem_sep String rawQueryPath concode_elem_sep String protocol concode_elem_sep HttpMethod method concode_elem_sep String rawODataPath concode_elem_sep String rawRequestUri concode_elem_sep String rawServiceResolutionUri c...
void function ( final String arg0 ) { this . rawServiceResolutionUri = arg0 ; }
13,487
create a returneditem . concode_field_sep String description concode_elem_sep Date dateLocal concode_elem_sep Log logger concode_elem_sep String code concode_elem_sep Date dateUTC concode_elem_sep long serialVersionUID concode_elem_sep String id concode_field_sep void setDateUTC concode_elem_sep void setDateUTC concode...
ReturnedItem function ( ) { return new ReturnedItem ( ) ; }
13,488
adds an topological node to this graph concode_field_sep List<TopologicalLink> linkList concode_elem_sep List<TopologicalNode> nodeList concode_field_sep int getNumberOfNodes concode_elem_sep Iterator<TopologicalNode> getNodeIterator concode_elem_sep int getNumberOfLinks concode_elem_sep String toString concode_elem_se...
void function ( TopologicalNode arg0 ) { nodeList . add ( arg0 ) ; }
13,489
the base64-encoded mime user data for the instance . concode_field_sep String data concode_field_sep void setData concode_elem_sep UserData withData concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep UserData clone concode_elem_sep String toString
String function ( ) { return this . data ; }
13,490
convenience method to return a named logger , without the application having to care about factories . concode_field_sep Properties logConfig concode_elem_sep String HASHTABLE_IMPLEMENTATION_PROPERTY concode_elem_sep String FACTORY_DEFAULT concode_elem_sep String FACTORY_PROPERTIES concode_elem_sep LogFactory singleton...
Log function ( Class < ? > arg0 ) { return ( getFactory ( ) . getInstance ( arg0 ) ) ; }
13,491
get the attempt id concode_field_sep int[] clockSplits concode_elem_sep long finishTime concode_elem_sep int[] physMemKbytes concode_elem_sep Counters counters concode_elem_sep TaskType taskType concode_elem_sep String hostname concode_elem_sep long shuffleFinishTime concode_elem_sep int port concode_elem_sep int[][] a...
TaskAttemptID function ( ) { return attemptId ; }
13,492
setter method for circle concode_field_sep String emailDate concode_elem_sep String templetName concode_elem_sep String templetType concode_elem_sep long serialVersionUID concode_elem_sep String totalCount concode_elem_sep String circle concode_field_sep void setTotalCount concode_elem_sep void setEmailDate concode_ele...
void function ( String arg0 ) { this . circle = arg0 ; }
13,493
a collection of key and value pairs . note : this method appends the values to the existing list if any . use #settags java.util.collection or #withtags java.util.collection if you want to override theexisting values . concode_field_sep java.util.List<Tag> tags concode_field_sep int hashCode concode_elem_sep boolean eq...
ListTagsForResourceResult function ( Tag ... arg0 ) { if ( this . tags == null ) { setTags ( new java . util . ArrayList < Tag > ( arg0 . length ) ) ; } for ( Tag loc0 : arg0 ) { this . tags . add ( loc0 ) ; } return this ; }
13,494
used to communicate feedback pop-up messages between a plugin tool and the main whitebox user-interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep boolean amIActive concode_field_sep String getName concode_elem_sep void setPluginHost c...
void function ( String arg0 ) { if ( myHost != null ) { myHost . showFeedback ( arg0 ) ; } else { System . out . println ( arg0 ) ; } }
13,495
sets the state machine reference of the event . concode_field_sep boolean periodic concode_elem_sep int index concode_elem_sep ITimedStatemachine statemachine concode_field_sep boolean isPeriodic concode_elem_sep ITimedStatemachine getStatemachine concode_elem_sep int getIndex
void function ( ITimedStatemachine arg0 ) { this . statemachine = arg0 ; }
13,496
get unique id of this resource pool concode_field_sep String resourcePoolId concode_elem_sep Map<ResourceId,Resource> resources concode_field_sep ResourceSet getAll concode_elem_sep Resource get concode_elem_sep Resource get concode_elem_sep void put concode_elem_sep void put concode_elem_sep Resource remove concode_el...
String function ( ) { return resourcePoolId ; }
13,497
sets the reference date of the enrollment . this is the start date of the schedule based on which all the window duration calculations are made . in case of enrollment into milestones other than first milestone , this date is not used . default value is today . concode_field_sep String scheduleName concode_elem_sep Map...
EnrollmentRequest function ( LocalDate arg0 ) { this . referenceDate = arg0 == null ? today ( ) : arg0 ; return this ; }
13,498
a list of event instances . concode_field_sep String marker concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<Event> events concode_field_sep java.util.List<Event> getEvents concode_elem_sep String getMarker concode_elem_sep void setMarker concode_elem_sep int hashCode concode_elem_sep DescribeEventsRes...
void function ( java . util . Collection < Event > arg0 ) { if ( arg0 == null ) { this . events = null ; return ; } com . amazonaws . internal . ListWithAutoConstructFlag < Event > loc0 = new com . amazonaws . internal . ListWithAutoConstructFlag < Event > ( arg0 . size ( ) ) ; loc0 . addAll ( arg0 ) ; this . events = ...
13,499
given an index in the range 0 ... size -1 , returns the value from the indexth key-value mapping that this sparsearray stores . concode_field_sep Object DELETED concode_elem_sep long[] mKeys concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep Object[] mValues concode_field_sep long keyAt conco...
E function ( int arg0 ) { if ( mGarbage ) { gc ( ) ; } return ( E ) mValues [ arg0 ] ; }