idx int64 0 25k | question stringlengths 68 5.61k | target stringlengths 21 500 |
|---|---|---|
17,700 | print at most the given number of elements of the stack trace of the given exception to the given stream . todo : include the stack frames of the cause s ? concode_field_sep PlaceHolder placeHolder concode_field_sep void cheat concode_elem_sep String getStackTrace concode_elem_sep String getStackTrace concode_elem_sep ... | void function ( Throwable arg0 , int arg1 , PrintStream arg2 ) { printStackTrace ( null , arg0 , arg1 , arg2 ) ; } |
17,701 | used by the eslmessagedecoder . concode_field_sep Integer contentLength concode_elem_sep List<String> body concode_elem_sep Logger log concode_elem_sep Map<Name,String> headers concode_field_sep void addBodyLine concode_elem_sep boolean hasHeader concode_elem_sep Map<Name,String> getHeaders concode_elem_sep String getC... | void function ( Name arg0 , String arg1 ) { log . debug ( "srini_string" , arg0 , arg1 ) ; headers . put ( arg0 , arg1 ) ; } |
17,702 | for debugging concode_field_sep int CHUNK_GROUP_5_AFTERIDAT concode_elem_sep int CHUNK_GROUP_4_IDAT concode_elem_sep int CHUNK_GROUP_3_AFTERPLTE concode_elem_sep int CHUNK_GROUP_0_IDHR concode_elem_sep int CHUNK_GROUP_6_END concode_elem_sep ImageInfo imageInfo concode_elem_sep int CHUNK_GROUP_2_PLTE concode_elem_sep Li... | String function ( ) { final StringBuilder loc0 = new StringBuilder ( toString ( ) ) ; loc0 . append ( "srini_string" ) ; for ( final PngChunk loc1 : chunks ) { loc0 . append ( loc1 ) . append ( "srini_string" + loc1 . getChunkGroup ( ) + "srini_string" ) ; } return loc0 . toString ( ) ; } |
17,703 | setting movement area size . viewport area will be used instead if no movement area is specified . concode_field_sep float MAX_ZOOM concode_elem_sep boolean isRotationEnabled concode_elem_sep Fit fitMethod concode_elem_sep int imageW concode_elem_sep float OVERZOOM_FACTOR concode_elem_sep int viewportH concode_elem_sep... | Settings function ( int arg0 , int arg1 ) { isMovementAreaSpecified = true ; movementAreaW = arg0 ; movementAreaH = arg1 ; return this ; } |
17,704 | this method is used whenever we want to manually set the location using a tag e.g. `` home '' . this comes in handy whenever no gps signal is available . concode_field_sep int GPS_STATE_WAITING concode_elem_sep Preferences preferences concode_elem_sep Logger log concode_elem_sep int GPS_STATE_DISABLED concode_elem_sep ... | void function ( String arg0 ) { if ( arg0 != null && ! arg0 . equals ( "srini_string" ) ) { if ( lastLocation != null ) lastLocation . setLocationTag ( arg0 ) ; else setLastLocation ( new NTLocation ( arg0 ) ) ; log . debug ( "srini_string" + lastLocation . toString ( ) ) ; } } |
17,705 | this is setter method for activitystarttimne concode_field_sep String subCategory concode_elem_sep String selectCause concode_elem_sep String repeateCAll concode_elem_sep String SLATime concode_elem_sep String caseType concode_elem_sep int resolveOnline concode_elem_sep int detpId concode_elem_sep String loggedBy conco... | void function ( String arg0 ) { this . activityStartTimne = arg0 ; } |
17,706 | gets the password . concode_field_sep String password concode_elem_sep String userName concode_field_sep void setPassword concode_elem_sep void setUserName concode_elem_sep String getUserName | String function ( ) { return password ; } |
17,707 | perform the search concode_field_sep String search concode_elem_sep String SEARCH_PARAM concode_elem_sep String realm concode_elem_sep String REALM_PARAM concode_elem_sep RWikiObjectService objectService concode_elem_sep String PAGE_PARAM concode_field_sep void setRWikiObjectService concode_elem_sep String getRealm con... | List function ( ) { return objectService . search ( search , realm ) ; } |
17,708 | obtains the internal jdo lifecycle state of the input statemanagerinternal . this method is helpful to display persistent objects internal state . concode_field_sep PlaceHolder placeHolder concode_field_sep JDOClass getJDOClass | Object function ( StateManagerInternal arg0 ) { try { Field loc0 = arg0 . getClass ( ) . getDeclaredField ( "srini_string" ) ; loc0 . setAccessible ( true ) ; return loc0 . get ( arg0 ) ; } catch ( NoSuchFieldException loc0 ) { return loc0 ; } catch ( IllegalAccessException loc0 ) { return loc0 ; } } |
17,709 | returns a quantizer which converts the input value to the nearest multiple of the compressionfactor , in the direction towards zero . examples compression factor 5 : input value 0 - > 0 input value 4 - > 0 input value 5 - > 5 input value 9 - > 5 input value -4 - > 0 input value -5 - > -5 input value -9 - > -5 concode_f... | Quantizer < BigInteger > function ( int arg0 ) { return new CompressingQuantizer ( arg0 ) ; } |
17,710 | implements this method from the interface with an empty body . concode_field_sep PlaceHolder placeHolder concode_field_sep void componentAdded | void function ( ContainerEvent arg0 ) { } |
17,711 | this hook method will be invoked when the dfs begins the visit of an element . since there is no return parameter this method will not effect the algorithms behaviour . concode_field_sep int linkCount concode_elem_sep Map myVisitedElements concode_elem_sep Iterator myElements concode_elem_sep boolean done concode_field... | void function ( Object arg0 , int arg1 ) { } |
17,712 | returns the current packed value . concode_field_sep byte[] intBuf concode_elem_sep int MAX_INT_BYTES concode_elem_sep PackFormatInputStream format concode_elem_sep ByteArrayOutputStream packed concode_field_sep void packLong concode_elem_sep void addShort concode_elem_sep void reset concode_elem_sep String getFormat c... | byte [ ] function ( ) { return packed . toByteArray ( ) ; } |
17,713 | method to get the count of the participants concode_field_sep MessageLog messageLog concode_elem_sep String password concode_elem_sep boolean autoPlay concode_elem_sep String prefix concode_elem_sep Participant moderator concode_elem_sep String name concode_elem_sep List participants concode_field_sep void setName conc... | int function ( ) { return participants . size ( ) ; } |
17,714 | set variable concode_field_sep String m_variable concode_elem_sep Object m_description concode_elem_sep Object m_result concode_elem_sep String VARIABLE concode_elem_sep String DESCRIPTION_VARIABLE concode_elem_sep String m_script concode_elem_sep HashMap<String,Object> m_ctx concode_elem_sep int m_windowNo concode_ele... | void function ( String arg0 ) { if ( arg0 == null || arg0 . length ( ) == 0 ) m_variable = VARIABLE ; else m_variable = arg0 ; } |
17,715 | invoke to tell listeners that a test suite is about to start . runners are strongly encouraged -- but not required -- to call this method . if this method is called for a given description then #firetestsuitefinished description mustbe called for the same description . concode_field_sep boolean pleaseStop concode_elem_... | void function ( final Description arg0 ) { new SafeNotifier ( ) { @ Override protected void notifyListener ( RunListener arg1 ) throws Exception { arg1 . testSuiteStarted ( arg0 ) ; } } . run ( ) ; } |
17,716 | sets the spring bean id for this bean . concode_field_sep RouteLocationService _routeLocationService concode_field_sep java.lang.String getBeanIdentifier concode_elem_sep es.eina.tfg.model.RouteLocation add concode_elem_sep RouteLocationService getWrappedRouteLocationService concode_elem_sep void setWrappedService conc... | void function ( java . lang . String arg0 ) { _routeLocationService . setBeanIdentifier ( arg0 ) ; } |
17,717 | template method for resolving argument objects . the default implementation simply returns the given argument array as-is . can be overridden in subclasses in order to resolve special argument types . concode_field_sep MessageFormat INVALID_MESSAGE_FORMAT concode_elem_sep Log logger concode_elem_sep boolean alwaysUseMe... | Object [ ] function ( Object [ ] arg0 , Locale arg1 ) { return arg0 ; } |
17,718 | access a default instance of this class , access is synchronized concode_field_sep MersenneTwisterFast random concode_field_sep float nextFloat concode_elem_sep byte nextByte concode_elem_sep double nextGamma concode_elem_sep void nextBytes concode_elem_sep double uniform concode_elem_sep int randomChoiceLogPDF concode... | void function ( long arg0 ) { synchronized ( random ) { random . setSeed ( arg0 ) ; } } |
17,719 | returns whether or not the specified data flavor is supported for this object . concode_field_sep DataFlavor[] dataFlavors concode_elem_sep IKnowledge knowledge concode_field_sep Object getTransferData concode_elem_sep DataFlavor[] getTransferDataFlavors | boolean function ( DataFlavor arg0 ) { return arg0 . equals ( getTransferDataFlavors ( ) [ 0 ] ) ; } |
17,720 | sets bit i. concode_field_sep int size concode_elem_sep int[] bits concode_field_sep void toBytes concode_elem_sep void clear concode_elem_sep void reverse concode_elem_sep boolean isRange concode_elem_sep int getSize concode_elem_sep void appendBit concode_elem_sep int getSizeInBytes concode_elem_sep void appendBits c... | void function ( int arg0 ) { bits [ arg0 >> 5 ] |= 1 << ( arg0 & 0x1F ) ; } |
17,721 | returns the corresponding configdescriptionparameter s . the returned list is immutable . concode_field_sep List<ConfigDescriptionParameterGroup> parameterGroups concode_elem_sep URI uri concode_elem_sep List<ConfigDescriptionParameter> parameters concode_field_sep Map<String,ConfigDescriptionParameter> toParametersMap... | List < ConfigDescriptionParameter > function ( ) { return this . parameters ; } |
17,722 | called whenever the osgi framework stops our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void start concode_elem_sep BundleContext getContext | void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; } |
17,723 | gets the my . concode_field_sep double mx concode_elem_sep double my concode_field_sep double getMx | double function ( ) { return my ; } |
17,724 | stops the cache and network dispatchers . concode_field_sep Map<String,Queue<Request<?>>> mWaitingRequests concode_elem_sep Set<Request<?>> mCurrentRequests concode_elem_sep PriorityBlockingQueue<Request<?>> mCacheQueue concode_elem_sep CacheDispatcher mCacheDispatcher concode_elem_sep ResponseDelivery mDelivery concod... | void function ( ) { if ( mCacheDispatcher != null ) { mCacheDispatcher . quit ( ) ; } for ( int loc0 = 0 ; loc0 < mDispatchers . length ; loc0 ++ ) { if ( mDispatchers [ loc0 ] != null ) { mDispatchers [ loc0 ] . quit ( ) ; } } } |
17,725 | create an implementation of the application . concode_field_sep String DEFAULT_ANNOTATION_PARAMETER concode_elem_sep String COMMON_PROVIDERS_FIELD concode_elem_sep GeneratorConfig config concode_field_sep MethodSpec generateGetClassesMethod concode_elem_sep ClassName classNameTypeOf concode_elem_sep TypeSpec.Builder cl... | TypeSpec function ( final Collection < String > arg0 , final Raml arg1 ) { return classSpecFrom ( arg1 ) . addMethod ( generateGetClassesMethod ( arg0 ) ) . build ( ) ; } |
17,726 | returns the number of tool tips in a given list . concode_field_sep long serialVersionUID concode_elem_sep List toolTipSeries concode_field_sep int getListCount concode_elem_sep void addToolTipSeries concode_elem_sep boolean equals concode_elem_sep Object clone concode_elem_sep String generateToolTip concode_elem_sep S... | int function ( int arg0 ) { int loc0 = 0 ; List loc1 = ( List ) this . toolTipSeries . get ( arg0 ) ; if ( loc1 != null ) { loc0 = loc1 . size ( ) ; } return loc0 ; } |
17,727 | set the value concode_field_sep Object value concode_field_sep JDDNode getBDDFromCloseValueRel concode_elem_sep JDDNode getBDDFromInterval concode_elem_sep JDDNode getBDDFromInterval concode_elem_sep JDDNode getBDDFromInterval concode_elem_sep double maxOverBDD concode_elem_sep int getNNZ concode_elem_sep double dotPro... | void function ( Object arg0 ) { this . value = arg0 ; } |
17,728 | returns ntp message packet . concode_field_sep boolean _detailsComputed concode_elem_sep NtpV3Packet _message concode_elem_sep Long _offset concode_elem_sep Long _delay concode_elem_sep List<String> _comments concode_elem_sep long _returnTime concode_field_sep Long getDelay concode_elem_sep Long getOffset concode_elem_... | NtpV3Packet function ( ) { return _message ; } |
17,729 | returns if the ichunkprovider supports saving . concode_field_sep Set chunksToUnload concode_elem_sep Chunk defaultEmptyChunk concode_elem_sep IChunkProvider currentChunkProvider concode_elem_sep Logger logger concode_elem_sep IChunkLoader currentChunkLoader concode_elem_sep LongHashMap loadedChunkHashMap concode_elem_... | boolean function ( ) { return ! this . worldObj . levelSaving ; } |
17,730 | updates the predicted state from the measurement . concode_field_sep long nativeObj concode_field_sep long KalmanFilter_2 concode_elem_sep long KalmanFilter_1 concode_elem_sep long KalmanFilter_0 concode_elem_sep Mat predict concode_elem_sep Mat predict concode_elem_sep void finalize concode_elem_sep long predict_0 con... | Mat function ( Mat arg0 ) { Mat loc0 = new Mat ( correct_0 ( nativeObj , arg0 . nativeObj ) ) ; return loc0 ; } |
17,731 | create a new updateoperation concode_field_sep String mItemId concode_elem_sep String mTableName concode_elem_sep MobileServiceTableOperationState operationState concode_elem_sep String mId concode_elem_sep Date mCreatedAt concode_field_sep String getItemId concode_elem_sep Date getCreatedAt concode_elem_sep MobileServ... | UpdateOperation function ( String arg0 , String arg1 , String arg2 , Date arg3 ) { UpdateOperation loc0 = new UpdateOperation ( arg1 , arg2 ) ; loc0 . mId = arg0 ; loc0 . mCreatedAt = arg3 ; return loc0 ; } |
17,732 | make an empty regex . concode_field_sep PlaceHolder placeHolder concode_field_sep void testMakeDigitRangeRegex concode_elem_sep void testMakeDigitCountRegex concode_elem_sep void testAddingMultipleStrings concode_elem_sep void testEmptyRegex concode_elem_sep void testMakeDigitRegex concode_elem_sep void testConstructio... | void function ( ) { final String loc0 = "srini_string" ; final String loc1 = RegexBuilder . make ( ) . addString ( loc0 ) . build ( ) ; assertThat ( loc1 , equalTo ( loc0 ) ) ; } |
17,733 | copy the name-value pairs from the provided map . this operation will overwrite any existing values . use #copyheadersifabsent map to avoid overwritingvalues . note that the ` id ' and ` timestamp ' header values will never be overwritten . concode_field_sep T payload concode_elem_sep MessageHeaderAccessor headerAccess... | MessageBuilder < T > function ( Map < String , ? > arg0 ) { this . headerAccessor . copyHeaders ( arg0 ) ; return this ; } |
17,734 | info log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void setL... | void function ( String arg0 , String arg1 ) { if ( LOG . INFO >= LOGLEVEL ) Log . i ( arg0 , arg1 ) ; } |
17,735 | marks the operation as deprecated since the given api version . this is equivalent to calling #setdeprecated modelversion , boolean with the notificationuseful parameterset to true . concode_field_sep ResourceDescriptionResolver resolver concode_elem_sep ModelType replyType concode_elem_sep OperationEntry.EntryType ent... | SimpleOperationDefinitionBuilder function ( ModelVersion arg0 ) { return setDeprecated ( arg0 , true ) ; } |
17,736 | compute the straight-line distance to a point described by the vector taken from the origin . monotonically increasing for arc distances up to pi . concode_field_sep double MINIMUM_RESOLUTION concode_elem_sep double MINIMUM_RESOLUTION_SQUARED concode_elem_sep double x concode_elem_sep double y concode_elem_sep double z... | double function ( final double arg0 , final double arg1 , final double arg2 ) { return Math . sqrt ( linearDistanceSquared ( arg0 , arg1 , arg2 ) ) ; } |
17,737 | removes from the underlying collection the last element returned by the iterator optional operation . this method can be called only once per call to next . the behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method... | void function ( ) { this . backend . remove ( ) ; } |
17,738 | updates the kaleo notification in the database or adds it if it does not yet exist . also notifies the appropriate model listeners . concode_field_sep ServiceTracker<KaleoNotificationLocalService,KaleoNotificationLocalService> _serviceTracker concode_field_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery ge... | com . liferay . portal . workflow . kaleo . model . KaleoNotification function ( com . liferay . portal . workflow . kaleo . model . KaleoNotification arg0 ) { return getService ( ) . updateKaleoNotification ( arg0 ) ; } |
17,739 | adds a view interceptor to the given method concode_field_sep Map<Class<?>,Object> privateData concode_elem_sep ViewInstanceFactory viewInstanceFactory concode_elem_sep Set<Method> asyncMethods concode_elem_sep ServiceName viewServiceName concode_elem_sep OrderedItemContainer<InterceptorFactory> clientPreDestroyInterce... | void function ( Method arg0 , InterceptorFactory arg1 , int arg2 ) { OrderedItemContainer < InterceptorFactory > loc0 = viewInterceptors . get ( arg0 ) ; if ( loc0 == null ) { viewInterceptors . put ( arg0 , loc0 = new OrderedItemContainer < InterceptorFactory > ( ) ) ; } loc0 . add ( arg1 , arg2 ) ; } |
17,740 | return an inputstream allowing access to the resource at the specified context-relative path . concode_field_sep PrintWriter myLogWriter concode_elem_sep ConcurrentHashMap<String,String> myParameters concode_elem_sep Hashtable myAttributes concode_elem_sep URL myResourceBaseURL concode_field_sep Enumeration getServletN... | InputStream function ( String arg0 ) { try { return ( getResource ( arg0 ) . openStream ( ) ) ; } catch ( Throwable loc0 ) { return ( null ) ; } } |
17,741 | get the descriptive test of this saslfailure . returns the descriptive text of this saslfailure in the given language . may return null if not available . concode_field_sep List<ExtensionElement> extensions concode_elem_sep Map<String,String> descriptiveTexts concode_elem_sep String textNamespace concode_field_sep B ge... | String function ( String arg0 ) { return descriptiveTexts . get ( arg0 ) ; } |
17,742 | checks that this class implements publiccloneable . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testSerialization concode_elem_sep void testHashCode concode_elem_sep void testEquals | void function ( ) { XYShapeAnnotation loc0 = new XYShapeAnnotation ( new Rectangle2D . Double ( 1.0 , 2.0 , 3.0 , 4.0 ) , new BasicStroke ( 1.2f ) , Color . red , Color . blue ) ; assertTrue ( loc0 instanceof PublicCloneable ) ; } |
17,743 | extract parent all exept last part from unique name concode_field_sep PlaceHolder placeHolder concode_field_sep String createUName concode_elem_sep String dimFromUName concode_elem_sep String bracketsAround concode_elem_sep String[] splitUniqueName | String function ( String arg0 ) { String [ ] loc0 = splitUniqueName ( arg0 ) ; int loc1 = loc0 . length ; if ( loc1 < 3 ) { return null ; } return createUName ( loc0 , loc1 - 1 ) ; } |
17,744 | save the byte array into a file with the give filename concode_field_sep BufferedReader br concode_elem_sep LogManager lm concode_elem_sep BufferedWriter bw concode_field_sep byte[] readBytesFromStream concode_elem_sep String readUserInput concode_elem_sep void saveFromURL concode_elem_sep byte[] readBytesFromFile | boolean function ( byte [ ] arg0 , String arg1 ) { try { FileOutputStream loc0 = new FileOutputStream ( arg1 ) ; loc0 . write ( arg0 , 0 , arg0 . length ) ; loc0 . flush ( ) ; loc0 . close ( ) ; return true ; } catch ( IOException loc0 ) { } return false ; } |
17,745 | small icon resource id for the local notification . concode_field_sep long interval concode_elem_sep JSONObject options concode_elem_sep AssetUtil assets concode_elem_sep String EXTRA concode_elem_sep Context context concode_field_sep Boolean isAutoClear concode_elem_sep String getText concode_elem_sep long getRepeatIn... | int function ( ) { String loc0 = options . optString ( "srini_string" , "srini_string" ) ; int loc1 = assets . getResIdForDrawable ( loc0 ) ; if ( loc1 == 0 ) { loc1 = android . R . drawable . screen_background_dark ; } return loc1 ; } |
17,746 | get error message as html concode_field_sep Date date concode_elem_sep int itemsImported concode_elem_sep int totalItems concode_elem_sep List<String> handlesImported concode_elem_sep String errorMsgHTML concode_elem_sep File dir concode_elem_sep String errorMsg concode_elem_sep boolean successful concode_field_sep voi... | String function ( ) { return errorMsgHTML ; } |
17,747 | draws a grid line to the right the give column concode_field_sep PlaceHolder placeHolder concode_field_sep void handleRowOrColumnGridFormat concode_elem_sep void drawPartialBorder concode_elem_sep void drawRowBorder concode_elem_sep void drawFormatBorders | void function ( Graphics2D arg0 , MyTableD arg1 , int arg2 ) { Rectangle loc0 = arg1 . getCellRect ( 0 , arg2 , true ) ; int loc1 = loc0 . x - 1 ; int loc2 = loc0 . y - 1 ; Rectangle loc3 = arg1 . getCellRect ( arg1 . getRowCount ( ) , arg2 , true ) ; int loc4 = loc3 . x - 1 ; int loc5 = loc3 . y - 1 ; arg0 . drawLine ... |
17,748 | returns true if this perspective is predefined by an extension . concode_field_sep ImageDescriptor image concode_elem_sep String pluginId concode_elem_sep IConfigurationElement configElement concode_elem_sep boolean hasCustomDefinition concode_elem_sep String id concode_elem_sep String label concode_elem_sep String ori... | boolean function ( ) { return configElement != null ; } |
17,749 | performs a dynamic query on the database and returns an ordered range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end... | java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 , com . liferay . portal . kernel . util . OrderByComparator < T > arg3 ) { return getService ( ) . arg0 ( arg0 , arg1 , arg2 , arg3 ) ; } |
17,750 | internal source representation , might be compressed ... concode_field_sep int docId concode_elem_sep LeafReader reader concode_elem_sep BytesReference sourceAsBytes concode_elem_sep Map<String,Object> source concode_elem_sep XContentType sourceContentType concode_field_sep void setSource concode_elem_sep void setSourc... | BytesReference function ( ) { return sourceAsBytes ; } |
17,751 | this implementation is empty . concode_field_sep PlaceHolder placeHolder concode_field_sep Object handleTimeout concode_elem_sep void afterCompletion concode_elem_sep void preProcess concode_elem_sep void postProcess | void function ( NativeWebRequest arg0 , Callable < T > arg1 ) { } |
17,752 | remove the key store entry at the given alias . if the alias does not exist , log that it does not exist . concode_field_sep char[] password concode_elem_sep File file concode_elem_sep Logger LOGGER concode_elem_sep KeyStore keyStore concode_field_sep KeyStoreFile openFile concode_elem_sep List<String> aliases concode_... | boolean function ( String arg0 ) { try { keyStore . deleteEntry ( arg0 ) ; } catch ( KeyStoreException loc0 ) { LOGGER . info ( "srini_string" , arg0 ) ; } return isKey ( arg0 ) ; } |
17,753 | resets scene to default settings . removes and clears any attached object3ds . resets light list . concode_field_sep FogType _fogType concode_elem_sep ISceneController _sceneController concode_elem_sep float _fogFar concode_elem_sep float _fogNear concode_elem_sep ArrayList<Object3d> _children concode_elem_sep boolean ... | void function ( ) { clearChildren ( this ) ; _children = new ArrayList < Object3d > ( ) ; _camera = new CameraVo ( ) ; _backgroundColor = new Color4Managed ( 0 , 0 , 0 , 255 , this ) ; _lights = new ManagedLightList ( ) ; lightingEnabled ( true ) ; } |
17,754 | sets the value of the dchg property . concode_field_sep String dchg concode_elem_sep String bType concode_elem_sep String qchg concode_elem_sep String sAddr concode_elem_sep String name concode_elem_sep String type concode_elem_sep String fc concode_elem_sep List<Serializable> content concode_field_sep void setName con... | void function ( String arg0 ) { this . dchg = arg0 ; } |
17,755 | called when the activity receives a new intent . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode_elem_sep boolean onOverrideUrlLoading conc... | void function ( Intent arg0 ) { } |
17,756 | send a lostcommitted request . concode_field_sep ParticipantStub PARTICIPANT_STUB concode_field_sep void rollback concode_elem_sep void replayCommit concode_elem_sep void volatileAndDurable concode_elem_sep void preparedAfterTimeout concode_elem_sep void commit concode_elem_sep ParticipantStub getParticipantStub concod... | void function ( final String arg0 , final CoordinationContextType arg1 ) { final String loc0 = MessageId . getMessageId ( ) ; final MAP loc1 = AddressingHelper . createRequestContext ( arg0 , loc0 ) ; SyncParticipantClient . getClient ( ) . sendLostCommitted ( arg1 , loc1 ) ; } |
17,757 | returns true iff the ref ends with the given suffix . otherwise false . concode_field_sep BigInteger nextId concode_elem_sep int ID_LENGTH concode_elem_sep Object idLock concode_elem_sep BigInteger mask128 concode_elem_sep int GOOD_FAST_HASH_SEED concode_field_sep boolean sliceEquals concode_elem_sep byte[] randomId co... | boolean function ( BytesRef arg0 , BytesRef arg1 ) { return sliceEquals ( arg0 , arg1 , arg0 . length - arg1 . length ) ; } |
17,758 | sets the user id of this folder . concode_field_sep Folder _folder concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep int compa... | void function ( long arg0 ) { _folder . setUserId ( arg0 ) ; } |
17,759 | sets the value of the rel property . concode_field_sep String rev concode_elem_sep String rel concode_elem_sep List<Doc> doc concode_elem_sep Map<QName,String> otherAttributes concode_elem_sep List<Object> any concode_elem_sep String resourceType concode_field_sep void setRev concode_elem_sep String getRev concode_elem... | void function ( String arg0 ) { this . rel = arg0 ; } |
17,760 | returns the osgi service identifier . concode_field_sep SocialRequestService _service concode_field_sep com.liferay.social.kernel.model.SocialRequest updateRequest concode_elem_sep SocialRequestService getService | java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; } |
17,761 | the amazon resource name arn of the deleted virtual tape . concode_field_sep String tapeARN concode_field_sep DeleteTapeResult withTapeARN concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DeleteTapeResult clone concode_elem_sep String getTapeARN concode_elem_sep String toString | void function ( String arg0 ) { this . tapeARN = arg0 ; } |
17,762 | tests a permission that has not been granted or revoked . concode_field_sep Permissions perms concode_field_sep void testDefaultRevoked concode_elem_sep void testGranted concode_elem_sep void testGrantedAndRevoked concode_elem_sep void setUp concode_elem_sep void testDefaultGranted concode_elem_sep void testExit | void function ( ) { String loc1 = System . getProperty ( "srini_string" ) ; perms . setSecurityManager ( ) ; try { System . setProperty ( "srini_string" , loc1 ) ; fail ( "srini_string" ) ; } catch ( SecurityException loc0 ) { } finally { perms . restoreSecurityManager ( ) ; } } |
17,763 | parses a new xml schema document . concode_field_sep EntityResolver entityResolver concode_elem_sep ErrorHandler userErrorHandler concode_elem_sep ParserContext context concode_elem_sep AnnotationParserFactory apFactory concode_field_sep void setEntityResolver concode_elem_sep ErrorHandler getErrorHandler concode_elem_... | void function ( URL arg0 ) { parse ( arg0 . toExternalForm ( ) ) ; } |
17,764 | sets the selected protein cluster classes represented by their tostring method . concode_field_sep KMeansClusteringSettings kMeansClusteringSettings concode_elem_sep HashMap<String,PsmClusterClassKey> possiblePsmClassesKeys concode_elem_sep HashMap<String,ProteinClusterClassKey> possibleProteinClassesKeys concode_elem_... | void function ( ArrayList < String > arg0 ) { this . selectedProteinClasses = arg0 ; } |
17,765 | indicates whether or not the specified modifiers contain the strict modifier . concode_field_sep int FINAL concode_elem_sep int BRIDGE concode_elem_sep int PUBLIC concode_elem_sep int STRICT concode_elem_sep int PRIVATE concode_elem_sep int INTERFACE concode_elem_sep int VARARGS concode_elem_sep int TRANSIENT concode_e... | boolean function ( int arg0 ) { return ( ( arg0 & STRICT ) != 0 ) ; } |
17,766 | retrieves the queue names from the activemq broker . concode_field_sep ConfigurationService configurationService concode_elem_sep String jmxCurrentHost concode_elem_sep String mBeanName concode_elem_sep Object CONNECTION_MONITOR concode_elem_sep Logger LOGGER concode_elem_sep MBeanServerConnection connection concode_el... | ObjectName [ ] function ( ) { BrokerViewMBean loc0 = getBrokerViewMBean ( ) ; return loc0 . getQueues ( ) ; } |
17,767 | get id concode_field_sep String name concode_elem_sep List<String> photoUrls concode_elem_sep List<Tag> tags concode_elem_sep Category category concode_elem_sep Long id concode_elem_sep String value concode_elem_sep StatusEnum status concode_field_sep void setName concode_elem_sep Pet addTagsItem concode_elem_sep Strin... | Long function ( ) { return id ; } |
17,768 | gets the value of the pctheight property . concode_field_sep STSizeRelFromV relativeFrom concode_elem_sep int pctHeight concode_field_sep void setPctHeight concode_elem_sep void setRelativeFrom concode_elem_sep STSizeRelFromV getRelativeFrom | int function ( ) { return pctHeight ; } |
17,769 | called when a change in the shown pages is going to start being made . concode_field_sep int POSITION_NONE concode_elem_sep DataSetObserver mViewPagerObserver concode_elem_sep int POSITION_UNCHANGED concode_elem_sep DataSetObservable mObservable concode_field_sep void restoreState concode_elem_sep Parcelable saveState ... | void function ( ViewGroup arg0 ) { startUpdate ( ( View ) arg0 ) ; } |
17,770 | optional hook to supply additional attributes for any category including urn : oasis : names : tc : xacml :3.0 : attribute-category : environment concode_field_sep Log log concode_field_sep String findAction concode_elem_sep String getUserName concode_elem_sep String findServiceName concode_elem_sep String findOperatio... | Attribute [ ] function ( MessageContext arg0 ) { return null ; } |
17,771 | computes the associated legendre function of the first kind pl , m x with a recursion formula , where l-1 = m uses recursion formula : pn,n-1 x = 2n-1 x pn-1 , n-1 x concode_field_sep PlaceHolder placeHolder concode_field_sep PolynomialFunction legendrePolynomialF concode_elem_sep double legendrePolynomial concode_elem... | double function ( int arg0 , double arg1 , double arg2 ) { return ( 2 * arg0 - 1 ) * arg1 * arg2 ; } |
17,772 | gets the value of the injectiontargetclass property . concode_field_sep JavaIdentifierType injectionTargetName concode_elem_sep FullyQualifiedClassType injectionTargetClass concode_field_sep void setInjectionTargetName concode_elem_sep JavaIdentifierType getInjectionTargetName concode_elem_sep void setInjectionTargetCl... | FullyQualifiedClassType function ( ) { return injectionTargetClass ; } |
17,773 | serialize the thrift object into a java string , using the default jvm charset encoding . concode_field_sep TProtocol protocol_ concode_elem_sep TIOStreamTransport transport_ concode_elem_sep ByteArrayOutputStream baos_ concode_field_sep byte[] serialize | String function ( TBase arg0 ) { return new String ( serialize ( arg0 ) ) ; } |
17,774 | return the entire text of this document concode_field_sep String text concode_field_sep int getNumSyllables concode_elem_sep int countSyllables concode_elem_sep List<String> getTokens concode_elem_sep int getNumWords concode_elem_sep double getFleschScore concode_elem_sep int getNumSentences concode_elem_sep boolean te... | String function ( ) { return this . text ; } |
17,775 | creates a child selector . concode_field_sep PlaceHolder placeHolder concode_field_sep CharacterDataSelector createTextNodeSelector concode_elem_sep SimpleSelector createRootNodeSelector concode_elem_sep SimpleSelector createAnyNodeSelector concode_elem_sep NegativeSelector createNegativeSelector concode_elem_sep Chara... | DescendantSelector function ( final Selector arg0 , final SimpleSelector arg1 ) { return new CSSDescendantSelector ( arg1 , arg0 , true ) ; } |
17,776 | compare two position objects . concode_field_sep int x concode_elem_sep int y concode_elem_sep long serialVersionUID concode_field_sep int getX concode_elem_sep int getY concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep void m... | int function ( final Position arg0 ) { if ( arg0 . y == y ) { return x - arg0 . x ; } else { return y - arg0 . y ; } } |
17,777 | returns a list of githubrepository with the current list of repositories linked . concode_field_sep PageElement urlTextbox concode_elem_sep PageBinder pageBinder concode_elem_sep PageElement projectsTable concode_elem_sep PageElement addRepositoryButton concode_elem_sep SelectElement visibilitySelect concode_elem_sep S... | List < GitHubRepository > function ( ) { List < GitHubRepository > loc0 = new ArrayList < GitHubRepository > ( ) ; for ( PageElement loc1 : projectsTable . findAll ( By . tagName ( "srini_string" ) ) ) { if ( loc1 . getText ( ) . contains ( "srini_string" ) ) { loc0 . add ( pageBinder . bind ( GitHubRepository . class ... |
17,778 | force uri to connect to a given string e.g. `` localhost :4443 '' this is used to simulate a host that only resolves on the proxy concode_field_sep String lastUri concode_elem_sep String forceUri concode_elem_sep String username concode_field_sep MultiMap getLastRequestHeaders concode_elem_sep int getPort concode_elem_... | void function ( String arg0 ) { forceUri = arg0 ; } |
17,779 | create and initialize an anonymous read/write registry operations instance . in a secure cluster , this instance will only have read access to the registry . concode_field_sep PlaceHolder placeHolder concode_field_sep RegistryOperations createInstance concode_elem_sep RegistryOperations createInstance concode_elem_sep ... | RegistryOperations function ( Configuration arg0 ) { Preconditions . checkArgument ( arg0 != null , "srini_string" ) ; arg0 . set ( KEY_REGISTRY_CLIENT_AUTH , REGISTRY_CLIENT_AUTH_ANONYMOUS ) ; return createInstance ( "srini_string" , arg0 ) ; } |
17,780 | performs the graph traversion with a single root element . so this root element and all elements which are reachable from this root elements will be visited . concode_field_sep int linkCount concode_elem_sep Map myVisitedElements concode_elem_sep Iterator myElements concode_elem_sep boolean done concode_field_sep boole... | void function ( Object arg0 ) { List loc0 = new ArrayList ( ) ; loc0 . add ( arg0 ) ; this . perform ( loc0 . iterator ( ) ) ; } |
17,781 | get the hash , as a string . concode_field_sep ConfigurationService config concode_elem_sep byte[] salt concode_elem_sep String DEFAULT_DIGEST_ALGORITHM concode_elem_sep int SALT_BYTES concode_elem_sep Charset UTF_8 concode_elem_sep int HASH_ROUNDS concode_elem_sep Logger log concode_elem_sep int RESEED_INTERVAL concod... | String function ( ) { if ( null != hash ) return new String ( Hex . encodeHex ( hash ) ) ; else return null ; } |
17,782 | the name of the thing . concode_field_sep String thingArn concode_elem_sep String thingName concode_field_sep String getThingArn concode_elem_sep void setThingName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep CreateThingResult clone concode_elem_sep String toString concode_elem_sep voi... | String function ( ) { return this . thingName ; } |
17,783 | sets the value of the exposecontainer property . concode_field_sep String exposeContainer concode_elem_sep ListEntity listEntity concode_elem_sep Bean bean concode_elem_sep Home home concode_field_sep Home getHome concode_elem_sep void setHome concode_elem_sep void setBean concode_elem_sep String getExposeContainer con... | void function ( final String arg0 ) { this . exposeContainer = arg0 ; } |
17,784 | number of concurrent connections between two nodes for fetching data . concode_field_sep String SPARK_NETWORK_IO_NUMCONNECTIONSPERPEER_KEY concode_elem_sep String SPARK_NETWORK_IO_LAZYFD_KEY concode_elem_sep String SPARK_NETWORK_IO_SERVERTHREADS_KEY concode_elem_sep String module concode_elem_sep String SPARK_NETWORK_I... | int function ( ) { return conf . getInt ( SPARK_NETWORK_IO_NUMCONNECTIONSPERPEER_KEY , 1 ) ; } |
17,785 | applies additional scaling to the polygon by the supplied amount . concode_field_sep float scaleY concode_elem_sep float scaleX concode_elem_sep float originX concode_elem_sep float originY concode_elem_sep float rotation concode_elem_sep float x concode_elem_sep Rectangle bounds concode_elem_sep float y concode_elem_s... | void function ( float arg0 ) { this . scaleX += arg0 ; this . scaleY += arg0 ; dirty = true ; } |
17,786 | asserts that the given object is not null . if this is not the case , some kind of unchecked exception is thrown . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isTrue concode_elem_sep boolean isTrue concode_elem_sep boolean isLegal concode_elem_sep boolean isLegal | void function ( Object arg0 ) { isNotNull ( arg0 , "srini_string" ) ; } |
17,787 | the stemming options configured for this search domain and the current status of those options . concode_field_sep StemmingOptionsStatus stems concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep UpdateStemmingOptionsResult withStems concode_elem_sep String toString concode_elem_sep StemmingO... | void function ( StemmingOptionsStatus arg0 ) { this . stems = arg0 ; } |
17,788 | adds a prefix operator parser . evaluates the optional action with the parsed operator and value . concode_field_sep List<Parser> primitives concode_elem_sep List<Parser> right concode_elem_sep Function<Object,Object> action concode_elem_sep List<Parser> prefix concode_elem_sep List<Parser> left concode_elem_sep List<P... | ExpressionGroup function ( Parser arg0 , Function < T , R > arg1 ) { addTo ( prefix , arg0 , arg1 ) ; return this ; } |
17,789 | offset a point by a 2-dimensional vector vec2 , returning modified point . concode_field_sep int mnX concode_elem_sep int mnY concode_field_sep int getX concode_elem_sep int getY concode_elem_sep Point offset concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Point setXY concode_elem_sep Poi... | Point function ( Vec2 arg0 ) { this . mnX += arg0 . getX ( ) ; this . mnY += arg0 . getY ( ) ; return this ; } |
17,790 | returns whether the point is in the frustum . concode_field_sep Vector3[] clipSpacePlanePoints concode_elem_sep Plane[] planes concode_elem_sep float[] clipSpacePlanePointsArray concode_elem_sep float[] planePointsArray concode_elem_sep Vector3[] planePoints concode_field_sep boolean sphereInFrustum concode_elem_sep bo... | boolean function ( Vector3 arg0 ) { for ( int loc0 = 0 ; loc0 < planes . length ; loc0 ++ ) { PlaneSide loc1 = planes [ loc0 ] . testPoint ( arg0 ) ; if ( loc1 == PlaneSide . Back ) return false ; } return true ; } |
17,791 | remove a tab from paneltabset . concode_field_sep String msg concode_elem_sep MsgString next concode_elem_sep int tabIndex concode_elem_sep int tabLabelIndex concode_elem_sep String newTabContent concode_elem_sep boolean isKey concode_elem_sep int index concode_elem_sep List tabs concode_elem_sep String newTabLabel con... | void function ( ActionEvent arg0 ) { if ( tabs != null && tabs . size ( ) > tabIndex ) { tabs . remove ( tabIndex ) ; if ( tabIndex > 0 ) { tabIndex -- ; } } } |
17,792 | returns whether the compilation unit contained any annotations when it was compiled . note : this is only valid during compilationparticipant #processannotations buildcontext . concode_field_sep PlaceHolder placeHolder concode_field_sep void recordDependencies concode_elem_sep void recordNewProblems concode_elem_sep vo... | boolean function ( ) { return false ; } |
17,793 | sets the nas port . concode_field_sep RadiusProtocol protocol concode_elem_sep int retries concode_elem_sep long nasPortType concode_elem_sep RadiusClientFactory radiusClientFactory concode_elem_sep int DEFAULT_RETRY_COUNT concode_elem_sep long nasPort concode_elem_sep long nasRealPort concode_elem_sep long nasPortId c... | void function ( final long arg0 ) { this . nasPort = arg0 ; } |
17,794 | invalidate the underlying document page models . concode_field_sep ArrayList<WeakReference<AbstractPageViewComponent>> selectedPageText concode_elem_sep float oldUserZoom concode_elem_sep float userZoom concode_elem_sep int MAX_PAGE_SIZE_READ_AHEAD concode_elem_sep UndoCaretaker undoCaretaker concode_elem_sep int oldPa... | void function ( ) { for ( AbstractPageViewComponent loc0 : pageComponents ) { loc0 . invalidatePage ( ) ; } } |
17,795 | get the integer value of a state concode_field_sep String statename concode_elem_sep int value concode_field_sep void init concode_elem_sep String getName concode_elem_sep boolean waitForServiceToStop concode_elem_sep void unregisterServiceListener concode_elem_sep void start concode_elem_sep void registerServiceListen... | int function ( ) { return value ; } |
17,796 | sets the value of the version property . concode_field_sep String repoId concode_elem_sep String extension concode_elem_sep String artifactLink concode_elem_sep String groupId concode_elem_sep String classifier concode_elem_sep String artifactId concode_elem_sep String packaging concode_elem_sep String contextId concod... | void function ( String arg0 ) { this . version = arg0 ; } |
17,797 | returns the date of the beginning of winter . concode_field_sep Calendar spring concode_elem_sep SeasonName name concode_elem_sep Calendar winter concode_elem_sep Calendar autumn concode_elem_sep Calendar summer concode_field_sep void setName concode_elem_sep void setAutumn concode_elem_sep Calendar getNextSeason conco... | Calendar function ( ) { return winter ; } |
17,798 | gets a web-server specific wrapper for the servlet response output stream . concode_field_sep String SERVLET_CONTEXT_KEY concode_elem_sep ServletContext context concode_field_sep Object suspend concode_elem_sep void init concode_elem_sep boolean access concode_elem_sep ServletContext getServletContext concode_elem_sep ... | OutputStream function ( OutputStream arg0 ) { return arg0 ; } |
17,799 | sets the replacement string , to be aplyied when matching the code concode_field_sep String tagName concode_elem_sep String regex concode_elem_sep String replace concode_elem_sep boolean alwaysProcess concode_field_sep String getRegex concode_elem_sep void setRegex concode_elem_sep void setTagName concode_elem_sep void... | void function ( String arg0 ) { this . replace = arg0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.