idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
24,400
test of getsupportedvalues method , of class supportedfeaturesimpl . concode_field_sep SupportedFeaturesImpl features concode_field_sep void testGetSupportedTriggers concode_elem_sep void setUpClass concode_elem_sep void testGetSupportedActions concode_elem_sep void testGetSupportedParameters concode_elem_sep void test...
void function ( ) { assertEquals ( 0 , features . getSupportedValues ( ) . size ( ) ) ; }
24,401
is value null concode_field_sep String XML_ATTRIBUTE_NAME concode_elem_sep String XML_ATTRIBUTE_KEY concode_elem_sep String m_columnName concode_elem_sep boolean m_isPKey concode_elem_sep boolean m_isPageBreak concode_elem_sep String m_formatPattern concode_elem_sep String XML_TAG concode_elem_sep Object m_value concod...
boolean function ( ) { return m_value == null ; }
24,402
get the frames per second of this effect concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep float delay ...
float function ( ) { return fps ; }
24,403
unregisters the specified listener . concode_field_sep String participantID concode_elem_sep byte[] image concode_elem_sep List<WhiteboardParticipantListener> whiteboardParticipantListeners concode_elem_sep Logger logger concode_elem_sep ContactJabberImpl participant concode_elem_sep Date currentStateStartDate concode_...
void function ( WhiteboardParticipantListener arg0 ) { synchronized ( whiteboardParticipantListeners ) { if ( arg0 == null ) return ; whiteboardParticipantListeners . remove ( arg0 ) ; } }
24,404
gets the latest block on the main chain simplified representation . concode_field_sep String apiCode concode_elem_sep String testnet concode_field_sep Block getBlock concode_elem_sep Block getBlock concode_elem_sep List<UnspentOutput> getUnspentOutputs concode_elem_sep Address getAddress concode_elem_sep List<SimpleBlo...
LatestBlock function ( ) { String loc0 = HttpClient . get ( "srini_string" + apiCode , null ) ; JsonObject loc1 = new JsonParser ( ) . parse ( loc0 ) . getAsJsonObject ( ) ; return new LatestBlock ( loc1 ) ; }
24,405
returns true if this status is awake . concode_field_sep Status _status concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setStatusId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean g...
boolean function ( ) { return _status . isAwake ( ) ; }
24,406
converts a distance in inches to a distance in encoder ticks . we calculate this by taking the number of wheel rotations inches / piwheeldiameter multiplied by the inverse of the gear ratio , to get the number of motor rotations . multiply one more time by the number of motor encoder ticks per one motor revolution . co...
long function ( double arg0 ) { return ( long ) ( ( 1 / driveGearMultiplier ) * ticksPerRevolution * ( arg0 / ( PI * wheelDiameter ) ) ) ; }
24,407
returns true if this dto represents a profile entity concode_field_sep Long catalogId concode_elem_sep Long profileId concode_elem_sep Long owningSiteId concode_field_sep void setProfileId concode_elem_sep void setOwningSiteId concode_elem_sep boolean isCatalogEntity concode_elem_sep void setCatalogId concode_elem_sep ...
boolean function ( ) { return getProfileId ( ) != null ; }
24,408
dispatches the read event in the context of caller thread . note this is a blocking call . it returns only after the associated handler has handled the read event . concode_field_sep PlaceHolder placeHolder concode_field_sep void stop
void function ( AbstractNioChannel arg0 , Object arg1 , SelectionKey arg2 ) { arg0 . getHandler ( ) . handleChannelRead ( arg0 , arg1 , arg2 ) ; }
24,409
get notification id . concode_field_sep Class<?> defaultReceiver concode_elem_sep Class<?> receiver concode_elem_sep String PREF_KEY concode_elem_sep Context context concode_elem_sep Options options concode_elem_sep NotificationCompat.Builder builder concode_field_sep void cancel concode_elem_sep boolean wasInThePast c...
int function ( ) { return options . getId ( ) ; }
24,410
prints a message at verbose priority . concode_field_sep int ERROR concode_elem_sep int VERBOSE concode_elem_sep int WARN concode_elem_sep int NONE concode_elem_sep int ASSERT concode_elem_sep int DEBUG concode_elem_sep LogNode mLogNode concode_elem_sep int INFO concode_field_sep void println concode_elem_sep void prin...
void function ( String arg0 , String arg1 ) { v ( arg0 , arg1 , null ) ; }
24,411
returns true if this type of attribute is unknown . the default implementation of this method always returns true . concode_field_sep Attribute next concode_elem_sep String type concode_elem_sep byte[] value concode_field_sep Label[] getLabels concode_elem_sep int getSize concode_elem_sep Attribute read concode_elem_se...
boolean function ( ) { return true ; }
24,412
serialize an instance , restore it , and check for equality . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testPublicCloneable concode_elem_sep void testEquals
void function ( ) { MatrixSeries loc0 = new MatrixSeries ( "srini_string" , 2 , 3 ) ; loc0 . update ( 0 , 0 , 1.1 ) ; MatrixSeriesCollection loc1 = new MatrixSeriesCollection ( ) ; loc1 . addSeries ( loc0 ) ; MatrixSeriesCollection loc2 = ( MatrixSeriesCollection ) TestUtilities . serialised ( loc1 ) ; assertEquals ( l...
24,413
gets the value type of the setter . concode_field_sep Method getter concode_elem_sep String fieldName concode_elem_sep Field field concode_elem_sep Class<?> setterType concode_elem_sep Class<?> getterType concode_elem_sep Method setter concode_field_sep Method getGetter concode_elem_sep Collection<BeanProperty> beanPro...
Class < ? > function ( ) { return setterType ; }
24,414
sets the value of the controlledplantype property . concode_field_sep XMLGregorianCalendar loginStatusChangeDate concode_elem_sep String registrationStatus concode_elem_sep String registeredFirstName concode_elem_sep String subscriberId concode_elem_sep long serialVersionUID concode_elem_sep BigInteger authenticationFa...
void function ( String arg0 ) { this . controlledPlanType = arg0 ; }
24,415
returns the number of times new entries have been added concode_field_sep String name concode_elem_sep BaseCache baseCache concode_field_sep String getName concode_elem_sep Integer getMissCount concode_elem_sep Integer getRemovalCount concode_elem_sep Integer getThreshold concode_elem_sep Integer getHitCount concode_el...
Integer function ( ) { return ( Integer ) baseCache . getStatByName ( Constants . STAT_BASECACHE_ADD_COUNT ) ; }
24,416
returns the popup factory instance . concode_field_sep PlaceHolder placeHolder concode_field_sep ListPopupStep createActionsStep concode_elem_sep ListPopupStep createActionsStep concode_elem_sep BalloonBuilder createBalloonBuilder concode_elem_sep TreePopup createTree concode_elem_sep TreePopup createTree concode_elem_...
JBPopupFactory function ( ) { return ServiceManager . getService ( JBPopupFactory . class ) ; }
24,417
gets the value of the count property . concode_field_sep Integer count concode_elem_sep String name concode_elem_sep long oid concode_elem_sep int rid concode_field_sep void setName concode_elem_sep String getName concode_elem_sep void setRid concode_elem_sep void setOid concode_elem_sep long getOid concode_elem_sep vo...
Integer function ( ) { return count ; }
24,418
set the last uid used . concode_field_sep long last concode_elem_sep Object handle concode_elem_sep Map<String,UidHashItemInner> uidHash concode_elem_sep long max concode_elem_sep long UID_ALLOCATION_SIZE concode_elem_sep String dbName concode_elem_sep String collectionName concode_field_sep void setMax concode_elem_se...
void function ( long arg0 ) { this . last = arg0 ; }
24,419
gets the value of the operator property . concode_field_sep String operationType concode_elem_sep Operator operator concode_field_sep String getOperationType concode_elem_sep void setOperator concode_elem_sep void setOperationType
Operator function ( ) { return operator ; }
24,420
test % throwablefull ansi concode_field_sep PlaceHolder placeHolder concode_field_sep void testSeparator concode_elem_sep void testDepthAndSeparator concode_elem_sep void testFullAnsiWithCustomStyle concode_elem_sep void testFullAnsi concode_elem_sep void testNoneAndSeparatorAndFilters concode_elem_sep void testSeparat...
void function ( ) { final ThrowableFormatOptions loc0 = test ( new String [ ] { "srini_string" , "srini_string" } , Integer . MAX_VALUE , Strings . LINE_SEPARATOR , null ) ; testFullAnsiEmptyConfig ( loc0 ) ; }
24,421
creates a random string whose length is the number of characters specified . characters will be chosen from the set of all characters . concode_field_sep Random RANDOM concode_field_sep String randomAlphabetic concode_elem_sep String randomAlphanumeric concode_elem_sep String randomAscii concode_elem_sep String randomN...
String function ( int arg0 ) { return random ( arg0 , false , false ) ; }
24,422
returns the series parameter name . concode_field_sep String itemParameterName concode_elem_sep String prefix concode_elem_sep long serialVersionUID concode_elem_sep DateFormat dateFormat concode_elem_sep String seriesParameterName concode_field_sep String generateURL concode_elem_sep String getPrefix concode_elem_sep ...
String function ( ) { return this . seriesParameterName ; }
24,423
create an observable of text change events for view . warning : values emitted by this observable contain a mutable charsequence owned by the host textview and thus are not safe to cacheor delay reading such as by observing on a different thread . if you want to cache or delay reading the items emitted then you must ma...
Observable < TextViewTextChangeEvent > function ( @ NonNull TextView arg0 ) { checkNotNull ( arg0 , "srini_string" ) ; return Observable . create ( new TextViewTextChangeEventOnSubscribe ( arg0 ) ) ; }
24,424
connect to the database concode_field_sep Connection con concode_elem_sep int size concode_elem_sep String resource concode_elem_sep String property concode_elem_sep String tag concode_elem_sep String user concode_field_sep void disconnect concode_elem_sep String getResource concode_elem_sep String getProperty concode_...
void function ( String arg0 , String arg1 , String arg2 ) { Class . forName ( "srini_string" ) . newInstance ( ) ; con = DriverManager . getConnection ( arg0 , arg1 , arg2 ) ; }
24,425
generate a session id to store the fe session beans concode_field_sep FESessionManager sessionManager concode_elem_sep MessageDigest messageDigest concode_elem_sep Log log concode_elem_sep SecureRandom secureRandomInstance concode_elem_sep ConcurrentHashMap<String,FESessionBean> sessionMap concode_field_sep void remove...
String function ( ) { String loc0 = new Integer ( secureRandomInstance . nextInt ( ) ) . toString ( ) ; byte [ ] loc1 = messageDigest . digest ( loc0 . getBytes ( ) ) ; return hexEncode ( loc1 ) ; }
24,426
find the _ fields constant that matches fieldid , or null if its not found . concode_field_sep String _fieldName concode_elem_sep ComponentCommon common concode_elem_sep short _thriftId concode_elem_sep Map<_Fields,org.apache.thrift.meta_data.FieldMetaData> metaDataMap concode_elem_sep Map<String,_Fields> byName concod...
_Fields function ( int arg0 ) { switch ( arg0 ) { case 1 : return SPOUT_OBJECT ; case 2 : return COMMON ; default : return null ; } }
24,427
handles errors . concode_field_sep Logger LOGGER concode_field_sep void fatalError concode_elem_sep void warning
void function ( SAXParseException arg0 ) { throw new SAXException ( XmlUtils . getPrettyParseExceptionInfo ( arg0 ) ) ; }
24,428
generates a string that represents a history version expression that may be used to construct urls for links to popup windows . the expression provides a hint for the history management to generate a popup specific navigation session . concode_field_sep Logger LOG concode_elem_sep String NAVI_HISTORY_ATTR concode_elem_...
String function ( ) { NaviHistory loc0 = NaviJsfUtil . getNaviHistory ( ) ; if ( loc0 != null ) { return loc0 . getNaviCfg ( ) . getVersionParamName ( ) + "srini_string" + NaviManager . NaviMode . POPUP . getPrefix ( ) + loc0 . getVersionString ( ) ; } else { return "srini_string" ; } }
24,429
returns the argument types of the method described by this object . concode_field_sep String name concode_elem_sep Map<String,String> DESCRIPTORS concode_elem_sep String desc concode_field_sep String getDescriptor concode_elem_sep String getName concode_elem_sep Type getReturnType concode_elem_sep int hashCode concode_...
Type [ ] function ( ) { return Type . getArgumentTypes ( desc ) ; }
24,430
returns an immutable list containing elements . concode_field_sep byte[] EMPTY_BYTE_ARRAY concode_elem_sep Pattern VERIFY_AS_IP_ADDRESS concode_elem_sep TimeZone UTC concode_elem_sep Charset UTF_8 concode_elem_sep String[] EMPTY_STRING_ARRAY concode_field_sep void checkOffsetAndCount concode_elem_sep String hostHeader ...
List < T > function ( T ... arg0 ) { return Collections . unmodifiableList ( Arrays . asList ( arg0 . clone ( ) ) ) ; }
24,431
returns a snapshot of the connections in this pool , ordered from newest to oldest . waits for the cleanup callable to run if it is currently scheduled . concode_field_sep ConnectionPool systemDefault concode_elem_sep LinkedList<Connection> connections concode_elem_sep long keepAliveDurationNs concode_elem_sep long DEF...
List < Connection > function ( ) { waitForCleanupCallableToRun ( ) ; synchronized ( this ) { return new ArrayList < Connection > ( connections ) ; } }
24,432
returns a future that represents a computation that drains the stdout of the child process . that future 's result is true if the end of the child 's stdout is reached , its result is false if there was an error while reading from the stream . this task will log all the lines it drains to permit debugging . concode_fie...
Future < Boolean > function ( ) { DrainChildSTDOUTTask loc0 = new DrainChildSTDOUTTask ( ) ; loc0 . initialize ( reader , shardId ) ; return this . executorService . submit ( loc0 ) ; }
24,433
return type metadata object concode_field_sep org.talend.mdm.webservice.WSByteArray wsBytes concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String contentType concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Strin...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
24,434
adds the phone to the database . also notifies the appropriate model listeners . concode_field_sep PhoneLocalService _phoneLocalService concode_field_sep com.liferay.portal.kernel.model.Phone getPhone concode_elem_sep com.liferay.portal.kernel.model.Phone getPhoneByUuidAndCompanyId concode_elem_sep java.lang.String get...
com . liferay . portal . kernel . model . Phone function ( com . liferay . portal . kernel . model . Phone arg0 ) { return _phoneLocalService . addPhone ( arg0 ) ; }
24,435
remove the managed bean based on the bean name . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep Object getElValue concode_elem_sep ServletContext getServletContext concode_elem_sep Object getManagedBean concode_elem_sep...
void function ( String arg0 ) { getValueBinding ( getJsfEl ( arg0 ) ) . setValue ( FacesContext . getCurrentInstance ( ) , null ) ; }
24,436
method the lookup currently stored property with the carbon context instance using the given property key name . concode_field_sep CarbonContextHolder carbonContextHolder concode_field_sep Principal getUserPrincipal concode_elem_sep CarbonContextHolder getCarbonContextHolder concode_elem_sep CarbonContext getCurrentCon...
Object function ( String arg0 ) { return getCarbonContextHolder ( ) . getProperty ( arg0 ) ; }
24,437
get custom deserializer concode_field_sep java.lang.Object __equalsCalc concode_elem_sep uk.co.graydon.ws.GraydonDataService.types.Service_LogType service_Log concode_elem_sep boolean __hashCodeCalc concode_elem_sep uk.co.graydon.ws.GraydonDataService.types.CompanyType company concode_elem_sep org.apache.axis.descripti...
org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; }
24,438
resets the hitcount of all poles . concode_field_sep Vec3D centreExclusion concode_elem_sep HashMap<ParticlePole3D,LetterPoleGroup> messagePoles concode_elem_sep float MAX_CHARGE concode_elem_sep List<ParticlePole3D> c13poles concode_elem_sep int maxExternalPoleHitcount concode_elem_sep Alphabet alphabet concode_elem_s...
void function ( ) { for ( ParticlePole3D loc0 : c12poles ) { loc0 . hitCount = 0 ; loc0 . lastHit = 0 ; } for ( ParticlePole3D loc0 : c3poles ) { loc0 . hitCount = 0 ; loc0 . lastHit = 0 ; } }
24,439
convert an array of floats to 16.16 fixed-point concode_field_sep int ONE concode_field_sep int sqrt concode_elem_sep float toFloat concode_elem_sep float[] toFloat concode_elem_sep void toFloat concode_elem_sep int divide concode_elem_sep int multiply
int [ ] function ( float [ ] arg0 ) { int [ ] loc0 = new int [ arg0 . length ] ; toFixed ( arg0 , loc0 ) ; return loc0 ; }
24,440
return bairro concode_field_sep String uf concode_elem_sep int codigo concode_elem_sep String cidade concode_elem_sep String telefone concode_elem_sep String endereco concode_elem_sep String rg concode_elem_sep String bairro concode_elem_sep String numBeneficio concode_elem_sep String cpf concode_elem_sep String nome c...
String function ( ) { return this . bairro ; }
24,441
returns the corresponding primitive type of type if it is awrapper type ; otherwise returns type itself . idempotent . unwrap integer.class == int.class unwrap int.class == int.class unwrap string.class == string.class concode_field_sep Map<Class<?>,Class<?>> PRIMITIVE_TO_WRAPPER_TYPE concode_elem_sep Map<Class<?>,Clas...
Class < T > function ( Class < T > arg0 ) { checkNotNull ( arg0 ) ; @ SuppressWarnings ( "srini_string" ) Class < T > loc0 = ( Class < T > ) WRAPPER_TO_PRIMITIVE_TYPE . get ( arg0 ) ; return ( loc0 == null ) ? arg0 : loc0 ; }
24,442
sorts the array managed by this sorter concode_field_sep int[] a concode_field_sep int partition concode_elem_sep void swap concode_elem_sep void main concode_elem_sep int[] quickSort
void function ( ) { sort ( 0 , a . length - 1 ) ; }
24,443
configure this client to follow redirects from https to http and from http to https . if unset , protocol redirects will be followed . this is different than the built-in httpurlconnection 's default . concode_field_sep ProxySelector proxySelector concode_elem_sep Proxy proxy concode_elem_sep boolean followProtocolRedi...
OkHttpClient function ( boolean arg0 ) { this . followProtocolRedirects = arg0 ; return this ; }
24,444
sets the file as accepted by end user . concode_field_sep ExtensionPointName<FileIndentOptionsProvider> EP_NAME concode_elem_sep String SHOW_NOTIFICATION_KEY concode_field_sep boolean isShowNotification concode_elem_sep boolean isAcceptedWithoutWarning concode_elem_sep CommonCodeStyleSettings.IndentOptions getIndentOpt...
void function ( @ SuppressWarnings ( "srini_string" ) @ NotNull VirtualFile arg0 ) { }
24,445
the list name to consume activities from . concode_field_sep ActivityTypeRegistrationOptions activityTypeRegistrationOptions concode_elem_sep Map<String,Object> clientConfigurationParameters concode_elem_sep String stateResultType concode_elem_sep AmazonSimpleWorkflowClient amazonSWClient concode_elem_sep ActivitySched...
void function ( String arg0 ) { this . activityList = arg0 ; }
24,446
get trusted stores concode_field_sep boolean isServerPrincipalPasswordEncrypted concode_elem_sep String serverPrincipalPassword concode_elem_sep String trustStores concode_elem_sep String allowedRoles concode_elem_sep String keyAlias concode_elem_sep String privateStore concode_field_sep void setTrustStores concode_ele...
String function ( ) { return trustStores ; }
24,447
return the property for the key , or null if it does n't exist . concode_field_sep SpelExpressionParser spelExpressionParser concode_elem_sep Properties properties concode_field_sep String getPartitionSelectorClass concode_elem_sep int getMaxAttempts concode_elem_sep long getBatchTimeout concode_elem_sep Properties get...
String function ( String arg0 ) { return this . properties . getProperty ( arg0 ) ; }
24,448
create an instance of stringruleitem concode_field_sep QName _ApiExceptionFault_QNAME concode_elem_sep QName _RequestHeader_QNAME concode_elem_sep QName _ResponseHeader_QNAME concode_field_sep SimilarUserList createSimilarUserList concode_elem_sep Rule createRule concode_elem_sep LogicalUserListOperand createLogicalUse...
StringRuleItem function ( ) { return new StringRuleItem ( ) ; }
24,449
sets the value of the sx property . concode_field_sep Long tx concode_elem_sep Integer sx concode_elem_sep Long ty concode_elem_sep Integer sy concode_elem_sep Integer kx concode_elem_sep Integer ky concode_field_sep int getSx concode_elem_sep long getTy concode_elem_sep long getTx concode_elem_sep void setTx concode_e...
void function ( Integer arg0 ) { this . sx = arg0 ; }
24,450
sets column number . concode_field_sep DetailNode parent concode_elem_sep int columnNumber concode_elem_sep DetailNode[] children concode_elem_sep int index concode_elem_sep String text concode_elem_sep int type concode_elem_sep int lineNumber concode_elem_sep DetailNode[] EMPTY_DETAIL_NODE_ARRAY concode_field_sep Deta...
void function ( int arg0 ) { this . columnNumber = arg0 ; }
24,451
gets the current value of the wasb_bytes_written_last_second counter . concode_field_sep PlaceHolder placeHolder concode_field_sep long getCurrentTotalBytesRead concode_elem_sep long getLongGaugeValue concode_elem_sep long getCurrentTotalBytesWritten concode_elem_sep long getCurrentWebResponses concode_elem_sep long ge...
long function ( AzureFileSystemInstrumentation arg0 ) { return getLongGaugeValue ( arg0 , WASB_BYTES_WRITTEN ) ; }
24,452
methode qui modifie l'attribut conquit concode_field_sep ArrayList<Territoire> liste_territoire_carte concode_elem_sep int nbTerritoire concode_elem_sep boolean conquit concode_elem_sep boolean finPartie concode_elem_sep ArrayList<Joueur> liste_joueur_carte concode_elem_sep int nbJoueur concode_field_sep boolean finDeP...
void function ( boolean arg0 ) { this . conquit = arg0 ; }
24,453
return the rounding strategy . concode_field_sep Rounding _rounding concode_elem_sep Overflow _overflow concode_field_sep boolean getExactRounding concode_elem_sep int getFractionBitLength concode_elem_sep double getTinyValue concode_elem_sep double getEpsilonValue concode_elem_sep BigInteger getMinimumUnscaledValue co...
Rounding function ( ) { return _rounding ; }
24,454
create an instance of addressexttype concode_field_sep QName _AddressExt_QNAME concode_field_sep JAXBElement<AddressExtType> createAddressExt
AddressExtType function ( ) { return new AddressExtType ( ) ; }
24,455
returns the version user uuid of this d d l record . concode_field_sep DDLRecord _ddlRecord concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep java.io.Serializable getFieldDataType concode_ele...
java . lang . String function ( ) { return _ddlRecord . getVersionUserUuid ( ) ; }
24,456
creates a default `` http / host @jboss . org '' server keytab . it can be overridden if you want to use another spn , password or keytab file location or do more magic here . concode_field_sep File keyTabFileName concode_elem_sep Logger LOGGER concode_elem_sep String password concode_elem_sep String origKrbDebug conco...
void function ( String arg0 ) { createKeytab ( "srini_string" + arg0 + "srini_string" , "srini_string" , HTTP_KEYTAB_FILE ) ; }
24,457
it used to be that for commons-upload fileuploadioexception exceptions , fileinfo.getexception would return a fileuploadioexception , and inputfile.getuploadexception would return the actual useful subclass , gotten from fileinfo.getexception . getcause . now , they both return the same useful subclass . concode_field_...
Exception function ( ) { return exception ; }
24,458
if the given action is null , returns #noop , otherwise returns the given action . concode_field_sep PlaceHolder placeHolder concode_field_sep Action<Object> noop concode_elem_sep T with concode_elem_sep O with concode_elem_sep Action<T> ignoreArg concode_elem_sep T uncheckedWith concode_elem_sep O uncheckedWith concod...
Action < ? super T > function ( @ Nullable Action < T > arg0 ) { if ( arg0 == null ) { return noop ( ) ; } else { return arg0 ; } }
24,459
sets created date . concode_field_sep List<String> names concode_elem_sep String updatedDate concode_elem_sep String birthDate concode_elem_sep FixedFields fixedFields concode_elem_sep String homeLibraryCode concode_elem_sep String createdDate concode_elem_sep Boolean deleted concode_elem_sep Object deletedDate concode...
void function ( String arg0 ) { this . createdDate = arg0 ; }
24,460
dealswithplugindatabasesystem interface implementation . concode_field_sep PluginDatabaseSystem pluginDatabaseSystem concode_field_sep Database createDatabase concode_elem_sep DatabaseTableFactory createBitcoinWalletBalancesTableFactory concode_elem_sep DatabaseTableRecord constructBalanceInitialRecord concode_elem_sep...
void function ( PluginDatabaseSystem arg0 ) { this . pluginDatabaseSystem = arg0 ; }
24,461
get the errorid value . concode_field_sep SeverityTypes severity concode_elem_sep String component concode_elem_sep String helpLink concode_elem_sep String internalDiagnostics concode_elem_sep String description concode_elem_sep String details concode_elem_sep String errorId concode_elem_sep String source concode_elem_...
String function ( ) { return this . errorId ; }
24,462
gets the value of the inst property . concode_field_sep String prefix concode_elem_sep Byte inst concode_elem_sep String lnType concode_elem_sep List<Serializable> content concode_elem_sep String lnClass concode_elem_sep String desc concode_field_sep void setInst concode_elem_sep String getPrefix concode_elem_sep void ...
Byte function ( ) { return inst ; }
24,463
refer to remapuri added in cordova-android@4.0.0 concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode_elem_sep boolean onOverrideUrlLoading conc...
Uri function ( Uri arg0 ) { return new Uri . Builder ( ) . scheme ( CordovaResourceApi . PLUGIN_URI_SCHEME ) . authority ( serviceName ) . appendQueryParameter ( "srini_string" , arg0 . toString ( ) ) . build ( ) ; }
24,464
creates a classloader that can be used to load resources from theworkspace . concode_field_sep boolean resolveSimpleProjectReferences concode_field_sep File getFileSystemFile concode_elem_sep void addJavaClasspathEntries concode_elem_sep void addClasspathEntries concode_elem_sep URL[] convertClassPath concode_elem_sep ...
ClassLoader function ( IProject arg0 , ClassLoader arg1 ) { final List < URL > loc0 = Lists . newArrayList ( ) ; addClasspathEntries ( arg0 , loc0 ) ; return URLClassLoader . newInstance ( loc0 . toArray ( new URL [ loc0 . size ( ) ] ) , arg1 ) ; }
24,465
f0 - > `` void '' concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
R function ( VoidType arg0 ) { R loc0 = null ; arg0 . f0 . accept ( this ) ; return loc0 ; }
24,466
helper for success callbacks that just returns the status.ok by default concode_field_sep Callback successCallback concode_elem_sep Callback errorCallback concode_elem_sep String LOG_TAG concode_field_sep void error concode_elem_sep void error
void function ( JSONObject arg0 ) { try { WritableMap loc0 = SQLitePluginConverter . jsonToReact ( arg0 ) ; successCallback . invoke ( loc0 ) ; } catch ( JSONException loc0 ) { errorCallback . invoke ( "srini_string" + loc0 . getMessage ( ) ) ; } }
24,467
sets the state of the bit at the given index of this bitvector . 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 voi...
void function ( int arg0 , boolean arg1 ) { arg0 = translateIndex ( arg0 ) ; logger . trace ( "srini_string" , arg0 ) ; int loc0 = ( ( arg1 ) ? 1 : 0 ) ; int loc1 = byteIndex ( arg0 ) ; int loc2 = bitIndex ( arg0 ) ; m_Data [ loc1 ] = ( byte ) ( ( m_Data [ loc1 ] & ~ ( 0x01 << loc2 ) ) | ( ( loc0 & 0x01 ) << loc2 ) ) ;...
24,468
visits the type of a method exception . concode_field_sep char EXTENDS concode_elem_sep char SUPER concode_elem_sep int api concode_elem_sep char INSTANCEOF concode_field_sep void visitEnd concode_elem_sep SignatureVisitor visitInterfaceBound concode_elem_sep void visitTypeArgument concode_elem_sep SignatureVisitor vis...
SignatureVisitor function ( ) { return this ; }
24,469
returns the depth . concode_field_sep T next concode_elem_sep T head concode_elem_sep T parent concode_elem_sep T previous concode_elem_sep int size concode_elem_sep T tail concode_field_sep T getPrevious concode_elem_sep T getParent concode_elem_sep void insertFirst concode_elem_sep void beforeInsert concode_elem_sep ...
int function ( ) { int loc0 = 0 ; for ( T loc1 = parent ; loc1 != null ; loc1 = ( ( ListTree < T > ) loc1 ) . parent ) { loc0 ++ ; } return loc0 ; }
24,470
returns the account with the primary key . concode_field_sep AccountLocalService _accountLocalService concode_field_sep com.liferay.mail.reader.model.Account updateFolders concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.or...
com . liferay . mail . reader . model . Account function ( long arg0 ) { return _accountLocalService . getAccount ( arg0 ) ; }
24,471
number of allocated indexes . concode_field_sep int[] parent concode_elem_sep int[] weight concode_elem_sep int INITIAL_SIZE concode_elem_sep int used concode_field_sep TIntList getRoots concode_elem_sep int find concode_elem_sep boolean isConnected concode_elem_sep int nextIndex concode_elem_sep int union
int function ( ) { return used ; }
24,472
called once at the end of the task . concode_field_sep PlaceHolder placeHolder concode_field_sep void setup concode_elem_sep void run concode_elem_sep void map
void function ( Context arg0 ) { }
24,473
the logic to execute when authors have been retrieved . concode_field_sep Bus mBus concode_elem_sep MainView mMainView concode_field_sep Bus getBus concode_elem_sep void onItemClicked concode_elem_sep void setBus concode_elem_sep void onResume
void function ( AuthorsRetrievedEvent arg0 ) { mMainView . setItems ( arg0 . getAuthorsResponse ( ) . getListContents ( ) . getContents ( ) ) ; mMainView . hideProgress ( ) ; }
24,474
parse query string to parameters . concode_field_sep Logger logger concode_elem_sep Pattern KVP_PATTERN concode_elem_sep Pattern INT_PATTERN concode_elem_sep String[] EMPTY_STRING_ARRAY concode_field_sep String getQueryStringValue concode_elem_sep boolean isEmpty concode_elem_sep boolean isBlank concode_elem_sep boolea...
Map < String , String > function ( String arg0 ) { if ( arg0 == null || arg0 . length ( ) == 0 ) return new HashMap < String , String > ( ) ; return parseKeyValuePair ( arg0 , "srini_string" ) ; }
24,475
marshals into an output stream an exception thrown by the method . concode_field_sep Class clz concode_elem_sep String reposId concode_elem_sep CDRStreamReader[] paramReaders concode_elem_sep java.lang.reflect.Method writeMethod concode_elem_sep CDRStreamWriter retvalWriter concode_elem_sep Method m concode_elem_sep Ex...
void function ( OutputStream arg0 , Exception arg1 ) { int loc0 = excepWriters . length ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { if ( excepWriters [ loc1 ] . getExceptionClass ( ) . isInstance ( arg1 ) ) { excepWriters [ loc1 ] . write ( arg0 , arg1 ) ; return ; } } throw new UnknownException ( arg1 ) ; }
24,476
get the order . concode_field_sep String note concode_elem_sep Integer quantity concode_elem_sep Double price concode_elem_sep String title concode_elem_sep Order order concode_field_sep void setOrder concode_elem_sep String getTitle concode_elem_sep Integer getQuantity concode_elem_sep void setQuantity concode_elem_se...
Order function ( ) { return order ; }
24,477
tries put the given attribute in place of an existing attribute of the same name , returning whether it was present . concode_field_sep ProgramClass targetClass concode_elem_sep CodeAttribute targetAttribute concode_elem_sep boolean replaceAttributes concode_elem_sep ProgramMember targetMember concode_field_sep int fin...
boolean function ( int arg0 , Attribute [ ] arg1 , Attribute arg2 ) { int loc0 = findAttribute ( arg0 , arg1 , arg2 . getAttributeName ( targetClass ) ) ; if ( loc0 < 0 ) { return false ; } arg1 [ loc0 ] = arg2 ; return true ; }
24,478
set the clientrequestid value . concode_field_sep DateTimeRfc1123 ocpDate concode_elem_sep String clientRequestId concode_elem_sep Boolean returnClientRequestId concode_elem_sep Integer timeout concode_field_sep DateTime ocpDate concode_elem_sep CertificateDeleteOptions withReturnClientRequestId concode_elem_sep Certif...
CertificateDeleteOptions function ( String arg0 ) { this . clientRequestId = arg0 ; return this ; }
24,479
does this dropdown contain the specified value . concode_field_sep PlaceHolder placeHolder concode_field_sep String getTextValue concode_elem_sep Point getLocation concode_elem_sep void shouldContainOnlyText concode_elem_sep WebElementFacade waitUntilClickable concode_elem_sep Duration getCurrentImplicitTimeout concode...
boolean function ( final String arg0 ) { return false ; }
24,480
should be invoked whenever the session becomes inactive . concode_field_sep WebSocketHandler handler concode_elem_sep Log logger concode_elem_sep long timeCreated concode_elem_sep Set<String> disconnectedClientExceptions concode_elem_sep ScheduledFuture<?> heartbeatTask concode_elem_sep String DISCONNECTED_CLIENT_LOG_C...
void function ( ) { this . timeLastActive = System . currentTimeMillis ( ) ; }
24,481
format integer with iw . concode_field_sep PlaceHolder placeHolder concode_field_sep Matrix magic concode_elem_sep void print concode_elem_sep void main concode_elem_sep String fixedWidthDoubletoString
String function ( int arg0 , int arg1 ) { String loc0 = Integer . toString ( arg0 ) ; while ( loc0 . length ( ) < arg1 ) { loc0 = "srini_string" + loc0 ; } return loc0 ; }
24,482
use the specified bytes array as underlying sequence . concode_field_sep int count concode_elem_sep byte[] bytes concode_field_sep int compareTo concode_elem_sep void truncate concode_elem_sep int hashCode concode_elem_sep byte[] get concode_elem_sep boolean equals concode_elem_sep Object clone concode_elem_sep void re...
void function ( byte [ ] arg0 ) { this . count = ( arg0 == null ) ? 0 : arg0 . length ; this . bytes = arg0 ; }
24,483
queries whether i have been cancelled , by cancellation of my progress monitor . concode_field_sep int TOTAL_WORK concode_elem_sep IClipboardSupport clipboardSupport concode_elem_sep int WORK_UNIT concode_elem_sep IProgressMonitor monitor concode_field_sep void catchException concode_elem_sep IClipboardSupport getClipb...
boolean function ( ) { return getProgressMonitor ( ) . isCanceled ( ) ; }
24,484
method just exists to make program easier to read . concode_field_sep ModelSelection m_toSelectModel concode_elem_sep ClassifierDecList[] m_sons concode_elem_sep EntropySplitCrit m_splitCrit concode_elem_sep Distribution m_test concode_elem_sep ClassifierSplitModel m_localModel concode_elem_sep int indeX concode_elem_s...
ClassifierDecList function ( int arg0 ) { return m_sons [ arg0 ] ; }
24,485
whether the assignment uses a placeholder ' ? ' in a prepared statement . concode_field_sep FmField field concode_elem_sep boolean isPlaceholder concode_elem_sep Object value concode_field_sep Object getValue concode_elem_sep FmField getField
boolean function ( ) { return isPlaceholder ; }
24,486
comprueba si el nombre del producto actual es mayor alfabeticamente que el recibido como parametro concode_field_sep double precio concode_elem_sep int cantidad concode_elem_sep String nombre concode_field_sep int obtenerCantidad concode_elem_sep boolean esMenor concode_elem_sep boolean esMenor concode_elem_sep double ...
boolean function ( String arg0 ) { return nombre . toLowerCase ( ) . compareTo ( arg0 . toLowerCase ( ) ) > 0 ; }
24,487
creates a conditional selector . concode_field_sep PlaceHolder placeHolder concode_field_sep CharacterDataSelector createTextNodeSelector concode_elem_sep SimpleSelector createRootNodeSelector concode_elem_sep DescendantSelector createChildSelector concode_elem_sep SimpleSelector createAnyNodeSelector concode_elem_sep ...
ConditionalSelector function ( SimpleSelector arg0 , Condition arg1 ) { return new CSSConditionalSelector ( arg0 , arg1 ) ; }
24,488
instruct the safaridriver to delete all existing session data when starting a new session . this includes browser history , cache , cookies , html5 local storage , and html5 databases . warning : since safari uses a single profile for the current user , enabling this capability will permanently erase any existing sessi...
void function ( boolean arg0 ) { this . useCleanSession = arg0 ; }
24,489
no assignment validation ; simply returns true . concode_field_sep String LOG_CATEGORY concode_elem_sep Set<String> classNames concode_elem_sep Object lock concode_field_sep boolean validateCreation concode_elem_sep void initialize
boolean function ( Object arg0 , int arg1 , Object arg2 ) { return true ; }
24,490
sets the value of the contactinformation property . concode_field_sep BoundingBoxType boundingBox concode_elem_sep KeywordListType keywordList concode_elem_sep ExtensionType extension concode_elem_sep ContactInformationType contactInformation concode_elem_sep URLType descriptionURL concode_elem_sep WindowType window co...
void function ( ContactInformationType arg0 ) { this . contactInformation = arg0 ; }
24,491
set the given value to the field of this instance . concode_field_sep Object instance concode_elem_sep Field field concode_elem_sep FieldReader fieldReader concode_field_sep A annotation concode_elem_sep Object read concode_elem_sep Field jdkField concode_elem_sep boolean isAnnotatedBy concode_elem_sep FieldReader read...
void function ( Object arg0 ) { new FieldSetter ( instance , field ) . set ( arg0 ) ; }
24,492
checks if the specified name is a valid enum for the class . this method differs from enum #valueof in that checks if the name isa valid enum without needing to catch the exception . concode_field_sep String S_DOES_NOT_SEEM_TO_BE_AN_ENUM_TYPE concode_elem_sep String CANNOT_STORE_S_S_VALUES_IN_S_BITS concode_elem_sep St...
boolean function ( final Class < E > arg0 , final String arg1 ) { if ( arg1 == null ) { return false ; } try { Enum . valueOf ( arg0 , arg1 ) ; return true ; } catch ( final IllegalArgumentException loc0 ) { return false ; } }
24,493
determine the name of the package of the given class : e.g. `` java.lang '' for the java.lang.string class . concode_field_sep char PACKAGE_SEPARATOR concode_field_sep String getPackageNameNoDomain concode_elem_sep boolean isConcrete concode_elem_sep ClassLoader getDefaultClassLoader concode_elem_sep Class<? extends T>...
String function ( Class < ? > arg0 ) { String loc0 = arg0 . getName ( ) ; int loc1 = loc0 . lastIndexOf ( PACKAGE_SEPARATOR ) ; return ( loc1 != - 1 ? loc0 . substring ( 0 , loc1 ) : "srini_string" ) ; }
24,494
start the worker thread . concode_field_sep Exception thrownException concode_elem_sep Thread thread concode_elem_sep T value concode_elem_sep boolean done concode_elem_sep ThreadVar threadVar concode_elem_sep Map<?,?> parms concode_field_sep T getValue concode_elem_sep Thread get concode_elem_sep T get concode_elem_se...
void function ( ) { Thread loc0 = threadVar . get ( ) ; if ( loc0 != null ) { loc0 . start ( ) ; } }
24,495
create new instance concode_field_sep List<String> whereItems concode_field_sep WhereBuilder appendOR concode_elem_sep void appendCondition concode_elem_sep String toString concode_elem_sep WhereBuilder append concode_elem_sep WhereBuilder append
WhereBuilder function ( ) { return new WhereBuilder ( ) ; }
24,496
return the request uri concode_field_sep Uri uri concode_elem_sep AsyncHttpClientConfig config concode_field_sep String getProtocolName concode_elem_sep String getProtocolText concode_elem_sep int getProtocolMajorVersion concode_elem_sep int getStatusCode concode_elem_sep int getProtocolMinorVersion concode_elem_sep So...
Uri function ( ) { return uri ; }
24,497
factory method to create sslcontext used for client and server ssl authentication . concode_field_sep int DEFAULT_MAX_REDIRECTS concode_field_sep RequestSpec basicAuth concode_elem_sep RequestSpec onRedirect concode_elem_sep RequestSpec body concode_elem_sep Body type concode_elem_sep RequestSpec delete concode_elem_se...
RequestSpec function ( Factory < SSLContext > arg0 ) { return sslContext ( arg0 . create ( ) ) ; }
24,498
callback invoked when node leaves grid . concode_field_sep long threadId concode_elem_sep GridFutureAdapter<?> pendingFut concode_elem_sep IgniteLogger log concode_elem_sep boolean nodeLeft concode_elem_sep int cnt concode_elem_sep GridCacheSharedContext<K,V> cctx concode_elem_sep ConcurrentMap<Long,ThreadFinishSync> t...
void function ( UUID arg0 ) { for ( ThreadFinishSync loc0 : threadMap . values ( ) ) loc0 . onNodeLeft ( arg0 ) ; }
24,499
whether has extension x concode_field_sep int packet_len concode_elem_sep byte[] packet concode_field_sep long getSscr concode_elem_sep void setSscr concode_elem_sep boolean hasPadding concode_elem_sep void setExtension concode_elem_sep int getSequenceNumber concode_elem_sep byte[] getPacket concode_elem_sep boolean ha...
boolean function ( ) { if ( packet_len >= 12 ) return getBit ( packet [ 0 ] , 4 ) ; else return false ; }