idx int64 0 25k | question stringlengths 72 5.69k | target stringlengths 21 481 |
|---|---|---|
17,600 | returns if this is the default repository , that is , #name is '' @ '' . concode_field_sep String name concode_elem_sep Pattern VALID_REPO_NAME concode_elem_sep LoadingCache<String,RepositoryName> repositoryNameCache concode_elem_sep RepositoryName repositoryName concode_field_sep void readObjectNoData concode_elem_sep... | boolean function ( ) { return name . equals ( "srini_string" ) ; } |
17,601 | setup test . concode_field_sep PlaceHolder placeHolder concode_field_sep void testChildRelationBrowser | void function ( ) { JOSMFixture . createUnitTestFixture ( ) . init ( ) ; } |
17,602 | adds an object to be broadcasted to concode_field_sep String state concode_elem_sep List<Observer> observers concode_field_sep String getState concode_elem_sep void notifyAllObservers concode_elem_sep void setState | void function ( Observer arg0 ) { observers . add ( arg0 ) ; } |
17,603 | return a list of areas intersecting with the given rectangle concode_field_sep List<List<Rectangle>> areas concode_elem_sep String featureName concode_field_sep HashSet<Integer> getLeftAreas concode_elem_sep HashSet<Integer> getRightAreas concode_elem_sep void saveToXml concode_elem_sep int getSingleBestIntersectingAre... | HashSet < Integer > function ( Rectangle arg0 ) { HashSet < Integer > loc0 = new HashSet < Integer > ( ) ; for ( Integer loc1 = 0 ; loc1 < areas . size ( ) ; loc1 ++ ) { for ( Rectangle loc2 : areas . get ( loc1 ) ) { if ( loc2 . intersects ( arg0 ) ) { loc0 . add ( loc1 ) ; } } } return loc0 ; } |
17,604 | parse a webtooldescriptor jsonarray concode_field_sep Gson gson concode_field_sep WebToolDescriptor parseWebTool concode_elem_sep List<WebToolDescriptor> getWebTools concode_elem_sep String getWebtoolLaunchURL concode_elem_sep String getWebtoolLaunchURL concode_elem_sep WebToolDescriptor getWebTool | List < WebToolDescriptor > function ( JsonArray arg0 ) { int loc0 = arg0 . size ( ) ; List < WebToolDescriptor > loc1 = new ArrayList ( ) ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { JsonElement loc3 = arg0 . get ( loc2 ) ; final WebToolDescriptor loc4 = parseWebTool ( loc3 ) ; loc1 . add ( loc4 ) ; } return loc1 ;... |
17,605 | logs a message at error level . concode_field_sep java.util.logging.Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep void debug concode_elem_sep ... | void function ( String arg0 ) { logger . severe ( arg0 ) ; } |
17,606 | indicates whether the lock was acquired by the given object . concode_field_sep Object owner concode_elem_sep ScreenLock instance concode_elem_sep boolean locked concode_field_sep Object owner concode_elem_sep ScreenLock instance concode_elem_sep void release concode_elem_sep void acquire | boolean function ( Object arg0 ) { if ( ! locked ) return false ; return owner == arg0 ; } |
17,607 | returns parameter value in a normalized form uppercase , trimmed and null if empty string considering the config flags . concode_field_sep int flag concode_elem_sep int config concode_field_sep void filter concode_elem_sep Source[] parseConfig concode_elem_sep int getFlag concode_elem_sep boolean isPresentIn concode_el... | String function ( final Source arg0 , final MultivaluedMap < String , String > arg1 , final String arg2 ) { String loc0 = arg0 . isPresentIn ( config ) ? arg1 . getFirst ( arg2 ) : null ; if ( loc0 == null ) { return null ; } loc0 = loc0 . trim ( ) ; return loc0 . length ( ) == 0 ? null : loc0 . toUpperCase ( ) ; } |
17,608 | report the end of a cdata section . this method is empty . concode_field_sep boolean inDTD concode_elem_sep String OPEN_TAG_COMMENT concode_elem_sep String CLOSE_TAG_COMMENT concode_elem_sep String[] EMPTY_COMMENTS concode_elem_sep ArrayList comment concode_field_sep void startCDATA concode_elem_sep void clearComments ... | void function ( ) { } |
17,609 | indicates whether the form has a submit button . concode_field_sep NodeList fields concode_elem_sep Element element concode_field_sep boolean hasInputField concode_elem_sep String getName concode_elem_sep FormField getInputField | boolean function ( ) { NodeList loc0 = element . getElementsByTagName ( "srini_string" ) ; for ( int loc1 = 0 ; loc1 < loc0 . getLength ( ) ; loc1 ++ ) { Element loc2 = ( Element ) loc0 . item ( loc1 ) ; if ( "srini_string" . equalsIgnoreCase ( loc2 . getAttribute ( "srini_string" ) ) ) { return true ; } } return false... |
17,610 | yyyymmddhhmmss concode_field_sep SimpleDateFormat sdf concode_elem_sep SimpleDateFormat sdfNoSign concode_elem_sep SimpleDateFormat dateSDF concode_field_sep String formatDate concode_elem_sep String dateCurrentDecreaseMonth concode_elem_sep String dateCurrentFormate concode_elem_sep String dateCurrentFormate concode_e... | String function ( Date arg0 ) { if ( arg0 != null ) { return sdfNoSign . format ( arg0 ) ; } return null ; } |
17,611 | a friendly name or description of the rule . you ca n't change the name of a rule after you create it . concode_field_sep String name concode_elem_sep String ruleId concode_field_sep void setName concode_elem_sep void setRuleId concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equal... | RuleSummary function ( String arg0 ) { setName ( arg0 ) ; return this ; } |
17,612 | sets the style for the point overlay , which is applied to all circles . concode_field_sep Paint mSelectedPointStyle concode_elem_sep Paint mTextStyle concode_elem_sep float mSelectedCircleRadius concode_elem_sep int mCellSize concode_elem_sep LabelPolicy mLabelPolicy concode_elem_sep float mCircleRadius concode_elem_s... | SimpleFastPointOverlayOptions function ( Paint arg0 ) { mPointStyle = arg0 ; return this ; } |
17,613 | gets an object based on its reference number in the xref table . concode_field_sep ArrayList<PdfObject> objects concode_elem_sep int current concode_elem_sep PdfReader reader concode_elem_sep IntHashtable refToIdx concode_elem_sep IntHashtable idxToRef concode_elem_sep int n concode_field_sep int getIndexByRef concode_... | PdfObject function ( int arg0 ) { return objects . get ( getIndexByRef ( arg0 ) ) ; } |
17,614 | set the color of the foreground or background of the terminal . concode_field_sep byte BEL concode_elem_sep String FG_GRAY concode_elem_sep String BG_GRAY concode_elem_sep String BG_GREEN concode_elem_sep OutputStream out concode_elem_sep byte TEXT_BOLD concode_elem_sep String BG_RED concode_elem_sep String FG_CYAN con... | void function ( String arg0 ) { writeBytes ( ESC , arg0 . getBytes ( ) , new byte [ ] { SET_GRAPHICS } ) ; } |
17,615 | add a managed package to the persistence provider 's metadata . note : this refers to annotated package-info . java files . it doesnot trigger entity scanning in the specified package ; this is rather the job of defaultpersistenceunitmanager #setpackagestoscan . concode_field_sep DataSource nonJtaDataSource concode_ele... | void function ( String arg0 ) { this . managedPackages . add ( arg0 ) ; } |
17,616 | get a default greeting concode_field_sep String[] randomResponses concode_field_sep String transformIWantStatement concode_elem_sep String getRandomResponse concode_elem_sep String transformYouMeStatement concode_elem_sep String getResponse concode_elem_sep String transformIYouStatement concode_elem_sep int findKeyword... | String function ( ) { return "srini_string" ; } |
17,617 | calculate squared distance to the given coordinates concode_field_sep Vec3i NULL_VECTOR concode_elem_sep int x concode_elem_sep int y concode_elem_sep int z concode_field_sep double getDistance concode_elem_sep Vec3i crossProduct concode_elem_sep int getX concode_elem_sep double distanceSqToCenter concode_elem_sep int ... | double function ( double arg0 , double arg1 , double arg2 ) { double loc0 = ( double ) this . getX ( ) - arg0 ; double loc1 = ( double ) this . getY ( ) - arg1 ; double loc2 = ( double ) this . getZ ( ) - arg2 ; return loc0 * loc0 + loc1 * loc1 + loc2 * loc2 ; } |
17,618 | tests if the given character is a vowel . concode_field_sep char[] CHARS_C concode_elem_sep char[] CHARS_G concode_elem_sep char[] CHARS_SSS concode_elem_sep char[] CHARS_N concode_elem_sep char[] CHARS_S concode_elem_sep int TRUE_LENGTH concode_elem_sep Pattern PAT_MAC concode_elem_sep Pattern PAT_KN concode_elem_sep ... | boolean function ( final char arg0 ) { return arg0 == 'A' || arg0 == 'E' || arg0 == 'I' || arg0 == 'O' || arg0 == 'U' ; } |
17,619 | create an instance of exchangeratebo concode_field_sep QName _GetExchangeRateResponse_QNAME concode_elem_sep QName _GetExchangeRate_QNAME concode_field_sep JAXBElement<ExchangeRateBO> createGetExchangeRateResponse concode_elem_sep JAXBElement<ExchangeRateRequestBO> createGetExchangeRate concode_elem_sep ExchangeRateReq... | ExchangeRateBO function ( ) { return new ExchangeRateBO ( ) ; } |
17,620 | read an object of the type specified by the type char . concode_field_sep int streamPosition concode_elem_sep byte[] bytes concode_elem_sep int bytesLength concode_field_sep boolean isBundle concode_elem_sep int lengthOfCurrentString concode_elem_sep OSCMessage convertMessage concode_elem_sep String readString concode_... | Object function ( char arg0 ) { switch ( arg0 ) { case 'i' : return readInteger ( ) ; case 'h' : return readBigInteger ( ) ; case 'f' : return readFloat ( ) ; case 'd' : return readDouble ( ) ; case 's' : return readString ( ) ; case 'c' : return readChar ( ) ; case 'T' : return Boolean . TRUE ; case 'F' : return Boole... |
17,621 | return the offset of the selection edge or cursor , or -1 if there is no selection or cursor . concode_field_sep Object SELECTION_START concode_elem_sep Object SELECTION_END concode_field_sep int getSelectionStart concode_elem_sep void selectAll concode_elem_sep void setSelection concode_elem_sep void setSelection conc... | int function ( CharSequence arg0 ) { if ( arg0 instanceof Spanned ) return ( ( Spanned ) arg0 ) . getSpanStart ( SELECTION_END ) ; else return - 1 ; } |
17,622 | method to move the user 's view upwards by a single line , by setting each message to the one above it in the log concode_field_sep String color concode_elem_sep String DEFAULT_NICK concode_elem_sep String buttonImage concode_elem_sep Log log concode_elem_sep boolean minimized concode_elem_sep String autoLoad concode_e... | String function ( ) { if ( ( position - 1 ) - ( NUM_MESSAGES - 1 ) >= 0 ) { position -- ; } return ( "srini_string" ) ; } |
17,623 | the normal way to write file data as opposed to header data or padding using this class . 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_elem_sep int NO_COMPRESSI... | void function ( int arg0 ) { write ( writeBuffer , arg0 ) ; } |
17,624 | shut down this router when evicted or auto - reloaded . stop any real-time updater threads . concode_field_sep TileCache tileCache concode_elem_sep String ROUTER_CONFIG_FILENAME concode_elem_sep Renderer renderer concode_elem_sep ScenarioStore scenarioStore concode_elem_sep RoutingRequest defaultRoutingRequest concode_... | void function ( ) { GraphUpdaterConfigurator . shutdownGraph ( this . graph ) ; } |
17,625 | obtains my progress monitor . concode_field_sep int TOTAL_WORK concode_elem_sep IClipboardSupport clipboardSupport concode_elem_sep int WORK_UNIT concode_elem_sep IProgressMonitor monitor concode_field_sep boolean isCancelled concode_elem_sep void catchException concode_elem_sep IClipboardSupport getClipboardOperationH... | IProgressMonitor function ( ) { return monitor ; } |
17,626 | to get pages . concode_field_sep double pages concode_elem_sep double docs concode_elem_sep String entityName concode_elem_sep double batch concode_field_sep void setPages concode_elem_sep double getBatch concode_elem_sep void setDocs concode_elem_sep void setBatch concode_elem_sep String getEntityName concode_elem_sep... | double function ( ) { return pages ; } |
17,627 | returns true if other is a headers object with the same headers , with the samecasing , in the same order . note that two headers instances may be semantically equal but not equal according to this method . in particular , none of the following sets of headers are equal according to this method : 1 . original content-t... | boolean function ( Object arg0 ) { return arg0 instanceof Headers && Arrays . equals ( ( ( Headers ) arg0 ) . namesAndValues , namesAndValues ) ; } |
17,628 | return true if the target object is of type resource . concode_field_sep boolean isResource concode_elem_sep Object target concode_field_sep Object getObject | boolean function ( ) { return isResource ; } |
17,629 | flags/unflags the request as a soap request . concode_field_sep String request concode_elem_sep Map kvp concode_elem_sep Service serviceDescriptor concode_elem_sep Map rawKvp concode_elem_sep Throwable error concode_elem_sep String version concode_elem_sep BufferedReader input concode_elem_sep String path concode_elem_... | void function ( boolean arg0 ) { this . soap = arg0 ; } |
17,630 | this method searches for its field reference in the specified class object . it requests privileges . if an error occurs the internal field reference is not modified . concode_field_sep boolean toset concode_elem_sep Field field concode_elem_sep boolean unshared concode_elem_sep boolean persistent concode_elem_sep Stri... | void function ( Class arg0 ) { final Field loc0 = arg0 . getDeclaredField ( name ) ; AccessController . doPrivileged ( new PrivilegedAction ( ) { public Object run ( ) { loc0 . setAccessible ( true ) ; return null ; } } ) ; this . field = loc0 ; } |
17,631 | called when `` dont ' proceed '' is triggered on the interstitial . concode_field_sep int mNativePtr concode_field_sep void proceed concode_elem_sep void nativeProceed concode_elem_sep int getNative concode_elem_sep void commandReceived concode_elem_sep void onNativeDestroyed concode_elem_sep int nativeInit concode_ele... | void function ( ) { } |
17,632 | list of titles mr. , ms. , dr. , etc. . concode_field_sep LinkedFormElement zip concode_elem_sep FormElement firstName concode_elem_sep FormElement lastName concode_elem_sep SubmitButton submit concode_elem_sep LinkedFormElement city concode_elem_sep ArrayList componentList concode_elem_sep LinkedFormElement state conc... | ArrayList function ( ) { return getListAsSelectItems ( titles ) ; } |
17,633 | returns the callback host . concode_field_sep String CONFIG_KEY_CALLBACK_HOST concode_elem_sep String CONFIG_KEY_ALIVE_INTERVAL concode_elem_sep Integer reconnectInterval concode_elem_sep Integer aliveInterval concode_elem_sep int DEFAULT_ALIVE_INTERVAL concode_elem_sep Integer timeout concode_elem_sep int DEFAULT_HOST... | String function ( ) { return callbackHost ; } |
17,634 | get the list of all active research risk types from the database . concode_field_sep org.apache.log4j.Logger LOG concode_elem_sep BusinessObjectService businessObjectService concode_field_sep void setBusinessObjectService concode_elem_sep List<ResearchRiskType> getResearchRiskTypes | List < ResearchRiskType > function ( ) { return getResearchRiskTypes ( new String [ 0 ] ) ; } |
17,635 | each individual register is a separate object and observable . this handy method will add the given observer to each one . concode_field_sep int VADDR concode_elem_sep int DEFAULT_STATUS_VALUE concode_elem_sep int EXCEPTION_LEVEL concode_elem_sep Register[] registers concode_elem_sep int CAUSE concode_elem_sep int EPC ... | void function ( Observer arg0 ) { for ( int loc0 = 0 ; loc0 < registers . length ; loc0 ++ ) { registers [ loc0 ] . addObserver ( arg0 ) ; } } |
17,636 | the starting sequence number for the range . concode_field_sep String startingSequenceNumber concode_elem_sep String endingSequenceNumber concode_field_sep SequenceNumberRange withEndingSequenceNumber concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep SequenceNumberRange clone concode_elem_s... | String function ( ) { return this . startingSequenceNumber ; } |
17,637 | returns the osgi service identifier . concode_field_sep SAPEntryService _sapEntryService concode_field_sep com.liferay.portal.security.service.access.policy.model.SAPEntry fetchSAPEntry concode_elem_sep java.util.List<com.liferay.portal.security.service.access.policy.model.SAPEntry> getCompanySAPEntries concode_elem_se... | java . lang . String function ( ) { return _sapEntryService . getOSGiServiceIdentifier ( ) ; } |
17,638 | track an event concode_field_sep PlaceHolder placeHolder concode_field_sep void trackGoogleAnalytics | void function ( String arg0 ) { if ( arg0 == null ) { arg0 = "srini_string" ; } arg0 = "srini_string" + arg0 ; trackGoogleAnalytics ( arg0 ) ; } |
17,639 | binds bytes to an object for use by persistcomparator as well as entrytoobject . concode_field_sep Format keyFormat concode_elem_sep boolean rawAccess concode_elem_sep Catalog catalog concode_field_sep Object bytesToObject concode_elem_sep void objectToEntry concode_elem_sep Object entryToObject | Object function ( Format arg0 , Catalog arg1 , byte [ ] arg2 , int arg3 , int arg4 , boolean arg5 ) { EntityInput loc0 = new RecordInput ( arg1 , arg5 , null , 0 , arg2 , arg3 , arg4 ) ; return loc0 . readKeyObject ( arg0 ) ; } |
17,640 | the timestamp in milliseconds when the shard became unassigned , based on system.currenttimemillis . note , we use timestamp here since we want to make sure its preserved across node serializations . concode_field_sep Reason reason concode_elem_sep long unassignedTimeNanos concode_elem_sep long unassignedTimeMillis con... | long function ( ) { return this . unassignedTimeMillis ; } |
17,641 | converts the given expression into a valid sql clause . concode_field_sep String IGNORED_KEYWORDS_REGEX concode_elem_sep JexlEngine JEXL_STRICT concode_elem_sep JexlEngine JEXL concode_elem_sep Pattern NUMERIC_PATTERN concode_elem_sep Map<String,String> EL_SQL_MAP concode_field_sep boolean isTrue concode_elem_sep boole... | String function ( String arg0 ) { if ( arg0 == null ) { return null ; } for ( String loc0 : EL_SQL_MAP . keySet ( ) ) { arg0 = arg0 . replaceAll ( loc0 , EL_SQL_MAP . get ( loc0 ) ) ; } return arg0 ; } |
17,642 | this method adds the given profile to the database . if the name associated with the profile is the same as an existing name in the database , the existing profile is replaced by the new profile passed in . concode_field_sep Map<String,FacePamphletProfile> profiles concode_field_sep void deleteProfile concode_elem_sep ... | void function ( FacePamphletProfile arg0 ) { if ( profiles . containsKey ( arg0 . getName ( ) ) ) { profiles . remove ( arg0 . getName ( ) ) ; profiles . put ( arg0 . getName ( ) , arg0 ) ; } else { profiles . put ( arg0 . getName ( ) , arg0 ) ; } } |
17,643 | save the stored data to file/muffin concode_field_sep String fileName concode_elem_sep HashMap numericData concode_elem_sep Muffin muffin concode_elem_sep HashMap stringData concode_field_sep double getNumber concode_elem_sep double getNumber concode_elem_sep void setString concode_elem_sep boolean isWebstartAvailable ... | void function ( ) { muffin . saveFile ( numericData , fileName + "srini_string" ) ; muffin . saveFile ( stringData , fileName + "srini_string" ) ; } |
17,644 | create a webexchangedatabinder to apply data binding andvalidation with on the target , command object . concode_field_sep Model model concode_elem_sep WebBindingInitializer initializer concode_field_sep Model getModel concode_elem_sep WebExchangeDataBinder initDataBinder | WebExchangeDataBinder function ( ServerWebExchange arg0 , Object arg1 , String arg2 ) { WebExchangeDataBinder loc0 = new WebExchangeDataBinder ( arg1 , arg2 ) ; if ( this . initializer != null ) { this . initializer . initBinder ( loc0 ) ; } return initDataBinder ( loc0 , arg0 ) ; } |
17,645 | sets the value of the groupnum property . concode_field_sep CurTotals matchCurr concode_elem_sep CurTotals dualCurr concode_elem_sep short groupNum concode_elem_sep CurTotals homeCurr concode_field_sep CurTotals getHomeCurr concode_elem_sep void setHomeCurr concode_elem_sep short getGroupNum concode_elem_sep CurTotals ... | void function ( short arg0 ) { this . groupNum = arg0 ; } |
17,646 | make an html element droppable concode_field_sep PlaceHolder placeHolder concode_field_sep String addDragable concode_elem_sep String addDragable | String function ( String arg0 , String arg1 , FacesContext arg2 , String arg3 , String arg4 ) { EffectsArguments loc0 = new EffectsArguments ( ) ; loc0 . add ( "srini_string" , arg1 ) ; loc0 . add ( "srini_string" , arg3 ) ; loc0 . add ( "srini_string" , arg4 ) ; String loc1 = "srini_string" + arg0 + "srini_string" + l... |
17,647 | get the passed date formatted suitable for a file name . concode_field_sep PDTIOHelper s_aInstance concode_elem_sep String PATTERN_DATE concode_elem_sep String PATTERN_TIME concode_elem_sep String PATTERN_DATETIME concode_field_sep String getCurrentDateTimeForFilename concode_elem_sep String getCurrentTimeForFilename c... | String function ( @ Nonnull final LocalDate arg0 ) { return PDTToString . getAsString ( PATTERN_DATE , arg0 ) ; } |
17,648 | this method returns the trace id . concode_field_sep APMSpan topSpan concode_elem_sep AtomicInteger nodeCount concode_elem_sep Trace trace concode_elem_sep TraceRecorder recorder concode_elem_sep List<NodeProcessor> nodeProcessors concode_elem_sep String transaction concode_elem_sep ReportingLevel reportingLevel concod... | String function ( ) { return trace . getTraceId ( ) ; } |
17,649 | shuts down motechschedulerfactorybean . concode_field_sep ApplicationContext applicationContext concode_elem_sep Properties schedulerProperties concode_elem_sep SchedulerFactoryBean schedulerFactoryBean concode_field_sep void init concode_elem_sep boolean getBooleanWithDefault concode_elem_sep Scheduler getQuartzSchedu... | void function ( ) { try { schedulerFactoryBean . destroy ( ) ; } catch ( SchedulerException loc0 ) { throw new SchedulerShutdownException ( "srini_string" , loc0 ) ; } } |
17,650 | get common auth caller path . path of the calling party to common auth concode_field_sep long serialVersionUID concode_elem_sep boolean passiveAuth concode_elem_sep Map<String,String[]> requestQueryParams concode_elem_sep String commonAuthCallerPath concode_elem_sep boolean forceAuth concode_elem_sep String type concod... | String function ( ) { return commonAuthCallerPath ; } |
17,651 | toggle the slidingmenu . if it is open , it will be closed , and vice versa . concode_field_sep boolean mEnableSlide concode_elem_sep Activity mActivity concode_elem_sep View mViewBehind concode_elem_sep boolean mOnPostCreateCalled concode_elem_sep boolean mBroadcasting concode_elem_sep View mViewAbove concode_elem_sep... | void function ( ) { mSlidingMenu . toggle ( ) ; } |
17,652 | get the extension of the file concode_field_sep HashMap<String,String> sOverrideMap concode_field_sep String getContentsAsString concode_elem_sep String getCharsetFromBOM concode_elem_sep void saveStringFile concode_elem_sep void saveStringFile concode_elem_sep void saveStringFile concode_elem_sep void saveStringToFile... | String function ( String arg0 ) { String loc0 = "srini_string" ; int loc1 = arg0 . lastIndexOf ( '.' ) ; int loc2 = Math . max ( arg0 . lastIndexOf ( '/' ) , arg0 . lastIndexOf ( '|' ) ) ; if ( loc1 > loc2 ) { loc0 = arg0 . substring ( loc1 + 1 ) ; } return loc0 ; } |
17,653 | gets the timezone id used to identify this time zone in the javacode . concode_field_sep Polygon mapPolygon concode_elem_sep DateFormat dateFormat concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep String getUseDaylightTime concode_elem_sep String getLocation concode_elem_sep boolea... | String function ( ) { return id ; } |
17,654 | take this filter out of service . concode_field_sep int debug concode_elem_sep int minThreshold concode_elem_sep int compressionThreshold concode_elem_sep FilterConfig config concode_field_sep void init concode_elem_sep void doFilter concode_elem_sep FilterConfig getFilterConfig concode_elem_sep void setFilterConfig | void function ( ) { this . config = null ; } |
17,655 | uses serviceloader to find all actionhandlers in classpath . adds them as handlers with the route key returned by getname method . concode_field_sep ConcurrentMap<String,ActionHandler> actions concode_elem_sep Set<String> BLACKLISTED_ACTIONS concode_elem_sep String PROPERTY_BLACKLIST concode_elem_sep boolean GATHER_MET... | void function ( ) { ServiceLoader < ActionHandler > loc0 = ServiceLoader . load ( ActionHandler . class ) ; for ( ActionHandler loc1 : loc0 ) { if ( loc1 != null ) { addAction ( loc1 . getName ( ) , loc1 ) ; } } } |
17,656 | 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 ; } |
17,657 | run method declaration the trigger jsp is run in its own thread here . its job is simply to wait until it is told by the main thread that it should fire the trigger . concode_field_sep int NEW_ROW concode_elem_sep int maxRowsQueued concode_elem_sep int NEW_TABLE concode_elem_sep int defaultQueueSize concode_elem_sep bo... | void function ( ) { while ( keepGoing ) { TriggerData loc0 = popPair ( ) ; if ( loc0 != null ) { if ( loc0 . username != null ) { trigger . fire ( this . vectorIndex , name . name , table . getName ( ) . name , loc0 . oldRow , loc0 . newRow ) ; } } } } |
17,658 | used to package this object into a parcel . concode_field_sep int sequence concode_elem_sep Parcelable.Creator<InputBindResult> CREATOR concode_elem_sep IInputMethodSession method concode_elem_sep String TAG concode_elem_sep String id concode_field_sep InputBindResult[] newArray concode_elem_sep String toString concode... | void function ( Parcel arg0 , int arg1 ) { arg0 . writeStrongInterface ( method ) ; arg0 . writeString ( id ) ; arg0 . writeInt ( sequence ) ; } |
17,659 | checks if a topic is cached concode_field_sep String RELATION concode_elem_sep CacheEngine cache concode_elem_sep Comparator TYPE_COMPARATOR concode_elem_sep int maxItems concode_elem_sep String FQN concode_elem_sep String FQN_FORUM concode_elem_sep String RECENT concode_elem_sep String HOTTEST concode_elem_sep String ... | boolean function ( Topic arg0 ) { if ( ! SystemGlobals . getBoolValue ( ConfigKeys . TOPIC_CACHE_ENABLED ) ) { return false ; } String loc0 = Integer . toString ( arg0 . getForumId ( ) ) ; List loc1 = ( List ) cache . get ( FQN_FORUM , loc0 ) ; return loc1 == null ? false : loc1 . contains ( arg0 ) ; } |
17,660 | getpath concode_field_sep String LF concode_elem_sep String DIR concode_elem_sep boolean D concode_elem_sep SimpleDateFormat mDateFormatLog concode_elem_sep String EXT concode_field_sep void mkdir concode_elem_sep void write | String function ( ) { String loc0 = Environment . getExternalStorageDirectory ( ) . getPath ( ) ; String loc1 = loc0 + File . separator + DIR ; return loc1 ; } |
17,661 | this will add all header in given map to the message . concode_field_sep Map<String,String> headerMap concode_elem_sep List<Header> headerList concode_field_sep void add concode_elem_sep boolean contains concode_elem_sep List<Header> getAll concode_elem_sep int size concode_elem_sep List<String> getAllBy concode_elem_s... | void function ( final Map < String , String > arg0 ) { arg0 . forEach ( this :: add ) ; } |
17,662 | gets a double from a string , or null if none concode_field_sep String WITH_DELIMITER concode_elem_sep Pattern timePattern concode_elem_sep Random random concode_field_sep int randomInt concode_elem_sep boolean buildToIndex concode_elem_sep Optional<Key> getKey concode_elem_sep Vector3d getDirection concode_elem_sep Te... | Double function ( String arg0 ) { try { return Double . parseDouble ( arg0 ) ; } catch ( NumberFormatException loc0 ) { return null ; } } |
17,663 | gets the value of the strhcpresponse property . concode_field_sep int qbXMLMinorVers concode_elem_sep String qbXMLCountry concode_elem_sep String ticket concode_elem_sep int qbXMLMajorVers concode_elem_sep String strCompanyFileName concode_elem_sep String strHCPResponse concode_field_sep String getQbXMLCountry concode_... | String function ( ) { return strHCPResponse ; } |
17,664 | returns a composed function that first applies this function to its input , and then applies the after function to the result.if evaluation of either function throws an exception , it is relayed to the caller of the composed function . concode_field_sep PlaceHolder placeHolder concode_field_sep float apply | TimeModifier function ( TimeModifier arg0 ) { Objects . requireNonNull ( arg0 ) ; return ( t ) -> arg0 . apply ( apply ( t ) ) ; } |
17,665 | returns the next character in the buffer . concode_field_sep int charStart concode_elem_sep ByteList src concode_elem_sep int pos concode_elem_sep int srcEnd concode_elem_sep int quoteStart concode_elem_sep ThreadContext context concode_elem_sep ByteList out concode_field_sep void init concode_elem_sep void init concod... | char function ( ) { return src . charAt ( pos ++ ) ; } |
17,666 | returns the legacy contact with the primary key . concode_field_sep LegacyContactLocalService _legacyContactLocalService concode_field_sep de.uhh.l2g.plugins.migration.model.LegacyContact createLegacyContact concode_elem_sep int getLegacyContactsCount concode_elem_sep void setWrappedService concode_elem_sep de.uhh.l2g.... | de . uhh . l2g . plugins . migration . model . LegacyContact function ( long arg0 ) { return _legacyContactLocalService . getLegacyContact ( arg0 ) ; } |
17,667 | a map of concept to observations in the underlying encounter concode_field_sep String doctorName concode_elem_sep List<String> conceptSources concode_elem_sep String existingDiagnoses concode_elem_sep Log log concode_elem_sep Map<Concept,List<Obs>> obsMap concode_elem_sep QueueItem queueItem concode_elem_sep String pat... | Map < Concept , List < Obs >> function ( ) { return obsMap ; } |
17,668 | adds an exception injection to the controls builder with the given parameters . the injection is not skipped , and the exception is thrown when execution reaches the site . concode_field_sep List<String> injections concode_elem_sep String EMPTY_CONTROLS concode_field_sep Builder addExceptionOnBit concode_elem_sep Build... | Builder function ( final Class < ? > arg0 , final String arg1 , final Class < ? extends Throwable > arg2 ) { return addException ( arg0 , arg1 , arg2 , 0 , 1 ) ; } |
17,669 | returns the hostname verifier , or null if this is not an https address . concode_field_sep Proxy proxy concode_elem_sep int uriPort concode_elem_sep SSLSocketFactory sslSocketFactory concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep String uriHost concode_field_sep SSLSocketFactory getSslSocketFactor... | HostnameVerifier function ( ) { return hostnameVerifier ; } |
17,670 | interface to access operations by integer value for command-line convenience . concode_field_sep Op op concode_elem_sep int field concode_elem_sep long serialVersionUID concode_elem_sep Field operand concode_field_sep boolean filter concode_elem_sep Field getOperand concode_elem_sep int getField concode_elem_sep String... | Op function ( int arg0 ) { return values ( ) [ arg0 ] ; } |
17,671 | sets the given bit to true . concode_field_sep int width concode_elem_sep int[] bits concode_elem_sep int height concode_elem_sep int rowSize concode_field_sep void setRegion concode_elem_sep int getHeight concode_elem_sep int[] getTopLeftOnBit concode_elem_sep int hashCode concode_elem_sep boolean get concode_elem_sep... | void function ( int arg0 , int arg1 ) { int loc0 = arg1 * rowSize + ( arg0 >> 5 ) ; bits [ loc0 ] |= 1 << ( arg0 & 0x1f ) ; } |
17,672 | get required parity units count in a coding group concode_field_sep String NUM_PARITY_UNITS_KEY concode_elem_sep Map<String,String> extraOptions concode_elem_sep int numDataUnits concode_elem_sep String codecName concode_elem_sep String NUM_DATA_UNITS_KEY concode_elem_sep int numParityUnits concode_elem_sep String CODE... | int function ( ) { return numParityUnits ; } |
17,673 | return the first parameter concode_field_sep boolean extendAddress concode_elem_sep boolean demandAck concode_elem_sep boolean threePhase concode_elem_sep Command command concode_field_sep void setDemandAckTo concode_elem_sep int getSecondParameter concode_elem_sep List<Byte> getDataBytes concode_elem_sep Command getCo... | int function ( ) { return command . getData1 ( ) ; } |
17,674 | unregisters the indicated listener from the tracer . concode_field_sep Hashtable listeners concode_field_sep void add concode_elem_sep void trace concode_elem_sep void clear | void function ( String arg0 ) { listeners . remove ( arg0 ) ; } |
17,675 | return the number of supported entity references . concode_field_sep Map<String,Character> entityReferenceToCharacterMap concode_elem_sep char REFERENCE_START concode_elem_sep String HEX_REFERENCE_START concode_elem_sep String PROPERTIES_FILE concode_elem_sep char CHAR_NULL concode_elem_sep char REFERENCE_END concode_e... | int function ( ) { return this . entityReferenceToCharacterMap . size ( ) ; } |
17,676 | method used to get the field format concode_field_sep int dateStandard concode_elem_sep int size concode_elem_sep Field field concode_elem_sep boolean readHexa concode_elem_sep String format concode_elem_sep int index concode_elem_sep boolean skip concode_elem_sep ITag tag concode_field_sep boolean isSkip concode_elem_... | String function ( ) { return format ; } |
17,677 | extracts and returns the element on the top of the operand stack . concode_field_sep ArrayDeque<Value> valueStack concode_field_sep Value[] operands concode_elem_sep Value top concode_elem_sep Collection<Value> values concode_elem_sep void clear concode_elem_sep OperandStack clone concode_elem_sep String toString conco... | Value function ( ) { if ( this . valueStack . isEmpty ( ) ) { throw new InvalidNumberOfOperandsException ( ) ; } return this . valueStack . pop ( ) ; } |
17,678 | sets the maximum-connections property . concode_field_sep String MAX_CONNECTIONS concode_elem_sep ProtocolFactory protocolFactory concode_elem_sep String PROTOCOL_FACFORY concode_elem_sep String virtualHost concode_elem_sep String PROXY concode_elem_sep String proxyHost concode_elem_sep String HOST concode_elem_sep int... | void function ( int arg0 ) { this . maximumConnections = arg0 ; } |
17,679 | changes the key associated with the index to the new provided key concode_field_sep int[] logicalValueToRealPosition concode_elem_sep int[] realPositionToLogicalValue concode_elem_sep int size concode_elem_sep Key[] keys concode_elem_sep int maxN concode_elem_sep IndexMaxPriorityQueue<Key> copy concode_field_sep Intege... | void function ( int arg0 , Key arg1 ) { if ( arg0 < 0 || arg0 >= maxN ) throw new IndexOutOfBoundsException ( ) ; if ( ! contains ( arg0 ) ) throw new IllegalArgumentException ( "srini_string" ) ; keys [ arg0 ] = arg1 ; swim ( realPositionToLogicalValue [ arg0 ] ) ; sink ( realPositionToLogicalValue [ arg0 ] ) ; } |
17,680 | adds files to container if they matched to template . concode_field_sep List<String> added concode_elem_sep List<String> untrackedFolders concode_elem_sep StatusFormat format concode_elem_sep String branchName concode_elem_sep boolean clean concode_elem_sep List<String> conflicting concode_elem_sep List<String> removed... | boolean function ( List < String > arg0 , String arg1 , char arg2 , char arg3 ) { if ( matches ( arg1 , arg2 , arg3 ) ) { final String loc0 = arg1 . substring ( 3 ) ; if ( ! arg0 . contains ( loc0 ) ) { arg0 . add ( loc0 ) ; } return true ; } return false ; } |
17,681 | multiplies the color with the given alpha . concode_field_sep PlaceHolder placeHolder concode_field_sep int getOpacityFromColor | int function ( int arg0 , int arg1 ) { if ( arg1 == 255 ) { return arg0 ; } if ( arg1 == 0 ) { return arg0 & 0x00FFFFFF ; } arg1 = arg1 + ( arg1 >> 7 ) ; int loc0 = arg0 >>> 24 ; int loc1 = loc0 * arg1 >> 8 ; return ( loc1 << 24 ) | ( arg0 & 0x00FFFFFF ) ; } |
17,682 | choose the midi ports to use . this method will prompt you with a list of the availible midi inputs and outputs , double click on the desired ports . concode_field_sep boolean waitingToSetup concode_elem_sep Receiver midiReceiver concode_field_sep void setMidiInputSelection concode_elem_sep void fillFrame concode_elem_... | void function ( ) { setupMidiInput ( ) ; } |
17,683 | convenience method to get a formatted calendar based on the passed date time string concode_field_sep String INITIAL_PRICE concode_elem_sep String IMAGE concode_elem_sep String BID_COUNT concode_elem_sep String CURRENCY concode_elem_sep ItemType[] itemList concode_elem_sep Log log concode_elem_sep String SELLER concode... | Calendar function ( String arg0 ) { SimpleDateFormat loc0 = new SimpleDateFormat ( DATE_FORMAT ) ; Calendar loc1 = Calendar . getInstance ( ) ; Date loc2 = loc0 . parse ( arg0 ) ; loc1 . setTime ( loc2 ) ; return loc1 ; } |
17,684 | returns the size both x and y of the checkbox icon . concode_field_sep MetalBorders.ButtonBorder border concode_field_sep int getIconWidth concode_elem_sep int getIconHeight concode_elem_sep void drawCheck concode_elem_sep void paintIcon | int function ( ) { return 13 ; } |
17,685 | interns an instance , adding to the descriptor as necessary based on the given definer , name , and flags . for example , an init method has an uninitialized object of type definer as its first argument . concode_field_sep StdTypeList parameterTypes concode_elem_sep String descriptor concode_elem_sep StdTypeList parame... | Prototype function ( String arg0 , Type arg1 , boolean arg2 , boolean arg3 ) { Prototype loc0 = intern ( arg0 ) ; if ( arg2 ) { return loc0 ; } if ( arg3 ) { arg1 = arg1 . asUninitialized ( Integer . MAX_VALUE ) ; } return loc0 . withFirstParameter ( arg1 ) ; } |
17,686 | create an instance of jaxbelement concode_field_sep QName _ActAs_QNAME concode_field_sep ActAsType createActAsType | JAXBElement < ActAsType > function ( ActAsType arg0 ) { return new JAXBElement < ActAsType > ( _ActAs_QNAME , ActAsType . class , null , arg0 ) ; } |
17,687 | returns total number of connections in the pool . concode_field_sep ConnectionPool systemDefault concode_elem_sep LinkedList<Connection> connections concode_elem_sep long keepAliveDurationNs concode_elem_sep long DEFAULT_KEEP_ALIVE_DURATION_MS concode_elem_sep int MAX_CONNECTIONS_TO_CLEANUP concode_elem_sep Callable<Vo... | int function ( ) { return connections . size ( ) ; } |
17,688 | this routine will print an object . if the object is an array or hashtable , it will recursively print the contents as well . concode_field_sep PlaceHolder placeHolder concode_field_sep int getInt concode_elem_sep Double toDouble concode_elem_sep Boolean toBoolean concode_elem_sep Date toDate concode_elem_sep String to... | void function ( Object arg0 ) { printObject ( "srini_string" , arg0 ) ; } |
17,689 | tests whether the application can modify the file denoted by this abstract pathname . concode_field_sep File m_aFile concode_elem_sep String m_sPath concode_elem_sep Integer m_aHashCode concode_elem_sep Logger s_aLogger concode_field_sep boolean canExecute concode_elem_sep Reader getReader concode_elem_sep Reader getRe... | boolean function ( ) { return FileUtils . canWrite ( m_aFile ) ; } |
17,690 | returns the d d m storage id of this document library file entry metadata . concode_field_sep DLFileEntryMetadata _dlFileEntryMetadata concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAt... | long function ( ) { return _dlFileEntryMetadata . getDDMStorageId ( ) ; } |
17,691 | the instance id . concode_field_sep String createdAt concode_elem_sep String instanceId concode_elem_sep String stackId concode_elem_sep String serviceErrorId concode_elem_sep String type concode_elem_sep String message concode_field_sep ServiceError withServiceErrorId concode_elem_sep String getInstanceId concode_elem... | void function ( String arg0 ) { this . instanceId = arg0 ; } |
17,692 | reset after test . concode_field_sep Verifier verifier concode_elem_sep String ARTIFACTID concode_elem_sep File testDir concode_elem_sep String PACKAGING concode_field_sep void testCompareResults concode_elem_sep void setUp concode_elem_sep void testErrorFree concode_elem_sep void testForSourceMap | void function ( ) { this . verifier . setMavenDebug ( false ) ; this . verifier . executeGoal ( "srini_string" ) ; this . verifier . resetStreams ( ) ; } |
17,693 | forward the call blocking until source is set if need be . concode_field_sep Filter src concode_elem_sep Rectangle2D bounds concode_elem_sep Map props concode_field_sep void setSource concode_elem_sep RenderedImage createRendering concode_elem_sep boolean isDynamic concode_elem_sep Object getProperty concode_elem_sep v... | RenderedImage function ( int arg0 , int arg1 , RenderingHints arg2 ) { return getSource ( ) . createScaledRendering ( arg0 , arg1 , arg2 ) ; } |
17,694 | returns a hash code for this object . concode_field_sep long serialVersionUID concode_elem_sep List lines concode_elem_sep HorizontalAlignment lineAlignment concode_field_sep void addLine concode_elem_sep void addLine concode_elem_sep void setLineAlignment concode_elem_sep float[] calculateOffsets concode_elem_sep Shap... | int function ( ) { return ( this . lines != null ? this . lines . hashCode ( ) : 0 ) ; } |
17,695 | optionally provides a bits interface for random accessto matching documents . concode_field_sep DocIdSet EMPTY concode_field_sep DocIdSetIterator iterator concode_elem_sep DocIdSetIterator iterator concode_elem_sep long ramBytesUsed | Bits function ( ) { return null ; } |
17,696 | called on page transitions concode_field_sep PluginManager pluginManager concode_elem_sep int expectedBridgeSecret concode_elem_sep String LOG_TAG concode_elem_sep NativeToJsMessageQueue jsMessageQueue concode_field_sep void jsSetNativeToJsBridgeMode concode_elem_sep boolean isSecretEstablished concode_elem_sep boolean... | void function ( ) { expectedBridgeSecret = - 1 ; } |
17,697 | returns a byte array copy of the entire record . concode_field_sep int LENGTH_OFFSET concode_elem_sep int index concode_elem_sep byte[] buffer concode_elem_sep int FIXED_DATA_SIZE concode_elem_sep int ID_OFFSET concode_field_sep int getDataLength concode_elem_sep byte getByte concode_elem_sep int getLength concode_elem... | byte [ ] function ( ) { return Arrays . copyOfRange ( buffer , index , index + getLength ( ) ) ; } |
17,698 | determines the appropriate class loader to which the generated proxy should be scoped . concode_field_sep Class[] PROXY_INTERFACES concode_elem_sep CharacterStream characterStream concode_elem_sep boolean needsReset concode_field_sep void resetIfNeeded concode_elem_sep CharacterStream getUnderlyingStream concode_elem_s... | ClassLoader function ( ) { return ClobImplementer . class . getClassLoader ( ) ; } |
17,699 | sets the value of the password property . concode_field_sep String password concode_elem_sep String username concode_field_sep String getPassword concode_elem_sep void setUsername concode_elem_sep String getUsername | void function ( String arg0 ) { this . password = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.