code
stringlengths
20
663
nl
stringlengths
68
7.19k
void function ( ) { logger . info ( "srini_string" , this . getClass ( ) . getSimpleName ( ) , config . getCallbackPort ( ) ) ; networkService = new BinRpcNetworkService ( callbackReceiver ) ; networkServiceThread = new Thread ( networkService ) ; networkServiceThread . start ( ) ; }
starts the server threads . concode_field_sep BinRpcNetworkService networkService concode_elem_sep HomematicCallbackReceiver callbackReceiver concode_elem_sep Logger logger concode_elem_sep HomematicConfig config concode_elem_sep Thread networkServiceThread concode_field_sep void shutdown
String function ( String arg0 , CordovaInterface arg1 ) { String loc0 = null ; Uri loc1 = Uri . parse ( arg0 ) ; if ( arg0 . startsWith ( "srini_string" ) ) { loc0 = arg1 . getActivity ( ) . getContentResolver ( ) . getType ( loc1 ) ; } else { loc0 = getMimeTypeForExtension ( loc1 . getPath ( ) ) ; } return loc0 ; }
returns the mime type of the data specified by the given uri string . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String stripFileProtocol concode_elem_sep String getRealPath concode_elem_sep String getRealPath concode_elem_sep String getMimeTypeForExtension concode_elem_sep InputSt...
Command function ( TestSynth arg0 , Table arg1 ) { return new Command ( arg0 , CREATE_TABLE , arg1 ) ; }
create a create table command . concode_field_sep int DELETE concode_elem_sep int DROP_INDEX concode_elem_sep Column[] columns concode_elem_sep Value[] values concode_elem_sep int CREATE_TABLE concode_elem_sep int type concode_elem_sep int CONNECT concode_elem_sep Result result concode_elem_sep HashMap<String,Table> ta...
void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; }
called whenever the osgi framework stops our bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep Version getVersion concode_elem_sep void start concode_elem_sep BundleContext getContext
void function ( String arg0 ) { this . align = arg0 ; }
sets the value of the align property . concode_field_sep Layout layout concode_elem_sep String onValue concode_elem_sep String mapping concode_elem_sep List<Address> address concode_elem_sep String styling concode_elem_sep String offValue concode_elem_sep String flavour concode_elem_sep Boolean bindClickToWidget concod...
int function ( ) { return this . maxattempts ; }
getter for maxattempts concode_field_sep String stickySessionPath concode_elem_sep String stickySessionCookie concode_elem_sep String stickySessionPath concode_elem_sep int maxattempts concode_elem_sep boolean stickySession concode_elem_sep boolean stickySessionForce concode_elem_sep boolean stickySession concode_elem_...
PsiShortNamesCache function ( Project arg0 ) { return ServiceManager . getService ( arg0 , PsiShortNamesCache . class ) ; }
return the composite short names cache , uniting all short name cache instances registered via extensions . concode_field_sep ExtensionPointName<PsiShortNamesCache> EP_NAME concode_field_sep PsiField[] getFieldsByName concode_elem_sep PsiClass[] getClassesByName concode_elem_sep String[] getAllClassNames concode_elem_s...
BigDecimal function ( ) { return lastInstallmentAmount ; }
gets the value of the lastinstallmentamount property . concode_field_sep BigInteger remainingPlanTerm concode_elem_sep XMLGregorianCalendar lastInstallmentDueDate concode_elem_sep BigDecimal otherCharges concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal lastInstallmentAmount concode_elem_sep XMLGregori...
Session function ( Database arg0 ) { Session loc0 = new Session ( arg0 , arg0 . getUserManager ( ) . getSysUser ( ) , false , false , 0 , null , 0 ) ; loc0 . isProcessingScript = true ; return loc0 ; }
retrieves a new sys session . concode_field_sep Session sysLobSession concode_elem_sep long sessionIdCount concode_elem_sep LongKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep void removeSession concode_elem_sep Session newSysSession concode_elem_sep void resetLoggedSchemas concode_elem_sep ...
double function ( double [ ] arg0 , int arg1 , boolean arg2 ) { if ( arg1 > arg0 . length ) { arg1 = arg0 . length ; } int loc0 ; if ( arg2 ) { loc0 = arg1 ; } else { loc0 = arg0 . length - arg1 ; } double loc1 = getOrderedValue ( arg0 , loc0 ) ; return loc1 ; }
get the n-th value in the array after sorted concode_field_sep PlaceHolder placeHolder concode_field_sep double getOrderedValue concode_elem_sep int getMinValueIndex concode_elem_sep void locate concode_elem_sep void swap concode_elem_sep int getMaxValueIndex
IdentValue function ( CSSName arg0 ) { PropertyDeclaration loc0 = propertyByName ( arg0 ) ; return ( loc0 == null ? null : loc0 . asIdentValue ( ) ) ; }
gets the ident attribute of the cascadedstyle object concode_field_sep Map cascadedProperties concode_elem_sep String fingerprint concode_elem_sep CascadedStyle emptyCascadedStyle concode_field_sep PropertyDeclaration createLayoutPropertyDeclaration concode_elem_sep java.util.Iterator getCascadedPropertyDeclarations co...
Object function ( Object arg0 ) { if ( ! ( arg0 instanceof String ) ) { throw new EncoderException ( "srini_string" ) ; } return soundex ( ( String ) arg0 ) ; }
encodes an object using the refined soundex algorithm . this method is provided in order to satisfy the requirements of the encoder interface , and will throw an encoderexception if the supplied object is not of type java.lang.string . concode_field_sep String US_ENGLISH_MAPPING_STRING concode_elem_sep char[] soundexMa...
String function ( int arg0 ) { NumberFormat loc0 = NumberFormat . getNumberInstance ( ) ; loc0 . setMaximumFractionDigits ( arg0 ) ; Triple < Double , Integer , Integer > loc1 = getRecallInfo ( ) ; return loc0 . format ( loc1 . first ( ) ) + "srini_string" + loc1 . second ( ) + "srini_string" + ( loc1 . second ( ) + lo...
returns a string summarizing precision that will print nicely . concode_field_sep int[] fnCount concode_elem_sep L negLabel concode_elem_sep int[] tpCount concode_elem_sep int negIndex concode_elem_sep int[] fpCount concode_elem_sep Index<L> labelIndex concode_field_sep Triple<Double,Integer,Integer> getRecallInfo conc...
int function ( T [ ] arg0 , Comparator < T > arg1 , int arg2 ) { int loc0 = 0 ; for ( int loc1 = 1 ; loc1 < arg2 ; loc1 ++ ) { int loc2 = arg1 . compare ( arg0 [ loc1 ] , arg0 [ loc0 ] ) ; if ( loc2 > 0 ) { loc0 = loc1 ; } } return loc0 ; }
faster than quickselect for n = max concode_field_sep QuickSelect quickSelect concode_elem_sep Select instance concode_field_sep Select instance concode_elem_sep T select concode_elem_sep int selectIndex concode_elem_sep int fastMin
void function ( final T arg0 ) { im . actor . runtime . Runtime . postToMainThread ( ( ) -> notifyInMainThread ( arg0 ) ) ; }
performing notification to subscribers concode_field_sep String name concode_elem_sep ArrayList<ValueChangedListener<T>> listeners concode_field_sep String getName concode_elem_sep void subscribe concode_elem_sep void subscribe concode_elem_sep void unsubscribe concode_elem_sep T get concode_elem_sep void notifyInMainT...
EChange function ( ) { return m_aMembers . removeAll ( ) ; }
remove all members . concode_field_sep CSSSourceLocation m_aSourceLocation concode_elem_sep ICommonsList<String> m_aMembers concode_field_sep ECSSVersion getMinimumCSSVersion concode_elem_sep EChange removeMember concode_elem_sep EChange removeMember concode_elem_sep CSSExpressionMemberLineNames addMember concode_elem_...
String function ( String arg0 , String arg1 ) { sortedHeaders = null ; return headers . put ( arg0 , arg1 ) ; }
sets a header field value based on its name . concode_field_sep String path concode_elem_sep LinkedHashMap<String,String> sortedHeaders concode_elem_sep LinkedHashMap<String,String> sortedParams concode_elem_sep String method concode_elem_sep String body concode_elem_sep String version concode_elem_sep LinkedHashMap<St...
boolean function ( ) { return player != null && player . isLoading ( ) ; }
check if exo-player is playing videos . concode_field_sep DefaultBandwidthMeter BANDWIDTH_METER concode_elem_sep MappingTrackSelector trackSelector concode_elem_sep Handler mainHandler concode_elem_sep String PACKAGE_NAME concode_elem_sep ExoPlayer player concode_elem_sep EventLogger eventLogger concode_elem_sep boolea...
void function ( String arg0 ) { if ( isWildCardACLValue ( arg0 ) ) { throw new IllegalArgumentException ( "srini_string" + arg0 + "srini_string" ) ; } if ( ! isAllAllowed ( ) ) { users . remove ( arg0 ) ; } }
remove user from the names of users allowed for this service . concode_field_sep int INITIAL_CAPACITY concode_elem_sep String WILDCARD_ACL_VALUE concode_elem_sep Collection<String> groups concode_elem_sep Groups groupsMapping concode_elem_sep Collection<String> users concode_elem_sep boolean allAllowed concode_field_se...
AlphaTransform function ( ) { return cxform ; }
the color transform may be null concode_field_sep int frameNumber concode_elem_sep Instance instance concode_elem_sep AlphaTransform cxform concode_elem_sep Actions[] clipActions concode_elem_sep boolean isAlteration concode_elem_sep String name concode_elem_sep int ratio concode_elem_sep boolean isReplacement concode_...
double function ( String arg0 ) { double loc0 = Double . parseDouble ( arg0 ) ; return ( ( loc0 - 1d ) * 100d ) / MAX_IP_CONTROL_VOLUME ; }
return the percentage of the max volume levelfrom the value received in the ipcontrol response . concode_field_sep double MIN_DB_VOLUME concode_elem_sep String IP_CONTROL_VOLUME_DEFAULT_VALUE concode_elem_sep DecimalFormat FORMATTER concode_elem_sep String IP_CONTROL_VOLUME_FORMAT concode_elem_sep double MAX_IP_CONTROL...
boolean function ( ServletContext arg0 ) { String loc0 = arg0 . getInitParameter ( EXPOSE_WEB_APP_ROOT_PARAM ) ; return ( loc0 == null || Boolean . valueOf ( loc0 ) ) ; }
return whether to expose the web app root system property , checking the corresponding servletcontext init parameter . concode_field_sep String EXPOSE_WEB_APP_ROOT_PARAM concode_elem_sep String CONFIG_LOCATION_PARAM concode_elem_sep String REFRESH_INTERVAL_PARAM concode_field_sep void shutdownLogging concode_elem_sep v...
Map < String , String > function ( ) { return Collections . emptyMap ( ) ; }
returns any metadata collected through metadata expressions while this context was reading the json events from the json document . concode_field_sep PlaceHolder placeHolder concode_field_sep String getCurrentParentElement concode_elem_sep boolean testExpression concode_elem_sep boolean testExpression concode_elem_sep ...
void function ( int arg0 , String arg1 ) { errorCodes = ( int [ ] ) ArrayUtil . resizeArray ( errorCodes , errorCodes . length + 1 ) ; errorKeys = ( String [ ] ) ArrayUtil . resizeArray ( errorKeys , errorKeys . length + 1 ) ; errorCodes [ errorCodes . length - 1 ] = arg0 ; errorKeys [ errorKeys . length - 1 ] = arg1 ;...
adds the error code and the key to the list of errors . this list is populated during construction or addition of elements and is used outside this class to act upon the errors . concode_field_sep String fileName concode_elem_sep boolean resource concode_elem_sep String[] errorKeys concode_elem_sep Properties stringPro...
String function ( Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; }
convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep String name concode_elem_sep List<String> photoUrls concode_elem_sep List<Tag> tags concode_elem_sep Category category concode_elem_sep Long id concode_elem_sep String status concode_field_sep void setName c...
void function ( ) { prepareStateTest ( ) ; Entry loc0 = factory . createEntry ( ) ; region . getVertices ( ) . add ( loc0 ) ; assertEquals ( EntryKind . INITIAL , loc0 . getKind ( ) ) ; validator . validate ( loc0 , diagnostics , new HashMap < Object , Object > ( ) ) ; assertWarning ( diagnostics , ISSUE_INITIAL_ENTRY_...
an initial entry should have an outgoing transition concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphJavaValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart state...
void function ( int arg0 , Collection < Tuple > arg1 , List < Object > arg2 ) { emitDirect ( arg0 , Utils . DEFAULT_STREAM_ID , arg1 , arg2 ) ; }
emits a tuple directly to the specified task id on the default stream . if the target bolt does not subscribe to this bolt using a direct grouping , the tuple will not be sent . if the specified output stream is not declared as direct , or the target bolt subscribes with a non-direct grouping , an error will occur at r...
void function ( MCMPConfig arg0 ) { final MCMPConfig . AdvertiseConfig loc0 = arg0 . getAdvertiseConfig ( ) ; if ( loc0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } MCMPAdvertiseTask . advertise ( container , loc0 , xnioWorker ) ; }
start advertising a mcmp handler . concode_field_sep ModClusterContainer container concode_elem_sep boolean useAlias concode_elem_sep boolean queueNewRequests concode_elem_sep int requestQueueSize concode_elem_sep XnioSsl xnioSsl concode_elem_sep int maxConnections concode_elem_sep long healthCheckInterval concode_elem...
Map < String , Object > function ( PropertySource < ? > arg0 ) { return new PropertySourcesBinder ( arg0 ) . extractAll ( "srini_string" ) ; }
extract the raw content based on the specified propertysource . concode_field_sep Mode mode concode_elem_sep T properties concode_field_sep PropertySource<?> toPropertySource concode_elem_sep void postProcessContent concode_elem_sep void copyIfSet concode_elem_sep PropertySource<?> toSimplePropertySource concode_elem_s...
java . lang . String function ( ) { return designadorTV ; }
gets the designadortv value for this validacaocertificacaoin . concode_field_sep java.lang.String designadorTV concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_field_sep org.apache.axis.description.TypeDesc getT...
void function ( Any arg0 ) { throw new NO_IMPLEMENT ( ) ; }
this method is deprecated , #set_result same parameter . concode_field_sep PlaceHolder placeHolder concode_field_sep void set_exception concode_elem_sep Context ctx concode_elem_sep void set_result concode_elem_sep String op_name concode_elem_sep void arguments concode_elem_sep void except concode_elem_sep void params ...
String function ( String arg0 , Object [ ] arg1 , Locale arg2 ) { return formatMessage ( arg0 , arg1 , arg2 ) ; }
render the given default message string . the default message is passed in as specified by the caller and can be rendered into a fully formatted default message shown to the user . the default implementation passes the string to formatmessage , resolving any argument placeholders found in them . subclasses may override...
org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; }
get custom serializer concode_field_sep java.lang.String help concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String localeDescription concode_elem_sep java.lang.String label concode_elem_sep com.netsuite.webservices.platform.common_2014_2.types.Language...
void function ( String arg0 ) { HashSet < String > loc0 ; loc0 = new HashSet < String > ( ) ; loc0 . add ( arg0 ) ; m_Ignored . put ( arg0 , loc0 ) ; }
adds the given display name of a property to the ignore list . can either be a complete path e.g. __ root __ . options or only a property name e.g. options . in the latter case it matches all occurences of this display name . concode_field_sep Hashtable<Object,HashSet<String>> m_Ignored concode_elem_sep Hashtable<Objec...
DataAccessException function ( String arg0 , SQLException arg1 ) { return Tools . translate ( arg0 , arg1 ) ; }
internal convenience method concode_field_sep long serialVersionUID concode_field_sep boolean declaresTables concode_elem_sep void bind concode_elem_sep boolean declaresWindows concode_elem_sep Configuration configuration concode_elem_sep void toSQL concode_elem_sep boolean declaresCTE concode_elem_sep boolean generate...
boolean function ( String arg0 ) { return same ( arg0 , Call_ID ) || same ( arg0 , Call_ID_short ) ; }
whether str is a call-id field concode_field_sep String Route concode_elem_sep String Via_short concode_elem_sep String Authentication_Info concode_elem_sep String CSeq concode_elem_sep String Require concode_elem_sep String Unsupported concode_elem_sep String To_short concode_elem_sep String User_Agent concode_elem_se...
void function ( boolean arg0 ) { bReadOnly = arg0 ; }
method declaration concode_field_sep Database dDatabase concode_elem_sep HsqlArrayList tTransaction concode_elem_sep int iNestedOldTransIndex concode_elem_sep int iId concode_elem_sep jdbcConnection intConnection concode_elem_sep boolean script concode_elem_sep boolean bAutoCommit concode_elem_sep boolean bReadOnly con...
void function ( Object arg0 ) { if ( myHost != null ) { myHost . returnData ( arg0 ) ; } }
used to communicate a return object from a plugin tool to the main whitebox user-interface . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive...
double function ( final Graphics2D arg0 ) { final Size2D loc0 = this . textBlock . calculateDimensions ( arg0 ) ; return this . interiorGap . extendHeight ( loc0 . getHeight ( ) ) ; }
returns the height of the text box . concode_field_sep Paint shadowPaint concode_elem_sep double shadowXOffset concode_elem_sep double shadowYOffset concode_elem_sep Paint outlinePaint concode_elem_sep Stroke outlineStroke concode_elem_sep Paint backgroundPaint concode_elem_sep long serialVersionUID concode_elem_sep Te...
String function ( ) { return "srini_string" + this . id + "srini_string" + totalTime ( ) ; }
return a short description of the total running time . concode_field_sep boolean running concode_elem_sep int taskCount concode_elem_sep String currentTaskName concode_elem_sep TaskInfo lastTaskInfo concode_elem_sep long totalTimeNS concode_elem_sep long startTimeNS concode_elem_sep List<TaskInfo> taskList concode_elem...
void function ( ) { count = 0 ; indices = new HashMap < String , Integer > ( ) ; }
remove all entries . concode_field_sep HashMap<String,Integer> indices concode_elem_sep String[] keys concode_elem_sep String[] values concode_elem_sep int count concode_field_sep void sortKeysReverse concode_elem_sep Iterable<String> keys concode_elem_sep Iterable<String> values concode_elem_sep String[] valueArray co...
int function ( ) { int loc0 = 0 ; for ( Host loc1 : getHostList ( ) ) { if ( loc1 . isFailed ( ) ) { loc0 ++ ; } } return loc0 ; }
gets the current number of failed machines . concode_field_sep int OTHER_POLICY_DIFFERENT_RATING concode_elem_sep int SPACE_SHARED concode_elem_sep String os concode_elem_sep double timeZone concode_elem_sep int ADVANCE_RESERVATION concode_elem_sep double costPerBw concode_elem_sep int OTHER_POLICY_SAME_RATING concode_...
boolean function ( XAResource arg0 ) { if ( ! ( arg0 instanceof JDBCXAResource ) ) { return false ; } return xaDataSource == ( ( JDBCXAResource ) arg0 ) . getXADataSource ( ) ; }
stub . see implementation comment in the method for why this is not implemented yet . concode_field_sep boolean originalAutoCommitMode concode_elem_sep int XA_STATE_INITIAL concode_elem_sep int XA_STATE_DISPOSED concode_elem_sep int XA_STATE_PREPARED concode_elem_sep JDBCXADataSource xaDataSource concode_elem_sep JDBCC...
void function ( BigDecimal arg0 , Currency arg1 ) { logPurchase ( arg0 , arg1 , null ) ; }
deprecated . please use appeventslogger instead . concode_field_sep String EVENT_NAME_LOG_CONVERSION_PIXEL concode_elem_sep String EVENT_PARAMETER_PIXEL_ID concode_elem_sep AppEventsLogger appEventsLogger concode_elem_sep String EVENT_PARAMETER_PIXEL_VALUE concode_field_sep InsightsLogger newLogger concode_elem_sep Ins...
String function ( ) { return name ; }
prints out the name of the type . concode_field_sep long serialVersionUID concode_elem_sep DiscreteVariableType ORDINAL concode_elem_sep String name concode_elem_sep int nextOrdinal concode_elem_sep DiscreteVariableType[] TYPES concode_elem_sep int ordinal concode_elem_sep DiscreteVariableType NOMINAL concode_field_sep...
String function ( ) { if ( address == null && inet_address != null ) address = inet_address . getHostAddress ( ) ; return address ; }
gets a string representation of the object concode_field_sep String address concode_elem_sep String localIpAddress concode_elem_sep InetAddress inet_address concode_field_sep InetAddress getInetAddress concode_elem_sep void init concode_elem_sep boolean equals concode_elem_sep Object clone concode_elem_sep IpAddress ge...
void function ( String arg0 ) { if ( arg0 . equalsIgnoreCase ( ID ) ) { id = null ; } else { throw new IOException ( "srini_string" + "srini_string" ) ; } }
delete the attribute value . concode_field_sep String IDENT concode_elem_sep String ID concode_elem_sep String NAME concode_elem_sep UniqueIdentity id concode_field_sep void encode concode_elem_sep void set concode_elem_sep String getName concode_elem_sep Object get concode_elem_sep Enumeration<String> getElements conc...
int function ( String arg0 ) { return 1 ; }
estimates the number of distinct field values in the aggregation , which is always 1 . concode_field_sep Plan p concode_elem_sep Map<String,String> schemaFields concode_elem_sep Collection<String> groupByFields concode_elem_sep Schema schema concode_elem_sep Map<String,String> schemaAggs concode_field_sep Schema schema...
void function ( java . math . BigInteger arg0 ) { this . id = arg0 ; }
sets the id value for this objectref . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.math.BigInteger id concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_field_sep void setName concode_elem_sep or...
void function ( int arg0 , int arg1 ) { int loc0 = arg1 * rowSize + ( arg0 >> 5 ) ; bits [ loc0 ] |= 1 << ( arg0 & 0x1f ) ; }
sets the given bit to true . concode_field_sep int width concode_elem_sep int[] bits concode_elem_sep int height concode_elem_sep int rowSize concode_field_sep void setRegion concode_elem_sep int getHeight concode_elem_sep int[] getTopLeftOnBit concode_elem_sep int hashCode concode_elem_sep boolean get concode_elem_sep...
String function ( ) { return store . getLabel ( id ) ; }
gets a textual label for this instance , for use in uis . concode_field_sep GUID typeId concode_elem_sep GUID roleTransactionId concode_elem_sep PDStore store concode_elem_sep GUID id concode_field_sep void setName concode_elem_sep void setTransaction concode_elem_sep void setTransaction concode_elem_sep PDStore getSto...
void function ( int arg0 ) { Memory . pokeShort ( buffer , INDEX_PORT , ( short ) arg0 , ByteOrder . BIG_ENDIAN ) ; }
set the request 's port number . concode_field_sep int RETURN_SUCCESS concode_elem_sep int INDEX_PORT concode_elem_sep int INDEX_COMMAND concode_elem_sep int BUFFER_LENGTH concode_elem_sep int COMMAND_CONNECT concode_elem_sep int RETURN_CANNOT_CONNECT_TO_IDENTD concode_elem_sep int REPLY_LENGTH concode_elem_sep int SOC...
void function ( StringBuffer arg0 , String arg1 , String arg2 , String arg3 , String arg4 ) { arg0 . append ( arg1 ) ; arg0 . append ( arg3 ) ; arg0 . append ( arg2 ) ; arg0 . append ( arg4 ) ; }
appends a pair of string to the string buffer , using the separator between and terminator at the end concode_field_sep PlaceHolder placeHolder concode_field_sep String arrayToString concode_elem_sep int rTrimSize concode_elem_sep String[] split concode_elem_sep String getList concode_elem_sep String getList concode_el...
List function ( ) { return cityDictionary ; }
gets the citydictionary of cities . concode_field_sep ArrayList cityDictionary concode_elem_sep Log log concode_elem_sep String DATA_RESOURCE_PATH concode_elem_sep Comparator LABEL_COMPARATOR concode_elem_sep boolean initialized concode_field_sep void init concode_elem_sep int compare concode_elem_sep ArrayList generat...
Number [ ] [ ] function ( double [ ] [ ] arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } int loc0 = arg0 . length ; Number [ ] [ ] loc1 = new Number [ loc0 ] [ ] ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { loc1 [ loc2 ] = createNumberArray ( arg0 [ loc2 ] ) ; } return loc1 ...
constructs an array of arrays of number objects from a corresponding structure containing double primitives . concode_field_sep PlaceHolder placeHolder concode_field_sep double calculateRowTotal concode_elem_sep Number[] createNumberArray concode_elem_sep KeyedValues getCumulativePercentages concode_elem_sep double cal...
HandlerMethodArgumentResolverComposite function ( List < ? extends HandlerMethodArgumentResolver > arg0 ) { if ( arg0 != null ) { for ( HandlerMethodArgumentResolver loc0 : arg0 ) { this . argumentResolvers . add ( loc0 ) ; } } return this ; }
add the given handlermethodargumentresolver s. concode_field_sep List<HandlerMethodArgumentResolver> argumentResolvers concode_elem_sep Map<MethodParameter,HandlerMethodArgumentResolver> argumentResolverCache concode_field_sep HandlerMethodArgumentResolverComposite addResolver concode_elem_sep void clear concode_elem_s...
Hashtable function ( ) { return ( storeTable ) ; }
gets the store table . concode_field_sep StoreTable storeTable concode_elem_sep Random random concode_elem_sep Effect cartEffect concode_elem_sep ArrayList purchasedList concode_field_sep String getItemString concode_elem_sep ArrayList getPurchasedList concode_elem_sep void setCartEffect concode_elem_sep String getTota...
void function ( String arg0 , List < String > arg1 ) { int loc0 = 0 ; for ( String loc1 : arg1 ) { preparedStatement . setString ( getIndex ( arg0 ) + loc0 , loc1 ) ; loc0 ++ ; } }
replace repeated indexes with the list of values . concode_field_sep PreparedStatement preparedStatement concode_elem_sep List<String> fields concode_field_sep void setLong concode_elem_sep PreparedStatement getPreparedStatement concode_elem_sep int getIndex concode_elem_sep void setInt
XMLObjectBuilderFactory function ( ) { if ( builderFactory == null ) { try { DefaultBootstrap . bootstrap ( ) ; } catch ( ConfigurationException loc0 ) { throw new RuntimeException ( "srini_string" ) ; } builderFactory = Configuration . getBuilderFactory ( ) ; } return builderFactory ; }
helper method providing factory for construction of saml messages . concode_field_sep XMLObjectBuilderFactory builderFactory concode_field_sep void setPeerContextParameters concode_elem_sep void setLocalContextParameters
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getEndpoint ( ) != null ) loc0 . append ( "srini_string" + getEndpoint ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; }
returns a string representation of this object ; useful for testing and debugging . concode_field_sep Endpoint endpoint concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep CreateEndpointResult clone concode_elem_sep Endpoint getEndpoint concode_elem_sep CreateEndpointResult withEndpoint conc...
String [ ] function ( ) { return getPortNames ( PORTNAMES_PATH , PORTNAMES_REGEXP , PORTNAMES_COMPARATOR ) ; }
get sorted array of serial ports in the system using default settings : search path windows - '' '' always ignored linux - '' / dev / '' solaris - '' / dev/term / '' macosx - '' / dev / '' regexp windows - '' '' linux - '' ttys | ttyusb | ttyacm | ttyama | rfcomm 0-9 1,3 '' solaris - '' 0-9 | a-z '' macosx - `` tty . s...
void function ( ) { new StrictXML ( new XMLDocument ( this . getClass ( ) . getResource ( "srini_string" ) ) ) ; }
strictxml rejects an invalid document using xsi : schemalocation . concode_field_sep PlaceHolder placeHolder concode_field_sep void rejectsInvalidXmlThrough concode_elem_sep void passesValidXmlWithNetworkProblems concode_elem_sep void validatesMultipleXmlsInThreads concode_elem_sep void passesValidXmlThrough concode_el...
String [ ] function ( ) { if ( fProgramArgs == null ) { return fgEmpty ; } return fProgramArgs ; }
returns the arguments to the javascript program . concode_field_sep String fClassToLaunch concode_elem_sep String[] fVMArgs concode_elem_sep Map fVMSpecificAttributesMap concode_elem_sep boolean fResume concode_elem_sep String[] fClassPath concode_elem_sep String fWorkingDirectory concode_elem_sep String[] fBootClassPa...
boolean function ( String arg0 ) { return ! standardPropNames . contains ( arg0 ) ; }
is this property a solr-standard property , or is it an extra property defined per-core by the user ? concode_field_sep ImmutableList<String> standardPropNames concode_elem_sep Properties originalExtraProperties concode_elem_sep String DEFAULT_EXTERNAL_PROPERTIES_FILE concode_elem_sep String CORE_ROLES concode_elem_sep...
ClassroomStudentDao function ( ) { return ( ClassroomStudentDao ) getBean ( "srini_string" ) ; }
returns a classroomstudentdao instance . concode_field_sep HibernateYschoolDaoFactory instance concode_elem_sep ApplicationContext context concode_elem_sep String beanName concode_field_sep SectionDao getSectionDao concode_elem_sep ExamSyncDao getExamSyncDao concode_elem_sep ExamTypeDao getExamTypeDao concode_elem_sep ...
ScopedProxyMode function ( ) { return this . scopedProxyMode ; }
get the proxy-mode to be applied to the scoped instance . concode_field_sep String scopeName concode_elem_sep ScopedProxyMode scopedProxyMode concode_field_sep void setScopeName concode_elem_sep String getScopeName concode_elem_sep void setScopedProxyMode
double function ( double val , int places ) { double scale = Math . pow ( 10 , places ) ; long iVal = Math . round ( val * scale ) ; return iVal / scale ; }
round to specified decimals concode_field_sep Logger logger concode_elem_sep File cfg concode_elem_sep boolean timeSet concode_elem_sep Properties props concode_elem_sep SimpleDateFormat sdf concode_field_sep double updateScale concode_elem_sep String pad concode_elem_sep void checkTime concode_elem_sep File getUSBFile...
String function ( String [ ] [ ] arg0 ) { for ( final String [ ] loc0 : arg0 ) { if ( DEST_DIR_OPT . equalsIgnoreCase ( loc0 [ 0 ] ) ) { return loc0 [ 1 ] ; } } return null ; }
return the destination directory for this javadoc run . concode_field_sep String DEST_DIR_OPT concode_field_sep String getCheckName concode_elem_sep void writeXdocsFooter concode_elem_sep String getPageName concode_elem_sep int compare concode_elem_sep void writeXdocsHeader concode_elem_sep boolean start concode_elem_s...
void function ( int arg0 ) { writer . print ( arg0 ) ; }
prints the given int . concode_field_sep String SPACES concode_elem_sep int javaLine concode_elem_sep int virtual_indent concode_elem_sep int TAB_WIDTH concode_elem_sep PrintWriter writer concode_elem_sep int indent concode_field_sep void pushIndent concode_elem_sep void printMultiLn concode_elem_sep void println conco...
ToStringCreator function ( String arg0 , Object arg1 ) { printFieldSeparatorIfNecessary ( ) ; this . styler . styleField ( this . buffer , arg0 , arg1 ) ; return this ; }
append a field value . concode_field_sep ToStringStyler DEFAULT_TO_STRING_STYLER concode_elem_sep StringBuilder buffer concode_elem_sep ToStringStyler styler concode_elem_sep boolean styledFirstField concode_elem_sep Object object concode_field_sep void printFieldSeparatorIfNecessary concode_elem_sep String toString
boolean function ( Priority arg0 ) { return ( ( threshold == null ) || arg0 . isGreaterOrEqual ( threshold ) ) ; }
check whether the message priority is below the appender 's threshold . if there is no threshold set , then the return value is always true . concode_field_sep Layout layout concode_elem_sep String THRESHOLD_OPTION concode_elem_sep Filter tailFilter concode_elem_sep String name concode_elem_sep Priority threshold conco...
Map < String , String > function ( ) { Map < String , String > loc0 = inheritableThreadLocal . get ( ) ; if ( loc0 != null ) { return new HashMap < String , String > ( loc0 ) ; } else { return null ; } }
return a copy of the current thread 's context map . returned value may be null . concode_field_sep InheritableThreadLocal<Map<String,String>> inheritableThreadLocal concode_field_sep String get concode_elem_sep void clear concode_elem_sep void setContextMap concode_elem_sep Map<String,String> childValue concode_elem_s...
String function ( ) { return metric ; }
indicates the metric name associated with the result . concode_field_sep String metric concode_elem_sep String tagValue concode_elem_sep String scope concode_elem_sep String namespace concode_elem_sep String tagKey concode_field_sep void setMetric concode_elem_sep void setTagKey concode_elem_sep String getNamespace con...
float function ( NumericGrid arg0 ) { return dotProduct ( arg0 , arg0 ) ; }
compute dot product between grid and itself . same as square of l2 norm concode_field_sep PlaceHolder placeHolder concode_field_sep void removeNegative concode_elem_sep void log concode_elem_sep float weightedSSD concode_elem_sep void divideBy concode_elem_sep void divideBy concode_elem_sep float sum concode_elem_sep f...
boolean function ( CharSequence arg0 , CharSequence arg1 ) { return ( arg0 == arg1 ) || ( arg0 != null && arg0 . equals ( arg1 ) ) ; }
returns true if a and b are equal , including if they are both null . note : in platform versions 1.1 and earlier , this method only worked well if both the arguments were instances of string . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isEmpty concode_elem_sep String join
FactorComparator < T > function ( String arg0 , int arg1 , Comparator < T > arg2 ) { if ( null == arg0 || arg0 . length ( ) == 0 || arg1 < 0 || null == arg2 ) { logger . error ( "srini_string" ) ; return null ; } return new FactorComparator < T > ( arg0 , arg1 , arg2 ) ; }
static function to generate an instance of the class . refer to the constructor for the param definitions . concode_field_sep Comparator<T> comparator concode_elem_sep String factorName concode_elem_sep int weight concode_elem_sep Logger logger concode_field_sep void updateWeight concode_elem_sep int compare concode_el...
long function ( ) { if ( running ) { return total + System . currentTimeMillis ( ) - startTime ; } else { return total ; } }
retrieves the accumulated time this object has spent running since it was last zeroed . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep void zero concode_elem_sep long currentElapsedTime concode_elem_sep void stop concode_el...
void function ( ) { if ( ! initialized ) throw new SecurityException ( "srini_string" + "srini_string" ) ; }
check if stack initialized concode_field_sep T[] stack concode_elem_sep int DEFAULT_CAPACITY concode_elem_sep int MAX_CAPACITY concode_elem_sep int topIndex concode_elem_sep boolean initialized concode_field_sep T pop concode_elem_sep void checkCapacity concode_elem_sep boolean isArrayFull concode_elem_sep void clear c...
boolean function ( ) { return array . length == 0 ; }
tests if this stack is empty . concode_field_sep String[] array concode_field_sep String pop concode_elem_sep int search concode_elem_sep String toString concode_elem_sep String push concode_elem_sep String peek
Builder function ( int arg0 ) { this . securePort = arg0 ; return this ; }
required . the port on which the ssl termination load balancer will listen for secure traffic . the secureport must be unique to the existing lb protocol/port combination . for example , port 443 . concode_field_sep int securePort concode_elem_sep String privateKey concode_elem_sep boolean secureTrafficOnly concode_ele...
Integer function ( ) { return userStatus ; }
user status concode_field_sep String password concode_elem_sep String phone concode_elem_sep String lastName concode_elem_sep Integer userStatus concode_elem_sep String username concode_elem_sep Long id concode_elem_sep String firstName concode_elem_sep String email concode_field_sep String getPhone concode_elem_sep vo...
void function ( ToBeEncryptedType . Element arg0 ) { this . element = arg0 ; }
sets the value of the element property . concode_field_sep ToBeEncryptedType.ElementContent elementContent concode_elem_sep String selector concode_elem_sep XMLToBeEncryptedNewType _new concode_elem_sep ToBeEncryptedType.Element element concode_elem_sep String encDataReference concode_field_sep XMLToBeEncryptedNewType ...
void function ( String arg0 , String arg1 , Throwable arg2 ) { if ( isTracing ( arg0 ) ) { arg1 = ( arg1 != null ) ? arg1 : "srini_string" ; Status loc0 = new Status ( IStatus . OK , PLUGIN_ID , IStatus . OK , arg1 , arg2 ) ; Bundle loc1 = Platform . getBundle ( PLUGIN_ID ) ; if ( loc1 != null ) Platform . getLog ( loc...
prints message to log if category matches / debug/tracefilter option . concode_field_sep int OK_DEBUG concode_elem_sep String TRACEFILTER_LOCATION concode_elem_sep int INFO_DEBUG concode_elem_sep int OK concode_elem_sep int INFO concode_elem_sep int ERROR concode_elem_sep int ERROR_DEBUG concode_elem_sep int WARNING co...
void function ( ) { HsqlArrayList loc0 = database . schemaManager . getAllTables ( ) ; for ( int loc1 = 0 , loc2 = loc0 . loc2 ( ) ; loc1 < loc2 ; loc1 ++ ) { Table loc3 = ( Table ) loc0 . get ( loc1 ) ; if ( loc3 . getTableType ( ) == TableBase . CACHED_TABLE ) { int [ ] loc4 = rootsList [ loc1 ] ; loc3 . setIndexRoot...
called from outside after the complete end of defrag concode_field_sep Database database concode_elem_sep DataFileCache cache concode_elem_sep String filename concode_elem_sep int[][] rootsList concode_elem_sep StopWatch stopw concode_elem_sep int scale concode_elem_sep DoubleIntIndex transactionRowLookup concode_elem_...
Label function ( String arg0 ) { return new StringLabel ( arg0 ) ; }
make a new label with this string as the `` name '' . this version does no decoding -- stringlabels just have a value . concode_field_sep PlaceHolder placeHolder concode_field_sep Label newLabel concode_elem_sep Label newLabel concode_elem_sep Label newLabel
void function ( String arg0 ) { normalize ( arg0 , true ) ; }
resets the search pattern ; concode_field_sep int iFirstWildCard concode_elem_sep boolean optimised concode_elem_sep int[] wildCardType concode_elem_sep Character escapeChar concode_elem_sep boolean isIgnoreCase concode_elem_sep int PERCENT_CHAR concode_elem_sep boolean isNull concode_elem_sep int iLen concode_elem_sep...
String function ( ) { return "srini_string" ; }
used to retrieve the plugin tool 's name . this is a short , unique name containing no spaces . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIAct...
boolean function ( ) { return false ; }
implement the policy when to automatically sync the buffered edits log the buffered edits can be flushed when the buffer becomes full or a certain period of time is elapsed . concode_field_sep long numSync concode_elem_sep long totalTimeSync concode_field_sep void flushAndSync concode_elem_sep long getNumSync concode_e...
void function ( final String arg0 , final int arg1 , final String arg2 ) { Assert . notNull ( arg0 , arg2 ) ; if ( arg0 . arg1 ( ) != arg1 ) { throw new IllegalArgumentException ( arg2 ) ; } }
assert that the given string has expected length . assert.haslength name , 8 , `` the length of name must be 8 '' ; concode_field_sep PlaceHolder placeHolder concode_field_sep void isTrue concode_elem_sep void notNull
JsMessage function ( String arg0 ) { return null ; }
returns null , to indicate it has no message replacements . concode_field_sep PlaceHolder placeHolder concode_field_sep Iterable<JsMessage> getAllMessages concode_elem_sep IdGenerator idGenerator
O function ( O arg0 ) { execute ( arg0 ) ; return arg0 ; }
executes with the given argument , then returns the argument . import ratpack.func.action ; import java.util.list ; import java.util.arraylist ; import static org.junit.assert.assertequals ; public class example public static void main string ... args throws exception assertequals `` foo '' , run list - > list.add `` f...
String function ( ) { return geocodeType ; }
geocode type for the venue . concode_field_sep String country concode_elem_sep Venue parent concode_elem_sep String city concode_elem_sep String postalCode concode_elem_sep double latitude concode_elem_sep String description concode_elem_sep String source concode_elem_sep String type concode_elem_sep List<Venue> childr...
Category [ ] function ( ) { return categories ; }
returns an array of categories for the model concode_field_sep Category[] categories concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep String description concode_elem_sep String id concode_elem_sep String domainId concode_field_sep void setName concode_elem_sep void setCategories conc...
Camera function ( ) { return getCameraInstance ( getDefaultCameraId ( ) ) ; }
a safe way to get an instance of the camera object . concode_field_sep PlaceHolder placeHolder concode_field_sep int getDefaultCameraId concode_elem_sep boolean isFlashSupported
Combatant function ( ) { return cbt ; }
get combatant concode_field_sep Combatant cbt concode_field_sep String toString
void function ( ) { if ( cluster != null ) { cluster . shutdown ( ) ; } }
shutdown cluster concode_field_sep HdfsConfiguration conf concode_elem_sep MiniDFSCluster cluster concode_field_sep void enableShortCircuitShmTracing concode_elem_sep void readAndCheckEOS concode_elem_sep void enableHdfsCachingTracing concode_elem_sep HdfsConfiguration getConf concode_elem_sep void enableBlockReaderFac...
void function ( AID arg0 ) { receiver = arg0 ; }
set the receiver slot of this event . concode_field_sep AID receiver concode_elem_sep AID sender concode_elem_sep String NAME concode_elem_sep ACLMessage message concode_field_sep String getName concode_elem_sep AID getReceiver concode_elem_sep ACLMessage getMessage concode_elem_sep void setSender concode_elem_sep AID ...
void function ( LogNode arg0 ) { mNext = arg0 ; }
sets the lognode data will be sent to . . concode_field_sep LogNode mNext concode_field_sep void println concode_elem_sep LogNode getNext
void function ( ) { }
called by the web container to indicate to a filter that it is being taken out of service . this method is only called once all threads within the filter 's dofilter method have exited or after a timeout period has passed . after the web container calls this method , it will not call the dofilter method again on this i...
ListChangeBatchesByHostedZoneResult function ( String arg0 ) { setMarker ( arg0 ) ; return this ; }
the page marker . concode_field_sep Boolean isTruncated concode_elem_sep String maxItems concode_elem_sep String nextMarker concode_elem_sep String marker concode_elem_sep com.amazonaws.internal.SdkInternalList<ChangeBatchRecord> changeBatchRecords concode_field_sep Boolean isTruncated concode_elem_sep java.util.List<C...