idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
13,800
get the distance of the 2 strings , using the costs 1 for insertion , deletion and substitution . concode_field_sep LevenshteinDistance s_aInstance concode_field_sep int _getDistance111 concode_elem_sep int _getDistance
int function ( @ Nullable final char [ ] arg0 , @ Nullable final char [ ] arg1 ) { final int loc0 = arg0 == null ? 0 : arg0 . length ; final int loc1 = arg1 == null ? 0 : arg1 . length ; if ( loc0 == 0 ) return loc1 ; if ( loc1 == 0 ) return loc0 ; return _getDistance111 ( arg0 , loc0 , arg1 , loc1 ) ; }
13,801
if the template is pinned this will be set to the id of the pinned snapshot/change set . note that change sets are managed by the drift server plugin . concode_field_sep Long ctime concode_elem_sep Configuration configuration concode_elem_sep String name concode_elem_sep String description concode_elem_sep boolean isUs...
String function ( ) { return changeSetId ; }
13,802
return the scheme name portion of a uriname concode_field_sep IPAddressName hostIP concode_elem_sep String host concode_elem_sep URI uri concode_elem_sep DNSName hostDNS concode_field_sep URIName nameConstraint concode_elem_sep void encode concode_elem_sep int subtreeDepth concode_elem_sep String getName concode_elem_s...
String function ( ) { return uri . getScheme ( ) ; }
13,803
get file error applies to concode_field_sep PlaceHolder placeHolder concode_field_sep String fileError concode_elem_sep int errorCode concode_elem_sep String error concode_elem_sep String fileErrorCode
String function ( ) { throw new RuntimeException ( "srini_string" ) ; }
13,804
alias for #delete long . 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 concode_elem_sep void clear concode_elem_sep E valueAt concode_elem_sep int indexOfValue concode_elem_sep lo...
void function ( long arg0 ) { delete ( arg0 ) ; }
13,805
remove incident edges in relationship with the edge . concode_field_sep boolean border concode_elem_sep Vertex eV concode_elem_sep List<Edge> incidentEdges concode_elem_sep Vertex oV concode_elem_sep LineSegment geometry concode_elem_sep int id concode_elem_sep List<Triangle> triangles concode_field_sep void setInciden...
boolean function ( List < Edge > arg0 ) { return getIncidentEdges ( ) . removeAll ( arg0 ) ; }
13,806
a series of global options as key value pairs concode_field_sep List<GlobalOptionDefinition> globalOptions concode_field_sep Map<String,String> asMap concode_elem_sep List<GlobalOptionDefinition> getGlobalOptions
void function ( List < GlobalOptionDefinition > arg0 ) { this . globalOptions = arg0 ; }
13,807
retrieves this object 's set of user objects as an associative list . concode_field_sep HashMappedList userList concode_elem_sep GranteeManager granteeManager concode_elem_sep Routine pwCheckFunction concode_elem_sep Routine extAuthenticationFunction concode_field_sep void setPassword concode_elem_sep String[] getIniti...
HashMappedList function ( ) { return userList ; }
13,808
gets the broadcast data set registered under the given name . broadcast data sets are available on all parallel instances of a function . concode_field_sep IterationRuntimeContext runtimeContext concode_elem_sep long numberOfVertices concode_field_sep T getPreviousIterationAggregate concode_elem_sep void postSuperstep ...
Collection < T > function ( String arg0 ) { return this . runtimeContext . < T > getBroadcastVariable ( arg0 ) ; }
13,809
returns true if the probe is available in current context , false otherwise . concode_field_sep int preferredPosition concode_elem_sep String name concode_elem_sep Icon icon concode_elem_sep boolean available concode_elem_sep String description concode_elem_sep String IMAGE_PATH concode_field_sep String getProbeName co...
boolean function ( ) { return available ; }
13,810
the name of the tag . concode_field_sep String BODY_CONTENT_EMPTY concode_elem_sep boolean dynamicAttributes concode_elem_sep TagExtraInfo tagExtraInfo concode_elem_sep String displayName concode_elem_sep String tagClassName concode_elem_sep String bodyContent concode_elem_sep String tagName concode_elem_sep TagLibrary...
String function ( ) { return tagName ; }
13,811
creates an instance of entityserializer with the strictcontentlengthstrategy implementation to be used forserializing http entities sent over this connection . this method can be overridden in a super class in order to create instances of entityserializer using a custom contentlengthstrategy . concode_field_sep EntityS...
EntitySerializer function ( ) { return new EntitySerializer ( new StrictContentLengthStrategy ( ) ) ; }
13,812
when istruncated is true , this element is present and contains the value to use for the marker parameter in a subsequent pagination request . constraints : length : 1 - 320 pattern : &#92; u0020 - &#92; u00ff + concode_field_sep Boolean isTruncated concode_elem_sep String marker concode_elem_sep com.amazonaws.internal...
String function ( ) { return marker ; }
13,813
returns true if any tuples would satisfy this tupledomain concode_field_sep Domain domain concode_elem_sep C column concode_elem_sep Optional<Map<T,Domain>> domains concode_field_sep TupleDomain<T> all concode_elem_sep TupleDomain<T> withColumnDomains concode_elem_sep Optional<List<ColumnDomain<T>>> getColumnDomains co...
boolean function ( ) { return domains . isPresent ( ) && domains . get ( ) . isEmpty ( ) ; }
13,814
setlastpackagepush concode_field_sep String m_name concode_elem_sep Date m_lastEventPull concode_elem_sep String m_comment concode_elem_sep Date m_lastPackagePush concode_elem_sep Integer m_adminState concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal m_discoveryLimit concode_elem_sep String m_ipAddress...
void function ( Date arg0 ) { m_lastPackagePush = arg0 ; }
13,815
obtain the number of recent submissions available concode_field_sep Item[] items concode_field_sep Item[] getRecentSubmissions concode_elem_sep Item getRecentSubmission
int function ( ) { return items . length ; }
13,816
indicates whether some other location object is `` equal to '' this one . concode_field_sep int col concode_elem_sep int NORTHWEST concode_elem_sep int EAST concode_elem_sep int NORTH concode_elem_sep int AHEAD concode_elem_sep int NORTHEAST concode_elem_sep int FULL_CIRCLE concode_elem_sep int HALF_LEFT concode_elem_s...
boolean function ( Object arg0 ) { if ( ! ( arg0 instanceof Location ) ) return false ; Location loc0 = ( Location ) arg0 ; return getRow ( ) == loc0 . getRow ( ) && getCol ( ) == loc0 . getCol ( ) ; }
13,817
gets a number specified by the key in the dictionary entries . if the value is a reference , the number object that the reference points to is returned . if the key can not be found , or the resulting object is not a number , then null is returned . concode_field_sep Hashtable<Object,Object> entries concode_elem_sep Li...
Number function ( String arg0 ) { return library . getNumber ( entries , arg0 ) ; }
13,818
i asked this question to a candidate interviewing with ea . concode_field_sep char r_paren concode_elem_sep char r_brace concode_elem_sep char l_bracket concode_elem_sep char r_bracket concode_elem_sep char l_paren concode_elem_sep char l_brace concode_field_sep int countOccurenceRecursion concode_elem_sep int countOcc...
boolean function ( String arg0 , String arg1 ) { if ( arg0 == null || arg1 == null ) { return false ; } if ( arg0 . length ( ) != arg1 . length ( ) ) { return false ; } String loc0 = arg0 + arg0 ; return loc0 . contains ( arg1 . subSequence ( 0 , arg1 . length ( ) ) ) ; }
13,819
get the right field of the given position . concode_field_sep int root concode_elem_sep DynamicIntArray data concode_elem_sep int ELEMENT_SIZE concode_elem_sep int RIGHT_OFFSET concode_elem_sep int size concode_elem_sep int LEFT_OFFSET concode_elem_sep int lastAdd concode_elem_sep int NULL concode_elem_sep boolean wasA...
int function ( int arg0 ) { return data . get ( arg0 * ELEMENT_SIZE + RIGHT_OFFSET ) ; }
13,820
this method was generated by mybatis generator . this method returns the value of the database column actfrz.cusidt concode_field_sep String apcode concode_elem_sep String recsts concode_elem_sep String frztim concode_elem_sep Date frzbdt concode_elem_sep Date frzedt concode_elem_sep String cusidt concode_elem_sep Date...
String function ( ) { return cusidt ; }
13,821
returns the default scale for the given jdbc type . concode_field_sep HashMap _jdbcLengths concode_elem_sep String JDBC_DEFAULT_CONVERSION concode_elem_sep HashMap _jdbcConversions concode_elem_sep String JDBC_DEFAULT_TYPE_FOR_ARRAY concode_elem_sep HashMap _jdbcPrecisions concode_elem_sep HashMap _jdbcScales concode_e...
String function ( String arg0 ) { return ( String ) _jdbcScales . get ( arg0 ) ; }
13,822
the amount of time in milliseconds before a client is considered disconnected after not having a receiving connection , i.e. an active connection over which the server can send data to the client . the default value is 5000 . concode_field_sep Long heartbeatTime concode_elem_sep Boolean webSocketEnabled concode_elem_se...
SockJsServiceRegistration function ( long arg0 ) { this . disconnectDelay = arg0 ; return this ; }
13,823
a simple null-check . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isNotNull concode_elem_sep boolean areEqual concode_elem_sep boolean isAnyNotNull concode_elem_sep void executeIfNotNull concode_elem_sep boolean isAnyNull concode_elem_sep Type getOrElse concode_elem_sep boolean areAllNotNull con...
boolean function ( final Object arg0 ) { return arg0 == null ; }
13,824
performs the graph traversion with a single root element . so this root element and all elements which are reachable from this root elements will be visited . concode_field_sep int linkCount concode_elem_sep Map myVisitedElements concode_elem_sep Iterator myElements concode_elem_sep boolean done concode_field_sep boole...
void function ( Object arg0 ) { List loc0 = new ArrayList ( ) ; loc0 . add ( arg0 ) ; this . perform ( loc0 . iterator ( ) ) ; }
13,825
get the ocpbatchfileurl value . concode_field_sep String ocpBatchFileMode concode_elem_sep String clientRequestId concode_elem_sep String requestId concode_elem_sep DateTimeRfc1123 ocpCreationTime concode_elem_sep String eTag concode_elem_sep Long contentLength concode_elem_sep DateTimeRfc1123 lastModified concode_elem...
String function ( ) { return this . ocpBatchFileUrl ; }
13,826
debug log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void setLogLevel concode_elem_sep void setLogLevel concode_elem_sep void e conco...
void function ( String arg0 , String arg1 ) { if ( LOG . DEBUG >= LOGLEVEL ) Log . d ( arg0 , arg1 ) ; }
13,827
returns the initiator of the search concode_field_sep LdapListener caller concode_elem_sep List<LdapDirectory> pendingServers concode_field_sep List<LdapDirectory> getPendingServers
LdapListener function ( ) { return this . caller ; }
13,828
gets the alignment from the value concode_field_sep VerticalAlignment[] alignments concode_elem_sep VerticalAlignment JUSTIFY concode_elem_sep String string concode_elem_sep VerticalAlignment TOP concode_elem_sep VerticalAlignment CENTRE concode_elem_sep VerticalAlignment BOTTOM concode_elem_sep int value concode_field...
VerticalAlignment function ( int arg0 ) { for ( int loc0 = 0 ; loc0 < alignments . length ; loc0 ++ ) { if ( alignments [ loc0 ] . getValue ( ) == arg0 ) { return alignments [ loc0 ] ; } } return BOTTOM ; }
13,829
checks the current object to see if the poll has already been voted on . concode_field_sep JedisPool redisPool concode_elem_sep String curWebKey concode_elem_sep String BBB_SERVER_FIELD concode_elem_sep String question concode_elem_sep ArrayList<String> pollsVoted concode_elem_sep String pollKey concode_elem_sep String...
boolean function ( String arg0 ) { return pollsVoted . contains ( arg0 ) ; }
13,830
gets the number of the superstep , starting at 1 . concode_field_sep Iterator<Tuple3<VertexKey,VertexKey,EdgeValue>> input concode_elem_sep IterationRuntimeContext runtimeContext concode_elem_sep Tuple2<VertexKey,Message> outValue concode_elem_sep OutgoingEdge<VertexKey,EdgeValue> edge concode_elem_sep Iterator<?> edge...
int function ( ) { return this . runtimeContext . getSuperstepNumber ( ) ; }
13,831
sets value of the nioreactorpnames #grace_period parameter . concode_field_sep PlaceHolder placeHolder concode_field_sep void setContentBufferSize concode_elem_sep void setSelectInterval concode_elem_sep int getContentBufferSize concode_elem_sep void setInterestOpsQueueing concode_elem_sep boolean getInterestOpsQueuein...
void function ( final HttpParams arg0 , long arg1 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } arg0 . setLongParameter ( GRACE_PERIOD , arg1 ) ; }
13,832
checks if the given type reference represents a primitive type . concode_field_sep Pattern PRIMITIVE_TYPE_NAME_PATTERN concode_elem_sep long latestEcjCompilerVersionConstantCached concode_elem_sep Annotation[] EMPTY_ANNOTATIONS_ARRAY concode_elem_sep int ecjCompilerVersionCached concode_elem_sep int ECLIPSE_DO_NOT_TOUC...
boolean function ( TypeReference arg0 ) { if ( arg0 . dimensions ( ) > 0 ) return false ; return PRIMITIVE_TYPE_NAME_PATTERN . matcher ( toQualifiedName ( arg0 . getTypeName ( ) ) ) . matches ( ) ; }
13,833
gets the value of the processingoptions property . concode_field_sep ShipmentDryIceProcessingOptionsRequested processingOptions concode_elem_sep Weight totalWeight concode_elem_sep BigInteger packageCount concode_field_sep void setPackageCount concode_elem_sep BigInteger getPackageCount concode_elem_sep void setTotalWe...
ShipmentDryIceProcessingOptionsRequested function ( ) { return processingOptions ; }
13,834
updates the n a v i g a t i o n in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep NAVIGATIONLocalService _navigationLocalService concode_field_sep void setWrappedService concode_elem_sep vn.dtt.cmon.dm.dao.model.NAVIGATION deleteNAVIGATION concode_el...
vn . dtt . cmon . dm . dao . model . NAVIGATION function ( vn . dtt . cmon . dm . dao . model . NAVIGATION arg0 ) { return _navigationLocalService . updateNAVIGATION ( arg0 ) ; }
13,835
search the item with the given path . concode_field_sep Map<String,OPFItem> itemsById concode_elem_sep Map<String,OPFItem> itemsByPath concode_elem_sep List<OPFItem> spine concode_elem_sep List<OPFItem> items concode_field_sep List<OPFItem> getItems concode_elem_sep OPFItems build concode_elem_sep Optional<OPFItem> get...
Optional < OPFItem > function ( String arg0 ) { return Optional . fromNullable ( itemsByPath . get ( arg0 ) ) ; }
13,836
finish a specific named graph concode_field_sep String PNFormat concode_elem_sep String Format concode_elem_sep String PNrange concode_elem_sep boolean showUnhandled concode_elem_sep String PNbase concode_elem_sep String PNuri concode_elem_sep String PNContent concode_elem_sep String PNMapping concode_elem_sep Logger l...
void function ( JSONWriterFacade arg0 ) { arg0 . endObject ( ) ; }
13,837
returns the next available generation number of the docvalues files . concode_field_sep Map<Integer,Set<String>> dvUpdatesFiles concode_elem_sep long delGen concode_elem_sep long fieldInfosGen concode_elem_sep long nextWriteDocValuesGen concode_elem_sep Set<String> fieldInfosFiles concode_elem_sep long docValuesGen con...
long function ( ) { return nextWriteDocValuesGen ; }
13,838
stop notifying syncstatuslistener of sync status changes . concode_field_sep String LOG_TAG concode_field_sep Account[] getFirefoxAccounts concode_elem_sep String getFirefoxAccountEmail concode_elem_sep void requestEventualSync concode_elem_sep void addSyncStatusListener concode_elem_sep boolean firefoxAccountsExist co...
void function ( SyncStatusListener arg0 ) { FxAccountSyncStatusHelper . getInstance ( ) . stopObserving ( arg0 ) ; }
13,839
returns the company id of this team . concode_field_sep Team _team concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep void setGroupId concode_elem_sep boolean isEsc...
long function ( ) { return _team . getCompanyId ( ) ; }
13,840
this class and subclasses should write to the underlying writestream only with this method . that way we can be confident that byteswritten will always be accurate . concode_field_sep int DEFAULT_BLOCKS_PER_RECORD concode_elem_sep int DEFAULT_COMPRESSION concode_elem_sep byte[] ZERO_BLOCK concode_elem_sep OutputStream ...
void function ( byte [ ] arg0 , int arg1 ) { writeStream . write ( arg0 , 0 , arg1 ) ; bytesWritten += arg1 ; }
13,841
build a hostandport instance from separate host and port values . note : non-bracketed ipv6 literals are allowed . use #requirebracketsforipv6 to prohibit these . concode_field_sep long serialVersionUID concode_elem_sep int port concode_elem_sep boolean hasBracketlessColons concode_elem_sep int NO_PORT concode_elem_sep...
HostAndPort function ( String arg0 , int arg1 ) { checkArgument ( isValidPort ( arg1 ) , "srini_string" , arg1 ) ; HostAndPort loc0 = fromString ( arg0 ) ; checkArgument ( ! loc0 . hasPort ( ) , "srini_string" , arg0 ) ; return new HostAndPort ( loc0 . arg0 , arg1 , loc0 . hasBracketlessColons ) ; }
13,842
get a string preference value from crosswalk . an exception will be thrown if the key for the preference is not valid . concode_field_sep HashMap<String,PreferenceValue> sPrefMap concode_elem_sep String PROFILE_NAME concode_elem_sep int PREFERENCE_TYPE_STRING concode_elem_sep int PREFERENCE_TYPE_INTEGER concode_elem_se...
String function ( String arg0 ) { checkKey ( arg0 ) ; return sPrefMap . get ( arg0 ) . getStringValue ( ) ; }
13,843
gets the value of the partyphones property . concode_field_sep AMLCDDFatcaIndiciaDetectionServicePartyPhonesTupleType partyPhones concode_field_sep void setPartyPhones
AMLCDDFatcaIndiciaDetectionServicePartyPhonesTupleType function ( ) { return partyPhones ; }
13,844
returns a hash code for this object . this implementation returns the hash code of the managed object . concode_field_sep String FMT_TO_STRING concode_elem_sep T object concode_field_sep T getObject concode_elem_sep T get concode_elem_sep boolean equals concode_elem_sep String toString
int function ( ) { return getObject ( ) != null ? getObject ( ) . hashCode ( ) : 0 ; }
13,845
returns the selectedcities array a comma seperated list concode_field_sep String COUNTRY_CHINA concode_elem_sep SelectItem[] CITIES_RUSSIA concode_elem_sep String selectedComponent concode_elem_sep String[] selectedCities concode_elem_sep String selectedDrink concode_elem_sep SelectItem[] COMPONENT_ITEMS concode_elem_s...
String function ( ) { return convertToString ( selectedCars ) ; }
13,846
returns the size of the recipe area concode_field_sep PlaceHolder placeHolder concode_field_sep ItemStack getRecipeOutput concode_elem_sep ItemStack getCraftingResult concode_elem_sep NonNullList<ItemStack> getRemainingItems concode_elem_sep boolean matches
int function ( ) { return 9 ; }
13,847
sets the name value for this wstransformer . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep org.talend.mdm.webservice.WSTransformerPluginSpec[] pluginSpecs concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep java.lang.String descriptio...
void function ( java . lang . String arg0 ) { this . name = arg0 ; }
13,848
sets the value of the sku property . concode_field_sep BigDecimal maximumDiscountAmount concode_elem_sep BigDecimal configuredDownPayment concode_elem_sep BigDecimal maximumFinanceAmount concode_elem_sep BigDecimal suggestedRetailPrice concode_elem_sep List<ModifierInfo> toopModifier concode_elem_sep List<CRPFinanceInf...
void function ( String arg0 ) { this . sku = arg0 ; }
13,849
can be set before a swingcontroller.print is called to enable/disable shrink to fit printable area . concode_field_sep int printCopies concode_elem_sep String defaultURL concode_elem_sep File defaultFile concode_elem_sep PrintHelper printHelper concode_elem_sep boolean isShrinkToPrintableArea concode_field_sep void set...
void function ( boolean arg0 ) { isShrinkToPrintableArea = arg0 ; }
13,850
define el valor de la propiedad numdocsustento . concode_field_sep String identificacionDestinatario concode_elem_sep String ruta concode_elem_sep String motivoTraslado concode_elem_sep String dirDestinatario concode_elem_sep List<Detalle> detalle concode_elem_sep String numDocSustento concode_elem_sep String docAduane...
void function ( String arg0 ) { this . numDocSustento = arg0 ; }
13,851
tire la carte la plus haute du paquet concode_field_sep int cartesTirees concode_elem_sep Carte[] paquet concode_field_sep void melanger concode_elem_sep int cartesRestantes
Carte function ( ) { if ( cartesTirees == 52 ) { melanger ( ) ; } cartesTirees ++ ; return paquet [ cartesTirees - 1 ] ; }
13,852
remove the given listener concode_field_sep Spline spline concode_elem_sep List<MotionPathListener> listeners concode_elem_sep Node debugNode concode_elem_sep int prevWayPoint concode_elem_sep AssetManager assetManager concode_field_sep void attachDebugNode concode_elem_sep void disableDebugShape concode_elem_sep int g...
void function ( MotionPathListener arg0 ) { if ( listeners != null ) { listeners . remove ( arg0 ) ; } }
13,853
configure the amount of time in milliseconds before a remote user registry snapshot is considered expired . by default this is set to 20 seconds value of 20000 . concode_field_sep TaskScheduler scheduler concode_elem_sep UserRegistryTask schedulerTask concode_elem_sep SimpMessagingTemplate brokerTemplate concode_elem_s...
void function ( long arg0 ) { this . registryExpirationPeriod = arg0 ; }
13,854
this will pass the file argument to the transitionparser class to be parsed concode_field_sep Button wBrowse concode_elem_sep Button logoutBtn concode_elem_sep TextField workflowname concode_elem_sep AbsError e concode_elem_sep WorkFlowInter<Entity,State> wfi concode_elem_sep Button uBrowse concode_elem_sep GenInter<Tr...
void function ( File arg0 ) { parser = new TransitionParser ( arg0 , wfi ) ; parser . parse ( ) ; Object loc0 = parser . getInters ( ) ; transitions = ( loc0 instanceof GenInter ? ( GenInter < Transition > ) loc0 : null ) ; }
13,855
starts a new line in the rtf file being written . this is only to format the rtf file itself for easier debugging , not its content . concode_field_sep RtfContainer parent concode_elem_sep RtfAttributes attrib concode_elem_sep int idCounter concode_elem_sep boolean closed concode_elem_sep Writer writer concode_elem_sep...
void function ( ) { writer . write ( "srini_string" ) ; }
13,856
obtains the name of the versioned module or informal unit . this data is read from the version information for the package . concode_field_sep String UNAVAILABLE concode_elem_sep String infoRelease concode_elem_sep String PROPERTY_TIMESTAMP concode_elem_sep String infoPackage concode_elem_sep String infoModule concode_...
String function ( ) { return infoModule ; }
13,857
the name of the indexfield to use as the default search field . the default is an empty string , which automatically searches all text fields . constraints : length : 1 - 64 pattern : a-z a-z0-9 _ concode_field_sep String options concode_elem_sep OptionStatus status concode_field_sep DefaultSearchFieldStatus withStatus...
void function ( String arg0 ) { this . options = arg0 ; }
13,858
returns a cursor over the entries key-value pairs in this map . the iterator is implemented as a cursor and it returns the same cursor instance on every call to iterator #next . to read the current key and value use the cursor 's public fields . an example is shown below . for intshortcursor c : intshortmap system.out....
Iterator < ObjectObjectCursor < KType , VType >> function ( ) { return map . iterator ( ) ; }
13,859
returns content formatted as a success message concode_field_sep String namespace concode_field_sep Text subduedHeading concode_elem_sep Text subduedHeading concode_elem_sep Text heading concode_elem_sep Text heading concode_elem_sep Text bonus concode_elem_sep Text bonus concode_elem_sep Text error concode_elem_sep Te...
Text function ( Object ... arg0 ) { return success ( Text . of ( arg0 ) ) ; }
13,860
returns true if the edge is top or bottom , and false otherwise . concode_field_sep RectangleEdge LEFT concode_elem_sep RectangleEdge RIGHT concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep RectangleEdge TOP concode_elem_sep RectangleEdge BOTTOM concode_field_sep double coordinate con...
boolean function ( final RectangleEdge arg0 ) { return ( arg0 == RectangleEdge . TOP || arg0 == RectangleEdge . BOTTOM ) ; }
13,861
sets the company id of this password policy rel . concode_field_sep PasswordPolicyRel _passwordPolicyRel concode_field_sep long getClassNameId concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoB...
void function ( long arg0 ) { _passwordPolicyRel . setCompanyId ( arg0 ) ; }
13,862
the name . concode_field_sep String name concode_elem_sep String arn concode_field_sep ScheduledInstancesIamInstanceProfile withArn concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ScheduledInstancesIamInstanceProfile clone concode_elem_sep void setArn conco...
void function ( String arg0 ) { this . name = arg0 ; }
13,863
appends a tag that indicates that an inlined quote section begins . concode_field_sep StringBuilder text concode_field_sep void appendCloseUnorderedListTag concode_elem_sep void appendLineItemTag concode_elem_sep void appendBrTag concode_elem_sep void appendOpenCiteTag concode_elem_sep void appendCloseHeaderTag concode...
void function ( String arg0 ) { StringBuilder loc0 = new StringBuilder ( "srini_string" ) ; if ( arg0 != null ) { loc0 . append ( "srini_string" = "srini_string" ) ; } loc0 . append ( "srini_string" ) ; text . append ( loc0 . toString ( ) ) ; }
13,864
read and return the next character . concode_field_sep String charsetName concode_elem_sep java.util.Locale usLocale concode_elem_sep Pattern EMPTY_PATTERN concode_elem_sep Scanner scanner concode_elem_sep Pattern WHITESPACE_PATTERN concode_elem_sep int position concode_elem_sep Pattern EVERYTHING_PATTERN concode_field...
char function ( ) { scanner . useDelimiter ( EMPTY_PATTERN ) ; String loc0 = scanner . next ( ) ; assert ( loc0 . length ( ) == 1 ) : "srini_string" + "srini_string" ; scanner . useDelimiter ( WHITESPACE_PATTERN ) ; char loc1 = loc0 . charAt ( 0 ) ; savePosition ( ) ; return loc1 ; }
13,865
draws the text given by the specified string , using this zoomgraphics ' current font and color . concode_field_sep double minY concode_elem_sep double minX concode_elem_sep int graphicsHeight concode_elem_sep double scale concode_elem_sep int graphicsWidth concode_elem_sep Graphics g concode_field_sep java.awt.Stroke ...
void function ( String [ ] arg0 , double arg1 , double arg2 , double arg3 , double arg4 ) { if ( g != null ) { g . setClip ( getX ( arg1 ) , getY ( arg2 ) , ( int ) ( arg3 * scale ) , ( int ) ( arg4 * scale ) ) ; drawStrings ( arg0 , arg1 , arg2 ) ; g . setClip ( 0 , 0 , graphicsWidth , graphicsHeight ) ; } }
13,866
sets the frost temperature concode_field_sep double dcbFrostTemperature concode_elem_sep byte dcbHeatState concode_elem_sep byte dcbWaterState concode_elem_sep byte address concode_elem_sep double dcbSetTemperature concode_elem_sep int dcbHoldTime concode_elem_sep Models dcbModel concode_elem_sep byte dcbState concode_...
byte [ ] function ( Command arg0 ) { byte [ ] loc0 = new byte [ 1 ] ; byte loc1 = ( ( DecimalType ) arg0 ) . byteValue ( ) ; if ( loc1 < 5 ) loc1 = 5 ; if ( loc1 > 18 ) loc1 = 18 ; loc0 [ 0 ] = ( byte ) loc1 ; return makePacket ( true , 17 , 1 , loc0 ) ; }
13,867
asserts that a condition is true . if not , throws an assertionerror with the given message . concode_field_sep PlaceHolder placeHolder concode_field_sep void fail concode_elem_sep void fail concode_elem_sep void assertEquals concode_elem_sep void assertEquals
void function ( String arg0 , boolean arg1 ) { assertTrue ( arg0 , arg1 , null , null ) ; }
13,868
called before a computerlauncher is asked to launch a connection with computer . this enables you to do some configurable checks to see if we want to bring this agent online or if there are considerations that would keep us from doing so . throwing abortexception would let you veto the launch operation . other thrown e...
void function ( Computer arg0 , TaskListener arg1 ) { }
13,869
get the xsd schema object for the sbdh document type of the passed document element local name . concode_field_sep ICommonsMap<String,ESBDHDocumentType> s_aLocalName2DocType concode_elem_sep SBDHDocumentTypes s_aInstance concode_field_sep ESBDHDocumentType getDocumentTypeOfLocalName concode_elem_sep Class<?> getImpleme...
Schema function ( @ Nullable final String arg0 , @ Nullable final ClassLoader arg1 ) { final ESBDHDocumentType loc0 = getDocumentTypeOfLocalName ( arg0 ) ; return loc0 == null ? null : loc0 . getSchema ( arg1 ) ; }
13,870
two rows are equal if they contain the same pairs in the same order . concode_field_sep int rowNumber concode_elem_sep boolean wasReversed concode_elem_sep List<ExpandedPair> pairs concode_field_sep int getRowNumber concode_elem_sep boolean isEquivalent concode_elem_sep List<ExpandedPair> getPairs concode_elem_sep int ...
boolean function ( Object arg0 ) { if ( ! ( arg0 instanceof ExpandedRow ) ) { return false ; } ExpandedRow loc0 = ( ExpandedRow ) arg0 ; return this . pairs . equals ( loc0 . getPairs ( ) ) && wasReversed == loc0 . wasReversed ; }
13,871
creates a processor which sets the body of the out message to the value of the expression concode_field_sep PlaceHolder placeHolder concode_field_sep Processor removeHeader concode_elem_sep Processor setProperty concode_elem_sep Processor removeProperties concode_elem_sep Processor removeProperties concode_elem_sep Pro...
Processor function ( final Expression arg0 ) { return new Processor ( ) { public void process ( Exchange arg1 ) { Object loc0 = arg0 . evaluate ( arg1 , Object . class ) ; arg1 . getOut ( ) . setBody ( loc0 ) ; } @ Override public String toString ( ) { return "srini_string" + arg0 + "srini_string" ; } } ; }
13,872
true if logging is on , false if logging is off . concode_field_sep String bucketName concode_elem_sep String lastFailureMessage concode_elem_sep Boolean loggingEnabled concode_elem_sep java.util.Date lastSuccessfulDeliveryTime concode_elem_sep java.util.Date lastFailureTime concode_elem_sep String s3KeyPrefix concode_...
Boolean function ( ) { return loggingEnabled ; }
13,873
returns the clazz . concode_field_sep Circular other concode_elem_sep String id concode_elem_sep Object anyEntity concode_elem_sep Class clazz concode_field_sep void setOther concode_elem_sep void setClazz concode_elem_sep Object getAnyEntity concode_elem_sep void setAnyEntity concode_elem_sep void setId concode_elem_s...
Class function ( ) { return clazz ; }
13,874
finish the rename operations : move all the intermediate files/directories from the tmp dir to the final targets . concode_field_sep PlaceHolder placeHolder concode_field_sep Path createTargetTmpDir concode_elem_sep void syncDiff concode_elem_sep boolean checkNoChange concode_elem_sep DiffInfo[] getDiffs concode_elem_s...
void function ( DiffInfo [ ] arg0 , DistributedFileSystem arg1 ) { Arrays . sort ( arg0 , DiffInfo . targetComparator ) ; for ( DiffInfo loc0 : arg0 ) { if ( loc0 . target != null ) { if ( ! arg1 . exists ( loc0 . target . getParent ( ) ) ) { arg1 . mkdirs ( loc0 . target . getParent ( ) ) ; } arg1 . rename ( loc0 . ge...
13,875
whether or not to use securerandom when generating a random sequence of bytes . concode_field_sep SecureRandom SECURE_RAND concode_elem_sep String prefix concode_elem_sep Boolean useSecureRandom concode_field_sep Random random concode_elem_sep String getPrefix concode_elem_sep void setPrefix concode_elem_sep String cre...
void function ( Boolean arg0 ) { this . useSecureRandom = arg0 ; }
13,876
returns the sql statement which updates a sakai session in the sakai_session table for a given session id . concode_field_sep String USAGE_SESSION_COLUMNS concode_elem_sep String MOST_RECENT_USAGE_SESSION_COLUMNS concode_field_sep String getSakaiSessionSql1 concode_elem_sep String getUpdateServerSakaiSessionSql concode...
String function ( ) { return "srini_string" ; }
13,877
this tests seed randomization concode_field_sep PlaceHolder placeHolder concode_field_sep void testPrivKeyTweakMul_1 concode_elem_sep void testPrivKeyTweakMul_2 concode_elem_sep void testSecKeyVerifyNeg concode_elem_sep void testSchnorrSign concode_elem_sep void testSecKeyVerifyPos concode_elem_sep void main concode_el...
void function ( ) { byte [ ] loc0 = BaseEncoding . base16 ( ) . lowerCase ( ) . decode ( "srini_string" . toLowerCase ( ) ) ; boolean loc1 = NativeSecp256k1 . randomize ( loc0 ) ; assertEquals ( loc1 , true , "srini_string" ) ; }
13,878
removes a inode from the bucket . concode_field_sep long sTtlIntervalMs concode_elem_sep long mTtlIntervalStartTimeMs concode_elem_sep Set<Inode<?>> mInodes concode_field_sep void addInode concode_elem_sep long getTtlIntervalMs concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Set<Inode<?>>...
void function ( Inode < ? > arg0 ) { mInodes . remove ( arg0 ) ; }
13,879
string representation concode_field_sep String TRXNAME_None concode_elem_sep boolean m_active concode_elem_sep Connection m_connection concode_elem_sep CCache<String,Trx> s_cache concode_elem_sep long m_startTime concode_elem_sep String m_trxName concode_elem_sep CLogger log concode_field_sep boolean rollback concode_e...
String function ( ) { StringBuffer loc0 = new StringBuffer ( "srini_string" ) ; loc0 . append ( getTrxName ( ) ) . append ( "srini_string" ) . append ( isActive ( ) ) . append ( "srini_string" ) ; return loc0 . toString ( ) ; }
13,880
returns true if this setting was persisted . concode_field_sep int FLAG_CLEAR_PREVIOUSLY_PERSISTED_SETTINGS concode_elem_sep int DOWNLOAD_BANDWIDTH concode_elem_sep int set concode_elem_sep int DEFAULT_INITIAL_WINDOW_SIZE concode_elem_sep int UPLOAD_BANDWIDTH concode_elem_sep int CLIENT_CERTIFICATE_VECTOR_SIZE concode_...
boolean function ( int arg0 ) { int loc0 = 1 << arg0 ; return ( persisted & loc0 ) != 0 ; }
13,881
returns the real path of the given uri . if the given uri is a content : / / uri , the real path is retrieved from the media store . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String getDataColumn concode_elem_sep String getRealPathFromURI_API11_And_Above concode_elem_sep boolean i...
String function ( String arg0 , CordovaInterface arg1 ) { return FileHelper . getRealPath ( Uri . parse ( arg0 ) , arg1 ) ; }
13,882
sets the value of the servicedigitalidentity property . concode_field_sep DigitalIdentityListType serviceDigitalIdentity concode_elem_sep String serviceStatus concode_elem_sep ServiceSupplyPointsType serviceSupplyPoints concode_elem_sep NonEmptyMultiLangURIListType tspServiceDefinitionURI concode_elem_sep ExtensionsLis...
void function ( DigitalIdentityListType arg0 ) { this . serviceDigitalIdentity = arg0 ; }
13,883
return the set of names that are accepted by this filter . if this filter accepts all attribute names , a zero length array will be returned . concode_field_sep HashSet<String> names concode_elem_sep long serialVersionUID concode_field_sep boolean isNotificationEnabled concode_elem_sep void addAttribute concode_elem_se...
String [ ] function ( ) { synchronized ( names ) { return names . toArray ( new String [ names . size ( ) ] ) ; } }
13,884
get the results concode_field_sep int nrOfResultsPerPage concode_elem_sep int nrOfResults concode_elem_sep long serialVersionUID concode_elem_sep long qTime concode_elem_sep StringBuffer sb concode_elem_sep String info concode_field_sep int getResultsPerPage concode_elem_sep void setBuffer concode_elem_sep void setTota...
StringBuffer function ( ) { return sb ; }
13,885
access args property . concode_field_sep Map args concode_elem_sep String CURRENTLY_SELECTED_KEY concode_elem_sep PlugInConfig plugIn concode_elem_sep String name concode_elem_sep String description concode_elem_sep PropertyDescriptor[] pds concode_field_sep void setName concode_elem_sep PropertyDescriptor getPropertyD...
Map function ( ) { return args ; }
13,886
remove a transmission submitted to this channel concode_field_sep double requestedBandwidth concode_elem_sep List<Node> nodes concode_elem_sep double previousTime concode_elem_sep int srcId concode_elem_sep int dstId concode_elem_sep List<Link> links concode_elem_sep LinkedList<Transmission> completed concode_elem_sep ...
void function ( Transmission arg0 ) { inTransmission . remove ( arg0 ) ; }
13,887
gets the ticket identifiers . concode_field_sep long serialVersionUID concode_elem_sep Integer id concode_elem_sep Employee employee concode_elem_sep Customer customer concode_elem_sep List<TicketIdentifier> ticketIdentifiers concode_field_sep void setCustomer concode_elem_sep void setEmployee concode_elem_sep void set...
List < TicketIdentifier > function ( ) { return ticketIdentifiers ; }
13,888
sets the value of the name property . concode_field_sep String capital concode_elem_sep String name concode_elem_sep Currency currency concode_elem_sep int population concode_field_sep int getPopulation concode_elem_sep Currency getCurrency concode_elem_sep String getName concode_elem_sep String getCapital concode_elem...
void function ( String arg0 ) { this . name = arg0 ; }
13,889
equivalent to range #upperendpoint except that value #positve_infinity is returned if the range does nothave a defined upper bound . concode_field_sep Comparator<BoundType> UPPER_BOUND_COMPARATOR concode_elem_sep Comparator<BoundType> LOWER_BOUND_COMPARATOR concode_field_sep int compareToUpper concode_elem_sep RangeTok...
Value function ( Range < Value > arg0 ) { if ( ! arg0 . hasUpperBound ( ) ) { return Value . POSITIVE_INFINITY ; } else { return arg0 . upperEndpoint ( ) ; } }
13,890
gets the value of the targets property . concode_field_sep List<Source> sources concode_elem_sep MorphMethodType method concode_elem_sep List<InputLocal> inputs concode_elem_sep List<Extra> extras concode_elem_sep String source concode_elem_sep Morph.Targets targets concode_field_sep void setMethod concode_elem_sep voi...
Morph . Targets function ( ) { return targets ; }
13,891
passes the encountered failure to the receiver if the attempt has failed ; otherwisedoes nothing . concode_field_sep Result<Object> FAILURE concode_elem_sep Throwable failure concode_elem_sep Result<Object> ABSENT concode_elem_sep T value concode_field_sep Result<T> ifSucceededBind concode_elem_sep Result<V> ifSucceede...
Result < T > function ( @ NonNull final Receiver < ? super Throwable > arg0 ) { if ( failure != null ) { arg0 . accept ( failure ) ; } return this ; }
13,892
this method calls object #tostring on the given object , unless theobject is an array . in that case , it will use the #arraytostring object method to create a string representation of the array that includes all contained elements . concode_field_sep PlaceHolder placeHolder concode_field_sep String arrayToString conco...
String function ( Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } if ( arg0 . getClass ( ) . isArray ( ) ) { return arrayToString ( arg0 ) ; } return arg0 . toString ( ) ; }
13,893
returns the current position of this module in the global list . the position is computed by comparing all positions of all dependent subsystem modules . concode_field_sep Log LOGGER concode_elem_sep int position concode_elem_sep PackageState state concode_elem_sep ArrayList dependSubsystems concode_field_sep ArrayList...
int function ( ) { return this . position ; }
13,894
sets the selected content include path to the specified path . concode_field_sep String selectedIncludePath concode_field_sep String getSelectedIncludePath concode_elem_sep void navigationPathChange
void function ( String arg0 ) { this . selectedIncludePath = arg0 ; }
13,895
provides the delay of this time event task . concode_field_sep double duration concode_elem_sep TimerTask timerTask concode_elem_sep long startTime concode_elem_sep String id concode_field_sep void setTimerTask concode_elem_sep String getId concode_elem_sep long getStartTime concode_elem_sep TimerTask getTimerTask
double function ( ) { return duration ; }
13,896
the world position of the body . avoid creating bodies at the origin since this can lead to many overlapping shapes . concode_field_sep Object userData concode_elem_sep float gravityScale concode_elem_sep float linearDamping concode_elem_sep float angularDamping concode_elem_sep boolean active concode_elem_sep boolean ...
Vec2 function ( ) { return position ; }
13,897
this method sending request databasehelper and deleting the loanrepayment with loanid from loanrepayment_table and again loading list of loanrepayment from database . concode_field_sep BaseApiManager mBaseApiManager concode_elem_sep DatabaseHelperLoan mDatabaseHelperLoan concode_field_sep Observable<LoanWithAssociation...
Observable < List < LoanRepaymentRequest >> function ( int arg0 ) { return mDatabaseHelperLoan . deleteAndUpdateLoanRepayments ( arg0 ) ; }
13,898
the total number of entities converted during eager evolution . concode_field_sep int nRead concode_elem_sep int nConverted concode_field_sep void add concode_elem_sep int getNRead
int function ( ) { return nConverted ; }
13,899
change state if agent logs out . concode_field_sep AsteriskServerImpl server concode_elem_sep Map<String,AsteriskAgentImpl> ringingAgents concode_elem_sep Log logger concode_elem_sep Map<String,AsteriskAgentImpl> agents concode_field_sep void handleAgentCallbackLoginEvent concode_elem_sep void updateAgentState concode_...
void function ( AgentLogoffEvent arg0 ) { AsteriskAgentImpl loc0 = getAgentByAgentId ( "srini_string" + arg0 . getAgent ( ) ) ; if ( loc0 == null ) { logger . error ( "srini_string" + arg0 . getAgent ( ) + "srini_string" + agents . values ( ) . toString ( ) ) ; return ; } loc0 . updateState ( AgentState . AGENT_LOGGEDO...