idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
13,300
sets the offset for an existing slot index . concode_field_sep int[] offsets concode_elem_sep Object PROHIBIT_REF_OBJECT concode_elem_sep Object[] objects concode_elem_sep int nextIndex concode_elem_sep int INIT_LEN concode_elem_sep int PRI_KEY_VISITED_OFFSET concode_elem_sep int PROHIBIT_REF_OFFSET concode_elem_sep St...
void function ( int arg0 , int arg1 ) { offsets [ arg0 ] = arg1 ; }
13,301
get the name of the sequence this effect is in 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 ...
String function ( ) { return sequence ; }
13,302
called whenever the osgi framework starts our bundle . concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void stop concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; }
13,303
represents response parameters that can be sent back to the caller by amazon api gateway . response parameters are represented as a key/value map , with a destination as the key and a boolean flag as the value , which is used to specify whether the parameter is required . a destination must match the pattern method.res...
MethodResponse function ( java . util . Map < String , Boolean > arg0 ) { setResponseParameters ( arg0 ) ; return this ; }
13,304
dom l1 returns the indexed item from the map , or null . concode_field_sep DomNode owner concode_elem_sep boolean readonly concode_elem_sep int length concode_elem_sep short type concode_elem_sep DomNode first concode_field_sep boolean isReadonly concode_elem_sep Node removeNamedItem concode_elem_sep Node removeNamedIt...
Node function ( int arg0 ) { DomNode loc0 = first ; int loc1 = 0 ; while ( loc0 != null && loc1 < arg0 ) { loc0 = loc0 . next ; loc1 ++ ; } return loc0 ; }
13,305
sets the value of the dissemination property . concode_field_sep MIMETypedStream dissemination concode_field_sep MIMETypedStream getDissemination
void function ( MIMETypedStream arg0 ) { this . dissemination = arg0 ; }
13,306
return a new type which represents the type that results from dividing a token of this type and a token of the given argument type . concode_field_sep int MAXDEPTHBOUND concode_field_sep Type add concode_elem_sep Type one concode_elem_sep Type subtract concode_elem_sep StructuredType _greatestLowerBound concode_elem_se...
Type function ( Type arg0 ) { return TypeLattice . leastUpperBound ( this , arg0 ) ; }
13,307
adds the phanphoi to the database . also notifies the appropriate model listeners . concode_field_sep PhanphoiLocalService _phanphoiLocalService concode_field_sep com.newway.model.Phanphoi createPhanphoi concode_elem_sep void setWrappedService concode_elem_sep com.newway.model.Phanphoi getPhanphoi concode_elem_sep java...
com . newway . model . Phanphoi function ( com . newway . model . Phanphoi arg0 ) { return _phanphoiLocalService . addPhanphoi ( arg0 ) ; }
13,308
gets the value of the totaltaxcitycustamount property . concode_field_sep String serviceType concode_elem_sep String featureCode concode_elem_sep Double totalChargeAmount concode_elem_sep String soc concode_elem_sep long serialVersionUID concode_elem_sep String billCycleEndDate concode_elem_sep String billCycleStartDat...
Double function ( ) { return totalTaxCityCustAmount ; }
13,309
gets the value of the setdefinition property . concode_field_sep CTTuples sortByTuple concode_elem_sep Object parent concode_elem_sep Boolean queryFailed concode_elem_sep List<CTTuples> tpls concode_elem_sep STSortType sortType concode_elem_sep Long count concode_elem_sep String setDefinition concode_elem_sep int maxRa...
String function ( ) { return setDefinition ; }
13,310
gets the value of the taxareaid property . concode_field_sep BigDecimal monthlyPaymentTax concode_elem_sep BigInteger pricingTierId concode_elem_sep String description concode_elem_sep BigDecimal discountAmount concode_elem_sep long serialVersionUID concode_elem_sep String type concode_elem_sep Long equipmentId concode...
String function ( ) { return taxAreaId ; }
13,311
sets the value of the spnamequalifier property . concode_field_sep Boolean allowCreate concode_elem_sep URI format concode_elem_sep String spNameQualifier concode_field_sep Boolean isAllowCreate concode_elem_sep void setAllowCreate concode_elem_sep void setFormat concode_elem_sep URI getFormat concode_elem_sep String g...
void function ( String arg0 ) { this . spNameQualifier = arg0 ; }
13,312
default screen . concode_field_sep Logger log concode_field_sep ModelAndView gotoItem1_2 concode_elem_sep ModelAndView gotoItem1 concode_elem_sep ModelAndView gotoVerticalMenu
String function ( ) { log . debug ( "srini_string" ) ; return "srini_string" ; }
13,313
copies a slice of the list into a native array . note that this will not pop them out of the stack . the front of the list will be the top of the stack . if the native array is smaller than the stack depth , the native array will be filled with the elements from the top of the array until it is full and exclude the rem...
void function ( int [ ] arg0 ) { int loc0 = loc0 ( ) ; int loc1 = loc0 - arg0 . loc2 ; if ( loc1 < 0 ) { loc1 = 0 ; } int loc2 = Math . min ( loc0 , arg0 . loc2 ) ; _list . toArray ( arg0 , loc1 , loc2 ) ; reverse ( arg0 , 0 , loc2 ) ; if ( arg0 . loc2 > loc0 ) { arg0 [ loc0 ] = _list . getNoEntryValue ( ) ; } }
13,314
the list of the starting instances and details on how their state has changed . concode_field_sep java.util.List<InstanceStateChange> startingInstances concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void setStartingInstances concode_elem_sep StartInstancesResult withStartingInstances co...
java . util . List < InstanceStateChange > function ( ) { if ( startingInstances == null ) { startingInstances = new java . util . ArrayList < InstanceStateChange > ( ) ; } return startingInstances ; }
13,315
get a string from the underlying resource bundle or return null if the string is not found . concode_field_sep Hashtable<String,StringManager> managers concode_elem_sep Locale locale concode_elem_sep ResourceBundle bundle concode_field_sep StringManager getManager
String function ( String arg0 ) { if ( arg0 == null ) { String loc0 = "srini_string" ; throw new IllegalArgumentException ( loc0 ) ; } String loc1 = null ; try { loc1 = bundle . getString ( arg0 ) ; } catch ( MissingResourceException loc0 ) { loc1 = null ; } return loc1 ; }
13,316
gets the coalescing key corresponding to the gesture with this down time . concode_field_sep SparseIntArray mDownTimeToCoalescingKey concode_field_sep void incrementCoalescingKey concode_elem_sep void removeCoalescingKey concode_elem_sep void addCoalescingKey concode_elem_sep boolean hasCoalescingKey
short function ( long arg0 ) { int loc0 = mDownTimeToCoalescingKey . get ( ( int ) arg0 , - 1 ) ; if ( loc0 == - 1 ) { throw new RuntimeException ( "srini_string" ) ; } return ( ( short ) ( 0xffff & loc0 ) ) ; }
13,317
returns all layer listeners . concode_field_sep Font font concode_elem_sep List<ILayerListener> listeners concode_elem_sep List<Image> images concode_elem_sep Controller controller concode_elem_sep int[] groups concode_elem_sep NatTable table concode_elem_sep RowSet rows concode_elem_sep int selectedIndex concode_elem_...
List < ILayerListener > function ( ) { return listeners ; }
13,318
override of the tostring method concode_field_sep int _P concode_elem_sep boolean isRunning concode_elem_sep int _lambda concode_elem_sep double mean concode_elem_sep int _mu concode_elem_sep double best concode_elem_sep double[][] _distanceMatrix concode_elem_sep int generation concode_elem_sep double worst concode_el...
String function ( ) { String loc0 = "srini_string" ; int loc1 = 1 ; for ( Tour loc2 : _pop ) { loc0 += loc1 ++ + "srini_string" + ( int ) loc2 . length ( ) + "srini_string" ; } return loc0 ; }
13,319
a list of bonusobj 's concode_field_sep String id_path concode_elem_sep String name concode_elem_sep Map<BonusObj,BonusManager.TempBonusInfo> tempBonusBySource concode_elem_sep Equipment eq_item concode_elem_sep String DEFAULT_SET_PATH concode_elem_sep String value concode_elem_sep String note concode_elem_sep boolean ...
Map < BonusObj , BonusManager . TempBonusInfo > function ( ) { return tempBonusBySource ; }
13,320
convert a well-formed but not necessarily valid xml string into a jsonarray using the jsonml transform . each xml tag is represented as a jsonarray in which the first element is the tag name . if the tag has attributes , then the second element will be jsonobject containing the name/value pairs . if the tag contains ch...
JSONArray function ( String arg0 ) { return toJSONArray ( new XMLTokener ( arg0 ) ) ; }
13,321
jvm options concode_field_sep String RUNTIME_BITS_64 concode_elem_sep String JDK_PREFERENCE_JDK_ONLY concode_elem_sep String ARGS concode_elem_sep String RUNTIME_BITS_64_AND_32 concode_elem_sep String[] RUNTIME_BITS_OPTIONS concode_elem_sep String runtimeBits concode_elem_sep String[] JDK_PREFERENCE_NAMES concode_elem_...
List < String > function ( ) { return options ; }
13,322
gets the value of the limit property . concode_field_sep Layout layout concode_elem_sep RssMode mode concode_elem_sep String filter concode_elem_sep Boolean datetime concode_elem_sep List<Address> address concode_elem_sep String itemack concode_elem_sep String src concode_elem_sep BigInteger limit concode_elem_sep BigI...
BigInteger function ( ) { return limit ; }
13,323
associate a value with a string key . concode_field_sep Tag parent concode_elem_sep PageContext pageContext concode_elem_sep Hashtable values concode_elem_sep String id concode_field_sep Tag getParent concode_elem_sep Enumeration getValues concode_elem_sep void release concode_elem_sep String getId concode_elem_sep int...
void function ( String arg0 , Object arg1 ) { if ( values == null ) { values = new Hashtable ( ) ; } values . put ( arg0 , arg1 ) ; }
13,324
sets the value of the subsidytype property . concode_field_sep String planType concode_elem_sep Boolean depositIndicator concode_elem_sep Boolean eipPlan concode_elem_sep Boolean earlyUpgrade concode_elem_sep BigInteger planContractTerm concode_elem_sep XMLGregorianCalendar subsidyDate concode_elem_sep long serialVersi...
void function ( String arg0 ) { this . subsidyType = arg0 ; }
13,325
returns the current stack of enclosing classes . the first element is the top of the stack , that is to say the currently visited class . concode_field_sep Set<MethodNode> methodsToBeVisited concode_elem_sep Set<Long> reportedErrors concode_elem_sep LinkedList<BinaryExpression> enclosingBinaryExpressions concode_elem_s...
List < ClassNode > function ( ) { return Collections . unmodifiableList ( enclosingClassNodes ) ; }
13,326
getdeck . concode_field_sep FilenameFilter BDKFileFilter concode_elem_sep File deckDir concode_elem_sep FilenameFilter DCKFileFilter concode_elem_sep Map<String,Deck> deckMap concode_elem_sep Map<String,Deck[]> draftMap concode_field_sep boolean isUniqueDraft concode_elem_sep void addCardList concode_elem_sep boolean i...
Deck function ( String arg0 ) { return deckMap . get ( arg0 ) ; }
13,327
apply base64 decoding on the message and return the stream concode_field_sep PicketLinkLogger logger concode_field_sep String base64Encode concode_elem_sep String escapeHTML concode_elem_sep byte[] base64Decode
InputStream function ( String arg0 ) { if ( arg0 == null ) throw logger . nullArgumentError ( "srini_string" ) ; return new ByteArrayInputStream ( base64Decode ( arg0 ) ) ; }
13,328
formats only current time into string . example of formatted date 19:27:32 wed , 14 oct 2015 concode_field_sep PlaceHolder placeHolder concode_field_sep play.mvc.Result validateUser concode_elem_sep Date convertStringToDate concode_elem_sep boolean validateInputString concode_elem_sep String getDateAsString concode_ele...
String function ( ) { return new SimpleDateFormat ( "srini_string" ) . format ( new Date ( ) ) ; }
13,329
the name of the method , not including the service name concode_field_sep Marshaller<ResponseT> responseMarshaller concode_elem_sep String name concode_elem_sep Marshaller<RequestT> requestMarshaller concode_elem_sep MethodType type concode_field_sep Marshaller<RequestT> getRequestMarshaller concode_elem_sep MethodType...
String function ( ) { return name ; }
13,330
extract the namevaluepairseq from given any . this method uses the namevaluepairseqholder . concode_field_sep PlaceHolder placeHolder concode_field_sep NameValuePair[] read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write
NameValuePair [ ] function ( Any arg0 ) { try { return ( ( NameValuePairSeqHolder ) arg0 . extract_Streamable ( ) ) . value ; } catch ( ClassCastException loc0 ) { BAD_OPERATION loc1 = new BAD_OPERATION ( "srini_string" ) ; loc1 . initCause ( loc0 ) ; loc1 . minor = Minor . Any ; throw loc1 ; } }
13,331
for applications that use a persistent jdbc connection , this class can be used to encapsulate that connection . just strip out the sqlfile stuff if you do n't need that . concode_field_sep Connection conn concode_field_sep void main concode_elem_sep void executeFiles
Connection function ( ) { return conn ; }
13,332
sets the value of the renewcontractrequest property . concode_field_sep ContractRenewalRequest renewContractRequest concode_elem_sep XMLGregorianCalendar activityDate concode_elem_sep UpdateAddressRequest addressUpdateRequest concode_elem_sep AccountTypeEnum accountType concode_elem_sep String subMarket concode_elem_se...
void function ( ContractRenewalRequest arg0 ) { this . renewContractRequest = arg0 ; }
13,333
throw an internal error . this method seems to return an exception object , so that it can be used instead of ` return ' , but in fact it always throws the exception . concode_field_sep Properties MESSAGES concode_field_sep JdbcSQLException getInvalidValueException concode_elem_sep SQLException convertThrowable concode...
RuntimeException function ( String arg0 ) { RuntimeException loc0 = new RuntimeException ( arg0 ) ; TraceSystem . traceThrowable ( loc0 ) ; throw loc0 ; }
13,334
return a version of this option converted to a particular type . concode_field_sep List<Option> options concode_elem_sep List<String> args concode_elem_sep long serialVersionUID concode_field_sep Properties getOptionProperties concode_elem_sep void addArg concode_elem_sep Option resolveOption concode_elem_sep Iterator<...
Object function ( String arg0 ) { String loc0 = getOptionValue ( arg0 ) ; Option loc1 = resolveOption ( arg0 ) ; if ( loc1 == null || loc0 == null ) { return null ; } return TypeHandler . createValue ( loc0 , loc1 . getType ( ) ) ; }
13,335
gets the value of the accesslocation property . concode_field_sep String accessLocation concode_elem_sep String proxiedResource concode_elem_sep String authenticationType concode_elem_sep String accessUsername concode_elem_sep String accessPassword concode_elem_sep String numberOfSimultaneousUser concode_field_sep void...
String function ( ) { return accessLocation ; }
13,336
get native error message from file driver for file related errors applies when errorcode is 90 concode_field_sep PlaceHolder placeHolder concode_field_sep int errorCode concode_elem_sep String errorFile concode_elem_sep String error concode_elem_sep String fileErrorCode
String function ( ) { return "srini_string" ; }
13,337
retrieve the character encoding for the request . concode_field_sep ActionRequest request concode_field_sep String getContentType concode_elem_sep String toString concode_elem_sep int getContentLength concode_elem_sep InputStream getInputStream
String function ( ) { return request . getCharacterEncoding ( ) ; }
13,338
sets the isqueued . concode_field_sep String m_author concode_elem_sep String m_title concode_elem_sep String m_shelfNumber concode_elem_sep boolean m_possiblyInStore concode_elem_sep boolean m_isQueued concode_elem_sep String m_realLocation concode_elem_sep String m_colonTitlePart concode_field_sep BookInfo[] getBooks...
void function ( boolean arg0 ) { m_isQueued = arg0 ; }
13,339
get the annotation concode_field_sep Protobuf annotation concode_elem_sep String name concode_elem_sep Type genericType concode_elem_sep Class<?> type concode_elem_sep Class<?> declaredClass concode_field_sep String getName concode_elem_sep Class<?> getType concode_elem_sep Class<?> getDeclaredClass concode_elem_sep Ty...
Protobuf function ( ) { return annotation ; }
13,340
the name of the placement group . concode_field_sep String groupName concode_elem_sep String state concode_elem_sep String strategy concode_field_sep String getStrategy concode_elem_sep void setGroupName concode_elem_sep PlacementGroup withGroupName concode_elem_sep String getState concode_elem_sep PlacementGroup withS...
String function ( ) { return groupName ; }
13,341
sets whether the scale gesture is enabled or not . concode_field_sep Listener mListener concode_elem_sep TransformGestureDetector mGestureDetector concode_elem_sep boolean mIsRotationEnabled concode_elem_sep boolean mIsTranslationEnabled concode_elem_sep float[] mTempValues concode_elem_sep float mMinScaleFactor concod...
void function ( boolean arg0 ) { mIsScaleEnabled = arg0 ; }
13,342
sets the value of the cnvcxnsppr property . concode_field_sep CTNonVisualDrawingProps cNvPr concode_elem_sep CTNonVisualConnectorProperties cNvCxnSpPr concode_field_sep CTNonVisualDrawingProps getCNvPr concode_elem_sep CTNonVisualConnectorProperties getCNvCxnSpPr concode_elem_sep void setCNvPr
void function ( CTNonVisualConnectorProperties arg0 ) { this . cNvCxnSpPr = arg0 ; }
13,343
the vpc id of the cluster subnet group . concode_field_sep String vpcId concode_elem_sep String description concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<Subnet> subnets concode_elem_sep String clusterSubnetGroupName concode_elem_sep String subnetGroupStatus concode_elem_sep com.amazonaws.internal.L...
String function ( ) { return vpcId ; }
13,344
used by pagepanelrenderer to ensure no problems with push concode_field_sep Logger logger concode_field_sep UIComponent getChildById concode_elem_sep UIComponent findChildComponent concode_elem_sep HttpServletRequest getRequest concode_elem_sep List<UIParameter> captureParameters concode_elem_sep String getIdOfChildByC...
void function ( FacesContext arg0 , UIComponent arg1 ) { if ( ! arg1 . isRendered ( ) ) { return ; } arg1 . encodeAll ( arg0 ) ; }
13,345
retrieves a sinkinput by its name concode_field_sep String ITEM_SINK_INPUT concode_elem_sep String ITEM_SINK concode_elem_sep String CMD_UNLOAD_MODULE concode_elem_sep String MODULE_COMBINE_SINK concode_elem_sep List<Module> modules concode_elem_sep String CMD_LIST_SOURCE_OUTPUTS concode_elem_sep String CMD_LIST_SINKS ...
SinkInput function ( String arg0 ) { for ( AbstractAudioDeviceConfig loc0 : items ) { if ( loc0 . getName ( ) . equalsIgnoreCase ( arg0 ) && loc0 instanceof SinkInput ) return ( SinkInput ) loc0 ; } return null ; }
13,346
gets the value of the id property . concode_field_sep List<Node> node concode_elem_sep boolean expanded concode_elem_sep boolean link concode_elem_sep String id concode_elem_sep String label concode_elem_sep boolean leaf concode_elem_sep ContentDescriptor contentDescriptor concode_field_sep boolean isExpanded concode_e...
String function ( ) { return id ; }
13,347
returns the authorization endpoint concode_field_sep String minCliVersion concode_elem_sep String loggingEndpoint concode_elem_sep String description concode_elem_sep String appSshHostKeyFingerprint concode_elem_sep String authorizationEndpoint concode_elem_sep Integer version concode_elem_sep String tokenEndpoint conc...
String function ( ) { return this . authorizationEndpoint ; }
13,348
preleva un messaggio dalla coda . concode_field_sep boolean occupato concode_elem_sep Queue<Messaggio> coda concode_field_sep void Send
Messaggio function ( ) { if ( occupato || coda . isEmpty ( ) ) try { wait ( ) ; } catch ( InterruptedException loc0 ) { System . out . println ( "srini_string" + loc0 ) ; System . exit ( - 1 ) ; } occupato = true ; Messaggio loc1 = coda . poll ( ) ; occupato = false ; notify ( ) ; return loc1 ; }
13,349
returns the x of the bounding box of the original svg image . concode_field_sep int width concode_elem_sep float origAlpha concode_elem_sep int height concode_field_sep int getIconWidth concode_elem_sep int getOrigWidth concode_elem_sep void paint concode_elem_sep void paintCompositeGraphicsNode_0_0_0 concode_elem_sep ...
int function ( ) { return 2 ; }
13,350
event called right after the database has been created and right before to be replicated to the x servers concode_field_sep int delayServerAlign concode_elem_sep boolean startupNodesInSequence concode_elem_sep int delayServerStartup concode_elem_sep AtomicLong totalVertices concode_elem_sep String rootDirectory concode...
void function ( final OrientBaseGraph arg0 ) { }
13,351
source file md5 digest . concode_field_sep Set<Class<?>> rsrcs concode_elem_sep Map<String,Class<?>> rsrcsByAlias concode_elem_sep File file concode_elem_sep long tstamp concode_elem_sep ClassLoader clsLdr concode_elem_sep Type type concode_elem_sep String uri concode_elem_sep String md5 concode_field_sep IgniteBiTuple...
String function ( ) { return md5 ; }
13,352
returns a hash code value of this rowid object . concode_field_sep byte[] id concode_elem_sep int hash concode_field_sep boolean equals concode_elem_sep String toString concode_elem_sep Object id concode_elem_sep byte[] getBytes
int function ( ) { if ( hash == 0 ) { hash = Arrays . hashCode ( id ) ; } return hash ; }
13,353
set the log writer for this managedconnectionfactory instance . concode_field_sep Logger log concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep ManagedConnection createManagedConne...
void function ( PrintWriter arg0 ) { log . finest ( "srini_string" ) ; logwriter = arg0 ; }
13,354
sets the value of the name property . concode_field_sep String name concode_elem_sep Integer width concode_elem_sep Long totalFileSize concode_elem_sep RichMediaStudioChildAssetPropertyType type concode_elem_sep String url concode_elem_sep Integer height concode_field_sep Long getTotalFileSize concode_elem_sep String g...
void function ( String arg0 ) { this . name = arg0 ; }
13,355
missing throws . concode_field_sep PlaceHolder placeHolder concode_field_sep int missingReturnAtTheEnd concode_elem_sep int missingReturnButInheritDocPresent concode_elem_sep int missingParam concode_elem_sep int missingReturn concode_elem_sep int missingReturnInTheMiddle concode_elem_sep int missingReturnAtTheEndFollo...
int function ( int arg0 ) { return arg0 ; }
13,356
the count of activity tasks whose status is open . constraints : range : 0 - concode_field_sep Integer openDecisionTasks concode_elem_sep Integer openLambdaFunctions concode_elem_sep Integer openChildWorkflowExecutions concode_elem_sep Integer openTimers concode_elem_sep Integer openActivityTasks concode_field_sep void...
void function ( Integer arg0 ) { this . openActivityTasks = arg0 ; }
13,357
returns a transformer that names named objects.nulls are returned as null . concode_field_sep Pattern DOUBLE_QUOTED concode_elem_sep Pattern A_SINGLE_QUOTE concode_elem_sep Class<O> outputType concode_elem_sep Pattern SINGLE_QUOTED concode_elem_sep Namer<? super T> namer concode_field_sep Transformer<O,I> cast concode_...
Transformer < String , Named > function ( ) { return name ( Named . Namer . INSTANCE ) ; }
13,358
atomic exitread/enterwrite : allows to keep monitor in between exit read and next enter write . use when writing changes is optional , otherwise call the individual methods . returns false if multiple readers are accessing the index . concode_field_sep int status concode_field_sep void enterWrite concode_elem_sep void ...
boolean function ( ) { if ( status != 1 ) return false ; status = - 1 ; return true ; }
13,359
retrieve the date and time the event occurred . concode_field_sep long serialVersionUID concode_elem_sep Map<String,Object> eventData concode_elem_sep String EVENT_TYPE concode_elem_sep String EVENT_MESSAGE concode_elem_sep String EVENT_DATETIME concode_elem_sep String EVENT_ID concode_field_sep Iterator<Map.Entry<Stri...
Date function ( ) { return ( Date ) this . eventData . get ( EVENT_DATETIME ) ; }
13,360
increments the retain count of a local id on disk . concode_field_sep Random random concode_elem_sep int retainCount concode_elem_sep File diskPath concode_elem_sep String objectId concode_field_sep boolean isLocalId concode_elem_sep void putMapEntry concode_elem_sep void removeMapEntry concode_elem_sep String createLo...
void function ( String arg0 ) { MapEntry loc0 = getMapEntry ( arg0 ) ; loc0 . retainCount ++ ; putMapEntry ( arg0 , loc0 ) ; }
13,361
execute remote command , log output using system.out concode_field_sep Connection connection concode_field_sep void copyTo concode_elem_sep Connection getConnection concode_elem_sep void destroy concode_elem_sep String escape concode_elem_sep void close
int function ( String arg0 ) { return executeRemoteCommand ( arg0 , System . out ) ; }
13,362
get the start data of a vector . concode_field_sep ByteBuffer bb concode_elem_sep int bb_pos concode_elem_sep ThreadLocal<CharsetDecoder> UTF8_DECODER concode_elem_sep ThreadLocal<CharBuffer> CHAR_BUFFER concode_field_sep int __vector_len concode_elem_sep ByteBuffer __vector_as_bytebuffer concode_elem_sep int __offset ...
int function ( int arg0 ) { arg0 += bb_pos ; return arg0 + bb . getInt ( arg0 ) + SIZEOF_INT ; }
13,363
parse dtd document declarations . currently only parses the document type declaration markup . concode_field_sep DTD dtd concode_elem_sep boolean strict concode_elem_sep gnu.javax.swing.text.html.parser.support.Parser gnu concode_field_sep String parseDTDMarkup concode_elem_sep void handleEmptyTag concode_elem_sep Simp...
boolean function ( StringBuffer arg0 ) { return gnu . parseMarkupDeclarations ( arg0 ) ; }
13,364
gets the securityhandler associated with this security manager . concode_field_sep Logger logger concode_elem_sep EncryptionDictionary encryptDictionary concode_elem_sep SecurityHandler securityHandler concode_elem_sep boolean foundJCE concode_field_sep byte[] getEncryptionKey concode_elem_sep boolean isAuthorized conc...
SecurityHandler function ( ) { return securityHandler ; }
13,365
returns the round trip time for this ping in nanoseconds , waiting for the response to arrive if necessary . returns -1 if the response was cancelled . concode_field_sep long sent concode_elem_sep CountDownLatch latch concode_elem_sep long received concode_field_sep void cancel concode_elem_sep void receive concode_ele...
long function ( ) { latch . await ( ) ; return received - sent ; }
13,366
isreadermtomaware concode_field_sep com.amazon.ec2.MonitorInstancesResponseType localMonitorInstancesResponse concode_elem_sep javax.xml.namespace.QName MY_QNAME concode_field_sep java.lang.String generatePrefix concode_elem_sep void setMonitorInstancesResponse concode_elem_sep void serialize concode_elem_sep void seri...
boolean function ( javax . xml . stream . XMLStreamReader arg0 ) { boolean loc0 = false ; try { loc0 = java . lang . Boolean . TRUE . equals ( arg0 . getProperty ( org . apache . axiom . om . OMConstants . IS_DATA_HANDLERS_AWARE ) ) ; } catch ( java . lang . IllegalArgumentException loc1 ) { loc0 = false ; } return loc...
13,367
gets the value of the name property . concode_field_sep String name concode_field_sep void setName
String function ( ) { return name ; }
13,368
sets this transaction as a write transaction . see also #isreadonly . concode_field_sep ExtendedStatisticsContainer container concode_elem_sep boolean committed concode_elem_sep boolean trace concode_elem_sep Log log concode_elem_sep boolean readOnly concode_elem_sep long initTime concode_elem_sep TimeService timeServi...
void function ( ) { this . readOnly = false ; }
13,369
the application name . concode_field_sep java.util.Date createTime concode_elem_sep String applicationId concode_elem_sep Boolean linkedToGitHub concode_elem_sep String applicationName concode_field_sep void setLinkedToGitHub concode_elem_sep String getApplicationId concode_elem_sep ApplicationInfo withApplicationId co...
void function ( String arg0 ) { this . applicationName = arg0 ; }
13,370
sets the value of the size property . concode_field_sep List<Long> categoryIds concode_elem_sep Long size concode_elem_sep String name concode_elem_sep String description concode_elem_sep Long id concode_elem_sep AudienceSegmentDataProvider dataProvider concode_elem_sep AudienceSegmentAudienceSegmentType type concode_e...
void function ( Long arg0 ) { this . size = arg0 ; }
13,371
retrieves the current configuration of the plugin as a map of key-value pairs . concode_field_sep String id concode_field_sep PluginState getState concode_elem_sep Integer getPollInterval concode_elem_sep Boolean getAutoStart concode_elem_sep String getSubstate concode_elem_sep void setId concode_elem_sep String getId ...
Map < String , Object > function ( ) { return null ; }
13,372
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 reactMain_region_A concode_elem_sep void init concode_elem_sep SCInterface getSCInterface concode_elem_se...
void function ( ) { }
13,373
get / graphs : get all the graphs . concode_field_sep Logger log concode_elem_sep UserRepository userRepository concode_elem_sep String ENTITY_NAME concode_elem_sep GraphService graphService concode_field_sep ResponseEntity<Graph> createGraph concode_elem_sep ResponseEntity<Graph> getGraph concode_elem_sep ResponseEnti...
ResponseEntity < List < Graph >> function ( Pageable arg0 ) { log . debug ( "srini_string" ) ; Page < Graph > loc0 = graphService . findAll ( arg0 ) ; HttpHeaders loc1 = PaginationUtil . generatePaginationHttpHeaders ( loc0 , "srini_string" ) ; return new ResponseEntity < > ( loc0 . getContent ( ) , loc1 , HttpStatus ....
13,374
computes the range max - min for an array . concode_field_sep PlaceHolder placeHolder concode_field_sep double getStandardDeviation concode_elem_sep double getMin concode_elem_sep double getMedian concode_elem_sep double getMax concode_elem_sep double getQuantile concode_elem_sep double getVariance concode_elem_sep dou...
double function ( double [ ] arg0 ) { return getMax ( arg0 ) - getMin ( arg0 ) ; }
13,375
reads the given fixture file from the classpath e. g. src/test/resources and returns its contents as a utf-8 string . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
String function ( String arg0 ) { return fixture ( arg0 , Charsets . UTF_8 ) ; }
13,376
get parent of this runtime resource . concode_field_sep RuntimeResource parent concode_elem_sep String regex concode_elem_sep List<RuntimeResource.Builder> childRuntimeResourceBuilders concode_elem_sep List<ResourceMethod> resourceLocators concode_elem_sep List<RuntimeResource> childRuntimeResources concode_elem_sep Li...
RuntimeResource function ( ) { return parent ; }
13,377
gets the value of the customtargetingsegment 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 customtargetingsegment property . for examp...
List < CustomCriteria > function ( ) { if ( customTargetingSegment == null ) { customTargetingSegment = new ArrayList < CustomCriteria > ( ) ; } return this . customTargetingSegment ; }
13,378
gets an integer property . if it does not exist , set it to the specified value . concode_field_sep File serverPropertiesFile concode_elem_sep Logger LOGGER concode_elem_sep Properties serverProperties concode_field_sep void generateNewProperties concode_elem_sep void saveProperties concode_elem_sep File getPropertiesF...
int function ( String arg0 , int arg1 ) { try { return Integer . parseInt ( this . getStringProperty ( arg0 , "srini_string" + arg1 ) ) ; } catch ( Exception loc0 ) { this . serverProperties . setProperty ( arg0 , "srini_string" + arg1 ) ; this . saveProperties ( ) ; return arg1 ; } }
13,379
simple check that hashcode is implemented . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testPublicCloneable concode_elem_sep void testSerialization concode_elem_sep void testEquals
void function ( ) { MultipleXYSeriesLabelGenerator loc0 = new MultipleXYSeriesLabelGenerator ( ) ; MultipleXYSeriesLabelGenerator loc1 = new MultipleXYSeriesLabelGenerator ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; assertTrue ( loc0 . hashCode ( ) == loc1 . hashCode ( ) ) ; }
13,380
loads versioning metadata from a remote xml file . concode_field_sep String latestVersion concode_elem_sep List<String> versions concode_elem_sep XPathExpression latestVersionPath concode_elem_sep XPathExpression versionsQueryPath concode_elem_sep String groupId concode_elem_sep String artifactId concode_elem_sep XPath...
MavenMetadata function ( URL arg0 ) { return parse ( arg0 . openStream ( ) ) ; }
13,381
test method for org.adempiere.webui.component.listmodeltable #listmodeltable java.util.collection . concode_field_sep Integer ms_number2 concode_elem_sep Integer ms_number1 concode_elem_sep boolean m_isListenerCalled concode_elem_sep Integer ms_number3 concode_elem_sep Integer ms_number4 concode_elem_sep Integer ms_num...
void function ( ) { final int loc0 = 2 ; final int loc1 = 2 ; Object loc2 ; assertEquals ( loc1 , m_table . getNoColumns ( ) ) ; assertEquals ( loc1 , m_table . getSize ( ) ) ; assertEquals ( Integer . valueOf ( 0 ) , m_table . getDataAt ( 0 , 0 ) ) ; loc2 = m_table . getDataAt ( loc0 , 0 ) ; }
13,382
returns the datanode 's xceiver count , but subtracts 1 , since the dataxceiverserver counts as one . concode_field_sep MiniDFSCluster cluster concode_elem_sep int KEEPALIVE_TIMEOUT concode_elem_sep int WRITE_TIMEOUT concode_elem_sep Configuration conf concode_elem_sep DataNode dn concode_elem_sep Path TEST_FILE concod...
int function ( ) { return dn . getXceiverCount ( ) - 1 ; }
13,383
the creation date and time of the cluster . concode_field_sep java.util.Date readyDateTime concode_elem_sep java.util.Date endDateTime concode_elem_sep java.util.Date creationDateTime concode_field_sep java.util.Date getEndDateTime concode_elem_sep void setEndDateTime concode_elem_sep ClusterTimeline withCreationDateTi...
java . util . Date function ( ) { return this . creationDateTime ; }
13,384
add a stored field to be loaded and returned with the inner hit . concode_field_sep SearchSourceBuilder sourceBuilder concode_field_sep T addFieldDataField concode_elem_sep T setExplain concode_elem_sep T setHighlighterPreTags concode_elem_sep T setHighlighterNumOfFragments concode_elem_sep T setHighlighterTagsSchema c...
T function ( String arg0 ) { sourceBuilder ( ) . field ( arg0 ) ; return ( T ) this ; }
13,385
get the iso code defined for the specified language . concode_field_sep PlaceHolder placeHolder concode_field_sep String getBeanNameFormat concode_elem_sep String getBeanPropertyFormat concode_elem_sep String getOppositeRelationType concode_elem_sep int getOppositeCardinality concode_elem_sep String setterNameForProper...
String function ( Language arg0 ) { if ( arg0 != null && arg0 . getIsoCode ( ) != null ) return arg0 . getIsoCode ( ) ; return new String ( ) ; }
13,386
returns the index of the given bit in the byte where it it stored . concode_field_sep int[] ODD_OFFSETS concode_elem_sep int m_Size concode_elem_sep byte[] m_Data concode_elem_sep boolean m_MSBAccess concode_elem_sep int[] STRAIGHT_OFFSETS concode_elem_sep Logger logger concode_field_sep void setBytes concode_elem_sep ...
int function ( int arg0 ) { if ( arg0 < 0 || arg0 >= m_Data . length * 8 ) { throw new IndexOutOfBoundsException ( ) ; } else { return arg0 % 8 ; } }
13,387
returns all created elements . concode_field_sep Map<Object,Object> fCreations concode_field_sep Object getCreatedElement concode_elem_sep void markAsCreated concode_elem_sep Object[] getSelectedElements
Object [ ] function ( ) { return fCreations . values ( ) . toArray ( ) ; }
13,388
set whether a binder should attempt to `` auto-grow '' a nested path that contains a null value . if `` true '' , a null path location will be populated with a default object value and traversed instead of resulting in an exception . this flag also enables auto-growth of collection elements when accessing an out-of-bou...
void function ( boolean arg0 ) { this . autoGrowNestedPaths = arg0 ; }
13,389
sets the number of top executions . concode_field_sep String mainComNodeName concode_elem_sep Map<String,DataType> dataTypes concode_elem_sep int numberOfTopExecutions concode_elem_sep long averageDataSize concode_elem_sep String mainOperatorName concode_elem_sep Set<String> specialVertexOperatorIds concode_field_sep i...
void function ( final int arg0 ) { this . numberOfTopExecutions = arg0 ; }
13,390
returns the rectangle size . concode_field_sep double x concode_elem_sep double width concode_elem_sep double y concode_elem_sep double height concode_field_sep Point getPosition
Point function ( ) { return new Point ( width , height ) ; }
13,391
retrieve the tag object associated with this actionmode . like the tag available to views , this allows applications to associate arbitrary data with an actionmode for later reference . concode_field_sep Object mTag concode_field_sep boolean onCreateActionMode concode_elem_sep void setCustomView concode_elem_sep CharSe...
Object function ( ) { return mTag ; }
13,392
closes the output channel of this socket . this default implementation always throws an ioexception toindicate that the subclass should have overridden this method . concode_field_sep InetAddress address concode_elem_sep int port concode_elem_sep int localport concode_elem_sep FileDescriptor fd concode_field_sep InetAd...
void function ( ) { throw new IOException ( "srini_string" ) ; }
13,393
updates the user tracker in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep UserTrackerLocalService _service concode_field_sep int getUserTrackersCount concode_elem_sep com.liferay.portal.model.UserTracker fetchUserTracker concode_elem_sep com.liferay...
com . liferay . portal . model . UserTracker function ( com . liferay . portal . model . UserTracker arg0 ) { return getService ( ) . updateUserTracker ( arg0 ) ; }
13,394
gets the value of the phptype property . concode_field_sep String socCategoryCode concode_elem_sep Boolean isPromotional concode_elem_sep List<String> featureCode concode_elem_sep Double socPrice concode_elem_sep String soc concode_elem_sep String socCategoryName concode_elem_sep Boolean isDeviceCompatible concode_elem...
String function ( ) { return phpType ; }
13,395
retrieve the password . concode_field_sep Integer requestedChannelMax concode_elem_sep Logger LOG concode_elem_sep Boolean automaticRecovery concode_elem_sep Boolean topologyRecovery concode_elem_sep long serialVersionUID concode_elem_sep String virtualHost concode_elem_sep String uri concode_elem_sep Integer requested...
String function ( ) { return password ; }
13,396
format . concode_field_sep ResourceBundle rb concode_field_sep placeholderType placeHolder
String function ( BundleKey arg0 , Object ... arg1 ) { return MessageFormat . format ( rb . getString ( arg0 . toString ( ) ) , arg1 ) ; }
13,397
getcomment concode_field_sep String m_label concode_elem_sep Integer m_warning concode_elem_sep String m_filter concode_elem_sep String m_comment concode_elem_sep Collection<StatusNode> m_nodelist concode_elem_sep Boolean m_outagestatus concode_elem_sep Float m_normal concode_field_sep Float getNormal concode_elem_sep ...
String function ( ) { return m_comment ; }
13,398
fires a vetoable property change event . concode_field_sep long serialVersionUID concode_elem_sep EventListenerList listeners concode_elem_sep VetoableChangeSupport vetoableChangeSupport concode_elem_sep String description concode_elem_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep Comparable key conc...
void function ( String arg0 , Object arg1 , Object arg2 ) { this . vetoableChangeSupport . fireVetoableChange ( arg0 , arg1 , arg2 ) ; }
13,399
returns the sequence s which make up the leaves of this tree . concode_field_sep BasicSymmetricalDistanceMatrix distances concode_elem_sep GuideTreeNode<S,C> parent concode_elem_sep boolean isVisited concode_elem_sep double distance concode_elem_sep Profile<S,C> profile concode_elem_sep List<S> sequences concode_elem_s...
List < S > function ( ) { return sequences ; }