idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
3,200
return the applicationcontext that this object is associated with . concode_field_sep Log logger concode_elem_sep ApplicationContext applicationContext concode_elem_sep MessageSourceAccessor messageSourceAccessor concode_field_sep Class requiredContextClass concode_elem_sep void setApplicationContext concode_elem_sep v...
ApplicationContext function ( ) { if ( this . applicationContext == null && isContextRequired ( ) ) { throw new IllegalStateException ( "srini_string" + this + "srini_string" ) ; } return this . applicationContext ; }
3,201
test method for org.pentaho.platform.plugin.action.chartbeans.chartbeanssystemlistener #startup org.pentaho.platform.api.engine.ipentahosession . concode_field_sep PlaceHolder placeHolder concode_field_sep void testShutdown concode_elem_sep void testBadStartupFile concode_elem_sep void setUp
void function ( ) { IPentahoSystemListener loc0 = new ChartBeansSystemListener ( ) ; Assert . assertTrue ( loc0 . startup ( null ) ) ; }
3,202
returns a field in a json object as a string . concode_field_sep PlaceHolder placeHolder concode_field_sep long getLong concode_elem_sep long getLong concode_elem_sep int getInt concode_elem_sep int getInt concode_elem_sep JsonObject getObject concode_elem_sep JsonObject getObject concode_elem_sep double getDouble conc...
String function ( JsonObject arg0 , String arg1 , String arg2 ) { final JsonValue loc0 = arg0 . get ( arg1 ) ; if ( loc0 == null ) { return arg2 ; } else { return loc0 . asString ( ) ; } }
3,203
compute unsat core given some courses . concode_field_sep ResourceBundle resources concode_elem_sep ReadOnlyMapProperty<CourseSelection,ResultState> courseSelectionResults concode_elem_sep String langTimeout concode_elem_sep int timeout concode_elem_sep Solver solver concode_field_sep SolverTask<Set<String>> impossible...
SolverTask < Set < Integer >> function ( final Course ... arg0 ) { final String [ ] loc0 = getNames ( arg0 ) ; final String loc1 = getMessage ( loc0 ) ; final String loc2 = String . format ( resources . getString ( "srini_string" ) , loc1 ) ; return new SolverTask < > ( loc2 , solver , ( ) -> solver . unsatCore ( loc0 ...
3,204
deprecated in favor of #putchildren rolaplevel , tupleconstraint , list concode_field_sep SmartIncrementalCache<RolapMember,Collection<RolapMember>> mapParentToNamedChildren concode_elem_sep SmartMemberListCache<RolapLevel,List<RolapMember>> mapLevelToMembers concode_elem_sep SmartMemberListCache<RolapMember,List<Rolap...
void function ( RolapLevel arg0 , TupleConstraint arg1 , List < RolapMember > arg2 ) { putChildren ( arg0 , arg1 , arg2 ) ; }
3,205
returns the original httpresponse constructed for this request . returns null by default . concode_field_sep PlaceHolder placeHolder concode_field_sep String getCurrentParentElement concode_elem_sep Map<String,String> getMetadata concode_elem_sep Unmarshaller<T,JsonUnmarshallerContext> getUnmarshaller concode_elem_sep ...
HttpResponse function ( ) { return null ; }
3,206
get the local data . concode_field_sep byte[] centralData concode_elem_sep byte[] localData concode_elem_sep ZipShort headerId concode_field_sep ZipShort getLocalFileDataLength concode_elem_sep void parseFromLocalFileData concode_elem_sep void setHeaderId concode_elem_sep byte[] getCentralDirectoryData concode_elem_sep...
byte [ ] function ( ) { return ZipUtil . copy ( localData ) ; }
3,207
gets the value of the allocsettlccy property . concode_field_sep String indAllocID concode_elem_sep List<NestedParties3BlockT> pty concode_elem_sep BigInteger actIDSrc concode_elem_sep BigDecimal qty concode_elem_sep String allocSettlCcy concode_elem_sep String acct concode_field_sep BigInteger getActIDSrc concode_elem...
String function ( ) { return allocSettlCcy ; }
3,208
calculate a map with thread id and its cpu time results are for one snapshot concode_field_sep int diskAccessNum concode_elem_sep List<ThreadData> threadList concode_field_sep ThreadData getThreadDataByID concode_elem_sep void updateDiskEnergy concode_elem_sep void calculateDiskAccessNum concode_elem_sep void updateCPU...
Map < Long , Long > function ( ) { Map < Long , Long > loc0 = new HashMap < > ( ) ; for ( ThreadData loc1 : this . threadList ) { loc0 . put ( loc1 . id , loc1 . cpuTime ) ; } return loc0 ; }
3,209
converts the time interval to milliseconds . concode_field_sep TimeUnit unit concode_elem_sep long size concode_field_sep long getSize concode_elem_sep int hashCode concode_elem_sep AbstractTime makeSpecificBasedOnTimeCharacteristic concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep TimeU...
long function ( ) { return unit . toMillis ( size ) ; }
3,210
sets the list of protein annotations . concode_field_sep long spectrumID concode_elem_sep String sequence concode_elem_sep List<Protein> annotations concode_elem_sep MascotGenericFile spectrumFile concode_field_sep void setSequence concode_elem_sep void addAnnotation concode_elem_sep MascotGenericFile getSpectrumFile c...
void function ( List < Protein > arg0 ) { this . annotations = arg0 ; }
3,211
tests if some key maps into the specified value in this hashtable . this operation is more expensive than the containskey method . note that this method is identical in functionality to containsvalue , which is part of the map interface in the collections framework . concode_field_sep Entry table[] concode_elem_sep Ent...
boolean function ( Object arg0 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } Entry loc0 [ ] = table ; for ( int loc1 = loc0 . length ; loc1 -- > 0 ; ) { for ( Entry loc2 = loc0 [ loc1 ] ; loc2 != null ; loc2 = loc2 . next ) { if ( loc2 . arg0 . equals ( arg0 ) ) { return true ; } } } return false ; }
3,212
sets the name of the entity to assign the roles to . concode_field_sep Set<String> roles concode_elem_sep String entityName concode_field_sep void addRoles concode_elem_sep String getModelId concode_elem_sep void setModelId concode_elem_sep QueryType getQueryType concode_elem_sep String toString concode_elem_sep void e...
void function ( final String arg0 ) { this . entityName = arg0 ; }
3,213
converts a collection of any type to a collection of data . concode_field_sep PlaceHolder placeHolder concode_field_sep long[] toLongArray concode_elem_sep int[] toIntArray concode_elem_sep boolean isEmpty concode_elem_sep boolean isNotEmpty concode_elem_sep List<V> addToValueList concode_elem_sep T getItemAtPositionOr...
void function ( Collection < C > arg0 , Collection < Data > arg1 , SerializationService arg2 , String arg3 ) { for ( C loc0 : arg0 ) { checkNotNull ( loc0 , arg3 ) ; arg1 . add ( arg2 . toData ( loc0 ) ) ; } }
3,214
builds the vehicle-type . concode_field_sep double maxVelo concode_elem_sep double perServiceTimeUnit concode_elem_sep double perTime concode_elem_sep double perTimeUnit concode_elem_sep Capacity.Builder capacityBuilder concode_elem_sep VehicleTypeImpl.VehicleCostParams vehicleCostParams concode_elem_sep double perTran...
VehicleTypeImpl function ( ) { if ( capacityDimensions == null ) { capacityDimensions = capacityBuilder . build ( ) ; } return new VehicleTypeImpl ( this ) ; }
3,215
generate a list of of typeinfos from an avro schema . this method is currently public due to some weirdness in deserializing unions , but will be made private once that is resolved . concode_field_sep Map<Schema.Type,TypeInfo> primitiveTypeToTypeInfo concode_elem_sep InstanceCache<Schema,TypeInfo> typeInfoCache concode...
List < TypeInfo > function ( Schema arg0 ) { return generateColumnTypes ( arg0 , null ) ; }
3,216
the time range from concode_field_sep Object startKey concode_elem_sep boolean flushOnEveryOperation concode_elem_sep String dataStoreClass concode_elem_sep Configuration hadoopConfiguration concode_elem_sep String keyClass concode_elem_sep long timeRangeFrom concode_elem_sep Object endKey concode_elem_sep long timeRan...
void function ( long arg0 ) { this . timeRangeFrom = arg0 ; }
3,217
the final call you receive before your activity is destroyed . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String id concode_field_sep boolean onOverrideUrlLoading concode_elem_sep Uri remapUri concode_elem_sep void ...
void function ( ) { }
3,218
method to get the association type . concode_field_sep String associationType concode_elem_sep String destinationPath concode_elem_sep String sourcePath concode_field_sep void setSourcePath concode_elem_sep void setDestinationPath concode_elem_sep String getSourcePath concode_elem_sep String getAssociationType concode_...
void function ( String arg0 ) { this . associationType = arg0 ; }
3,219
add error message . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep ValueBinding getValueBinding concode_elem_sep Object getElValue concode_elem_sep void addInfoMessage concode_elem_sep void addInfoMessage concode_elem_s...
void function ( String arg0 ) { addErrorMessage ( null , arg0 ) ; }
3,220
the unit of time . concode_field_sep Calendar calendar concode_elem_sep TimeUnit unit concode_elem_sep int value concode_field_sep int getValue concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep long getTimeRelativeTo
String function ( ) { return unit . toString ( ) ; }
3,221
writes the 8-bit byte to the binary output stream . concode_field_sep int buffer concode_elem_sep int n concode_elem_sep BufferedOutputStream out concode_field_sep void flush concode_elem_sep void clearBuffer concode_elem_sep void main concode_elem_sep void close concode_elem_sep void write concode_elem_sep void write ...
void function ( int arg0 ) { assert arg0 >= 0 && arg0 < 256 ; if ( n == 0 ) { try { out . write ( arg0 ) ; } catch ( IOException loc0 ) { loc0 . printStackTrace ( ) ; } return ; } for ( int loc0 = 0 ; loc0 < 8 ; loc0 ++ ) { boolean loc1 = ( ( arg0 >>> ( 8 - loc0 - 1 ) ) & 1 ) == 1 ; writeBit ( loc1 ) ; } }
3,222
returns a new attributeselector which selects attributes whose string representationmatch the provided regular expression . concode_field_sep String str concode_elem_sep Pattern pattern concode_field_sep boolean select concode_elem_sep boolean select concode_elem_sep boolean select concode_elem_sep String toString conc...
AttributeSelector function ( String arg0 ) { return new RegexSelector ( arg0 ) ; }
3,223
set the kerberos principal . concode_field_sep String principal concode_elem_sep String zookeeperQuorum concode_elem_sep Thread loginRenewer concode_elem_sep int zookeeperClientPort concode_elem_sep Logger logger concode_elem_sep Configuration configuration concode_elem_sep String USER_NAME_SPECIFIER concode_elem_sep l...
void function ( String arg0 ) { this . principal = arg0 ; }
3,224
returns true if the device is capable of invitation @hide concode_field_sep int groupCapability concode_elem_sep Creator<WifiP2pDevice> CREATOR concode_elem_sep int DEVICE_CAPAB_CLIENT_DISCOVERABILITY concode_elem_sep int deviceCapability concode_elem_sep int GROUP_CAPAB_GROUP_LIMIT concode_elem_sep int WPS_CONFIG_PUSH...
boolean function ( ) { return ( deviceCapability & DEVICE_CAPAB_INVITATION_PROCEDURE ) != 0 ; }
3,225
method to get the red value from a pixel represented as an int concode_field_sep int x concode_elem_sep int y concode_elem_sep DigitalPicture picture concode_field_sep int getCol concode_elem_sep int correctValue concode_elem_sep Color getColor concode_elem_sep void setAlpha concode_elem_sep int getRow concode_elem_sep...
int function ( int arg0 ) { int loc0 = ( arg0 >> 16 ) & 0xff ; return loc0 ; }
3,226
test of stop method , of class audiorecorderimpl . check it manually concode_field_sep PriorityQueueScheduler scheduler concode_elem_sep AudioRecorderImpl recorder concode_elem_sep Sine sine concode_elem_sep AudioComponent sineComponent concode_elem_sep AudioMixer mixer concode_elem_sep Clock clock concode_elem_sep Aud...
void function ( ) { recorder . setRecordFile ( "srini_string" , false ) ; recorder . setPostSpeechTimer ( 5000000000L ) ; sine . start ( ) ; mixer . start ( ) ; Thread . sleep ( 5000 ) ; sine . setAmplitude ( ( short ) 0 ) ; Thread . sleep ( 7000 ) ; sine . stop ( ) ; mixer . stop ( ) ; }
3,227
it is a singleton . concode_field_sep GpmIntegerFormatter INSTANCE concode_field_sep String format concode_elem_sep Integer parse
GpmIntegerFormatter function ( ) { return INSTANCE ; }
3,228
sets the site_title value for this report_suite_ui_element . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String rsid concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String site_title concode_elem_sep com.omn...
void function ( java . lang . String arg0 ) { this . site_title = arg0 ; }
3,229
if no profile has been configured , set by default the `` dev '' profile . concode_field_sep Logger log concode_elem_sep Environment env concode_field_sep void initApplication concode_elem_sep void main concode_elem_sep void addLiquibaseScanPackages
void function ( SpringApplication arg0 , SimpleCommandLinePropertySource arg1 ) { if ( ! arg1 . containsProperty ( "srini_string" ) && ! System . getenv ( ) . containsKey ( "srini_string" ) ) { arg0 . setAdditionalProfiles ( Constants . SPRING_PROFILE_DEVELOPMENT ) ; } }
3,230
returns the user name of this user thread . concode_field_sep UserThread _userThread concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean getRead concode_elem_s...
java . lang . String function ( ) { return _userThread . getUserName ( ) ; }
3,231
requests a `` dangerous '' permission for the application at runtime . this is a helper method alternative to cordovainterface.requestpermission that does not require the project to be built with cordova-android 5.0.0 + concode_field_sep String LOG_TAG concode_field_sep boolean hasPermission concode_elem_sep void deliv...
void function ( CordovaPlugin arg0 , int arg1 , String arg2 ) { PermissionHelper . requestPermissions ( arg0 , arg1 , new String [ ] { arg2 } ) ; }
3,232
removes all records held by the data source . concode_field_sep Collection<Record> records concode_field_sep void add concode_elem_sep void setLogger concode_elem_sep void writeConfig concode_elem_sep RecordIterator getRecords
void function ( ) { records . clear ( ) ; }
3,233
returns a org.ejml.alg.dense.decomposition.chol.choleskydecompositionldl _ d64 that has been optimized for the specified matrix size . concode_field_sep PlaceHolder placeHolder concode_field_sep SingularValueDecomposition<DenseMatrix64F> svd concode_elem_sep TridiagonalSimilarDecomposition<DenseMatrix64F> tridiagonal c...
CholeskyDecompositionLDL_D64 function ( int arg0 ) { return new CholeskyDecompositionLDL_D64 ( ) ; }
3,234
get the disposition . concode_field_sep String name concode_elem_sep String disposition concode_elem_sep String ATTACHMENT concode_elem_sep String INLINE concode_elem_sep String description concode_elem_sep String path concode_elem_sep URL url concode_field_sep void setName concode_elem_sep URL getURL concode_elem_sep ...
String function ( ) { return disposition ; }
3,235
log a finest message . concode_field_sep LogImpl impl concode_elem_sep String CATEGORY concode_field_sep boolean isLoggable concode_elem_sep boolean isLoggingSupported concode_elem_sep void setDefaultLevel concode_elem_sep Iterator levelIterator concode_elem_sep void log concode_elem_sep Level getDefaultLevel concode_e...
void function ( String arg0 , String arg1 ) { impl . finest ( arg0 , arg1 ) ; }
3,236
this function scales the row concode_field_sep byte[] row concode_elem_sep int currentLocation concode_field_sep void set concode_elem_sep void set concode_elem_sep void addBar concode_elem_sep byte[] getRow
byte [ ] function ( int arg0 ) { byte [ ] loc0 = new byte [ row . length * arg0 ] ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { loc0 [ loc1 ] = row [ loc1 / arg0 ] ; } return loc0 ; }
3,237
create an instance of postpersist concode_field_sep PlaceHolder placeHolder concode_field_sep EntityResult createEntityResult concode_elem_sep Column createColumn concode_elem_sep EmptyType createEmptyType concode_elem_sep Transient createTransient concode_elem_sep Lob createLob concode_elem_sep SequenceGenerator creat...
PostPersist function ( ) { return new PostPersist ( ) ; }
3,238
gets the boolean value of the field on the jsonobject with the given name , or the given default value if the field is missing . concode_field_sep String __OBFID concode_field_sep String getJsonElementStringValue concode_elem_sep JsonArray getJsonObjectJsonArrayField concode_elem_sep String getJsonObjectStringFieldValu...
boolean function ( JsonObject arg0 , String arg1 , boolean arg2 ) { return arg0 . has ( arg1 ) ? getJsonElementBooleanValue ( arg0 . get ( arg1 ) , arg1 ) : arg2 ; }
3,239
set key store concode_field_sep String domainControllerFQDN concode_elem_sep int domainControllerPort concode_elem_sep KeyStore keyStore concode_elem_sep String tenant concode_elem_sep URI metadataURI concode_field_sep RSAPublicKey getProviderRSAPublicKey concode_elem_sep ProviderMetadata parseMetadataResponse concode_...
Builder function ( KeyStore arg0 ) { Validate . notNull ( arg0 , "srini_string" ) ; this . keyStore = arg0 ; return this ; }
3,240
gets the value of the comment property . concode_field_sep String elevation concode_elem_sep String gazref concode_elem_sep String mod concode_elem_sep String dimensionality concode_elem_sep String midIDs concode_elem_sep BigInteger start concode_elem_sep String dcl concode_elem_sep String type concode_elem_sep String ...
String function ( ) { return comment ; }
3,241
should this be considered a valid measurement ? concode_field_sep Reading r concode_elem_sep boolean valid concode_elem_sep int code concode_elem_sep double x concode_elem_sep double y concode_elem_sep double z concode_elem_sep String source concode_elem_sep double vsound concode_field_sep Point3d getPoint concode_elem...
boolean function ( ) { if ( getCode ( ) > 0 ) { return true ; } return false ; }
3,242
handles the exception by opening an error dialog with an error message concode_field_sep LinkedList<ExceptionMessage> errorMessages concode_elem_sep boolean dialogShowing concode_elem_sep Handler mainHandler concode_elem_sep int MSG_OPEN_ERROR_DIALOG concode_elem_sep String TAG concode_field_sep void handleOpenErrorDia...
void function ( ExceptionMessage arg0 ) { openErrorDialog ( arg0 ) ; }
3,243
returns the tracker , which is responsible for deleting temporary files . concode_field_sep int sizeThreshold concode_elem_sep int DEFAULT_SIZE_THRESHOLD concode_elem_sep File repository concode_elem_sep FileCleaningTracker fileCleaningTracker concode_field_sep void setSizeThreshold concode_elem_sep FileCleaningTracker...
void function ( FileCleaningTracker arg0 ) { fileCleaningTracker = arg0 ; }
3,244
sets type and tolerance , if tolerance < = 0 , no filtering will be done concode_field_sep double mTolerance concode_elem_sep boolean[] keep concode_elem_sep float mScaleRatio concode_elem_sep ApproximatorType mType concode_elem_sep float mDeltaRatio concode_field_sep ArrayList<Entry> filter concode_elem_sep ArrayList<...
void function ( ApproximatorType arg0 , double arg1 ) { mType = arg0 ; mTolerance = arg1 ; }
3,245
this method ... concode_field_sep int numberOfRecrodsNotUpdatedForHistoricalPurposes concode_elem_sep int numberOfRecordsNotUpdatedBecauseManual concode_elem_sep int numberOfRecordsNewlyAddedFromWebSite concode_elem_sep int numberOfRecordsDeactivatedBecauseNoLongerOnWebSite concode_elem_sep int numberOfRecordsReActivat...
int function ( ) { return numberOfRecordsRetrievedFromWebSite ; }
3,246
builds number instances of t. list will be the requested length unless this would exhaust a sequence within the builder in which case the maximum possible sized list will be returned concode_field_sep PlaceHolder placeHolder concode_field_sep SequenceBuilder<T> decorate concode_elem_sep Iterator<T> iterator concode_ele...
List < T > function ( final Builder < T > arg0 , final int arg1 ) { final List < T > loc0 = new ArrayList < T > ( ) ; Maybe < Builder < T >> loc1 = Maybe . some ( arg0 ) ; int loc2 = 0 ; while ( loc1 . hasSome ( ) && ( loc2 < arg1 ) ) { loc0 . add ( loc1 . value ( ) . build ( ) ) ; loc1 = loc1 . value ( ) . loc1 ( ) ; ...
3,247
get tool at index concode_field_sep String name concode_elem_sep List<ToolNode> tools concode_field_sep void add concode_elem_sep String getName concode_elem_sep int getToolLength concode_elem_sep Icon getIcon
ToolNode function ( int arg0 ) { return tools . get ( arg0 ) ; }
3,248
returns the y of the bounding box of the original svg image . concode_field_sep int width concode_elem_sep float origAlpha concode_elem_sep int height concode_field_sep int getIconWidth concode_elem_sep int getOrigWidth concode_elem_sep void paint concode_elem_sep void paintCompositeGraphicsNode_0_0_0 concode_elem_sep ...
int function ( ) { return 3 ; }
3,249
support junit 3.x test hierarchy . concode_field_sep Predicate<Constructor<?>> IS_PUBLIC_CONSTRUCTOR concode_elem_sep Predicate<Method> IS_ANNOTATED_TEST_METHOD concode_field_sep boolean isRunnable concode_elem_sep boolean isRunnable concode_elem_sep boolean isUsingCustomRunner concode_elem_sep boolean apply concode_el...
boolean function ( Class < ? > arg0 ) { return junit . framework . Test . class . isAssignableFrom ( arg0 ) ; }
3,250
gets the value of the message property . concode_field_sep String message concode_field_sep void setMessage
String function ( ) { return message ; }
3,251
the name of the iam user that the key is associated with . concode_field_sep String accessKeyId concode_elem_sep String userName concode_elem_sep String status concode_elem_sep java.util.Date createDate concode_field_sep AccessKeyMetadata withStatus concode_elem_sep AccessKeyMetadata withStatus concode_elem_sep void se...
void function ( String arg0 ) { this . userName = arg0 ; }
3,252
set action type as given type concode_field_sep long date concode_elem_sep String moderatorName concode_elem_sep int SENDMESSAGE concode_elem_sep int MARKASUNRESOLVED concode_elem_sep long reportId concode_elem_sep long galleryId concode_elem_sep long messageId concode_elem_sep int REACTIVATEAPP concode_elem_sep String...
void function ( int arg0 ) { this . actionType = arg0 ; }
3,253
convert the hex string to bytes . concode_field_sep char[] hexChar concode_field_sep String conventBytesToHexString concode_elem_sep String convertBytesToHexString concode_elem_sep String convertBytesToHexString concode_elem_sep String convertStringToHexString concode_elem_sep String convertHexStringToString
byte [ ] function ( String arg0 ) { return convertHexStringToBytes ( arg0 , 0 , arg0 . length ( ) ) ; }
3,254
check if part contains in base concode_field_sep StringMatcherMode mode concode_elem_sep Collator collator concode_elem_sep String part concode_field_sep boolean cmatches concode_elem_sep boolean cstartsWith concode_elem_sep Collator getCollator concode_elem_sep boolean matches concode_elem_sep boolean isSpace concode_...
boolean function ( Collator arg0 , String arg1 , String arg2 ) { int loc0 = 0 ; if ( arg2 . length ( ) > 3 ) { loc0 = cindexOf ( arg0 , loc0 , arg2 . substring ( 0 , 3 ) , arg1 ) ; if ( loc0 == - 1 ) { return false ; } } loc0 = cindexOf ( arg0 , loc0 , arg2 , arg1 ) ; if ( loc0 == - 1 ) { return false ; } return true ;...
3,255
test method for org.jboss.security.config.securityconfiguration #getkeystoretype . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetCipherAlgorithm concode_elem_sep void testSetIterationCount concode_elem_sep void testGetKeyStoreURL concode_elem_sep void testGetSalt concode_elem_sep void testGetT...
void function ( ) { SecurityConfiguration . getKeyStoreType ( ) ; }
3,256
implementation of hashcode . concode_field_sep Map args concode_elem_sep String CONFIG_KEY concode_elem_sep String name concode_elem_sep String description concode_elem_sep String className concode_field_sep void setName concode_elem_sep PropertyDescriptor getPropertyDescriptor concode_elem_sep String getName concode_e...
int function ( ) { int loc0 = 1 ; if ( name != null ) { loc0 *= name . hashCode ( ) ; } if ( description != null ) { loc0 *= description . hashCode ( ) ; } if ( className != null ) { loc0 *= className . hashCode ( ) ; } if ( args != null ) { loc0 *= args . hashCode ( ) ; } return loc0 ; }
3,257
indicates whether the given character is in the reserved set . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] encodeBytes concode_elem_sep boolean isAllowed concode_elem_sep boolean isAllowed concode_elem_sep boolean isAllowed concode_elem_sep boolean isAllowed concode_elem_sep boolean isAllowed con...
boolean function ( int arg0 ) { return isGenericDelimiter ( arg0 ) || isSubDelimiter ( arg0 ) ; }
3,258
set name value to name concode_field_sep String name concode_elem_sep int age concode_elem_sep SimplePOJO simplePOJO concode_field_sep int getAge concode_elem_sep String getName concode_elem_sep SimplePOJO getSimplePOJO concode_elem_sep void setSimplePOJO concode_elem_sep void setAge
void function ( String arg0 ) { this . name = arg0 ; }
3,259
unique , case-sensitive identifier you provide to ensure the idempotency of the request . concode_field_sep String clientToken concode_elem_sep VpcEndpoint vpcEndpoint concode_field_sep VpcEndpoint getVpcEndpoint concode_elem_sep CreateVpcEndpointResult withVpcEndpoint concode_elem_sep String getClientToken concode_ele...
void function ( String arg0 ) { this . clientToken = arg0 ; }
3,260
sets the value of the person property . concode_field_sep Person person concode_field_sep Person getPerson
void function ( Person arg0 ) { this . person = arg0 ; }
3,261
get the uri to use to contact the connection manager . concode_field_sep Boolean bCompression concode_elem_sep int bProxyPort concode_elem_sep boolean compressionEnabled concode_elem_sep URI bURI concode_elem_sep SSLContext sslContext concode_elem_sep String bFrom concode_elem_sep URI uri concode_elem_sep String proxyH...
URI function ( ) { return uri ; }
3,262
transfer money from a cash book to another concode_field_sep PlaceHolder placeHolder concode_field_sep void transferBankToBank concode_elem_sep void transferFromJournalToCashBook
void function ( Properties arg0 , int arg1 , int arg2 , int arg3 , BigDecimal arg4 , Timestamp arg5 , String arg6 ) { MCash loc0 = MCash . get ( arg0 , arg1 , arg5 , arg6 ) ; transferFromJournalToCashBook ( arg0 , loc0 , arg2 , arg3 , arg4 , arg5 , arg6 ) ; }
3,263
returns the id that uniquely identifies the published item in the node . concode_field_sep Logger log concode_elem_sep LeafNode node concode_elem_sep BlockingQueue<SAXReader> xmlReaders concode_elem_sep Element payload concode_elem_sep String payloadXML concode_elem_sep int POOL_SIZE concode_elem_sep JID publisher conc...
String function ( ) { return id ; }
3,264
reset the wasused flag concode_field_sep long lastValue concode_elem_sep long currValue concode_elem_sep int dataType concode_elem_sep HsqlName name concode_elem_sep long increment concode_elem_sep long startValue concode_field_sep long getValue concode_elem_sep long getValue concode_elem_sep HsqlName getName concode_e...
void function ( ) { lastValue = currValue ; }
3,265
gets the value of the chargeableoverage property . concode_field_sep BigDecimal chargeableOverage concode_elem_sep String unitOfMeasure concode_elem_sep BigDecimal allowed concode_elem_sep long serialVersionUID concode_elem_sep BigDecimal used concode_elem_sep BigDecimal contributedToStack concode_elem_sep String msisd...
BigDecimal function ( ) { return chargeableOverage ; }
3,266
sets the value of the attributedesignator property . concode_field_sep AttributeValueType attributeValue concode_elem_sep AttributeSelectorType attributeSelector concode_elem_sep AttributeDesignatorType attributeDesignator concode_elem_sep String matchId concode_field_sep String getMatchId concode_elem_sep AttributeVal...
void function ( AttributeDesignatorType arg0 ) { this . attributeDesignator = arg0 ; }
3,267
factory method to create a notification dialog based on a message id . this alert dialog has only one button.ge concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
AlertDialog function ( Context arg0 , int arg1 ) { AlertDialog . Builder loc0 = new AlertDialog . Builder ( arg0 ) ; loc0 . setMessage ( arg1 ) . setCancelable ( false ) . setPositiveButton ( "srini_string" , null ) ; return loc0 . create ( ) ; }
3,268
a convenience method that returns , as a boolean , the library global configuration property indicating if the default pseudo random number generator produces , or not , the same bit stream when instantiated . concode_field_sep String TRUE concode_elem_sep String PROPERTIES_FILE concode_elem_sep String DO_RSA_BLINDING ...
boolean function ( ) { SecurityManager loc0 = System . getSecurityManager ( ) ; if ( loc0 != null ) loc0 . checkPermission ( new PropertyPermission ( REPRODUCIBLE_PRNG , "srini_string" ) ) ; return instance ( ) . reproducible ; }
3,269
this method returns the list of ace objects . concode_field_sep String roleBaseUrl concode_elem_sep String requireSchemaAuthz concode_elem_sep ArrayList<Ace> aceList concode_field_sep void setRequireSchemaAuthz concode_elem_sep String getRequireSchemaAuthz concode_elem_sep void addAce concode_elem_sep String toXmlStrin...
ArrayList < Ace > function ( ) { return aceList ; }
3,270
the time , in seconds , that the connection is allowed to be idle no data has been sent over the connection before it is closed by the load balancer . concode_field_sep Integer idleTimeout concode_field_sep Integer getIdleTimeout concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ConnectionS...
ConnectionSettings function ( Integer arg0 ) { setIdleTimeout ( arg0 ) ; return this ; }
3,271
report javascript error . concode_field_sep PlaceHolder placeHolder concode_field_sep int initFramework concode_elem_sep int execJS concode_elem_sep void setTimeoutNative concode_elem_sep int callNative
void function ( String arg0 , String arg1 , String arg2 ) { WXBridgeManager . getInstance ( ) . reportJSException ( arg0 , arg1 , arg2 ) ; }
3,272
check whether has root permission concode_field_sep int result concode_elem_sep String COMMAND_SU concode_elem_sep String COMMAND_EXIT concode_elem_sep String COMMAND_LINE_END concode_elem_sep String successMsg concode_elem_sep String COMMAND_SH concode_elem_sep String errorMsg concode_field_sep CommandResult execComma...
boolean function ( ) { return execCommand ( "srini_string" , true , false ) . result == 0 ; }
3,273
asserts that a condition is false . if it is n't it throws an assertionfailederror with the given message . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertNotEmpty concode_elem_sep void assertNotEmpty concode_elem_sep void failNotSame concode_elem_sep String format concode_elem_sep void assertPo...
void function ( String arg0 , boolean arg1 ) { assertTrue ( arg0 , ! arg1 ) ; }
3,274
creates a new instance of detecthaarparam concode_field_sep HaarClassifierCascade mHcc concode_elem_sep Rect mRectCurrent concode_elem_sep Vector<Rect> mVecRects concode_field_sep void setCascade concode_elem_sep Enumeration<Rect> getResult concode_elem_sep String toString concode_elem_sep void push
Rect function ( ) { return this . mRectCurrent ; }
3,275
sets the account id of this folder . concode_field_sep Folder _folder concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int co...
void function ( long arg0 ) { _folder . setAccountId ( arg0 ) ; }
3,276
begins ws-at transaction . concode_field_sep PlaceHolder placeHolder concode_field_sep void testNonTransactionalServiceWithoutFeature concode_elem_sep void testNoTransactionWithDisabledFeature concode_elem_sep TestServiceAT getATClientWithoutFeature concode_elem_sep void rollbackTransaction concode_elem_sep void testCo...
void function ( ) { UserTransaction loc0 = UserTransactionFactory . loc0 ( ) ; try { loc0 . begin ( ) ; } catch ( Exception loc1 ) { throw new RuntimeException ( "srini_string" , loc1 ) ; } }
3,277
returns the underlying long values that has got all the bits applied . the first item in the array has got the most significant bits . concode_field_sep long[] longs concode_elem_sep int writePosition concode_elem_sep int readPosition concode_elem_sep int numberOfBytes concode_elem_sep long[] RIGHT_OVERFLOW_MASKS conco...
long [ ] function ( ) { return longs ; }
3,278
retrieves the fully-qualified name of the java class whose instances should be passed to the method preparedstatement.setobject . concode_field_sep int[] types concode_elem_sep int[] modes concode_elem_sep int parameterCount concode_elem_sep int[] nullability concode_elem_sep Result.ResultMetaData rmd concode_elem_sep ...
String function ( int arg0 ) { checkRange ( arg0 ) ; return classNames [ -- arg0 ] ; }
3,279
override of tostring . concode_field_sep boolean hasSubtopicWildcard concode_elem_sep boolean hierarchical concode_elem_sep String separator concode_elem_sep String SUBTOPIC_WILDCARD concode_elem_sep String subtopic concode_field_sep String getValue concode_elem_sep int hashCode concode_elem_sep boolean equals concode_...
String function ( ) { return subtopic ; }
3,280
produces a shallow copy of this vector . concode_field_sep int m_Size concode_elem_sep int m_SpecialElement concode_elem_sep int m_Counter concode_elem_sep double m_CapacityMultiplier concode_elem_sep int m_CapacityIncrement concode_elem_sep FastVector m_Vector concode_elem_sep Object[] m_Objects concode_field_sep void...
Object function ( ) { FastVector loc0 = new FastVector ( m_Objects . length , m_CapacityIncrement , m_CapacityMultiplier ) ; loc0 . m_Size = m_Size ; System . arraycopy ( m_Objects , 0 , loc0 . m_Objects , 0 , m_Size ) ; return loc0 ; }
3,281
method to obtain an instance of the logger that can be used to log database query statistics . concode_field_sep Log log concode_elem_sep ThreadLocal<StatisticsRecord> tStatisticsRecord concode_field_sep StatisticsRecord getStatisticsRecord concode_elem_sep StatisticsRecord initialValue concode_elem_sep void clearStati...
Log function ( ) { return log ; }
3,282
true if given address is part of this memory section . concode_field_sep MemoryMonitor mm concode_elem_sep HashMap<String,Integer> addresses concode_elem_sep int address concode_elem_sep ArrayList<MoteMemorySection> sections concode_elem_sep int offset concode_elem_sep int size concode_elem_sep byte[] oldMem concode_el...
boolean function ( int arg0 ) { if ( data == null ) { return false ; } return ( arg0 >= startAddr && arg0 < ( startAddr + data . length ) ) ; }
3,283
create a new file object from two file paths . concode_field_sep String LOG_TAG concode_field_sep long getFreeDiskSpace concode_elem_sep boolean testSaveLocationExists concode_elem_sep long freeSpaceCalculation concode_elem_sep String getTempDirectoryPath concode_elem_sep boolean testFileExists
File function ( String arg0 , String arg1 ) { File loc0 ; if ( arg1 . startsWith ( arg0 ) ) { loc0 = new File ( arg1 ) ; } else { loc0 = new File ( arg0 + "srini_string" + arg1 ) ; } return loc0 ; }
3,284
gets the selectedstudent student id . concode_field_sep String selectedCourse concode_elem_sep Course currentCourse concode_elem_sep List studentCourses concode_elem_sep List courseItems concode_elem_sep String selectedStudent concode_elem_sep Student newStudent concode_elem_sep List studentItems concode_elem_sep Stude...
String function ( ) { return selectedStudent ; }
3,285
provides the source and type of the event that causes aws config to evaluate your aws resources . concode_field_sep String owner concode_elem_sep String sourceIdentifier concode_elem_sep com.amazonaws.internal.SdkInternalList<SourceDetail> sourceDetails concode_field_sep int hashCode concode_elem_sep void setSourceDeta...
java . util . List < SourceDetail > function ( ) { if ( sourceDetails == null ) { sourceDetails = new com . amazonaws . internal . SdkInternalList < SourceDetail > ( ) ; } return sourceDetails ; }
3,286
return a string containing this cell 's attributes . concode_field_sep int skip concode_elem_sep int ref concode_elem_sep int cmd concode_elem_sep int cnt concode_field_sep placeholderType placeHolder
String function ( ) { return "srini_string" + ref + "srini_string" + cmd + "srini_string" + cnt + "srini_string" + skip + "srini_string" ; }
3,287
get the job id concode_field_sep JobInited datum concode_field_sep int getTotalReduces concode_elem_sep EventType getEventType concode_elem_sep long getLaunchTime concode_elem_sep int getTotalMaps concode_elem_sep Object getDatum concode_elem_sep void setDatum concode_elem_sep boolean getUberized concode_elem_sep Strin...
JobID function ( ) { return JobID . forName ( datum . getJobid ( ) . toString ( ) ) ; }
3,288
copy all of the bytes from the input stream to the output stream . concode_field_sep boolean trace concode_elem_sep Log log concode_elem_sep int DEFAULT_BUFFER_SIZE concode_field_sep boolean flush concode_elem_sep boolean flush concode_elem_sep boolean fclose concode_elem_sep boolean fclose concode_elem_sep long copyb ...
long function ( final InputStream arg0 , final OutputStream arg1 ) { return copy ( arg0 , arg1 , DEFAULT_BUFFER_SIZE ) ; }
3,289
sets the message fragment timeout . this is the timeout that the socket timeout is set to after the first byte of a message has been received . a command function e.g. connection #interrogation int , causeoftransmission , iequalifierofinterrogation interrogation will throw an ioexception if the socket throws this timeo...
void function ( int arg0 ) { if ( arg0 < 0 ) { throw new IllegalArgumentException ( "srini_string" + arg0 ) ; } settings . messageFragmentTimeout = arg0 ; }
3,290
get arrayarraynumber concode_field_sep List<List<BigDecimal>> arrayArrayNumber concode_field_sep String toIndentedString concode_elem_sep ArrayOfArrayOfNumberOnly addArrayArrayNumberItem concode_elem_sep ArrayOfArrayOfNumberOnly arrayArrayNumber concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem...
List < List < BigDecimal >> function ( ) { return arrayArrayNumber ; }
3,291
returns true if this launchable can be run by this client . concode_field_sep PlaceHolder placeHolder concode_field_sep IStatus launch
boolean function ( IServer arg0 , Object arg1 , String arg2 ) { return true ; }
3,292
gets the name value for this richmediastudiochildassetproperty . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String name concode_elem_sep java.lang.Integer width concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.la...
java . lang . String function ( ) { return name ; }
3,293
used internally . concode_field_sep Class<T> matcherClass concode_elem_sep MatcherAssertion<T> assertions[] concode_field_sep MatcherTesterDSL1<T> of concode_elem_sep Class<T> getMatcherClass concode_elem_sep MatcherTesterDSL2<T> matcher concode_elem_sep MatcherTesterDSL3 value
MatcherAssertion < T > [ ] function ( ) { return assertions ; }
3,294
filter item by child index and item data . concode_field_sep MenuView mMenuView concode_elem_sep int mMenuLayoutRes concode_elem_sep Context mSystemContext concode_elem_sep MenuBuilder mMenu concode_elem_sep LayoutInflater mSystemInflater concode_elem_sep int mItemLayoutRes concode_elem_sep int mId concode_elem_sep Cal...
boolean function ( int arg0 , MenuItemImpl arg1 ) { return true ; }
3,295
add a byte field to the stream . \ param value the byte value to be added . concode_field_sep byte[] intBuf concode_elem_sep int MAX_INT_BYTES concode_elem_sep PackFormatInputStream format concode_elem_sep ByteArrayOutputStream packed concode_field_sep byte[] getValue concode_elem_sep void packLong concode_elem_sep voi...
void function ( byte arg0 ) { format . checkType ( 'b' , true ) ; byte loc0 = ( byte ) ( arg0 + 0x80 ) ; packed . write ( loc0 ) ; }
3,296
gets the acceleration priority of this image . concode_field_sep ImageCapabilities capabilities concode_elem_sep int SCALE_DEFAULT concode_elem_sep int SCALE_REPLICATE concode_elem_sep Object UndefinedProperty concode_elem_sep int SCALE_AREA_AVERAGING concode_elem_sep float accelerationPriority concode_elem_sep int SCA...
float function ( ) { return accelerationPriority ; }
3,297
sets the value of the tid property . concode_field_sep String attributeName concode_elem_sep Long oid concode_elem_sep Long tid concode_field_sep Long getTid concode_elem_sep void setAttributeName concode_elem_sep void setOid concode_elem_sep Long getOid concode_elem_sep String getAttributeName
void function ( Long arg0 ) { this . tid = arg0 ; }
3,298
creates a mock genericdraweehierarchy with some methods stubbed . concode_field_sep PlaceHolder placeHolder concode_field_sep ControllerListener stubControllerListener concode_elem_sep GenericDraweeHierarchyBuilder mockBuilderOf concode_elem_sep void stubGetAndSetHierarchy concode_elem_sep Supplier<T> supplierOf concod...
GenericDraweeHierarchy function ( ) { return mockDraweeHierarchyOf ( DrawableTestUtils . mockDrawable ( ) ) ; }
3,299
obtiene el valor numerico de un textfield con formato $ ## . ## retorna ## . ## concode_field_sep PlaceHolder placeHolder concode_field_sep String quitarSimboloPesos concode_elem_sep boolean tieneDecimales concode_elem_sep String redondear concode_elem_sep String redondear concode_elem_sep String quitar concode_elem_se...
double function ( abstractt . TextField arg0 ) { return obtenerValor ( arg0 . getText ( ) ) ; }