code stringlengths 20 663 | nl stringlengths 68 7.19k |
|---|---|
Table function ( char arg0 ) { switch ( arg0 ) { case 'L' : return Table . LOWER ; case 'P' : return Table . PUNCT ; case 'M' : return Table . MIXED ; case 'D' : return Table . DIGIT ; case 'B' : return Table . BINARY ; case 'U' : default : return Table . UPPER ; } } | gets the table corresponding to the char passed concode_field_sep String[] LOWER_TABLE concode_elem_sep int[] NB_BITS concode_elem_sep int numCodewords concode_elem_sep int[] NB_BITS_COMPACT concode_elem_sep int codewordSize concode_elem_sep String[] MIXED_TABLE concode_elem_sep String[] UPPER_TABLE concode_elem_sep in... |
String function ( ) { return aircraftIDString ( ) + "srini_string" + this . capacity + "srini_string" + this . firstCapacity + "srini_string" + this . businessCapacity + "srini_string" + this . premiumCapacity + "srini_string" + this . economyCapacity + "srini_string" ; } | state dump intended for logging the aircraft parameters supplied concode_field_sep int departureTime concode_elem_sep int businessCapacity concode_elem_sep int numPremium concode_elem_sep String flightCode concode_elem_sep int economyCapacity concode_elem_sep int numFirst concode_elem_sep String type concode_elem_sep L... |
long function ( Date arg0 ) { return ( arg0 . getTime ( ) / 1000L ) + 2082844800L ; } | converts a date as long to a mac date as long concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder |
void function ( Element arg0 , ImageResource arg1 ) { applyImageResource ( arg0 , arg1 , "srini_string" , "srini_string" ) ; arg0 . getStyle ( ) . setHeight ( arg1 . getHeight ( ) , "srini_string" ) ; arg0 . getStyle ( ) . setWidth ( arg1 . getWidth ( ) , "srini_string" ) ; } | applies the image resource to the specified element . the image will be centered , and the height and width will be set to the height and width of the image . concode_field_sep PlaceHolder placeHolder concode_field_sep DivElement createImageElement |
void function ( ) { } | this method resets the outgoing events . concode_field_sep SCInterfaceImpl sCInterface concode_elem_sep long x concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void reactMain_region_A concode_elem_sep void init concode_elem_sep SCInterface getSCInterface concode_elem_sep void e... |
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . arg0 ( arg0 ) ; } | performs a dynamic query on the database and returns the matching rows . concode_field_sep ServiceTracker<StatusLocalService,StatusLocalService> _serviceTracker concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery... |
com . liferay . portlet . announcements . model . AnnouncementsFlag function ( long arg0 ) { return getService ( ) . createAnnouncementsFlag ( arg0 ) ; } | creates a new announcements flag with the primary key . does not add the announcements flag to the database . concode_field_sep AnnouncementsFlagLocalService _service concode_field_sep com.liferay.portlet.announcements.model.AnnouncementsFlag getAnnouncementsFlag concode_elem_sep void deleteFlags concode_elem_sep com.l... |
void function ( TriggerTask arg0 ) { if ( this . triggerTasks == null ) { this . triggerTasks = new ArrayList < TriggerTask > ( ) ; } this . triggerTasks . add ( arg0 ) ; } | add a triggertask . concode_field_sep List<CronTask> cronTasks concode_elem_sep List<TriggerTask> triggerTasks concode_elem_sep Set<ScheduledFuture<?>> scheduledFutures concode_elem_sep List<IntervalTask> fixedRateTasks concode_elem_sep TaskScheduler taskScheduler concode_elem_sep ScheduledExecutorService localExecutor... |
void function ( long arg0 ) { if ( arg0 < row || arg0 >= column . lastRow ( block ) ) startBlock ( column . findBlock ( arg0 ) ) ; while ( arg0 > row && hasNext ( ) ) { values . skipValue ( type ) ; row ++ ; } previous = null ; } | seek to the named row . concode_field_sep Codec codec concode_elem_sep int arrayLength concode_elem_sep T previous concode_elem_sep InputBuffer in concode_elem_sep int block concode_elem_sep InputBuffer values concode_elem_sep long row concode_elem_sep ColumnDescriptor column concode_elem_sep Checksum checksum concode_... |
void function ( DateRange arg0 ) { this . coveragePeriod = arg0 ; } | sets the value of the coverageperiod property . concode_field_sep String coverageName concode_elem_sep DateRange coveragePeriod concode_elem_sep String warrantyStatus concode_elem_sep long serialVersionUID concode_field_sep String getWarrantyStatus concode_elem_sep void setWarrantyStatus concode_elem_sep String getCove... |
VolumeAttachment function ( java . util . Date arg0 ) { setAttachTime ( arg0 ) ; return this ; } | the time stamp when the attachment initiated . concode_field_sep String instanceId concode_elem_sep String volumeId concode_elem_sep String state concode_elem_sep Boolean deleteOnTermination concode_elem_sep String device concode_elem_sep java.util.Date attachTime concode_field_sep String getInstanceId concode_elem_sep... |
TokenMatcher < TT > function ( Function < TokenFound < TT > , Result < TokenFound < TT >>> arg0 ) { return code -> TokenMatcher . this . tryParse ( code ) . flatMap ( found -> arg0 . apply ( found ) ) ; } | add a mapper function to this tokenmatcher that transforms the concode_field_sep PlaceHolder placeHolder concode_field_sep Result<TokenFound<TT>> tryParse concode_elem_sep TokenMatcher<TT> ignore |
String function ( ) { keyboard . skip ( "srini_string" ) ; return keyboard . nextLine ( ) ; } | reads a line of text from the standard input and returns it as a single string . concode_field_sep Scanner keyboard concode_field_sep void print concode_elem_sep void println concode_elem_sep void println concode_elem_sep double readDouble concode_elem_sep double readDouble concode_elem_sep String readString concode_el... |
AuthenticationRequestBuilder function ( ) { for ( RequestInterceptor loc0 : apiAuthorizations . values ( ) ) { if ( loc0 instanceof OAuth ) { OAuth loc1 = ( OAuth ) loc0 ; return loc1 . getAuthenticationRequestBuilder ( ) ; } } return null ; } | helper method to configure authorization endpoint of the first oauth found in the apiauthorizations there should be only one concode_field_sep Map<String,RequestInterceptor> apiAuthorizations concode_elem_sep Feign.Builder feignBuilder concode_elem_sep ObjectMapper objectMapper concode_elem_sep String basePath concode_... |
void function ( ) { try { sendSession . rollback ( ) ; connect . close ( ) ; } catch ( javax . jms . JMSException loc0 ) { loc0 . printStackTrace ( ) ; } System . exit ( 0 ) ; } | cleanup resources and then exit . concode_field_sep javax.jms.Session sendSession concode_elem_sep String DEFAULT_PASSWORD concode_elem_sep String DEFAULT_BROKER_NAME concode_elem_sep javax.jms.Connection connect concode_elem_sep javax.jms.Session receiveSession concode_elem_sep int MESSAGE_LIFESPAN concode_elem_sep ja... |
StepExecutionStatusDetail function ( String arg0 ) { setLastStateChangeReason ( arg0 ) ; return this ; } | a description of the step 's current state . concode_field_sep java.util.Date startDateTime concode_elem_sep String lastStateChangeReason concode_elem_sep String state concode_elem_sep java.util.Date endDateTime concode_elem_sep java.util.Date creationDateTime concode_field_sep void setEndDateTime concode_elem_sep Step... |
String function ( String arg0 ) { return arg0 + "srini_string" + elapsedTime ( ) + "srini_string" ; } | retrieves prefix + '' in '' + elapsedtime + '' ms. '' concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep void zero concode_elem_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep String currentElapsedTimeTo... |
String function ( ) { return arcrole ; } | gets the value of the arcrole property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep SVCoupledResourceType svCoupledResource concode_elem_sep String type c... |
void function ( String arg0 ) { if ( "srini_string" . equalsIgnoreCase ( arg0 ) ) { this . algorithm = KeyManagerFactory . getDefaultAlgorithm ( ) ; } else { this . algorithm = arg0 ; } } | algorithm to use . as different jvms have different implementations available , the default algorithm can be used by supplying the value `` default '' . concode_field_sep MBeanServer server concode_elem_sep long keyStoreAvailabilityTimeout concode_elem_sep String keyAlias concode_elem_sep SSLServerSocketFactory sssf co... |
AutoRefillSettingsType . TwiceMonthly function ( ) { return new AutoRefillSettingsType . TwiceMonthly ( ) ; } | create an instance of autorefillsettingstype.twicemonthly concode_field_sep PlaceHolder placeHolder concode_field_sep DataBalanceInfoType createDataBalanceInfoType concode_elem_sep ChargeInfoType createChargeInfoType concode_elem_sep PayPeriodicType createPayPeriodicType concode_elem_sep DealerInfoType createDealerInfo... |
void function ( SAXParseException arg0 ) { throw arg0 ; } | handle a parser error . concode_field_sep PlaceHolder placeHolder concode_field_sep void fatalError concode_elem_sep void warning |
String function ( String arg0 ) { return "srini_string" + arg0 + "srini_string" ; } | return the html based content surrounded with the html tag . this is useful to compare a fragment of html content with a proper expected html file so that the expected file can be viewed more easily with a browser . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertStringEqualFileContent |
void function ( int arg0 ) { if ( mValues [ arg0 ] != DELETED ) { mValues [ arg0 ] = DELETED ; mGarbage = true ; } } | removes the mapping at the specified index . concode_field_sep Object DELETED concode_elem_sep long[] mKeys concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep Object[] mValues concode_field_sep long keyAt concode_elem_sep void clear concode_elem_sep E valueAt concode_elem_sep int indexOfValue... |
void function ( ObjectInputStream arg0 ) { arg0 . defaultReadObject ( ) ; this . listenerList = new EventListenerList ( ) ; arg0 . registerValidation ( this , 10 ) ; } | restores a serialized object . concode_field_sep EventListenerList listenerList concode_elem_sep long serialVersionUID concode_elem_sep DatasetGroup group concode_field_sep void setGroup concode_elem_sep void removeChangeListener concode_elem_sep void fireDatasetChanged concode_elem_sep void validateObject concode_elem... |
void function ( String arg0 , String arg1 ) { if ( users . containsKey ( arg0 ) ) { UserConnection loc0 = users . get ( arg0 ) ; loc0 . add ( arg1 ) ; } else { UserConnection loc0 = new UserConnection ( ) ; loc0 . add ( arg1 ) ; users . put ( arg0 , loc0 ) ; } } | adds a connection for a user . concode_field_sep Set<String> connections concode_elem_sep ConcurrentMap<String,UserConnection> users concode_field_sep void add concode_elem_sep boolean isEmpty concode_elem_sep void remove concode_elem_sep boolean userDisconnected |
void function ( VideoBumperType arg0 ) { this . videoBumperType = arg0 ; } | sets the value of the videobumpertype property . concode_field_sep VideoPositionWithinPod videoPositionWithinPod concode_elem_sep VideoBumperType videoBumperType concode_elem_sep VideoPosition videoPosition concode_field_sep VideoBumperType getVideoBumperType concode_elem_sep void setVideoPosition concode_elem_sep Vide... |
ArrayList < String > function ( File arg0 ) { ArrayList < String > loc0 = answerList ( arg0 . getAbsolutePath ( ) + "srini_string" ) ; return loc0 ; } | creates a list of student answers . concode_field_sep ArrayList<String> answerKey concode_elem_sep ArrayList<String> studentExam concode_elem_sep ArrayList<ArrayList<String>> studentExams concode_elem_sep boolean[] isCorrect concode_field_sep ArrayList<String> answerList concode_elem_sep String getExamId concode_elem_s... |
void function ( double arg0 , int arg1 ) { if ( arg1 <= this . verbosityLevel ) print ( arg0 ) ; } | prints out the value of d if the log 's verbosity level is at least level concode_field_sep int verbosityLevel concode_elem_sep int numberOfWarnings concode_elem_sep int VL_HIGH concode_elem_sep int VL_DEFAULT concode_elem_sep int VL_ALL concode_field_sep void println concode_elem_sep void println concode_elem_sep void... |
String function ( ) { return language ; } | an ietf rfc 4646 language code . only the primary language is considered . english en is currently the only supported language . constraints : pattern : a-za-z 2,8 ? : - a-za-z 2,8 concode_field_sep String defaultValue concode_elem_sep String language concode_elem_sep String sourceName concode_elem_sep String separator... |
void function ( ) { System . out . println ( "srini_string" ) ; String [ ] loc0 = { "srini_string" , "srini_string" } ; HMM < String > loc1 = new HMM < String > ( pi , a , b , loc0 ) ; String [ ] loc2 = { "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string... | test of logp method , of class hmm . concode_field_sep double[] pi concode_elem_sep double[][] b concode_elem_sep double[][] a concode_field_sep void testNumStates concode_elem_sep void setUpClass concode_elem_sep void testLogp_intArr concode_elem_sep void testPredict2 concode_elem_sep void testLearn concode_elem_sep v... |
boolean function ( Class < ? > arg0 ) { return ( arg0 != null && ( DynamicMBean . class . isAssignableFrom ( arg0 ) || ( getMBeanInterface ( arg0 ) != null || getMXBeanInterface ( arg0 ) != null ) ) ) ; } | determine whether the given bean class qualifies as an mbean as-is . this implementation checks for javax.management.dynamicmbean classes as well as classes with corresponding `` mbean '' interface standard mbeans or corresponding `` mxbean '' interface java 6 mxbeans . concode_field_sep Log logger concode_elem_sep Str... |
String function ( ) { return content ; } | gets the value of the content property . concode_field_sep String content concode_field_sep void setContent |
boolean function ( UndirectedGraph < V , E > arg0 , Set < V > arg1 ) { for ( V loc0 : arg1 ) { for ( V loc1 : arg1 ) { if ( ( loc0 != loc1 ) && ( arg0 . getEdge ( loc0 , loc1 ) == null ) ) { return false ; } } } return true ; } | check whether the subgraph of graph induced by the given vertices is complete , i.e. a clique . concode_field_sep Set<E> fillEdges concode_elem_sep LinkedList<V> meo concode_elem_sep List<V> generators concode_elem_sep Map<Set<V>,Integer> fullComponentCount concode_elem_sep Set<Set<V>> separators concode_elem_sep Undir... |
IPostSaveListener function ( ) { return fPostSaveListener ; } | returns the post save listener of the described save participant concode_field_sep ISaveParticipantPreferenceConfiguration fPreferenceConfiguration concode_elem_sep IPostSaveListener fPostSaveListener concode_field_sep ISaveParticipantPreferenceConfiguration createPreferenceConfiguration concode_elem_sep ISaveParticipa... |
void function ( ) { if ( mListeners != null ) { mListeners . clear ( ) ; mListeners = null ; } } | removes all listeners from this object . this is equivalent to calling getlisteners followed by calling clear on the returned list of listeners . concode_field_sep ArrayList<AnimatorListener> mListeners concode_field_sep void cancel concode_elem_sep Animator setDuration concode_elem_sep ArrayList<AnimatorListener> getL... |
String function ( ) { return TimeZoneBean . formatCurrentTime ( dateFormat ) ; } | gets the dynamic time through the formatcurrenttime method in the timezonebean . concode_field_sep boolean currentlyShowing concode_elem_sep Polygon mapPolygon concode_elem_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String abbreviation concode_elem_sep String mapCommandButtonId concode_field_... |
void function ( String arg0 ) { this . min = arg0 ; } | set the minimum value of this axis . either a date or numeral . if null , interpreted on the client from the x/y values of the series or from the explicit ticks given . concode_field_sep Boolean sortMergedLabels concode_elem_sep Boolean forceTickAt0 concode_elem_sep Object max concode_elem_sep String[] ticks concode_el... |
Object function ( ) { return null ; } | 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... |
void function ( ) { AuthBeanMultiplexer . beans . clear ( ) ; } | clear the set of authfunctionbeans concode_field_sep AuthBeanMultiplexer singleton concode_elem_sep Map<String,List<AuthFunctionBean>> beans concode_elem_sep FrameworkLogger logger concode_field_sep String getUniqueNameFor concode_elem_sep java.sql.Array authenticate concode_elem_sep void setAuthFunctionBean concode_el... |
int function ( ) { return _b . capacity ( ) / PROPERTIES_PER_ELEMENT ; } | the _ maximum _ number of items that the list can hold , as defined on instantiation . not to be confused with the buffer 's capacity concode_field_sep int BYTES_PER_PROPERTY concode_elem_sep ShortBuffer _b concode_elem_sep int _renderSubsetLength concode_elem_sep boolean _renderSubsetEnabled concode_elem_sep int _rend... |
void function ( Double arg0 ) { this . latitude = arg0 ; } | sets the latitude . concode_field_sep Integer updateInterval concode_elem_sep String language concode_elem_sep String locationId concode_elem_sep Double latitude concode_elem_sep String name concode_elem_sep ProviderName providerName concode_elem_sep Double longitude concode_field_sep void setProviderName concode_elem_... |
java . util . List < CacheBehavior > function ( ) { if ( items == null ) { items = new com . amazonaws . internal . ListWithAutoConstructFlag < CacheBehavior > ( ) ; items . setAutoConstruct ( true ) ; } return items ; } | optional : a complex type that contains cache behaviors for this distribution . if quantity is 0 , you can omit items . concode_field_sep Integer quantity concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<CacheBehavior> items concode_field_sep Integer getQuantity concode_elem_sep void setQuantity concod... |
byte function ( int arg0 ) { if ( offheap ( ) ) return BinaryPrimitives . readByte ( ptr , curFieldPos + arg0 ) ; else return arr [ curFieldPos + arg0 ] ; } | read byte value . concode_field_sep byte[] arr concode_elem_sep int startOff concode_elem_sep int curFieldOrder concode_elem_sep int orderMultiplier concode_elem_sep BinaryObjectExImpl obj concode_elem_sep int fieldOffLen concode_elem_sep int POS_NOT_FOUND concode_elem_sep long ptr concode_elem_sep int orderBase concod... |
String function ( long arg0 ) { if ( arg0 <= 0 ) return "srini_string" ; int loc0 = ( int ) ( Math . log10 ( arg0 ) / Math . log10 ( 1024 ) ) ; return new DecimalFormat ( "srini_string" ) . format ( arg0 / Math . pow ( 1024 , loc0 ) ) . replace ( "srini_string" , "srini_string" ) + "srini_string" + UNITS [ loc0 ] ; } | converts byte file size to human readable , eg : 500 becomes 500 b 1024 becomes 1 kb 123456 becomes 120.6 kb 10000000000 becomes 9.3 gb max supported unit is yottabyte yb . concode_field_sep Comparator<FileHandle> FILE_NAME_COMPARATOR concode_elem_sep Comparator<FileHandle> FILE_MODIFIED_DATE_COMPARATOR concode_elem_se... |
FilterType function ( ) { return filterType ; } | returns the filter type stored in the said object . concode_field_sep String attributeName concode_elem_sep TextMatcher textMatcher concode_elem_sep FilterType filterType concode_field_sep Filter whereId concode_elem_sep Filter whereAttribute concode_elem_sep Filter withAttribute concode_elem_sep Filter whereClass conc... |
boolean function ( InputSource arg0 ) { return parser . parsePriority ( arg0 ) ; } | sac : implements org.w3c.css.sac.parser #parsepriority inputsource . concode_field_sep Parser parser concode_field_sep LexicalUnit parsePropertyValue concode_elem_sep LexicalUnit parsePropertyValue concode_elem_sep void parseStyleSheet concode_elem_sep void parseStyleSheet concode_elem_sep String getParserVersion conco... |
void function ( Link arg0 ) { incomingLinks . add ( arg0 ) ; } | attaches an incoming link . this method is low-level and does not check for net integrity nor does it ensure it . this method should only be called if the link contains this slot as its target . concode_field_sep int DEFAULT_SLOTLOAD_ASSUMPTION concode_elem_sep int type concode_elem_sep NetEntityManager manager concode... |
Proxy function ( ) { return proxy ; } | returns the proxy of this route.warning : this may be different than the proxy returned by #getaddress ! that is the proxy that the user asked to be connected to ; this returns the proxy that they were actually connected to . the two may disagree when a proxy selector selects a different proxy for a connection . concod... |
String function ( byte [ ] arg0 ) { StringBuffer loc0 = new StringBuffer ( arg0 . length * 2 ) ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) for ( int loc2 = 1 ; loc2 >= 0 ; loc2 -- ) loc0 . append ( HEX [ ( arg0 [ loc1 ] >> ( loc2 * 4 ) ) & 0xF ] ) ; return loc0 . toString ( ) ; } | convert bytes to a base16 string . concode_field_sep char[] HEX concode_field_sep byte[] decode |
Set < String > function ( ) { Set < String > loc0 = new HashSet < String > ( ) ; for ( String loc1 : propertyVocabularies . keySet ( ) ) { Vocabulary loc2 = propertyVocabularies . get ( loc1 ) ; if ( loc2 == null || loc2 . getTerm ( TermComplexGroup . TERM_NAME ) == null ) { loc0 . add ( loc1 ) ; } } return loc0 ; } | gets the top level properties . i.e. names of properties which do not belong to any complex group . concode_field_sep Logger logger concode_elem_sep Map<String,String> propertyNames concode_elem_sep String entityName concode_elem_sep TermFactory termFactory concode_elem_sep Vocabulary vocabulary concode_elem_sep Map<St... |
void function ( boolean arg0 , Object arg1 ) { if ( ! arg0 ) error ( String . valueOf ( arg1 ) ) ; } | equivalent to assert cond : value ; concode_field_sep PlaceHolder placeHolder concode_field_sep void checkNull concode_elem_sep void checkNull concode_elem_sep void checkNull concode_elem_sep T checkNonNull concode_elem_sep T checkNonNull concode_elem_sep void error concode_elem_sep void error |
boolean function ( ) { return this . moreChangesAvailable ; } | gets the syncstate blob returned by a synchronization operation . concode_field_sep boolean moreChangesAvailable concode_elem_sep List<TChange> changes concode_elem_sep String syncState concode_field_sep void add concode_elem_sep TChange getChangeAtIndex concode_elem_sep Iterator<TChange> iterator concode_elem_sep void... |
void function ( EventPublisher arg0 ) { this . eventPublisher = arg0 ; } | sets the eventpublisher for use in the binding . concode_field_sep boolean bindingChanged concode_elem_sep RWESmarthomeContext instance concode_elem_sep StateHolder stateHolder concode_elem_sep Logger logger concode_elem_sep RWESmarthomeConfig config concode_elem_sep EventPublisher eventPublisher concode_elem_sep RWESm... |
int function ( ) { return getClassName ( ) . hashCode ( ) * 31 + getTestName ( ) . hashCode ( ) ; } | generates hashcode based on class and method name . concode_field_sep String mClassName concode_elem_sep String mTestName concode_field_sep boolean equals concode_elem_sep String toString concode_elem_sep String getClassName concode_elem_sep String getTestName |
String function ( ) { return body ; } | returns the body of text . concode_field_sep String id concode_elem_sep String title concode_elem_sep String body concode_field_sep String getTitle concode_elem_sep void setID concode_elem_sep void setTitle concode_elem_sep String getID concode_elem_sep void setBody |
void function ( String arg0 , int arg1 ) { String loc0 = "srini_string" + orgServername + "srini_string" + orgPort ; String loc1 = loc0 + "srini_string" ; lookupCommand = loc1 . getBytes ( ) ; loc1 = loc0 + "srini_string" ; rmiCommand = loc1 . getBytes ( ) ; this . servername = arg0 ; this . port = arg1 ; } | sets an http proxy server . after this method is called , the object importer connects a server through the http proxy server . concode_field_sep byte[] rmiCommand concode_elem_sep String orgServername concode_elem_sep int port concode_elem_sep Class[] proxyConstructorParamTypes concode_elem_sep byte[] endofline concod... |
String function ( ) { return entityClassName ; } | the class name of the current entity class being converted . concode_field_sep EvolveStats stats concode_elem_sep String entityClassName concode_field_sep EvolveStats getStats concode_elem_sep void update |
Builder function ( final String arg0 ) { this . residId = arg0 ; return this ; } | set the resid id . concode_field_sep String pdbccName concode_elem_sep String residName concode_elem_sep String psimodId concode_elem_sep Set<String> keywords concode_elem_sep String psimodId concode_elem_sep Set<String> keywords concode_elem_sep String pdbccName concode_elem_sep String residName concode_elem_sep Strin... |
void function ( boolean arg0 ) { isDeleted = arg0 ; } | sets deleted . concode_field_sep String owningInstitutionItemId concode_elem_sep String lastUpdatedBy concode_elem_sep Integer collectionGroupId concode_elem_sep List<BibliographicEntity> bibliographicEntities concode_elem_sep String callNumberType concode_elem_sep String customerCode concode_elem_sep Integer itemAvail... |
void function ( byte [ ] arg0 ) { streamDecoder . decodeJBIG2 ( arg0 ) ; } | decodes a jbig2 image from a byte array concode_field_sep JBIG2StreamDecoder streamDecoder concode_field_sep int getNumberOfPages concode_elem_sep void setGlobalData concode_elem_sep void cleanupPostDecode concode_elem_sep Segment findSegment concode_elem_sep boolean isRandomAccessOrganisationUsed concode_elem_sep JBIG... |
HashCode function ( double arg0 ) { hashCode = combine ( hashCode , arg0 ) ; return this ; } | appends value 's hashcode to the current hashcode . concode_field_sep int EMPTY_HASH_CODE concode_elem_sep int hashCode concode_field_sep int hashCode concode_elem_sep int combine concode_elem_sep int combine concode_elem_sep int combine concode_elem_sep int combine concode_elem_sep int combine concode_elem_sep int com... |
void function ( boolean arg0 ) { _shoppingItemPrice . setUseShippingFormula ( arg0 ) ; } | sets whether this shopping item price is use shipping formula . concode_field_sep ShoppingItemPrice _shoppingItemPrice concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_... |
String function ( ) { return defaultText ; } | get the default text . concode_field_sep String inputText concode_elem_sep String defaultText concode_elem_sep long serialVersionUID concode_elem_sep String prompt concode_field_sep String getText concode_elem_sep String getPrompt concode_elem_sep void setText |
void function ( ) { canceled = true ; dialogMessage = null ; } | stop the task . concode_field_sep File file concode_elem_sep ResourceBundle messageBundle concode_elem_sep int lengthOfTask concode_elem_sep String dialogMessage concode_elem_sep Document document concode_elem_sep Logger logger concode_elem_sep boolean done concode_elem_sep int current concode_elem_sep boolean canceled... |
boolean function ( ) { return m_Listening ; } | tests if this modbustcplistener is listening and accepting incoming connections . concode_field_sep InetAddress m_Address concode_elem_sep int m_Port concode_elem_sep boolean m_Listening concode_elem_sep int c_RequestCounter concode_elem_sep Thread m_Listener concode_elem_sep int m_FloodProtection concode_elem_sep int ... |
Boolean function ( ) { return fldFilterChecked ; } | gets the value of the fldfilterchecked property . concode_field_sep Boolean fldFilterChecked concode_elem_sep RecordRef fldFilter concode_elem_sep Boolean fldFilterNotNull concode_elem_sep String fldFilterVal concode_elem_sep CustomizationFilterCompareType fldFilterCompareType concode_elem_sep FldFilterSelList fldFilte... |
Double function ( ) { return actualDeliveryPercentage ; } | gets the value of the actualdeliverypercentage property . concode_field_sep Double actualDeliveryPercentage concode_elem_sep Double expectedDeliveryPercentage concode_field_sep void setExpectedDeliveryPercentage concode_elem_sep Double getExpectedDeliveryPercentage concode_elem_sep void setActualDeliveryPercentage |
String function ( ) { return start ; } | gets the value of the start property . concode_field_sep String total concode_elem_sep String unit concode_elem_sep String start concode_elem_sep String end concode_elem_sep String list concode_field_sep void setTotal concode_elem_sep void setStart concode_elem_sep String getList concode_elem_sep void setUnit concode_e... |
void function ( ) { if ( items != null ) { items . clear ( ) ; } if ( emptyItems != null ) { emptyItems . clear ( ) ; } } | clears all views concode_field_sep WheelView wheel concode_elem_sep List<View> emptyItems concode_elem_sep List<View> items concode_field_sep int recycleItems concode_elem_sep View getCachedView concode_elem_sep View getItem concode_elem_sep void recycleView concode_elem_sep List<View> addView concode_elem_sep View get... |
void function ( ) { if ( isMac ) { obtainCurrentSettings ( ) ; disableScreenSaver ( ) ; } } | activates the disabler by storing temporarily current settings and then disable the process . concode_field_sep String idleTime concode_elem_sep boolean isMac concode_elem_sep Pattern p concode_elem_sep String plist concode_field_sep void obtainPlist concode_elem_sep void obtainCurrentSettings concode_elem_sep void ena... |
void function ( UnicodeEscaper arg0 , int arg1 ) { Assert . assertNull ( computeReplacement ( arg0 , arg1 ) ) ; } | asserts that a unicode escaper does not escape the given character . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertUnicodeEscaping concode_elem_sep void assertEscaping concode_elem_sep void assertEscaping concode_elem_sep void assertBasic |
File function ( File arg0 ) { return new File ( arg0 . getCanonicalPath ( ) ) ; } | retrieves the canonical file for the given file , in a jdk 1.1 complaint way . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep Method deleteOnExitMethod concode_elem_sep Random random concode_elem_sep boolean fsIsIgnoreCase concode_field_sep IOException toIOException concode_elem_sep Method getDel... |
void function ( T2 arg0 ) { mSecond = arg0 ; } | set the second value . concode_field_sep T2 mSecond concode_elem_sep T1 mFirst concode_field_sep void setFirst concode_elem_sep T1 getFirst concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep T2 getSecond concode_elem_sep String toString |
String function ( ) { List < String > loc0 = new ArrayList < String > ( ) ; for ( int loc1 = 0 ; loc1 < attributions . size ( ) ; loc1 ++ ) { loc0 . add ( attributions . get ( loc1 ) . getName ( ) ) ; } return "srini_string" + String . join ( "srini_string" , loc0 ) ; } | collects a list of attributions vendors making data available and transforms it into readable string . currently displayed in thing status description when online concode_field_sep String UNHEALTHY concode_elem_sep AirQualityJsonIaqi iaqi concode_elem_sep AirQualityJsonCity city concode_elem_sep String VERY_UNHEALTHY c... |
void function ( LineJoin arg0 ) { this . lineJoin = arg0 ; } | set the the style of join used connect line segments of this series . concode_field_sep Integer xAxis concode_elem_sep List<Object> data concode_elem_sep String color concode_elem_sep Boolean shadow concode_elem_sep String fillAxis concode_elem_sep Boolean show concode_elem_sep String fillToValue concode_elem_sep Integ... |
void function ( Properties arg0 ) { _p = arg0 ; } | set the properties for this db . concode_field_sep Properties _p concode_field_sep void init concode_elem_sep Status read concode_elem_sep void cleanup concode_elem_sep Properties getProperties concode_elem_sep Status scan concode_elem_sep Status update concode_elem_sep Status insert concode_elem_sep Status delete |
void function ( Preset arg0 ) { this . preset = arg0 ; } | a section of the response body that provides information about the preset . concode_field_sep Preset preset concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ReadPresetResult clone concode_elem_sep Preset getPreset concode_elem_sep ReadPresetResult withPreset concode_elem_sep String toStri... |
ToStringHelper function ( Class < ? > arg0 ) { return new ToStringHelper ( arg0 . getSimpleName ( ) ) ; } | creates an instance of tostringhelper in the same manner as #tostringhelper object , but using the simple name of clazz instead of using aninstance 's object #getclass . note that in gwt , class names are often obfuscated . concode_field_sep ValueHolder next concode_elem_sep ValueHolder holderTail concode_elem_sep Stri... |
boolean function ( final Class < ? > arg0 ) { Class < ? > loc0 = arg0 ; while ( loc0 != null ) { if ( ! Modifier . isPublic ( loc0 . getModifiers ( ) ) ) { return false ; } loc0 = loc0 . getEnclosingClass ( ) ; } return true ; } | learn whether the specified class is generally accessible , i.e. is declared in an entirely public manner . concode_field_sep PlaceHolder placeHolder concode_field_sep Constructor<T> getAccessibleConstructor concode_elem_sep Constructor<T> getAccessibleConstructor concode_elem_sep Constructor<T> getMatchingAccessibleCo... |
void function ( String arg0 , String arg1 ) { properties . setProperty ( String . valueOf ( arg0 ) , String . valueOf ( arg1 ) ) ; logger . debug ( "srini_string" + arg0 + "srini_string" + arg1 + "srini_string" ) ; } | added by hebiao for eclips-220 on 27 mar 2013 concode_field_sep Logger logger concode_elem_sep SysProperties rp concode_elem_sep Properties properties concode_field_sep String getDirProperty concode_elem_sep int getInt concode_elem_sep String getProperty concode_elem_sep HashMap<String,Object> getProperties concode_ele... |
boolean function ( State arg0 ) { switch ( arg0 ) { case main_region_A : return stateVector [ 0 ] == State . main_region_A ; case main_region_B : return stateVector [ 0 ] == State . main_region_B ; default : return false ; } } | returns true if the given state is currently active otherwise false . concode_field_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void reactMain_region_A concode_elem_sep void init concode_elem_sep void exit concode_elem_sep void reactMain_region_B concode_elem_sep void exitAction concod... |
void function ( byte [ ] arg0 ) { if ( arg0 . length != 512 ) { throw new IllegalArgumentException ( RB . bad_block_write_len . getString ( arg0 . length ) ) ; } write ( arg0 , arg0 . length ) ; } | write a user-specified 512-byte block . for efficiency , write int should be used when writing file body content . concode_field_sep int DEFAULT_BLOCKS_PER_RECORD concode_elem_sep int DEFAULT_COMPRESSION concode_elem_sep byte[] ZERO_BLOCK concode_elem_sep OutputStream writeStream concode_elem_sep boolean debug concode_... |
void function ( Collection < ? extends Object > arg0 ) { addDataObjects ( getTreePath ( ) , arg0 ) ; } | calls #adddataobjects string , map and passes gettreepath as the first parameter . concode_field_sep Logger log concode_elem_sep UIBuilder.TreeModel model concode_field_sep String getSubsystemName concode_elem_sep void populateModel concode_elem_sep String getTreePath concode_elem_sep void prepareForDisplay |
State function ( ) { return state ; } | gets the state . if the caller changes the state , it must also call #dirty to inform this object that thestate is dirtied . concode_field_sep State originalState concode_elem_sep State state concode_field_sep String getName concode_elem_sep void markDirty concode_elem_sep boolean containsKey concode_elem_sep String ge... |
String function ( java . lang . Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; } | convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep Long specialPropertyName concode_field_sep SpecialModelName specialPropertyName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void setSpecialPropertyName concode_elem_sep Lon... |
void function ( double arg0 ) { this . availableMips = arg0 ; } | sets the available mips . concode_field_sep double availableMips concode_elem_sep double mips concode_field_sep double getUtilization concode_elem_sep double getAvailableMips concode_elem_sep List<Double> getAllocatedMipsForVm concode_elem_sep void deallocateMipsForAllVms concode_elem_sep double getMips concode_elem_se... |
Set < ConditionsTreeNode > function ( ) { Set < ConditionsTreeNode > loc0 = new HashSet < ConditionsTreeNode > ( ) ; return getLeafSet ( loc0 ) ; } | get a set of all the leaves in the tree . concode_field_sep ConditionsTreeNode mLeft concode_elem_sep ConditionsTreeNode mParent concode_elem_sep Parcelable.Creator<ConditionsTreeNode> CREATOR concode_elem_sep int mRightMPTTMarker concode_elem_sep int mLeftMPTTMarker concode_elem_sep ConditionsTreeNode mRight concode_e... |
PolarPoint function ( double arg0 , double arg1 , double arg2 ) { return new PolarPoint ( Angle . fromRadians ( arg0 ) , Angle . fromRadians ( arg1 ) , arg2 ) ; } | obtains a polarpoint from radians and a radius . concode_field_sep Angle latitude concode_elem_sep double radius concode_elem_sep PolarPoint ZERO concode_elem_sep Angle longitude concode_field_sep Angle getLongitude concode_elem_sep int hashCode concode_elem_sep Angle getLatitude concode_elem_sep boolean equals concode... |
double function ( ) { return mAlbedoGround ; } | getter for property malbedoground . concode_field_sep double mMutationRate concode_elem_sep boolean mMutationEnabled concode_elem_sep int mGridSize concode_elem_sep double mAlbedoBlack concode_elem_sep double mSeedMix concode_elem_sep double mAlbedoWhite concode_elem_sep double mSolarOutput concode_elem_sep double mSte... |
XMLElement function ( String arg0 ) { return parse ( arg0 , ResourceLoader . getResourceAsStream ( arg0 ) ) ; } | parse the xml document located by the slick resource loader using the reference given . concode_field_sep DocumentBuilderFactory factory concode_field_sep placeholderType placeHolder |
int function ( String arg0 , String arg1 ) { int loc0 = 0 ; int loc1 = 0 ; while ( arg0 . arg1 ( arg1 ) ) { loc0 = arg0 . indexOf ( arg1 ) ; arg0 = arg0 . substring ( 0 , loc0 ) + arg0 . substring ( loc0 + arg1 . length ( ) , arg0 . length ( ) ) ; loc1 ++ ; } return loc1 ; } | frequently used functions concode_field_sep PlaceHolder placeHolder concode_field_sep void readHash concode_elem_sep void uniqe concode_elem_sep int getFrequentElement concode_elem_sep void getFrequentElement concode_elem_sep int[] CountElmt concode_elem_sep int countCommElmtsEqSize concode_elem_sep void test concode_e... |
void function ( String arg0 ) { this . userName = arg0 ; } | sets the value of the username property . concode_field_sep String password concode_elem_sep ManagedObjectReference _this concode_elem_sep String userName concode_elem_sep String locale concode_field_sep void setThis concode_elem_sep ManagedObjectReference getThis concode_elem_sep void setPassword concode_elem_sep Stri... |
RectangleInsets function ( ) { return this . insets ; } | returns the insets . concode_field_sep RectangleInsets insets concode_elem_sep Paint paint concode_elem_sep long serialVersionUID concode_elem_sep Stroke stroke concode_field_sep Stroke getStroke concode_elem_sep void writeObject concode_elem_sep boolean equals concode_elem_sep void draw concode_elem_sep Paint getPaint... |
ProfileBreakdown function ( Query arg0 ) { return queryTree . getQueryBreakdown ( arg0 ) ; } | get the profilebreakdown for the given query , potentially creating it if it did not exist.this should only be used for queries that will be undergoing scoring . do not use it to profile the rewriting phase concode_field_sep InternalProfileTree queryTree concode_elem_sep InternalProfileCollector collector concode_field... |
void function ( String arg0 ) { this . email = arg0 ; } | sets the value of the email property . concode_field_sep String birthdate concode_elem_sep int idPerson concode_elem_sep String name concode_elem_sep HealthProfile healthProfile concode_elem_sep String email concode_elem_sep String lastname concode_elem_sep String username concode_field_sep HealthProfile getHealthProfi... |
void function ( String arg0 ) { this . comment = arg0 ; } | sets the facultative comment . concode_field_sep String name concode_elem_sep String comment concode_elem_sep String version concode_field_sep String getVersion concode_elem_sep void setName concode_elem_sep String getName concode_elem_sep void setVersion concode_elem_sep String getComment |
void function ( ) { sender . sendHeader ( ) ; } | start the process of sending the header and reading the response . concode_field_sep INioHandler nioHandler concode_elem_sep HttpHeaderSender sender concode_elem_sep SocketChannel channel concode_elem_sep ITrafficLogger tl concode_elem_sep IBufferHandler bufHandler concode_elem_sep boolean strictHttp concode_elem_sep H... |
Name function ( int arg0 , int arg1 ) { if ( arg1 < arg0 ) arg1 = arg0 ; return table . fromUtf ( getByteArray ( ) , getByteOffset ( ) + arg0 , arg1 - arg0 ) ; } | returns the sub-name starting at position start , up to and excluding position end . concode_field_sep Names names concode_elem_sep Table table concode_field_sep byte getByteAt concode_elem_sep int getByteOffset concode_elem_sep int getByteLength concode_elem_sep int getIndex concode_elem_sep boolean contentEquals conc... |
float function ( float arg0 ) { float loc0 ; if ( arg0 >= 0.0 ) loc0 = MathUtil . floor ( arg0 ) ; else loc0 = MathUtil . ceil ( arg0 ) ; return loc0 ; } | return the integer part of a number 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 Matrix33 matrixMultiply co... |
DeploymentExtendedInner function ( String arg0 ) { this . id = arg0 ; return this ; } | set the id value . concode_field_sep String name concode_elem_sep String id concode_elem_sep DeploymentPropertiesExtended properties concode_field_sep DeploymentExtendedInner withProperties concode_elem_sep String name concode_elem_sep String id concode_elem_sep DeploymentExtendedInner withName concode_elem_sep Deploym... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.