idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
9,300
set the information message . concode_field_sep List<SwordValidationInfo> unmarshallAttributeInfo concode_elem_sep String MISSING_ATTRIBUTE_WARNING concode_elem_sep List<SwordValidationInfo> unmarshallElementInfo concode_elem_sep String MISSING_ELEMENT_ERROR concode_elem_sep String message concode_elem_sep SwordValidat...
void function ( String arg0 ) { this . message = arg0 ; }
9,301
gets whether the class that this method is part of is defined with acc_super . concode_field_sep LineNumberList lineNumbers concode_elem_sep LocalVariableList localVariables concode_elem_sep Method method concode_elem_sep boolean accSuper concode_elem_sep CstString sourceFile concode_elem_sep AttCode attCode concode_fi...
boolean function ( ) { return accSuper ; }
9,302
called by the servlet container to indicate to a servlet that the servlet is being placed into service . see servlet #init . this implementation stores the servletconfig object it receives from the servlet container for later use . when overriding this form of the method , call super.init config . concode_field_sep Ser...
void function ( ServletConfig arg0 ) { this . config = arg0 ; this . init ( ) ; }
9,303
sets the count concode_field_sep java.util.Date date concode_elem_sep Top other concode_elem_sep String address concode_elem_sep Top top concode_elem_sep String name concode_elem_sep int count concode_elem_sep long id concode_field_sep void setName concode_elem_sep void setOther concode_elem_sep void init concode_elem_...
void function ( int arg0 ) { this . count = arg0 ; }
9,304
is this a date field ? concode_field_sep int number concode_elem_sep String metadata concode_elem_sep Set<SortOption> sortOptionsSet concode_elem_sep boolean visible concode_elem_sep String ASCENDING concode_elem_sep String name concode_elem_sep String DESCENDING concode_elem_sep Logger log concode_elem_sep String type...
boolean function ( ) { if ( "srini_string" . equals ( type ) ) { return true ; } return false ; }
9,305
rsassa-pss-sign concode_field_sep BigInteger E concode_elem_sep MessageDigest md concode_elem_sep int emBits concode_elem_sep int emLen concode_elem_sep BigInteger N concode_elem_sep Key key concode_field_sep byte[] EMSA_PSS_ENCODE concode_elem_sep boolean EMSA_PSS_VERIFY concode_elem_sep boolean verify concode_elem_se...
byte [ ] function ( byte [ ] arg0 ) { byte [ ] loc0 = EMSA_PSS_ENCODE ( arg0 ) ; BigInteger loc1 = new BigInteger ( 1 , loc0 ) ; BigInteger loc2 = RSASP1 ( loc1 ) ; byte [ ] loc3 = Bytes . toFixedLenByteArray ( loc2 , this . emBits ) ; return loc3 ; }
9,306
gets the value of the receivertradingpartner property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the receivertradingpartner property . for examp...
List < ReceiverTradingPartnerType > function ( ) { if ( receiverTradingPartner == null ) { receiverTradingPartner = new ArrayList < ReceiverTradingPartnerType > ( ) ; } return this . receiverTradingPartner ; }
9,307
a list of groups . concode_field_sep Boolean isTruncated concode_elem_sep String marker concode_elem_sep com.amazonaws.internal.SdkInternalList<Group> groups concode_field_sep Boolean isTruncated concode_elem_sep void setIsTruncated concode_elem_sep void setMarker concode_elem_sep ListGroupsForUserResult withIsTruncate...
ListGroupsForUserResult function ( java . util . Collection < Group > arg0 ) { setGroups ( arg0 ) ; return this ; }
9,308
public api - encodes a table . concode_field_sep int COPY_BUFFER_SIZE concode_elem_sep DataOutputStream out concode_field_sep void writeLongstr concode_elem_sep void writeLongstr concode_elem_sep void writeLong concode_elem_sep void writeFieldValue concode_elem_sep void writeTimestamp concode_elem_sep void writeArray c...
void function ( Map < String , Object > arg0 ) { if ( arg0 == null ) { out . writeInt ( 0 ) ; } else { out . writeInt ( ( int ) Frame . tableSize ( arg0 ) ) ; for ( Map . Entry < String , Object > loc0 : arg0 . entrySet ( ) ) { writeShortstr ( loc0 . getKey ( ) ) ; Object loc1 = loc0 . getValue ( ) ; writeFieldValue ( ...
9,309
returns an unmodifiable empty intobjectmap . concode_field_sep Entry<V> entry concode_elem_sep Iterator<Entry<V>> iter concode_elem_sep IntObjectMap<V> map concode_elem_sep IntObjectMap<Object> EMPTY_INT_OBJECT_MAP concode_field_sep Entry<V> next concode_elem_sep boolean containsKey concode_elem_sep boolean containsKey...
IntObjectMap < V > function ( ) { return ( IntObjectMap < V > ) EMPTY_INT_OBJECT_MAP ; }
9,310
the contains test whether the coordinate p is within the circle . triangle contains coordinate if the distance between center and p is smaller then the radius that is reduced by tolerance . this is used for triangulation when there are four points on one circle to avoid neverending loop . concode_field_sep DirectPositi...
boolean function ( DirectPosition arg0 ) { if ( center . distance ( new DirectPosition2D ( arg0 ) ) < ( this . radius - tolerance ) ) { return true ; } else { return false ; } }
9,311
returns the message that indicates the cause of this inferenceissue . concode_field_sep int severity concode_elem_sep Collection<InferenceIssue> inferenceIssues concode_elem_sep String message concode_elem_sep Type type concode_elem_sep Collection<? extends TypeConstraint> constraints concode_elem_sep InferredType infe...
String function ( ) { return message ; }
9,312
called once the changelog is determined . during a build , jenkins fetches the update of the workspace from scm , and determines the changelog see scm #checkout . immediately after that , a build will invoke this method on all registered scmlistener s . if a build failed before we successfully determine changelog , thi...
void function ( Run < ? , ? > arg0 , SCM arg1 , TaskListener arg2 , ChangeLogSet < ? > arg3 ) { if ( arg0 instanceof AbstractBuild && arg2 instanceof BuildListener && Util . isOverridden ( SCMListener . class , getClass ( ) , "srini_string" , AbstractBuild . class , BuildListener . class , ChangeLogSet . class ) ) { on...
9,313
gets the value of the definednames property . concode_field_sep Object parent concode_elem_sep CTExternalDefinedNames definedNames concode_elem_sep CTExternalSheetNames sheetNames concode_elem_sep String id concode_elem_sep CTExternalSheetDataSet sheetDataSet concode_field_sep void setDefinedNames concode_elem_sep Obje...
CTExternalDefinedNames function ( ) { return definedNames ; }
9,314
puts two bytes into this byte vector . the byte vector is automatically enlarged if necessary . concode_field_sep byte[] data concode_elem_sep int length concode_field_sep ByteVector put12 concode_elem_sep ByteVector encodeUTF8 concode_elem_sep ByteVector putByte concode_elem_sep ByteVector putInt concode_elem_sep void...
ByteVector function ( final int arg0 , final int arg1 ) { int loc0 = this . length ; if ( loc0 + 2 > loc1 . loc0 ) { enlarge ( 2 ) ; } byte [ ] loc1 = this . data ; loc1 [ loc0 ++ ] = ( byte ) arg0 ; loc1 [ loc0 ++ ] = ( byte ) arg1 ; this . length = loc0 ; return this ; }
9,315
ui thread concode_field_sep Callback CALLBACK_DEFAULT concode_field_sep void onBefore concode_elem_sep void onResponse concode_elem_sep void onResponse concode_elem_sep void onError concode_elem_sep void onError concode_elem_sep void inProgress concode_elem_sep T parseNetworkResponse concode_elem_sep Object parseNetwor...
void function ( ) { }
9,316
hashes the string into the required secret key size defined by the encryptionmethod concode_field_sep EncryptionMethod encryptionMethod concode_elem_sep CompressionAlgorithm compressionAlgorithm concode_elem_sep String type concode_elem_sep byte[] contentBytes concode_elem_sep String contentType concode_elem_sep Provid...
String function ( String arg0 ) { MessageDigest loc0 = encryptionMethod . createSecretDigester ( ) ; byte [ ] loc1 = loc0 . loc0 ( arg0 . getBytes ( Charset . forName ( "srini_string" ) ) ) ; return dir ( loc1 ) ; }
9,317
saves the config object to the specified file . overwrites existing file if it exists , creates a new file if it does n't . concode_field_sep Logger logger concode_field_sep Optional<Config> readConfig
void function ( Config arg0 , String arg1 ) { assert arg0 != null ; assert arg1 != null ; FileUtil . serializeObjectToJsonFile ( new File ( arg1 ) , arg0 ) ; }
9,318
get long preferences concode_field_sep String KEY_NAME_DOWNLOAD_ID concode_elem_sep String PREFERENCES_NAME concode_field_sep void putLongPreferences
long function ( Context arg0 , String arg1 ) { SharedPreferences loc0 = arg0 . getSharedPreferences ( PREFERENCES_NAME , Context . MODE_PRIVATE ) ; return loc0 . getLong ( arg1 , - 1 ) ; }
9,319
checks if a version falls into the range . concode_field_sep Version m_lowestVersion concode_elem_sep boolean m_lowestExclusive concode_elem_sep Version m_highestVersion concode_elem_sep String m_range concode_elem_sep boolean m_highestExclusive concode_field_sep Version getHighestVersion concode_elem_sep Version getLo...
boolean function ( final Version arg0 ) { if ( arg0 == null ) { return false ; } int loc0 = arg0 . compareTo ( m_lowestVersion ) ; if ( loc0 == - 1 || ( loc0 == 0 && m_lowestExclusive ) ) { return false ; } loc0 = arg0 . compareTo ( m_highestVersion ) ; return ! ( loc0 == 1 || ( loc0 == 0 && m_highestExclusive ) ) ; }
9,320
return true if object is between lower and upper concode_field_sep String[] args concode_elem_sep List<Runnable> initThreadHooks concode_elem_sep boolean testMode concode_elem_sep boolean hard concode_elem_sep Logger log concode_elem_sep List<Runnable> shutdownHooks concode_field_sep void setHardAssert concode_elem_sep...
boolean function ( ClarionObject arg0 , ClarionObject arg1 , ClarionObject arg2 ) { return ( arg0 . compareTo ( arg1 ) >= 0 && arg0 . compareTo ( arg2 ) <= 0 ) ; }
9,321
encode a path segment , escaping characters not valid for a url . the following characters are not escaped : a. . z , a. . z , 0 . .9 . - _ ' ' space is encoded as ' + ' . all other characters including ' / ' are converted to the triplet '' % xy '' where `` xy '' is the hex representation of the character in utf-8 . co...
String function ( String arg0 ) { if ( arg0 != null ) { try { return URLEncoder . encode ( arg0 , UTF_8 . name ( ) ) ; } catch ( UnsupportedEncodingException loc0 ) { throw new RuntimeException ( "srini_string" , loc0 ) ; } } return null ; }
9,322
determine a priority value for the given object , if any . the default implementation always returns null . subclasses may override this to give specific kinds of values a ` priority ' characteristic , in addition to their ` order ' semantics . a priority indicates that it may be used for selecting one object over anot...
Integer function ( Object arg0 ) { return null ; }
9,323
adds the definition to the database . also notifies the appropriate model listeners . concode_field_sep DefinitionLocalService _definitionLocalService concode_field_sep com.liferay.samplealloymvc.model.Definition getDefinition concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedSe...
com . liferay . samplealloymvc . model . Definition function ( com . liferay . samplealloymvc . model . Definition arg0 ) { return _definitionLocalService . addDefinition ( arg0 ) ; }
9,324
returns the mon close of this org labor . concode_field_sep OrgLabor _orgLabor concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setSunClose concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int compareTo concode_elem_sep OrgLabor getWrappedModel conco...
int function ( ) { return _orgLabor . getMonClose ( ) ; }
9,325
this method checks and removes older non-existing nodes from the map . this can happen when there are multiple servers , for example a server which has ntask component and another server which just has hazelcast . when the server with ntask shutsdown , the other server still contain the queue , and that queue contain t...
void function ( ) { Set < Member > loc0 = this . getHazelcast ( ) . getCluster ( ) . getMembers ( ) ; Iterator < Member > loc1 = this . membersMap . values ( ) . iterator ( ) ; while ( loc1 . hasNext ( ) ) { if ( ! loc0 . contains ( loc1 . next ( ) ) ) { loc1 . remove ( ) ; } } }
9,326
write the mutations to their respective table . this method is blocking and could potentially cause the writer to block for a long time as we write the index updates . we only return when either : all index writes have returned , or any single index write has failed we attempt to quickly determine if any write has fail...
void function ( Collection < Pair < Mutation , byte [ ] >> arg0 ) { write ( resolveTableReferences ( arg0 ) ) ; }
9,327
read dateformatsymbols object from input stream . concode_field_sep String[] patterns concode_elem_sep String[] shortWeekDays concode_elem_sep String[] eras concode_elem_sep String[] shortMonths concode_elem_sep String[] weekDays concode_elem_sep String[] months concode_elem_sep String[] ampms concode_elem_sep String l...
void function ( java . io . InputStream arg0 ) { DataInputStream loc0 = new DataInputStream ( arg0 ) ; readStrings ( eras , loc0 ) ; readStrings ( months , loc0 ) ; readStrings ( shortMonths , loc0 ) ; readStrings ( weekDays , loc0 ) ; readStrings ( shortWeekDays , loc0 ) ; readStrings ( ampms , loc0 ) ; readStrings ( ...
9,328
create an instance of devicet concode_field_sep QName _TrainingCenterDatabase_QNAME concode_field_sep WorkoutListT createWorkoutListT concode_elem_sep TrainingT createTrainingT concode_elem_sep HeartRateBelowT createHeartRateBelowT concode_elem_sep StepT createStepT concode_elem_sep HeartRateAboveT createHeartRateAbove...
DeviceT function ( ) { return new DeviceT ( ) ; }
9,329
reset the buffer and cipher . after resetting the object is in the same state as it was after the last init if there was one . concode_field_sep BlockCipher cipher concode_elem_sep byte[] buf concode_elem_sep int bufOff concode_elem_sep boolean forEncryption concode_elem_sep boolean partialBlockOkay concode_elem_sep bo...
void function ( ) { for ( int loc0 = 0 ; loc0 < buf . length ; loc0 ++ ) { buf [ loc0 ] = 0 ; } bufOff = 0 ; cipher . reset ( ) ; }
9,330
attempts to establish a connection with the data source that this datasource object represents . concode_field_sep int loginTimeout concode_elem_sep PrintWriter logWriter concode_elem_sep String user concode_elem_sep String database concode_elem_sep String password concode_field_sep void setPassword concode_elem_sep St...
Connection function ( String arg0 , String arg1 ) { Properties loc0 = new Properties ( ) ; if ( arg0 != null ) { loc0 . put ( "srini_string" , arg0 ) ; } if ( arg1 != null ) { loc0 . put ( "srini_string" , arg1 ) ; } return jdbcDriver . getConnection ( database , loc0 ) ; }
9,331
converts an array of double arrays to an array of comma-separated strings concode_field_sep int CATEGORICAL_RANGE concode_field_sep Data randomData concode_elem_sep char[] randomTokens concode_elem_sep String randomDescriptor concode_elem_sep void writeDataToFile concode_elem_sep double[] randomVector concode_elem_sep ...
String [ ] function ( double [ ] [ ] arg0 ) { String [ ] loc0 = new String [ arg0 . length ] ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 [ loc1 ] = double2String ( arg0 [ loc1 ] ) ; } return loc0 ; }
9,332
an optional attribute value of the token . tokens which are not used as syntactic sugar will often contain meaningful values that will be used later on by the compiler or interpreter . this attribute value is often different from the image . any subclass of token that actually wants to return a non-null value can overr...
Object function ( ) { return null ; }
9,333
parent s of the given revision of the given file . if there are two of them in the case of merge the first element of the pair is the latest parent i.e. having greater revision number , second one is the earlier parent having smaller revision number . concode_field_sep Project myProject concode_elem_sep Logger LOG conc...
Couple < HgRevisionNumber > function ( @ NotNull VirtualFile arg0 , @ Nullable VirtualFile arg1 , @ Nullable HgRevisionNumber arg2 ) { return parents ( arg0 , ObjectsConvertor . VIRTUAL_FILEPATH . convert ( arg1 ) , arg2 ) ; }
9,334
set the value related to the column : name concode_field_sep java.util.List<com.floreantpos.model.MenuItemModifierGroup> menuItemModiferGroups concode_elem_sep java.util.Date modifiedTime concode_elem_sep java.lang.Double discountRate concode_elem_sep com.floreantpos.model.MenuGroup parent concode_elem_sep java.lang.Bo...
void function ( java . lang . String arg0 ) { this . name = arg0 ; }
9,335
gets selected time zone time . this is the time zone selected by one of six commandbuttons from the map in the ui . concode_field_sep DateFormat currentFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep String GMT7DAYLIGHTLOCATION concode_elem_sep String GMT9DAYLIGHTLOCATION concode_elem_sep String ...
String function ( ) { return getComputedTime ( selectedTimeZone ) ; }
9,336
this method will provide the medium to update an existing word . concode_field_sep LogWordService logWordService concode_elem_sep ApplicationContext context concode_elem_sep WordService wordService concode_elem_sep MessageSource messageSource concode_elem_sep LanguageService langService concode_elem_sep Logger logger c...
String function ( @ PathVariable Integer arg0 , ModelMap arg1 ) { Word loc0 = wordService . findById ( arg0 ) ; arg1 . addAttribute ( "srini_string" , langService . findAllLanguages ( ) ) ; arg1 . addAttribute ( "srini_string" , loc0 ) ; arg1 . addAttribute ( "srini_string" , true ) ; return "srini_string" ; }
9,337
set the type of this record to be either active_service_record or inactive_service_record concode_field_sep String hostName concode_elem_sep int ACTIVE_SERVICE_RECORD concode_elem_sep Date instantiated concode_elem_sep Date discarded concode_elem_sep int pid concode_elem_sep ServiceElement sElem concode_elem_sep List<R...
void function ( int arg0 ) { doSetType ( arg0 ) ; }
9,338
encodes an object using the nysiis 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 string . concode_field_sep char[] CHARS_C concode_elem_sep char[] CHARS_G concode_elem_sep char[] CHARS_SSS conc...
Object function ( Object arg0 ) { if ( ! ( arg0 instanceof String ) ) { throw new EncoderException ( "srini_string" ) ; } return this . nysiis ( ( String ) arg0 ) ; }
9,339
gets the idcpe value for this consultarparametroscpein . concode_field_sep java.lang.String designadorTurbonet concode_elem_sep com.gvt.www.metaData.smarttool.Credenciais credencial concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep int idCPE concode_elem_sep boolean...
int function ( ) { return idCPE ; }
9,340
returns the bundle context of this bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep void start
BundleContext function ( ) { return context ; }
9,341
returns true if this interval is lower inclusive . concode_field_sep Comparable<C> upper concode_elem_sep boolean upperInclusive concode_elem_sep Comparable<C> lower concode_elem_sep boolean lowerInclusive concode_field_sep void setUpperExclusive concode_elem_sep Comparable<C> getLower concode_elem_sep void setUpperInc...
boolean function ( ) { return lowerInclusive ; }
9,342
abstractdelegatingsmartcontextloader does not support the contextloader #loadcontext string method . call #loadcontext mergedcontextconfiguration instead . concode_field_sep Log logger concode_field_sep void processContextConfiguration concode_elem_sep SmartContextLoader getXmlLoader concode_elem_sep String name concod...
ApplicationContext function ( String ... arg0 ) { throw new UnsupportedOperationException ( "srini_string" + "srini_string" ) ; }
9,343
converts a u-law value to 16-bit linear pcm . first , a biased linear code is derived from the code word . an unbiased output can then be obtained by subtracting 33 from the biased code . note that this function expects to be passed the complement of the original code word . this is in keeping with isdn conventions . c...
int function ( int arg0 ) { int loc0 ; arg0 = ~ arg0 ; loc0 = ( ( arg0 & QUANT_MASK ) << 3 ) + BIAS ; loc0 <<= ( arg0 & SEG_MASK ) >> SEG_SHIFT ; return ( ( arg0 & SIGN_BIT ) != 0 ) ? ( BIAS - loc0 ) : ( loc0 - BIAS ) ; }
9,344
gets rendermanager , just try to satisfy was concode_field_sep OutputProgressIndeterminateBean pbBean concode_elem_sep boolean runningTask concode_elem_sep Log log concode_elem_sep PersistentFacesState state concode_elem_sep RenderManager renderManager concode_elem_sep int percent concode_elem_sep PersistentFacesState ...
RenderManager function ( ) { return null ; }
9,345
set the resource adapter concode_field_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep Logger log concode_elem_sep Byte first concode_elem_sep ResourceAdapter ra concode_elem_sep Short second concode_field_sep void setSecond concode_elem_sep ManagedConnection createManagedConnection co...
void function ( ResourceAdapter arg0 ) { log . trace ( "srini_string" ) ; this . ra = arg0 ; }
9,346
used to retrieve the plugin tool 's descriptive name . this can be a longer name containing spaces and is used in the interface to list the tool . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep i...
String function ( ) { return "srini_string" ; }
9,347
creates a memory segment that wraps the given byte array . this method is intended to be used for components which pool memory and create memory segments around long-lived memory regions . concode_field_sep Factory factory concode_field_sep void ensureInitialized concode_elem_sep MemorySegment allocateUnpooledSegment c...
MemorySegment function ( byte [ ] arg0 , Object arg1 ) { ensureInitialized ( ) ; return factory . wrapPooledHeapMemory ( arg0 , arg1 ) ; }
9,348
sets the #internalclient concode_field_sep String protocol concode_elem_sep int internalPort concode_elem_sep String remoteHost concode_elem_sep String portMappingDescription concode_elem_sep String internalClient concode_elem_sep int externalPort concode_elem_sep String enabled concode_field_sep void setRemoteHost con...
void function ( String arg0 ) { this . internalClient = arg0 ; }
9,349
tests if given value corresponds to a delimiter tag value . concode_field_sep byte END_OF_ATTRIBUTES_TAG concode_elem_sep byte JOB_ATTRIBUTES_TAG concode_elem_sep byte UNSUPPORTED_ATTRIBUTES_TAG concode_elem_sep byte OPERATION_ATTRIBUTES_TAG concode_elem_sep byte PRINTER_ATTRIBUTES_TAG concode_field_sep placeholderType...
boolean function ( byte arg0 ) { if ( arg0 >= 0x01 && arg0 <= 0x05 ) return true ; return false ; }
9,350
a list of sendmessagebatchresultentry items . note : this method appends the values to the existing list if any . use #setsuccessful java.util.collection or #withsuccessful java.util.collection if you want to override theexisting values . concode_field_sep com.amazonaws.internal.SdkInternalList<BatchResultErrorEntry> f...
SendMessageBatchResult function ( SendMessageBatchResultEntry ... arg0 ) { if ( this . successful == null ) { setSuccessful ( new com . amazonaws . internal . SdkInternalList < SendMessageBatchResultEntry > ( arg0 . length ) ) ; } for ( SendMessageBatchResultEntry loc0 : arg0 ) { this . successful . add ( loc0 ) ; } re...
9,351
sets the value of the name property . concode_field_sep String _default concode_elem_sep String name concode_elem_sep String description concode_field_sep String getName concode_elem_sep String getDefault concode_elem_sep void setDescription concode_elem_sep String getDescription concode_elem_sep void setDefault
void function ( String arg0 ) { this . name = arg0 ; }
9,352
data table : mdma meth in blood concode_field_sep String CANNABIS concode_elem_sep String AMPHETAMINES concode_elem_sep String COCAINE concode_elem_sep String MDMA concode_elem_sep String[] DRUGS concode_field_sep USPunishment punishment concode_elem_sep USPunishment[] punishmentsForAmphetamineInBlood concode_elem_sep ...
USPunishment [ ] function ( ) { ArrayList < USPunishment > loc0 = new ArrayList < USPunishment > ( ) ; loc0 . add ( USPunishment . create ( 220.0 , 140000 , 12 , 0 ) ) ; return loc0 . toArray ( new USPunishment [ loc0 . size ( ) ] ) ; }
9,353
when the email is unknown , an exception must be thrown . concode_field_sep UserService service concode_field_sep void test_randomPassword concode_elem_sep void test_updatePassword_invalidNewPassword concode_elem_sep void test_updatePassword_unknownEmail concode_elem_sep void test_forgottenPassword concode_elem_sep voi...
void function ( ) { String loc0 = "srini_string" ; UserDao loc1 = mock ( UserDao . class ) ; UserService loc2 = new UserService ( loc1 , mock ( MailSender . class ) , mock ( SimpleMailMessage . class ) ) ; when ( loc1 . findByEmail ( loc0 ) ) . thenReturn ( null ) ; loc2 . forgottenPassword ( loc0 ) ; }
9,354
saves parameters for startactivityforresult . concode_field_sep Activity activity concode_elem_sep int resultCode concode_elem_sep int activityResultRequestCode concode_elem_sep Intent intent concode_elem_sep Bundle savedPluginState concode_elem_sep String TAG concode_elem_sep PluginManager pluginManager concode_elem_s...
void function ( Bundle arg0 ) { if ( activityResultCallback != null ) { String loc0 = activityResultCallback . getServiceName ( ) ; arg0 . putString ( "srini_string" , loc0 ) ; } if ( pluginManager != null ) { arg0 . putBundle ( "srini_string" , pluginManager . onSaveInstanceState ( ) ) ; } }
9,355
gets the distance of the url from the scanner in meters . concode_field_sep String mUrl concode_elem_sep boolean mHasBeenDisplayed concode_elem_sep long mScanTimestamp concode_elem_sep String URL_KEY concode_elem_sep String DISTANCE_KEY concode_elem_sep double mDistance concode_elem_sep String SCAN_TIMESTAMP_KEY concod...
double function ( ) { return mDistance ; }
9,356
load the app for use in non jetty containers . concode_field_sep AzkabanWebServer app concode_elem_sep String AZKABAN_SERVLET_CONTEXT_KEY concode_field_sep void contextDestroyed
void function ( ServletContextEvent arg0 ) { try { this . app = new AzkabanWebServer ( ) ; } catch ( Exception loc0 ) { loc0 . printStackTrace ( ) ; } arg0 . getServletContext ( ) . setAttribute ( AZKABAN_SERVLET_CONTEXT_KEY , this . app ) ; }
9,357
gets an object value and transforms it into a byte concode_field_sep PlaceHolder placeHolder concode_field_sep short getShort concode_elem_sep Time getTime concode_elem_sep Class<?> getRuntimeType concode_elem_sep BigDecimal getBigDecimal concode_elem_sep double getDouble concode_elem_sep Array getArray concode_elem_se...
byte function ( Object arg0 ) { if ( arg0 == null ) { return 0 ; } return transform ( arg0 , Byte . class ) ; }
9,358
closes the database and shuts down the gps service . concode_field_sep EventManager mEventManager concode_elem_sep TagsDBAdapter mTagHelper concode_elem_sep GPSDbAdapter mGPSHelper concode_elem_sep EventDbAdapter mDbHelper concode_field_sep EventCursor fetchAllEvents concode_elem_sep EventCursor fetchSortedEvents conco...
void function ( ) { mDbHelper . close ( ) ; mGPSHelper . close ( ) ; mTagHelper . close ( ) ; }
9,359
begins a named object . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep S...
JSONBuilder function ( String arg0 ) { appendCommaAndKey ( arg0 ) ; params . append ( "srini_string" ) ; return this ; }
9,360
clear paragraph output by id . concode_field_sep Map<String,Object> config concode_elem_sep long serialVersionUID concode_elem_sep Map<String,List<AngularObject>> angularObjects concode_elem_sep NotebookRepo repo concode_elem_sep SearchService index concode_elem_sep Map<String,Object> info concode_elem_sep String name ...
Paragraph function ( String arg0 ) { synchronized ( paragraphs ) { for ( int loc0 = 0 ; loc0 < paragraphs . size ( ) ; loc0 ++ ) { Paragraph loc1 = paragraphs . get ( loc0 ) ; if ( loc1 . getId ( ) . equals ( arg0 ) ) { loc1 . setReturn ( null , null ) ; return loc1 ; } } } return null ; }
9,361
sets first value . concode_field_sep V4 val4 concode_elem_sep V3 val3 concode_elem_sep V2 val2 concode_elem_sep V1 val1 concode_elem_sep long serialVersionUID concode_field_sep void writeExternal concode_elem_sep void set concode_elem_sep void set3 concode_elem_sep void set2 concode_elem_sep void set4 concode_elem_sep ...
void function ( @ Nullable V1 arg0 ) { this . val1 = arg0 ; }
9,362
returns a hash code value for the object . this method is supported for the benefit of hashtables such as those provided by java.util.hashtable . the general contract of hashcode is : whenever it is invoked on the same object more than once during an execution of a java application , the hashcode method must consistent...
int function ( ) { return this . nodeType ; }
9,363
returns the first matching meaning of the specified types . returns types.unknown if there are no matches . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean hasChildren concode_elem_sep Reduction asReduction concode_elem_sep void addChildrenOf concode_elem_sep String getRootText concode_elem_sep Stri...
int function ( int [ ] arg0 ) { for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { if ( isA ( arg0 [ loc0 ] ) ) { return arg0 [ loc0 ] ; } } return Types . UNKNOWN ; }
9,364
returns true if type represents an in-process connection to a file backed database . concode_field_sep String S_URL_PREFIX concode_elem_sep String S_DOT concode_elem_sep String S_FILE concode_elem_sep String url_database concode_elem_sep String S_MEM concode_elem_sep String S_ALIAS concode_elem_sep String S_HSQLS conco...
boolean function ( String arg0 ) { if ( arg0 == S_FILE || arg0 == S_RES ) { return true ; } return false ; }
9,365
state transitions : if the states are the same then no change if either state is unset then change to the other state if the states are conflicting then set to the conflicting state concode_field_sep boolean valueIfUnset concode_elem_sep boolean valueIfConflicting concode_elem_sep State state concode_field_sep void set...
void function ( OptionalBoolean arg0 ) { if ( state == arg0 . state ) { } else if ( state == State . UNSET ) { state = arg0 . state ; } else if ( arg0 . state == State . UNSET ) { } else { state = State . CONFLICTING ; } }
9,366
combines hashcode of previous elements sequence and value 's hashcode . concode_field_sep int EMPTY_HASH_CODE concode_elem_sep int hashCode concode_field_sep int hashCode concode_elem_sep HashCode append concode_elem_sep HashCode append concode_elem_sep HashCode append concode_elem_sep HashCode append concode_elem_sep ...
int function ( int arg0 , double arg1 ) { long loc0 = Double . doubleToLongBits ( arg1 ) ; return combine ( arg0 , loc0 ) ; }
9,367
returns the port of the origin server ; typically 80 or 443 . unlike may getport accessors , this method never returns -1 . concode_field_sep Proxy proxy concode_elem_sep List<String> transports concode_elem_sep int uriPort concode_elem_sep SSLSocketFactory sslSocketFactory concode_elem_sep HostnameVerifier hostnameVer...
int function ( ) { return uriPort ; }
9,368
gets the currentstudent student object . 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 St...
Student function ( ) { return currentStudent ; }
9,369
intersect line with plane and returns intersection point , or null if no intersection exists . concode_field_sep Vec3 normal concode_elem_sep float offset concode_elem_sep Vec3 origin concode_field_sep Vec3 getNormal concode_elem_sep Vec3 getOrigin concode_elem_sep float distance concode_elem_sep int hashCode concode_e...
Vec3 function ( Line arg0 ) { float loc0 = normal . loc0 ( arg0 . getDirection ( ) ) ; if ( loc0 == 0 ) return null ; float loc1 = - ( offset + normal . loc0 ( arg0 . getOrigin ( ) ) ) / loc0 ; return arg0 . getOrigin ( ) . add ( arg0 . getDirection ( ) . scale ( loc1 ) ) ; }
9,370
the value of the asssocated field modeled by this pivotfacetvalue . may be null if this pivotfacetvalue models the count for docs `` missing '' the field value . concode_field_sep PivotFacetField childPivot concode_elem_sep PivotFacetField parentPivot concode_elem_sep BitSet sourceShards concode_elem_sep int count conc...
Comparable function ( ) { return value ; }
9,371
returns the parent view of a tree node from the parent view annotation . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_elem_sep ArrayList<IGraphicalEditPart> getOrderedTreeChildren...
View function ( View arg0 ) { final EAnnotation loc0 = arg0 . getEAnnotation ( TREE_LAYOUT_ANNOTATION ) ; if ( loc0 != null ) { return ( View ) arg0 . eResource ( ) . getEObject ( loc0 . getDetails ( ) . get ( TREE_NODE_PARENT_URI ) ) ; } return null ; }
9,372
returns a string object representing this long 's value . the long integer value represented by this long object is converted to signed decimal representation and returned as a string , exactly as if the long value were given as an argument to the #tostring long method that takes one argument . concode_field_sep long M...
String function ( ) { return String . valueOf ( value ) ; }
9,373
returns the type for the entry . concode_field_sep ArrayList<AmqpTableEntry> tableEntryArray concode_elem_sep String type concode_elem_sep Object value concode_elem_sep String key concode_field_sep void add concode_elem_sep String getKey concode_elem_sep Object getValue concode_elem_sep List<AmqpTableEntry> getEntries ...
String function ( ) { return type ; }
9,374
this method returns the set of permissions granted to this domain . concode_field_sep CodeSource code_source concode_elem_sep PermissionCollection perms concode_field_sep String toString concode_elem_sep boolean implies concode_elem_sep CodeSource getCodeSource
PermissionCollection function ( ) { return perms ; }
9,375
format the structured data as described in rfc 5424 . concode_field_sep long serialVersionUID concode_elem_sep SortedMap<String,String> data concode_field_sep void appendMap concode_elem_sep void asJson concode_elem_sep void clear concode_elem_sep void asXml concode_elem_sep void asJava concode_elem_sep String[] getFor...
String function ( ) { return asString ( ( MapFormat ) null ) ; }
9,376
setter for cvv2code concode_field_sep String paymentAdviceCode concode_elem_sep String cVV2Code concode_elem_sep BasicAmountType amount concode_elem_sep String msgSubID concode_elem_sep String aVSCode concode_elem_sep String billingAgreementID concode_elem_sep PaymentInfoType paymentInfo concode_elem_sep String transac...
void function ( String arg0 ) { this . cVV2Code = arg0 ; }
9,377
returns a single instance of this class concode_field_sep List<ContextMenuFactorySPI> factoryList concode_elem_sep Set<ContextMenuListener> listeners concode_elem_sep ContextMenuManager manager concode_field_sep void removeContextMenuListener concode_elem_sep void fireContextMenuEvent concode_elem_sep List<ContextMenuF...
ContextMenuManager function ( ) { return ContextMenuManagerHolder . manager ; }
9,378
the list of tags for the cluster parameter group . concode_field_sep String parameterGroupName concode_elem_sep String parameterGroupFamily concode_elem_sep String description concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<Tag> tags concode_field_sep ClusterParameterGroup withDescription concode_elem...
void function ( java . util . Collection < Tag > arg0 ) { if ( arg0 == null ) { this . tags = null ; return ; } com . amazonaws . internal . ListWithAutoConstructFlag < Tag > loc0 = new com . amazonaws . internal . ListWithAutoConstructFlag < Tag > ( arg0 . size ( ) ) ; loc0 . addAll ( arg0 ) ; this . tags = loc0 ; }
9,379
generate a group of metrics to iterate over in the form of a set of strings e.g. prefixes . if the metrics to be exported partition into groups identified by a string , subclasses should override this method . otherwise the default should be fine iteration over all metrics . concode_field_sep Log logger concode_elem_se...
Iterable < String > function ( ) { return Collections . singleton ( "srini_string" ) ; }
9,380
retrieves the accumulated time this object has spent running since it was last started . 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 void stop concode_elem_sep String currentElapsedTimeToMessag...
long function ( ) { if ( running ) { return System . currentTimeMillis ( ) - startTime ; } else { return 0 ; } }
9,381
clear any current allowed job types and use the given set . concode_field_sep ConcurrentMap<String,Class<?>> jobTypes concode_field_sep void checkJobType concode_elem_sep void checkJobTypes concode_elem_sep Object materializeJob concode_elem_sep void addJobType concode_elem_sep void removeJobType concode_elem_sep void ...
void function ( final Map < String , ? extends Class < ? >> arg0 ) { checkJobTypes ( arg0 ) ; this . jobTypes . clear ( ) ; this . jobTypes . putAll ( arg0 ) ; }
9,382
get the name segments of the given qualified-name . note : no kind of validation is performed by this method , simply tokens delimited by ' . ' are returned . concode_field_sep String QNAME_DELIMITER concode_elem_sep IStatus invalidCUFileNameStatus concode_elem_sep String ADJACENT_DELIMITERS_ERROR concode_field_sep ISt...
String [ ] function ( String arg0 ) { StringTokenizer loc0 = new StringTokenizer ( arg0 , QNAME_DELIMITER ) ; int loc1 = loc0 . countTokens ( ) ; String [ ] loc2 = new String [ loc1 ] ; for ( int loc3 = 0 ; loc3 < loc1 ; loc3 ++ ) { loc2 [ loc3 ] = loc0 . nextToken ( ) ; } return loc2 ; }
9,383
sets the since date to use to filter the messages received during that time . in other words , only the messages received since the datetime specified will be included in the history . concode_field_sep int seconds concode_elem_sep int maxChars concode_elem_sep int maxStanzas concode_elem_sep Date since concode_field_s...
void function ( Date arg0 ) { this . since = arg0 ; }
9,384
compute celestial coordinates of zenith from utc , lat long . concode_field_sep float RADIANS_TO_DEGREES concode_elem_sep float DEGREES_TO_RADIANS concode_field_sep Vector3 vectorProduct concode_elem_sep Vector3 addVectors concode_elem_sep Matrix33 calculateRotationMatrix concode_elem_sep float mod2pi concode_elem_sep ...
RaDec function ( Date arg0 , LatLong arg1 ) { float loc0 = TimeUtil . meanSiderealTime ( arg0 , arg1 . longitude ) ; float loc1 = arg1 . latitude ; return new RaDec ( loc0 , loc1 ) ; }
9,385
deletes the announcements flag from the database . also notifies the appropriate model listeners . concode_field_sep AnnouncementsFlagLocalService _announcementsFlagLocalService concode_field_sep com.liferay.portlet.announcements.model.AnnouncementsFlag getAnnouncementsFlag concode_elem_sep void deleteFlags concode_ele...
com . liferay . portlet . announcements . model . AnnouncementsFlag function ( com . liferay . portlet . announcements . model . AnnouncementsFlag arg0 ) { return _announcementsFlagLocalService . deleteAnnouncementsFlag ( arg0 ) ; }
9,386
convenience for #clienterror int clienterror 404 . concode_field_sep PlaceHolder placeHolder concode_field_sep Handler next concode_elem_sep Handler redirect concode_elem_sep Handler fileSystem concode_elem_sep Handler chain concode_elem_sep Handler chain concode_elem_sep Handler chain concode_elem_sep Handler chain co...
Handler function ( ) { return ClientErrorForwardingHandler . NOT_FOUND ; }
9,387
return a mocked group concode_field_sep PlaceHolder placeHolder concode_field_sep List<String> singleGroup concode_elem_sep Principal getMockedUser concode_elem_sep Principal getMockedUser concode_elem_sep DocumentModel mockUserDM concode_elem_sep UserManager mockUserManager
DocumentModel function ( String arg0 ) { DocumentModel loc0 = mock ( DocumentModel . class ) ; when ( loc0 . getId ( ) ) . thenReturn ( arg0 ) ; when ( loc0 . getContextData ( ) ) . thenReturn ( new ScopedMap ( ) ) ; return loc0 ; }
9,388
this indirectly defines the resolve order . the higher the order , the more dependent is the resolver on other resolvers to be complete . concode_field_sep PlaceHolder placeHolder concode_field_sep void resolve
StyleKey [ ] function ( ) { return new StyleKey [ ] { FontStyleKeys . FONT_SIZE } ; }
9,389
create an observable emitting decimated spawnpoints concode_field_sep ExecutorService executorService concode_elem_sep Networking networking concode_elem_sep Location location concode_elem_sep MapObjects mapObjects concode_elem_sep MapSettings mapSettings concode_field_sep List<Point> getSpawnPoints concode_elem_sep Ob...
Observable < Point > function ( ) { return mapObjects . getDecimatedSpawnPointMapOnSubscribe ( ) . create ( ) ; }
9,390
run a vocabulary test against a tab-separated data file inside a zip file concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
void function ( Analyzer arg0 , Path arg1 , String arg2 ) { Path loc0 = LuceneTestCase . createTempDir ( ) ; try ( InputStream loc1 = Files . newInputStream ( arg1 ) ) { TestUtil . unzip ( loc1 , loc0 ) ; } try ( InputStream loc1 = Files . newInputStream ( loc0 . resolve ( arg2 ) ) ) { assertVocabulary ( arg0 , loc1 ) ...
9,391
tests this instance for equality with an arbitrary object . concode_field_sep long serialVersionUID concode_field_sep void add concode_elem_sep Size2D arrangeFF concode_elem_sep Size2D arrangeRR concode_elem_sep Size2D arrangeNN concode_elem_sep Size2D arrange concode_elem_sep Size2D arrangeFR concode_elem_sep Size2D a...
boolean function ( Object arg0 ) { if ( arg0 == this ) { return true ; } if ( ! ( arg0 instanceof CenterArrangement ) ) { return false ; } return true ; }
9,392
get page no concode_field_sep String CONTEXT_DATE concode_elem_sep int m_pageCount concode_elem_sep String CONTEXT_TIME concode_elem_sep ArrayList<PrintElement> m_elements concode_elem_sep String CONTEXT_COPY concode_elem_sep String CONTEXT_PAGE concode_elem_sep String m_pageInfo concode_elem_sep String CONTEXT_MULTIPA...
int function ( ) { return m_pageNo ; }
9,393
check whether the string is null or empty concode_field_sep String PROPERTY_DEFAULT_SEPARATOR concode_field_sep boolean isNotNull concode_elem_sep String getSystemPropertyAsString concode_elem_sep void match concode_elem_sep String decode concode_elem_sep List<String> tokenize
boolean function ( String arg0 ) { return arg0 == null || arg0 . isEmpty ( ) ; }
9,394
returns a new object with cropped image data . implementations may keep a reference to the original data rather than a copy . only callable if iscropsupported is true . concode_field_sep int width concode_elem_sep int height concode_field_sep LuminanceSource rotateCounterClockwise concode_elem_sep LuminanceSource rotat...
LuminanceSource function ( int arg0 , int arg1 , int arg2 , int arg3 ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
9,395
this is called when a resource adapter instance is undeployed or during application server shutdown . concode_field_sep String workManagerName concode_elem_sep String name concode_elem_sep Logger log concode_elem_sep String bootstrapContextName concode_field_sep void setName concode_elem_sep String getWorkManagerName c...
void function ( ) { log . trace ( "srini_string" ) ; }
9,396
this will set the text to be concatenated to the left of the label specified by u. concode_field_sep String FRACTIONAL_DISPLAY_ROUND concode_elem_sep String LABEL_PREFIX_TO_VALUE concode_elem_sep String FRACTIONAL_DISPLAY_DECIMAL concode_elem_sep COSDictionary numberFormatDictionary concode_elem_sep String TYPE concode...
void function ( String arg0 ) { this . getDictionary ( ) . setString ( "srini_string" , arg0 ) ; }
9,397
if protocol object provided is reflection protocol . should be used only with protocol parameter because for protocolclassname protocol type will be auto detected concode_field_sep String messageName concode_elem_sep String protocolClassName concode_elem_sep Protocol protocol concode_elem_sep boolean reflectionProtocol...
void function ( boolean arg0 ) { this . reflectionProtocol = arg0 ; }
9,398
gets the binding which is using this adapter . concode_field_sep Binding binding concode_field_sep void adjustComponents concode_elem_sep void unbindComponents concode_elem_sep void bindComponents concode_elem_sep void setBinding concode_elem_sep JComponent[] getComponents
Binding function ( ) { return binding ; }
9,399
sets the user name of this checkout . concode_field_sep Checkout _checkout 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 i...
void function ( java . lang . String arg0 ) { _checkout . setUserName ( arg0 ) ; }