idx int64 0 100k | question stringlengths 68 7.19k | target stringlengths 20 663 |
|---|---|---|
37,200 | the maximum number of writes consumed per second before dynamodb returns a throttlingexception . for more information , see specifying read and write requirements in the amazon dynamodb developer guide . concode_field_sep Long writeCapacityUnits concode_elem_sep Long readCapacityUnits concode_field_sep Long getReadCapa... | Long function ( ) { return this . writeCapacityUnits ; } |
37,201 | gets the value of the shipto property . concode_field_sep USAddress billTo concode_elem_sep String comment concode_elem_sep Items items concode_elem_sep XMLGregorianCalendar orderDate concode_elem_sep USAddress shipTo concode_field_sep Items getItems concode_elem_sep USAddress getBillTo concode_elem_sep void setBillTo ... | USAddress function ( ) { return shipTo ; } |
37,202 | returns the value token for the given value , creating a new token as necessary . concode_field_sep Map<Object,Integer> valueToToken concode_elem_sep Map<String,Integer> nameToToken concode_field_sep String getNameByToken concode_elem_sep Map<String,String> getNameMap concode_elem_sep int numValueTokens concode_elem_se... | String function ( Object arg0 ) { Integer loc0 = valueToToken . get ( arg0 ) ; if ( loc0 == null ) { loc0 = valueToToken . size ( ) ; valueToToken . put ( arg0 , loc0 ) ; } return "srini_string" + loc0 ; } |
37,203 | sets the value of the show property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep JAXBElement<? extends AbstractGeometricAggregateType> abstractGeometricAggregate concode_elem_sep String show concode_elem_sep java.lang.Boolean owns concode_elem_sep String actuate concode_elem_sep List... | void function ( String arg0 ) { this . show = arg0 ; } |
37,204 | ? concode_field_sep String progressLabel concode_elem_sep String progressCompleteLabelField concode_elem_sep String progressCompleteLabel concode_elem_sep String labelPosition concode_elem_sep boolean progressCompleteLabelCustomValue concode_elem_sep boolean customProgress concode_elem_sep boolean customComplete concod... | void function ( ) { progressLabelCustomValue = true ; } |
37,205 | push an array or object scope . concode_field_sep char mode concode_elem_sep boolean comma concode_elem_sep int top concode_elem_sep int maxdepth concode_elem_sep Writer writer concode_elem_sep JSONObject stack[] concode_field_sep void pop concode_elem_sep JSONWriter array concode_elem_sep JSONWriter end concode_elem_s... | void function ( JSONObject arg0 ) { if ( this . top >= maxdepth ) { throw new JSONException ( "srini_string" ) ; } this . stack [ this . top ] = arg0 ; this . mode = arg0 == null ? 'a' : 'k' ; this . top += 1 ; } |
37,206 | waits for running asynctask instances to finish , then destroys any resources like threads . can not be used afterthis method is called . concode_field_sep PlaceHolder placeHolder concode_field_sep AsyncResult<T> submit | void function ( ) { } |
37,207 | copied over from ace componentutils for ajax support concode_field_sep Logger logger concode_field_sep UIComponent getChildById concode_elem_sep UIComponent findChildComponent concode_elem_sep HttpServletRequest getRequest concode_elem_sep void renderLayoutChild concode_elem_sep List<UIParameter> captureParameters conc... | UIComponent function ( UIComponent arg0 ) { UIComponent loc0 = arg0 ; while ( loc0 != null ) if ( loc0 instanceof UIForm ) break ; else loc0 = loc0 . getParent ( ) ; return loc0 ; } |
37,208 | 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 ) ; } |
37,209 | get the interfaces . concode_field_sep String colo concode_elem_sep String path concode_elem_sep Set<Interface> interfaces concode_elem_sep String endpoint concode_elem_sep String name concode_elem_sep Set<Location> locations concode_elem_sep String type concode_elem_sep String version concode_elem_sep Map<String,Strin... | Set < Interface > function ( ) { return interfaces ; } |
37,210 | called as the cursor 's hotspot enters a platform-dependent drop site . this method is invoked when all the following conditions are true : the cursor 's hotspot enters the operable part of a platform-dependent drop site . the drop site is active . the drop site accepts the drag . concode_field_sep PlaceHolder placeHol... | void function ( DragSourceDragEvent arg0 ) { } |
37,211 | returns a better formated error message - suitable for framing . there 's a more complex version in styleseditoraction . this will kick out a very large errormessage . concode_field_sep PlaceHolder placeHolder concode_field_sep List validateGETMAP concode_elem_sep List validateGETMAP concode_elem_sep List validateGETMA... | String function ( Reader arg0 , List arg1 ) { return SLDValidator . getErrorMessage ( arg0 , arg1 ) ; } |
37,212 | formats the log string using the specified format . the format must include three replacement strings . concode_field_sep String FORMAT_LONG concode_elem_sep String FORMAT_SHORT concode_elem_sep String FORMAT_LOG concode_field_sep String logFormat concode_elem_sep void D concode_elem_sep void D concode_elem_sep void D ... | String function ( String arg0 , Class < ? > arg1 , String arg2 , String arg3 ) { return arg0 ( arg0 , arg1 . getSimpleName ( ) , arg2 , arg3 ) ; } |
37,213 | returns a list of all owned product ids of a given type concode_field_sep Map<String,SkuDetails> mSkuMap concode_elem_sep Map<String,Purchase> mPurchaseMap concode_field_sep void erasePurchase concode_elem_sep void addSkuDetails concode_elem_sep Purchase getPurchase concode_elem_sep boolean hasDetails concode_elem_sep ... | List < String > function ( String arg0 ) { List < String > loc0 = new ArrayList < String > ( ) ; for ( Purchase loc1 : mPurchaseMap . values ( ) ) { if ( loc1 . getItemType ( ) . equals ( arg0 ) ) loc0 . add ( loc1 . getSku ( ) ) ; } return loc0 ; } |
37,214 | get the bind address if the system property h2.bindaddress is set , or null if not . concode_field_sep int CACHE_MILLIS concode_elem_sep String cachedLocalAddress concode_elem_sep long cachedLocalAddressTime concode_elem_sep InetAddress bindAddress concode_field_sep Socket createSocket concode_elem_sep Socket createSoc... | InetAddress function ( ) { String loc0 = SysProperties . BIND_ADDRESS ; if ( loc0 == null || loc0 . length ( ) == 0 ) { return null ; } synchronized ( NetUtils . class ) { if ( bindAddress == null ) { bindAddress = InetAddress . getByName ( loc0 ) ; } } return bindAddress ; } |
37,215 | get n spaces concode_field_sep StringBuffer spaceBuffer concode_elem_sep PrintStream out concode_elem_sep int indent concode_field_sep void startCurrentItem concode_elem_sep void leave concode_elem_sep String getOpeningAttributes concode_elem_sep void setOutputDestination concode_elem_sep void enter concode_elem_sep St... | String function ( int arg0 ) { while ( spaceBuffer . length ( ) < arg0 ) { spaceBuffer . append ( AbstractTraceListener . spaceBuffer ) ; } return spaceBuffer . substring ( 0 , arg0 ) ; } |
37,216 | check that exp is false , otherwise an assertionexception is thrown . concode_field_sep PlaceHolder placeHolder concode_field_sep void isTrue concode_elem_sep void isTrue concode_elem_sep void onError | void function ( boolean arg0 , String arg1 ) { if ( arg0 ) onError ( "srini_string" + arg1 ) ; } |
37,217 | sets the width of this widget to a fixed value concode_field_sep HorizontalInfo positionLeft concode_elem_sep HorizontalInfo positionRight concode_elem_sep int width concode_elem_sep HorizontalInfo positionCenter concode_field_sep HorizontalHint alignLeftRelativeTo concode_elem_sep HorizontalHint alignLeftRelativeTo co... | HorizontalHint function ( int arg0 ) { this . width = arg0 ; return this ; } |
37,218 | non-javadoc concode_field_sep ILoanCheckItemDao loanCheckItemDao concode_elem_sep ILoanCheckDetailDao loanCheckDetailDao concode_field_sep LoanCheckDetailDo getCheckDetailById concode_elem_sep int updateLoanCheckItemById concode_elem_sep int addLoanCheckItem concode_elem_sep LoanCheckItemDo getById concode_elem_sep int... | int function ( Long arg0 ) { return loanCheckDetailDao . countDetailByCheckId ( arg0 ) ; } |
37,219 | appends s to the end of this charbuffer . this method involves copying the new data once ! concode_field_sep char[] c concode_elem_sep int length concode_field_sep void shrink concode_elem_sep void clear concode_elem_sep int length concode_elem_sep String toString concode_elem_sep void provideCapacity concode_elem_sep ... | void function ( final String arg0 ) { if ( arg0 == null ) { return ; } append ( arg0 . toCharArray ( ) ) ; } |
37,220 | returns indices that were included into this snapshot concode_field_sep String reason concode_elem_sep XContentBuilderString VERSION_ID concode_elem_sep XContentBuilderString NAME concode_elem_sep XContentBuilderString STATE concode_elem_sep List<SnapshotShardFailure> shardFailures concode_elem_sep XContentBuilderStrin... | List < String > function ( ) { return indices ; } |
37,221 | the names of http headers that should be copied from the handshake headers of each call to sockjsclient #dohandshake websockethandler , websockethttpheaders , uri and also used with other http requests issued as part of that sockjs connection , e.g. the initial info request , xhr send or receive requests . by default i... | void function ( String ... arg0 ) { this . httpHeaderNames = arg0 ; } |
37,222 | returns the uuid of this user group . concode_field_sep UserGroup _userGroup concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep boolean isEscapedModel concode_elem_... | java . lang . String function ( ) { return _userGroup . getUuid ( ) ; } |
37,223 | appends the cell reference for the column and row passed in to the string buffer concode_field_sep PlaceHolder placeHolder concode_field_sep String getColumnReference concode_elem_sep int getColumn concode_elem_sep String getSheet concode_elem_sep int getRow concode_elem_sep boolean isRowRelative concode_elem_sep boole... | void function ( int arg0 , int arg1 , StringBuffer arg2 ) { jxl . biff . CellReferenceHelper . getCellReference ( arg0 , arg1 , arg2 ) ; } |
37,224 | returns total size of inline event handlers onclick , etc concode_field_sep int filesize concode_elem_sep int inlineScriptSize concode_elem_sep int emptyChars concode_elem_sep int inlineStyleSize concode_elem_sep int inlineEventSize concode_field_sep void setEmptyChars concode_elem_sep int getFilesize concode_elem_sep ... | int function ( ) { return inlineEventSize ; } |
37,225 | whether str is a allow field concode_field_sep String Route concode_elem_sep String Via_short concode_elem_sep String Authentication_Info concode_elem_sep String CSeq concode_elem_sep String Require concode_elem_sep String Unsupported concode_elem_sep String To_short concode_elem_sep String User_Agent concode_elem_sep ... | boolean function ( String arg0 ) { return same ( arg0 , Allow ) ; } |
37,226 | sets the tolerance of absolute diff in function value . line search converges if abs delta x for all coordinates . concode_field_sep Logger logger concode_elem_sep double stpmax concode_elem_sep double ALF concode_elem_sep double absTolx concode_elem_sep Optimizable.ByGradientValue function concode_elem_sep int maxIter... | void function ( double arg0 ) { absTolx = arg0 ; } |
37,227 | this method extracts the hashtag from each tweet , and adds it to the map concode_field_sep Logger LOGGER concode_elem_sep TweetQueueManager tweetQueueManager concode_field_sep void run | void function ( final String arg0 ) { String loc0 = "srini_string" ; StringTokenizer loc1 = new StringTokenizer ( arg0 , loc0 ) ; while ( loc1 . hasMoreTokens ( ) ) { String loc2 = loc1 . nextToken ( ) ; if ( loc2 . startsWith ( "srini_string" ) ) { tweetQueueManager . addHashTag ( loc2 ) ; } } } |
37,228 | called when the webview does a top-level navigation or refreshes . plugins should stop any long-running processes and clean up internal state . does nothing by default . concode_field_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String id concode_field_sep boolean onOverrideUrlL... | void function ( ) { } |
37,229 | compute fast fourier transform of complex data , in place . concode_field_sep PlaceHolder placeHolder concode_field_sep void bitreverse concode_elem_sep void inverse concode_elem_sep double test concode_elem_sep double num_flops concode_elem_sep void main concode_elem_sep void transform_internal concode_elem_sep int lo... | void function ( double arg0 [ ] ) { transform_internal ( arg0 , - 1 ) ; } |
37,230 | returns the reward the field in which the agent currently is yields concode_field_sep int xPosition concode_elem_sep int actionsCounter concode_elem_sep int initXPos concode_elem_sep double pNoStep concode_elem_sep int height concode_elem_sep int waittime concode_elem_sep double posReward concode_elem_sep Action[][] po... | double function ( ) { switch ( landscape [ xPosition ] [ yPosition ] ) { case EMPTY : return noReward ; case REWARD : terminated = true ; return posReward ; case NEGREWARD : terminated = true ; return negReward ; } System . err . println ( "srini_string" ) ; return 0 ; } |
37,231 | looks if an existing document with the same title exists . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] getBytesFromFile concode_elem_sep String fetchTitle concode_elem_sep DocumentModel getExistingDocByPropertyName concode_elem_sep DocumentModel getExistingDocByFileName concode_elem_sep String fe... | DocumentModel function ( CoreSession arg0 , String arg1 , String arg2 ) { return getExistingDocByPropertyName ( arg0 , arg1 , arg2 , "srini_string" ) ; } |
37,232 | stores to c unsigned int data four bytes concode_field_sep int longSize concode_elem_sep int dataModel concode_elem_sep Unsafe unsafe concode_field_sep void putULong concode_elem_sep void putWindow concode_elem_sep void putWindow concode_elem_sep byte getByte concode_elem_sep byte getByte concode_elem_sep int getWindow... | void function ( long arg0 , long arg1 ) { unsafe . putInt ( arg0 , ( int ) arg1 ) ; } |
37,233 | what takes precedence , user.module.prop or group.module.prop ? answer , user.module.prop . concode_field_sep TaskInfo taskInfo concode_elem_sep GpConfig gpConfig concode_elem_sep JobInfo jobInfo concode_field_sep void testUserWithCustomValue concode_elem_sep void testJobInfoTaskName concode_elem_sep void testJobInfoLs... | void function ( ) { GpContext loc0 = GpContext . getContextForUser ( "srini_string" ) ; loc0 . setTaskInfo ( taskInfo ) ; doTest ( loc0 , "srini_string" ) ; loc0 . setTaskInfo ( null ) ; loc0 . setJobInfo ( jobInfo ) ; doTest ( loc0 , "srini_string" ) ; } |
37,234 | has this effect been fired . only effects that have not been fired are sent to the browser concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem... | boolean function ( ) { return fired ; } |
37,235 | returns the uielementnode that owns this uiattributenode concode_field_sep boolean mHasError concode_elem_sep AttributeDescriptor mDescriptor concode_elem_sep UiElementNode mUiParent concode_elem_sep boolean mIsDirty concode_field_sep AttributeDescriptor getDescriptor concode_elem_sep void updateValue concode_elem_sep ... | UiElementNode function ( ) { return mUiParent ; } |
37,236 | sets this item to an integer item . concode_field_sep Item next concode_elem_sep int intVal concode_elem_sep int hashCode concode_elem_sep int index concode_elem_sep int type concode_elem_sep long longVal concode_elem_sep String strVal1 concode_elem_sep String strVal3 concode_elem_sep String strVal2 concode_field_sep b... | void function ( final int arg0 ) { this . type = ClassWriter . INT ; this . intVal = arg0 ; this . hashCode = 0x7FFFFFFF & ( type + arg0 ) ; } |
37,237 | sets the accesstoken property on the wrapped oauth2profile instance concode_field_sep String redirectUri concode_elem_sep String authorizationUri concode_elem_sep String resourceOwnerName concode_elem_sep String resourceOwnerPassword concode_elem_sep String clientId concode_elem_sep OAuth2Profile profile concode_elem_s... | void function ( String arg0 ) { profile . applyRetrievedAccessToken ( arg0 ) ; } |
37,238 | register code to invoke when the async request times out . this method is called from a container thread when an async request times out before the callable has completed . the callback is executed inthe same thread and therefore should return without blocking . it may return an alternative value to use , including an ... | void function ( Callable < V > arg0 ) { this . timeoutCallback = arg0 ; } |
37,239 | this method resets the outgoing events . concode_field_sep String myString concode_elem_sep String quotedString concode_elem_sep String myString2 concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean equals concode_elem_sep boolean notEqual concode_elem_sep int nextStateIndex concode_elem_sep boolean e1... | void function ( ) { } |
37,240 | testarray concode_field_sep SDocFlexScanner _scanner concode_field_sep void testPipe concode_elem_sep void testFuntionType2 concode_elem_sep void testNearIdentifiers concode_elem_sep void testNoTypes concode_elem_sep void testEllipsis concode_elem_sep void testTab concode_elem_sep void testArrow concode_elem_sep void l... | void function ( ) { String loc0 = "srini_string" ; lexemeTypeTests ( loc0 , SDocTokenType . ARRAY ) ; } |
37,241 | fetch records for the provided guids . the caller is responsible for closing the cursor . concode_field_sep Context context concode_elem_sep String[] GUID_COLUMNS concode_elem_sep String LOG_TAG concode_elem_sep RepoUtils.QueryHelper queryHelper concode_field_sep int purgeGuid concode_elem_sep Cursor fetchAll concode_e... | Cursor function ( String arg0 [ ] ) { String loc0 = RepoUtils . computeSQLInClause ( arg0 . length , "srini_string" ) ; return queryHelper . safeQuery ( "srini_string" , getAllColumns ( ) , loc0 , arg0 , null ) ; } |
37,242 | returns the paths from the request uri concode_field_sep String[] requestUriPaths concode_elem_sep Map<String,String> parameterNameValues concode_elem_sep HttpProxyRule proxyRule concode_field_sep Map<String,String> getParameterNameValues concode_elem_sep String getDestinationUrl concode_elem_sep HttpProxyRule getProxy... | String [ ] function ( ) { return requestUriPaths ; } |
37,243 | returns the current fate the unit has . concode_field_sep int maxFate concode_elem_sep int currentFate concode_field_sep void setMax concode_elem_sep void update concode_elem_sep String toString concode_elem_sep void replenish | int function ( ) { return currentFate ; } |
37,244 | warning : do n't modify the return char because it will beinconsistent with s.hashcode concode_field_sep Field sbval concode_elem_sep Field val concode_elem_sep Map<Character,Character> escapeMapReverse concode_elem_sep Map<Character,Character> escapeMap concode_field_sep CharSequence sequence concode_elem_sep boolean ... | char [ ] function ( String arg0 ) { try { return ( char [ ] ) val . get ( arg0 ) ; } catch ( Exception loc2 ) { loc2 . printStackTrace ( ) ; } return null ; } |
37,245 | set user session concode_field_sep Long lastAccessTime concode_elem_sep String userSession concode_elem_sep String userName concode_field_sep Long getLastAccessTime concode_elem_sep void setUserName concode_elem_sep String getUserName concode_elem_sep void setLastAccessTime concode_elem_sep String getUserSession | void function ( String arg0 ) { this . userSession = arg0 ; } |
37,246 | inform tracker that a commit has occurred concode_field_sep boolean waitSearcher concode_elem_sep ScheduledFuture pending concode_elem_sep AtomicInteger autoCommitCount concode_elem_sep long timeUpperBound concode_elem_sep SolrCore core concode_elem_sep ScheduledExecutorService scheduler concode_elem_sep AtomicLong doc... | void function ( ) { } |
37,247 | check if this image is mutable . mutable images can be modified by rendering to them through a graphics object obtained from the getgraphics method of this object . concode_field_sep boolean isMutable concode_elem_sep byte[] pixelData concode_elem_sep int width concode_elem_sep int nativeAlphaData concode_elem_sep byte... | boolean function ( ) { return isMutable ; } |
37,248 | get a metrics tag concode_field_sep boolean gotOverflow concode_elem_sep CacheWith2Keys<MetricsInfo,String,MetricsTag> cache concode_elem_sep Map<K1,Map<K2,V>> k1Map concode_elem_sep CacheWith2Keys<String,String,MetricsInfo> cache concode_elem_sep int MAX_TAG_NAMES concode_elem_sep int MAX_TAG_VALUES concode_elem_sep L... | MetricsTag function ( MetricsInfo arg0 , String arg1 ) { return Tags . INSTANCE . cache . add ( arg0 , arg1 ) ; } |
37,249 | each timezonewrapper has one or more ids of components in the ui that correspond to its time zone . by this , if an event comes from a component in the web page , then this will return the relevant timezonewrapper . concode_field_sep DateFormat selectedFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_... | TimeZoneWrapper function ( String arg0 ) { for ( int loc0 = 0 ; loc0 < allTimeZoneList . size ( ) ; loc0 ++ ) { TimeZoneWrapper loc1 = ( TimeZoneWrapper ) allTimeZoneList . get ( loc0 ) ; if ( loc1 . isRelevantComponentId ( arg0 ) ) { return loc1 ; } } return null ; } |
37,250 | returns actual elements renderer . concode_field_sep List<RendererListener> rendererListeners concode_elem_sep WebComboBoxElement elementRenderer concode_elem_sep WebComboBoxElement boxRenderer concode_field_sep Component getListCellRendererComponent concode_elem_sep WebComboBoxElement getBoxRenderer concode_elem_sep v... | WebComboBoxElement function ( ) { return elementRenderer ; } |
37,251 | return the list of plain java objects backing the chart . 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 Integer fillAlpha... | List < Object > function ( ) { if ( data == null ) data = new ArrayList < Object > ( ) ; return data ; } |
37,252 | executes the request . this method is called from the webview thread . to do a non-trivial amount of work , use : cordova.getthreadpool . execute runnable ; to run on the ui thread , use : cordova.getactivity . runonuithread runnable ; concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface c... | boolean function ( String arg0 , String arg1 , CallbackContext arg2 ) { JSONArray loc0 = new JSONArray ( arg1 ) ; return execute ( arg0 , loc0 , arg2 ) ; } |
37,253 | make a serial-port packet source for a network-accessible serial port . serial packet sources report missing acknowledgements via a false result to writepacket . concode_field_sep PlaceHolder placeHolder concode_field_sep PacketSource makeTossimSource concode_elem_sep PacketSource makeArgsSerial concode_elem_sep String... | PacketSource function ( String arg0 , int arg1 ) { return new Packetizer ( "srini_string" + arg0 + "srini_string" + arg1 , new NetworkByteSource ( arg0 , arg1 ) ) ; } |
37,254 | getter and setter / concode_field_sep String year concode_elem_sep String PRO_TYPE concode_elem_sep Commentinfo commentinfo concode_elem_sep String commentSituation concode_elem_sep List<Project> proList concode_elem_sep Project project concode_elem_sep String tableComment concode_elem_sep List<CommentinfoAttachment> c... | List < Project > function ( ) { return proList ; } |
37,255 | method to add the x and y co-ordinates of the patient graph concode_field_sep Map<String,Double> normal concode_elem_sep List<ArrayList<Object>> data concode_elem_sep Map<String,Double> critical concode_elem_sep Map<String,Double> absolute concode_elem_sep Map<String,Object> graph concode_field_sep void setNormalLow co... | void function ( long arg0 , Double arg1 ) { ArrayList < Object > loc0 = new ArrayList < Object > ( ) ; loc0 . add ( arg0 ) ; loc0 . add ( arg1 ) ; data . add ( loc0 ) ; } |
37,256 | gets a property value concode_field_sep String mImageUrl concode_elem_sep LatLngBounds mLatLngBox concode_elem_sep GroundOverlayOptions mGroundOverlayOptions concode_elem_sep Map<String,String> mProperties concode_field_sep LatLngBounds getLatLngBox concode_elem_sep GroundOverlayOptions getGroundOverlayOptions concode_... | String function ( String arg0 ) { return mProperties . get ( arg0 ) ; } |
37,257 | returns the average progress . concode_field_sep String RESOURCE_USAGE_EMULATION_PLUGINS concode_elem_sep List<ResourceUsageEmulatorPlugin> emulationPlugins concode_field_sep void matchResourceUsage concode_elem_sep void configure | float function ( ) { if ( emulationPlugins . size ( ) > 0 ) { float loc0 = 0f ; for ( ResourceUsageEmulatorPlugin loc1 : emulationPlugins ) { loc0 += loc1 . getProgress ( ) ; } return loc0 / emulationPlugins . size ( ) ; } return 1f ; } |
37,258 | recursively finds the number of visible levels there are . concode_field_sep String m_label concode_elem_sep boolean m_visible concode_elem_sep boolean m_root concode_elem_sep Instances m_theData concode_elem_sep double m_center concode_elem_sep Vector m_children concode_elem_sep int m_shape concode_elem_sep Vector m_p... | int function ( Node arg0 , int arg1 ) { arg1 ++ ; int loc0 = arg1 , loc1 = 0 ; Edge loc2 ; for ( int loc3 = 0 ; ( loc2 = arg0 . getChild ( loc3 ) ) != null && arg0 . getCVisible ( ) ; loc3 ++ ) { loc1 = getHeight ( loc2 . getTarget ( ) , arg1 ) ; if ( loc1 > loc0 ) { loc0 = loc1 ; } } return loc0 ; } |
37,259 | returns the user uuid of this meetups entry . concode_field_sep MeetupsEntry _meetupsEntry concode_field_sep Date getStartDate concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concod... | java . lang . String function ( ) { return _meetupsEntry . getUserUuid ( ) ; } |
37,260 | notification that you should open the specified file and go to the specified line . its up to the application to determine if this file should be opened for editing or simply displayed . the difference comes into play for things like xml or html files where a user may want to open them in a browser vs a source code fil... | void function ( File arg0 , int arg1 ) { String loc0 = arg0 . getName ( ) . toLowerCase ( ) ; if ( loc0 . endsWith ( "srini_string" ) || loc0 . endsWith ( "srini_string" ) ) { browseFile ( arg0 ) ; } else { editFile ( arg0 , arg1 ) ; } } |
37,261 | sets 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... | void function ( double arg0 ) { mDistance = arg0 ; } |
37,262 | getter for the id of the profile . concode_field_sep String MIDDLE_NAME_KEY concode_elem_sep String lastName concode_elem_sep String NAME_KEY concode_elem_sep Parcelable.Creator<Profile> CREATOR concode_elem_sep String FIRST_NAME_KEY concode_elem_sep String firstName concode_elem_sep String ID_KEY concode_elem_sep Stri... | String function ( ) { return id ; } |
37,263 | sets the whiteboxpluginhost to which the plugin tool is tied . this is the class that the plugin will send all feedback messages , progress updates , and return objects . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgress... | void function ( WhiteboxPluginHost arg0 ) { myHost = arg0 ; } |
37,264 | gets the string value of the name object . this is the same as getname concode_field_sep int HEX_CHAR concode_elem_sep Logger logger concode_elem_sep String name concode_field_sep String convertHexChars concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolea... | String function ( ) { return name ; } |
37,265 | generate a trustmanager that checks server certificates for validity , but otherwise performs no checks . concode_field_sep X509TrustManager CHECK_SERVER_VALIDITY concode_elem_sep X509Certificate[] EMPTY_X509CERTIFICATE_ARRAY concode_elem_sep boolean checkServerValidity concode_elem_sep X509TrustManager ACCEPT_ALL conc... | X509TrustManager function ( ) { return CHECK_SERVER_VALIDITY ; } |
37,266 | initalizes a byte array with value value concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] wordToBytes concode_elem_sep boolean compare concode_elem_sep int rotateRight concode_elem_sep int[] rotateRight concode_elem_sep byte[] rotateRight concode_elem_sep long uWord concode_elem_sep byte[] fourBytes c... | byte [ ] function ( byte [ ] arg0 , int arg1 ) { for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) arg0 [ loc0 ] = ( byte ) arg1 ; return arg0 ; } |
37,267 | returns a bigquery load configuration for the given destination table and format . concode_field_sep Schema schema concode_elem_sep List<SchemaUpdateOption> schemaUpdateOptions concode_elem_sep Boolean autodetect concode_elem_sep TableId destinationTable concode_elem_sep long serialVersionUID concode_elem_sep WriteDisp... | WriteChannelConfiguration function ( TableId arg0 , FormatOptions arg1 ) { return newBuilder ( arg0 ) . setFormatOptions ( arg1 ) . build ( ) ; } |
37,268 | method used to provide the current status of the aircraft for logging . supplied uses private status string , set whenever a transition occurs . concode_field_sep int departureTime concode_elem_sep int businessCapacity concode_elem_sep int numPremium concode_elem_sep String flightCode concode_elem_sep int economyCapaci... | String function ( int arg0 ) { String loc0 = arg0 + "srini_string" + this . seats . size ( ) + "srini_string" + "srini_string" + this . numFirst + "srini_string" + this . numBusiness + "srini_string" + this . numPremium + "srini_string" + this . numEconomy ; loc0 += this . status ; this . status = "srini_string" ; retu... |
37,269 | the key pair name you provided . concode_field_sep String keyFingerprint concode_elem_sep String keyName concode_field_sep String getKeyFingerprint concode_elem_sep int hashCode concode_elem_sep void setKeyFingerprint concode_elem_sep boolean equals concode_elem_sep void setKeyName concode_elem_sep ImportKeyPairResult ... | ImportKeyPairResult function ( String arg0 ) { setKeyName ( arg0 ) ; return this ; } |
37,270 | called whenever the osgi framework stops our bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void start concode_elem_sep BundleContext getContext | void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; } |
37,271 | set the operation associated to this pendingchange . concode_field_sep LDAPUpdateMsg msg concode_elem_sep PluginOperation op concode_elem_sep boolean committed concode_elem_sep DN targetDN concode_elem_sep ChangeNumber changeNumber concode_elem_sep ServerState dependencyState concode_field_sep LDAPUpdateMsg getMsg conc... | void function ( PluginOperation arg0 ) { this . op = arg0 ; } |
37,272 | returns java class of the field . concode_field_sep String col concode_elem_sep String colDDL concode_elem_sep String COLUMN_ATTR concode_elem_sep Class objJavaCls concode_elem_sep String name concode_elem_sep String NAME_ATTR concode_elem_sep Boolean calculated concode_elem_sep PropertyDescriptor desc concode_field_se... | Class function ( ) { return propDesc ( ) . getPropertyType ( ) ; } |
37,273 | gets the template object using the given url as backend . concode_field_sep Set<IDialect> dialects concode_elem_sep IMessageResolver messageResolver concode_elem_sep Router router concode_elem_sep Assets assets concode_elem_sep ApplicationConfiguration configuration concode_elem_sep WisdomTemplateEngine engine concode_... | ThymeLeafTemplateImplementation function ( URL arg0 ) { Collection < ThymeLeafTemplateImplementation > loc0 = registrations . keySet ( ) ; for ( ThymeLeafTemplateImplementation loc1 : loc0 ) { if ( loc1 . getURL ( ) . sameFile ( arg0 ) ) { return loc1 ; } } return null ; } |
37,274 | teamcity 3.1.1 compatibility concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isSubCoverageActive concode_elem_sep CoverageSuite getCurrentSuite concode_elem_sep void triggerPresentationUpdate concode_elem_sep void removeCoverageSuite concode_elem_sep void restoreMergedCoverage concode_elem_sep void ... | CoverageSuite function ( String arg0 , CoverageFileProvider arg1 , String [ ] arg2 , long arg3 , boolean arg4 ) { return addCoverageSuite ( arg0 , arg1 , arg2 , arg3 , null , null , false , false ) ; } |
37,275 | gets the value of the c pointer abstraction concode_field_sep long peer concode_field_sep boolean equals | long function ( ) { return peer ; } |
37,276 | tests createplayersprite with unbreakableblock . concode_field_sep IGameObject explosion concode_elem_sep SpriteFactory factory concode_elem_sep IGameObject breakableBlock concode_elem_sep IGameObject nullGameObjectType concode_elem_sep IGameObject bomb concode_elem_sep IGameObject player concode_elem_sep IGameObject u... | void function ( ) { factory . createPlayerSprite ( unbreakableBlock , 2 ) ; } |
37,277 | gets the value of the scrgbclr property . concode_field_sep CTSRgbColor srgbClr concode_elem_sep CTHslColor hslClr concode_elem_sep CTSchemeColor schemeClr concode_elem_sep CTSystemColor sysClr concode_elem_sep STPresetShadowVal prst concode_elem_sep Long dist concode_elem_sep CTPresetColor prstClr concode_elem_sep Int... | CTScRgbColor function ( ) { return scrgbClr ; } |
37,278 | gets the value of the phonenumber property . concode_field_sep String phoneNumber concode_elem_sep Customer customer concode_field_sep void setCustomer concode_elem_sep void setPhoneNumber concode_elem_sep Customer getCustomer | String function ( ) { return phoneNumber ; } |
37,279 | sets additional options on component level concode_field_sep String CORS_ACCESS_CONTROL_ALLOW_ORIGIN concode_elem_sep String scheme concode_elem_sep String apiContextPath concode_elem_sep Map<String,Object> consumerProperties concode_elem_sep String CORS_ACCESS_CONTROL_MAX_AGE concode_elem_sep Map<String,Object> compon... | void function ( Map < String , Object > arg0 ) { this . componentProperties = arg0 ; } |
37,280 | call to add a label concode_field_sep Canvas mCanvas concode_elem_sep float mTexelWidth concode_elem_sep int STATE_ADDING concode_elem_sep int mU concode_elem_sep int mV concode_elem_sep float baseline concode_elem_sep int mState concode_elem_sep ArrayList<Label> mLabels concode_elem_sep boolean mFullColor concode_elem... | int function ( GL10 arg0 , Drawable arg1 , int arg2 , int arg3 ) { return add ( arg0 , arg1 , null , null , arg2 , arg3 ) ; } |
37,281 | the topic registration status . concode_field_sep String topicName concode_elem_sep java.util.Date createdDateTime concode_elem_sep String directoryId concode_elem_sep String topicArn concode_elem_sep String status concode_field_sep java.util.Date getCreatedDateTime concode_elem_sep void setCreatedDateTime concode_elem... | EventTopic function ( String arg0 ) { setStatus ( arg0 ) ; return this ; } |
37,282 | returns map containing the given entries . concode_field_sep Map mMap concode_elem_sep boolean mUnderConstruction concode_field_sep Map<K,V> build concode_elem_sep HashMap<K,V> newHashMap concode_elem_sep Builder<K,V> builder concode_elem_sep Builder<K,V> put | Map < K , V > function ( K arg0 , V arg1 , K arg2 , V arg3 , K arg4 , V arg5 , K arg6 , V arg7 , K arg8 , V arg9 , K arg10 , V arg11 , K arg12 , V arg13 ) { Map loc0 = of ( ) ; loc0 . put ( arg0 , arg1 ) ; loc0 . put ( arg2 , arg3 ) ; loc0 . put ( arg4 , arg5 ) ; loc0 . put ( arg6 , arg7 ) ; loc0 . put ( arg8 , arg9 ) ... |
37,283 | the attachment state . constraints : allowed values : attaching , attached , detaching , detached concode_field_sep String volumeId concode_elem_sep Boolean deleteOnTermination concode_elem_sep java.util.Date attachTime concode_elem_sep String status concode_field_sep EbsInstanceBlockDevice withStatus concode_elem_sep ... | void function ( AttachmentStatus arg0 ) { this . status = arg0 . toString ( ) ; } |
37,284 | converts a sortable long back to a double . concode_field_sep PlaceHolder placeHolder concode_field_sep void add concode_elem_sep int sortableFloatBits concode_elem_sep void intToSortableBytes concode_elem_sep int sortableBytesToInt concode_elem_sep void bigIntToSortableBytes concode_elem_sep void subtract concode_elem... | double function ( long arg0 ) { return Double . longBitsToDouble ( sortableDoubleBits ( arg0 ) ) ; } |
37,285 | test of preparemessageaction method , of class finishedhandler . concode_field_sep PlaceHolder placeHolder concode_field_sep void testParseMessageAction | void function ( ) { } |
37,286 | submits the supplied renderable instance to the renderhub for server-initiated render . concode_field_sep int MAX concode_elem_sep Log log concode_elem_sep Map groupMap concode_elem_sep int ON_DEMAND concode_elem_sep int INTERVAL concode_elem_sep int MIN concode_elem_sep int DELAY concode_elem_sep RenderHub renderHub c... | void function ( Renderable arg0 ) { renderHub . requestRender ( arg0 ) ; } |
37,287 | returns a rough string rendition of a qr . concode_field_sep Matrix qr concode_elem_sep int originalRows concode_elem_sep int originalColumns concode_elem_sep Vector rDiag concode_field_sep Matrix solve concode_elem_sep Matrix getQ concode_elem_sep Matrix getR concode_elem_sep boolean hasFullRank | String function ( ) { return String . format ( Locale . ENGLISH , "srini_string" , originalColumns , originalRows , hasFullRank ( ) ) ; } |
37,288 | sets the javafx application concode_field_sep Label optimizeIndexLabel concode_elem_sep DatePicker endPeriodPicker concode_elem_sep Button generateButton concode_elem_sep Button pauseButton concode_elem_sep Label nbTestsLabel concode_elem_sep PlanningGenerationTask task concode_elem_sep Button saveButton concode_elem_s... | void function ( PlanningMainUIApp arg0 ) { this . mainApp = arg0 ; } |
37,289 | implements this method from the interface with an empty body . concode_field_sep PlaceHolder placeHolder concode_field_sep void focusLost | void function ( FocusEvent arg0 ) { } |
37,290 | initialize the marshal tester for use , configuring it to load json resources as utf-8 . concode_field_sep JsonLoader loader concode_field_sep JsonContent<Object> getJsonContent concode_elem_sep void verify concode_elem_sep JsonContent<Object> from concode_elem_sep JsonContent<Object> from concode_elem_sep JsonContent<... | void function ( Class < ? > arg0 , ResolvableType arg1 ) { this . initialize ( arg0 , null , arg1 ) ; } |
37,291 | gets finished job info time-to-live in milliseconds . concode_field_sep int DFLT_MAX_TASK_QUEUE_SIZE concode_elem_sep boolean extExecution concode_elem_sep int maxTaskQueueSize concode_elem_sep boolean DFLT_EXTERNAL_EXECUTION concode_elem_sep long DFLT_FINISHED_JOB_INFO_TTL concode_elem_sep long finishedJobInfoTtl conc... | long function ( ) { return finishedJobInfoTtl ; } |
37,292 | find the _ fields constant that matches name , or null if its not found . concode_field_sep String _fieldName concode_elem_sep org.apache.thrift.protocol.TStruct STRUCT_DESC concode_elem_sep String componentId concode_elem_sep org.apache.thrift.protocol.TField COMPONENT_ID_FIELD_DESC concode_elem_sep String streamId co... | _Fields function ( String arg0 ) { return byName . get ( arg0 ) ; } |
37,293 | dispatches any pending onactivityresult callbacks . concode_field_sep String TAG concode_elem_sep PluginManager pluginManager concode_elem_sep Activity activity concode_elem_sep CordovaPlugin activityResultCallback concode_elem_sep String initCallbackService concode_elem_sep ActivityResultHolder savedResult concode_ele... | void function ( PluginManager arg0 ) { this . pluginManager = arg0 ; if ( savedResult != null ) { onActivityResult ( savedResult . requestCode , savedResult . resultCode , savedResult . intent ) ; } } |
37,294 | returns the standard info line for id . if none exists throw an exception concode_field_sep Map<String,T> standards concode_elem_sep boolean REPAIR_BAD_DESCRIPTIONS concode_elem_sep Standards<VCFFormatHeaderLine> formatStandards concode_elem_sep Standards<VCFInfoHeaderLine> infoStandards concode_field_sep void add conc... | VCFInfoHeaderLine function ( final String arg0 ) { return getInfoLine ( arg0 , true ) ; } |
37,295 | returns the array of fields in the database row . concode_field_sep RowAction rowAction concode_elem_sep Object[] rowData concode_elem_sep long position concode_elem_sep TableBase table concode_field_sep boolean isBlock concode_elem_sep boolean keepInMemory concode_elem_sep long getId concode_elem_sep int getDefaultCap... | Object [ ] function ( ) { return rowData ; } |
37,296 | doc zshen comment method `` setup '' . concode_field_sep PlaceHolder placeHolder concode_field_sep void testGetTablescase1 concode_elem_sep Connection mockConnection concode_elem_sep ResultSet mockResultSet concode_elem_sep PreparedStatement mockPreparedStatement concode_elem_sep void testGetTablesCase2 concode_elem_se... | void function ( ) { } |
37,297 | chaining result to next promise and returning current value as result promise concode_field_sep T result concode_elem_sep Exception exception concode_elem_sep boolean isFinished concode_elem_sep SimpleDispatcher dispatcher concode_elem_sep ArrayList<PromiseCallback<T>> callbacks concode_field_sep Promise<T> mapIfNull c... | Promise < T > function ( final Function < T , Promise < R >> arg0 ) { final Promise < T > loc0 = this ; return new Promise < > ( resolver -> { loc0 . then ( t -> { Promise < R > loc1 = arg0 . apply ( t ) ; loc1 . then ( t2 -> resolver . result ( t ) ) ; loc1 . failure ( e -> resolver . error ( e ) ) ; } ) ; loc0 . fail... |
37,298 | register an instance of the chunkhandler class to handle a specific chunk type . throws an exception if the type already has a handler registered . concode_field_sep int CLIENT_PROTOCOL_VERSION concode_elem_sep int CONNECTED concode_elem_sep boolean mRegistrationComplete concode_elem_sep boolean mRegistrationTimedOut c... | void function ( int arg0 , ChunkHandler arg1 ) { if ( arg1 == null ) throw new NullPointerException ( ) ; synchronized ( mHandlerMap ) { if ( mHandlerMap . get ( arg0 ) != null ) throw new RuntimeException ( "srini_string" + Integer . toHexString ( arg0 ) + "srini_string" ) ; mHandlerMap . put ( arg0 , arg1 ) ; } } |
37,299 | converts a byte array to an short . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] longToBytes concode_elem_sep long bytesToLong concode_elem_sep long bytesToLong concode_elem_sep byte[] doubleToBytes concode_elem_sep byte[] floatToBytes concode_elem_sep byte[] shortToBytes concode_elem_sep float by... | short function ( byte [ ] arg0 ) { return ( short ) ( ( ( arg0 [ 0 ] & 0xff ) << 8 ) | ( arg0 [ 1 ] & 0xff ) ) ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.