idx int64 0 100k | question stringlengths 68 7.19k | target stringlengths 20 663 |
|---|---|---|
32,700 | returns the number of templates this manager knows about . concode_field_sep TemplateComparator comparator concode_elem_sep Segment s concode_elem_sep List<CodeTemplate> templates concode_elem_sep int maxTemplateIDLength concode_elem_sep File directory concode_field_sep boolean isValidChar concode_elem_sep int compare ... | int function ( ) { return templates . size ( ) ; } |
32,701 | writes the pdf file to the provided destination . note : this method takes ownership of the passed in file descriptor and is responsible for closing it when writing completes . concode_field_sep CloseGuard mCloseGuard concode_elem_sep ParcelFileDescriptor mInput concode_elem_sep int mPageCount concode_elem_sep long mNa... | void function ( ParcelFileDescriptor arg0 ) { try { throwIfClosed ( ) ; nativeWrite ( mNativeDocument , arg0 . getFd ( ) ) ; } finally { IoUtils . closeQuietly ( arg0 ) ; } } |
32,702 | returns the revision string . concode_field_sep double[] m_Coefficients concode_field_sep String toString concode_elem_sep void calculate concode_elem_sep double[] getCoefficients | String function ( ) { return RevisionUtils . extract ( "srini_string" ) ; } |
32,703 | sorts java class names such that outer classes preceed their inner classes and `` package-info '' preceeds all other classes in its package . concode_field_sep FileNameFilter filter concode_elem_sep boolean sort concode_elem_sep FileNameFilter acceptAll concode_elem_sep Consumer consumer concode_elem_sep String pathnam... | int function ( String arg0 , String arg1 ) { arg0 = arg0 . replace ( '$' , '0' ) ; arg1 = arg1 . replace ( '$' , '0' ) ; arg0 = arg0 . replace ( "srini_string" , "srini_string" ) ; arg1 = arg1 . replace ( "srini_string" , "srini_string" ) ; return arg0 . compareTo ( arg1 ) ; } |
32,704 | ensures that this object is in the running state . if this object is not running , then the call has the effect of setting the starttime attribute to the current value of system.currenttimemillis and setting the running attribute to true . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep l... | void function ( ) { startTime = System . currentTimeMillis ( ) ; running = true ; } |
32,705 | logs a warning with exception concode_field_sep ILog log concode_elem_sep boolean isDebugEnabled concode_elem_sep Map<String,RiderLogFacade> openLogs concode_field_sep void debug concode_elem_sep void debug concode_elem_sep void log concode_elem_sep void log concode_elem_sep RiderLogFacade getLog concode_elem_sep boole... | void function ( String arg0 , Throwable arg1 ) { log ( IStatus . WARNING , IStatus . WARNING , arg0 , arg1 ) ; } |
32,706 | this class does not have access to the schemamanager , therefore caller should verify that the given schemaname exists . concode_field_sep HsqlName initialSchema concode_elem_sep String sName concode_elem_sep Grantee grantee concode_elem_sep boolean isPublic concode_elem_sep boolean isSys concode_elem_sep String sPassw... | void function ( HsqlName arg0 ) { initialSchema = arg0 ; } |
32,707 | reuturns the url of the robots.txt resource in the site of the given resource . concode_field_sep PlaceHolder placeHolder concode_field_sep String normalizeStripQuery concode_elem_sep String normalizeBackSlashes concode_elem_sep int getDepth concode_elem_sep URL normalize concode_elem_sep String normalizeDoubleSlashes ... | URL function ( URL arg0 ) { URL loc0 = null ; if ( arg0 != null ) { try { loc0 = new URL ( getSiteURL ( arg0 ) , "srini_string" ) ; } catch ( MalformedURLException loc2 ) { } } return loc0 ; } |
32,708 | adds a user record in the database concode_field_sep boolean changed concode_elem_sep String name concode_elem_sep Hashtable contact_list concode_elem_sep String filename concode_elem_sep Hashtable users concode_field_sep NameAddress getUserContactNameAddress concode_elem_sep String getName concode_elem_sep String getN... | UserBindingInfo function ( String arg0 ) { return ( UserBindingInfo ) users . get ( arg0 ) ; } |
32,709 | getvtselection . concode_field_sep String minTargets concode_elem_sep String saValidTargeting concode_elem_sep Target_Choices choice concode_elem_sep String targetSpellAbilityType concode_elem_sep String vtSelection concode_elem_sep String maxTargets concode_elem_sep boolean tgtValid concode_elem_sep String ValidTgts[]... | String function ( ) { return vtSelection ; } |
32,710 | moves the position to the start of the next instance of the given pattern , or the end of the input if not found . concode_field_sep int markPos concode_elem_sep int pos concode_elem_sep StringBuilder input concode_field_sep void next concode_elem_sep void next concode_elem_sep boolean lookingAt concode_elem_sep boolea... | void function ( Pattern arg0 ) { Matcher loc0 = arg0 . matcher ( input ) ; loc0 . region ( pos , input . length ( ) ) ; if ( loc0 . find ( ) ) { pos = loc0 . start ( ) ; } else { pos = input . length ( ) ; } } |
32,711 | get the reference instance . concode_field_sep Reference reference concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep void setResourceAdapter concode_elem_sep String getName concode_elem_sep void setReference concode_el... | Reference function ( ) { return reference ; } |
32,712 | get time at which checker process began . concode_field_sep int BYTE_ARRAY_SIZE concode_elem_sep BitstreamInfoDAO bitstreamInfoDAO concode_elem_sep ChecksumResultsCollector collector concode_elem_sep ChecksumHistoryDAO checksumHistoryDAO concode_elem_sep BitstreamDispatcher dispatcher concode_elem_sep BitstreamDAO bits... | Date function ( ) { return processStartDate == null ? null : new Date ( processStartDate . getTime ( ) ) ; } |
32,713 | sets the tabbed pane visibility concode_field_sep String tabPlacement concode_elem_sep int tabIndex concode_elem_sep List tabItems concode_elem_sep HtmlSelectOneRadio selectedTabObject concode_elem_sep int index concode_elem_sep String newTabLabel concode_elem_sep String label concode_elem_sep String content concode_el... | void function ( boolean arg0 ) { this . tabbedPane1Visible = arg0 ; } |
32,714 | creates a named annotation with name as the value . concode_field_sep PlaceHolder placeHolder concode_field_sep void bindProperties concode_elem_sep void bindProperties | Named function ( String arg0 ) { return new NamedImpl ( arg0 ) ; } |
32,715 | return an iterator of all children of this node . if there are no children , an empty iterator is returned . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_el... | Iterator function ( ) { if ( children == null ) return ( Collections . EMPTY_LIST . iterator ( ) ) ; else return ( children . iterator ( ) ) ; } |
32,716 | returns a string representation of this object ; useful for testing and debugging . concode_field_sep com.amazonaws.internal.SdkInternalList<ClassicLinkInstance> instances concode_elem_sep String nextToken concode_field_sep java.util.List<ClassicLinkInstance> getInstances concode_elem_sep void setInstances concode_elem... | String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getInstances ( ) != null ) loc0 . append ( "srini_string" + getInstances ( ) + "srini_string" ) ; if ( getNextToken ( ) != null ) loc0 . append ( "srini_string" + getNextToken ( ) ) ; loc0 . append ( "srini_string... |
32,717 | if the domain is bounded , returns the bounding box of its boundary , otherwise returns an infinite bounding box . concode_field_sep Boundary2D boundary concode_field_sep Boundary2D boundary concode_elem_sep double distance concode_elem_sep double distance concode_elem_sep boolean isEmpty concode_elem_sep void draw con... | Box2D function ( ) { if ( this . isBounded ( ) ) return boundary . boundingBox ( ) ; return Box2D . INFINITE_BOX ; } |
32,718 | checks whether this option has deprecated keys . concode_field_sep String[] deprecatedKeys concode_elem_sep T defaultValue concode_elem_sep String[] EMPTY concode_elem_sep String key concode_field_sep boolean hasDefaultValue concode_elem_sep Iterable<String> deprecatedKeys concode_elem_sep T defaultValue concode_elem_s... | boolean function ( ) { return deprecatedKeys != EMPTY ; } |
32,719 | returns the osgi service identifier . concode_field_sep JournalFeedService _journalFeedService concode_field_sep com.liferay.journal.model.JournalFeed updateFeed concode_elem_sep void setWrappedService concode_elem_sep com.liferay.journal.model.JournalFeed getFeed concode_elem_sep com.liferay.journal.model.JournalFeed ... | java . lang . String function ( ) { return _journalFeedService . getOSGiServiceIdentifier ( ) ; } |
32,720 | injects tcipmappingtool concode_field_sep TcipMappingTool mappingTool concode_field_sep Vehicle convert | void function ( TcipMappingTool arg0 ) { this . mappingTool = arg0 ; } |
32,721 | validate a collection of functionmethod objects . concode_field_sep int MAX_LENGTH concode_field_sep void validateType concode_elem_sep void validateLength concode_elem_sep void validateNameCharacters concode_elem_sep void validateDescription concode_elem_sep void updateReport concode_elem_sep void validateFunctionPara... | void function ( ITeiidServerVersion arg0 , Collection < FunctionMethod > arg1 , ValidatorReport arg2 ) { validateFunctionMethods ( arg0 , arg1 , arg2 , null ) ; } |
32,722 | returns the current bid concode_field_sep Item item concode_elem_sep Bid currentBid concode_elem_sep Logger logger concode_elem_sep BidManager bidManager concode_elem_sep User user concode_elem_sep Conversation conversation concode_field_sep String placeOrder concode_elem_sep String confirmBid | Bid function ( ) { Bid loc0 = new Bid ( ) ; if ( user instanceof BazaarAccount ) { loc0 . setBidder ( ( BazaarAccount ) user ) ; } loc0 . setItem ( item ) ; return loc0 ; } |
32,723 | check if it can add attachments to the messages of some forum concode_field_sep Map<String,Role> roles concode_field_sep boolean getCanDownloadAttachments concode_elem_sep boolean getCanCreatePolls concode_elem_sep boolean isForumAllowed concode_elem_sep boolean isModerator concode_elem_sep boolean isReplyModerationNee... | boolean function ( int arg0 ) { return this . roleExists ( SecurityConstants . ATTACHMENTS_ENABLED , arg0 ) ; } |
32,724 | return the ordered list of modules for this stream as a list . this allows for retrieval of modules in the stream by index . modules are maintained in stream flow order source is first , sink is last . concode_field_sep String name concode_elem_sep String dslText concode_elem_sep Iterator<T> wrapped concode_elem_sep Li... | List < ModuleDefinition > function ( ) { return Collections . unmodifiableList ( modules ) ; } |
32,725 | sets the value of the data property . concode_field_sep EntityCollection data concode_elem_sep ArrayOfstring queryColumnSet concode_elem_sep Integer errorCode concode_elem_sep long serialVersionUID concode_field_sep ArrayOfstring getQueryColumnSet concode_elem_sep Integer getErrorCode concode_elem_sep void setQueryColu... | void function ( EntityCollection arg0 ) { this . data = arg0 ; } |
32,726 | returns the opcode of this instruction . concode_field_sep List<TypeAnnotationNode> visibleTypeAnnotations concode_elem_sep AbstractInsnNode next concode_elem_sep int TYPE_INSN concode_elem_sep int LOOKUPSWITCH_INSN concode_elem_sep int INT_INSN concode_elem_sep AbstractInsnNode prev concode_elem_sep int METHOD_INSN co... | int function ( ) { return opcode ; } |
32,727 | set the maximum length of patterns to be found in terms of itemset count concode_field_sep int minsup concode_elem_sep int lastBitIndex concode_elem_sep int maximumPatternLength concode_elem_sep long startTime concode_elem_sep long endTime concode_elem_sep BufferedWriter writer concode_elem_sep List<Integer> sequencesS... | void function ( int arg0 ) { this . maximumPatternLength = arg0 ; } |
32,728 | get an unconfigured basicdatasource to set up concode_field_sep Context jndiCtx concode_elem_sep JDBCLoaderProperties config concode_elem_sep DataSource dataSource concode_elem_sep Logger LOGGER concode_field_sep DataSource getObject concode_elem_sep DataSource lookupOrCreateDataSource concode_elem_sep DataSource creat... | BasicDataSource function ( ) { return new BasicDataSource ( ) ; } |
32,729 | returns the resource which is affected by this refactoring . default implementation returns the resource of the first context object . concode_field_sep RefactoringHelper helper concode_elem_sep List<T> contextObjects concode_field_sep TransactionalEditingDomain getEditingDomain concode_elem_sep boolean internalDoUndo ... | Resource function ( ) { T loc0 = getContextObject ( ) ; if ( loc0 instanceof EObject ) { return ( ( EObject ) loc0 ) . eResource ( ) ; } return null ; } |
32,730 | set the value of this option to a given boolean value . invoking this method will also set the type of the option to libsbmlconstants #cnv_type_bool cnv_type_bool . concode_field_sep boolean swigCMemOwn concode_elem_sep long swigCPtr concode_field_sep String getKey concode_elem_sep int getIntValue concode_elem_sep doub... | void function ( boolean arg0 ) { libsbmlJNI . ConversionOption_setBoolValue ( swigCPtr , this , arg0 ) ; } |
32,731 | internal helper to calculate the time of a node , inclusive of children concode_field_sep Deque<Integer> stack concode_elem_sep long rewriteTime concode_elem_sep ArrayList<ProfileBreakdown> timings concode_elem_sep ArrayList<ArrayList<Integer>> tree concode_elem_sep ArrayList<Integer> roots concode_elem_sep long rewrit... | long function ( Map < String , Long > arg0 , List < ProfileResult > arg1 ) { long loc0 = 0 ; for ( long loc1 : arg0 . values ( ) ) { loc0 += loc1 ; } for ( ProfileResult loc1 : arg1 ) { loc0 += getNodeTime ( loc1 . getTimeBreakdown ( ) , loc1 . getProfiledChildren ( ) ) ; } return loc0 ; } |
32,732 | start the worker thread . concode_field_sep Thread thread concode_elem_sep Integer threadPriority concode_elem_sep Object value concode_elem_sep ThreadVar threadVar concode_field_sep void setThreadPriority concode_elem_sep Object getValue concode_elem_sep Thread get concode_elem_sep Object get concode_elem_sep void set... | void function ( ) { Thread loc0 = threadVar . get ( ) ; if ( loc0 != null ) { if ( threadPriority != null ) loc0 . setPriority ( threadPriority ) ; loc0 . start ( ) ; } } |
32,733 | gets the accountingbook value for this itemaccountingbookdetail . concode_field_sep java.lang.Boolean sameAsPrimaryRevRec concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.netsuite.webservices.platform.core_2014_2.RecordRef amortizationTemplate concode_elem_sep ... | com . netsuite . webservices . platform . core_2014_2 . RecordRef function ( ) { return accountingBook ; } |
32,734 | ascertains whether mapcommandbuttonid is a part of componentid . componentid might be a fully qualified id , with a prefix corresponding to container component s . concode_field_sep Polygon mapPolygon concode_elem_sep String id concode_elem_sep String mapCommandButtonId concode_field_sep String getId concode_elem_sep P... | boolean function ( String arg0 ) { return arg0 . endsWith ( mapCommandButtonId ) ; } |
32,735 | build a command usage string . you should always use that function to use a usage string that complies to a standard format . concode_field_sep String cmd concode_elem_sep String desc concode_field_sep String getCommand concode_elem_sep String getDescription concode_elem_sep void printUsage | String function ( final String arg0 , final String arg1 ) { return String . format ( "srini_string" , getCommand ( ) , arg0 , arg1 ) ; } |
32,736 | the optional value portion of a tag defined by a user . for more information , see controlling user access to pipelines in the aws data pipeline developer guide . concode_field_sep String value concode_elem_sep String key concode_field_sep String getKey concode_elem_sep String getValue concode_elem_sep Tag withValue co... | void function ( String arg0 ) { this . value = arg0 ; } |
32,737 | setter for the field categorydescription . concode_field_sep int hashCode concode_elem_sep String categoryName concode_elem_sep Integer categoryId concode_elem_sep String categoryDescription concode_field_sep int hashCode concode_elem_sep Integer getCategoryId concode_elem_sep void setCategoryId concode_elem_sep boolea... | void function ( String arg0 ) { this . categoryDescription = arg0 ; } |
32,738 | configuration method which sets value class , to indicate desired class of daterange.getstart and daterange.getend methods . note : this method will not take effect if #daterangebuilder java.util.date constructor was used . concode_field_sep Date dateValue concode_elem_sep String expression concode_elem_sep String date... | DateRangeBuilder function ( Class < ? extends Date > arg0 ) { this . valueClass = arg0 ; return this ; } |
32,739 | sets the id . concode_field_sep String watermark concode_elem_sep ExchangeService service concode_elem_sep String id concode_field_sep boolean getUsesWatermark concode_elem_sep void loadFromXml concode_elem_sep void setWaterMark concode_elem_sep String getWaterMark concode_elem_sep String getId concode_elem_sep Exchang... | void function ( String arg0 ) { this . id = arg0 ; } |
32,740 | convert the given object to string with each line indented by 4 spaces except the first line . concode_field_sep Date dateTime concode_elem_sep String uuid concode_elem_sep Map<String,Animal> map concode_field_sep MixedPropertiesAndAdditionalPropertiesClass dateTime concode_elem_sep MixedPropertiesAndAdditionalProperti... | String function ( java . lang . Object arg0 ) { if ( arg0 == null ) { return "srini_string" ; } return arg0 . toString ( ) . replace ( "srini_string" , "srini_string" ) ; } |
32,741 | connect the new local user to the provider . concode_field_sep ConnectionFactoryLocator connectionFactoryLocator concode_elem_sep UsersConnectionRepository connectionRepository concode_elem_sep String SESSION_ATTRIBUTE concode_elem_sep ConnectionData connectionData concode_field_sep Connection<?> getConnection | void function ( String arg0 ) { connectionRepository . createConnectionRepository ( arg0 ) . addConnection ( getConnection ( ) ) ; } |
32,742 | returns the number of rows matching the dynamic query . concode_field_sep PhoneLocalService _service concode_field_sep com.liferay.portal.kernel.model.Phone getPhone concode_elem_sep com.liferay.portal.kernel.model.Phone getPhoneByUuidAndCompanyId concode_elem_sep java.lang.String getOSGiServiceIdentifier concode_elem_... | long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . dynamicQueryCount ( arg0 ) ; } |
32,743 | adds the legend items from another collection to this collection . concode_field_sep long serialVersionUID concode_elem_sep List items concode_field_sep void add concode_elem_sep Iterator iterator concode_elem_sep LegendItem get concode_elem_sep int getItemCount concode_elem_sep boolean equals concode_elem_sep Object c... | void function ( LegendItemCollection arg0 ) { this . items . addAll ( arg0 . items ) ; } |
32,744 | returns the sql statement which retrieves the collection id from the specified table . concode_field_sep PlaceHolder placeHolder concode_field_sep String getResourceIdAndFilePath concode_elem_sep String getBodySql concode_elem_sep String getAddFilesizeColumnSql concode_elem_sep String getDropBoxQuotaQuerySql concode_el... | String function ( String arg0 ) { return "srini_string" + arg0 + "srini_string" ; } |
32,745 | get model url for the model id concode_field_sep HashMap<String,String> map concode_elem_sep JSONObject attr concode_elem_sep HashMap<String,String> params concode_field_sep String toURL concode_elem_sep boolean isFilterBy concode_elem_sep void set concode_elem_sep void addParams concode_elem_sep Long getId concode_ele... | String function ( Long arg0 ) { return getJSONResourceURL ( arg0 + "srini_string" ) ; } |
32,746 | the time interval to wait on connection before timing out . concode_field_sep String path concode_elem_sep List<String> servers concode_elem_sep int timeout concode_elem_sep String createMode concode_elem_sep boolean repeat concode_elem_sep boolean sendEmptyMessageOnDelete concode_elem_sep boolean create concode_elem_s... | void function ( int arg0 ) { this . timeout = arg0 ; } |
32,747 | get the html element for this document container . concode_field_sep head head concode_elem_sep noframes noframes concode_elem_sep String codeset concode_elem_sep long serialVersionUID concode_elem_sep frameset frameset concode_elem_sep html html concode_elem_sep body body concode_elem_sep title title concode_field_sep... | html function ( ) { return ( html ) ; } |
32,748 | returns the user uuid of this social activity limit . concode_field_sep SocialActivityLimit _socialActivityLimit concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void ... | java . lang . String function ( ) { return _socialActivityLimit . getUserUuid ( ) ; } |
32,749 | helper for success callbacks that just returns the status.ok by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String g... | void function ( JSONArray arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; } |
32,750 | rotates the direction and up vector of this camera by the given rotation matrix . the direction and up vector will not be orthogonalized . concode_field_sep Matrix4 invProjectionView concode_elem_sep Matrix4 combined concode_elem_sep Matrix4 view concode_elem_sep Vector3 position concode_elem_sep float near concode_ele... | void function ( final Matrix4 arg0 ) { direction . rot ( arg0 ) ; up . rot ( arg0 ) ; } |
32,751 | serialize an instance , restore it , and check for equality . concode_field_sep PlaceHolder placeHolder concode_field_sep void testEqualsSelf concode_elem_sep void testClone concode_elem_sep void testCompareTo concode_elem_sep void testImmutable concode_elem_sep void testHashcode concode_elem_sep void testEquals | void function ( ) { SimpleTimePeriod loc0 = new SimpleTimePeriod ( new Date ( 1000L ) , new Date ( 1001L ) ) ; SimpleTimePeriod loc1 = ( SimpleTimePeriod ) TestUtilities . serialised ( loc0 ) ; assertEquals ( loc0 , loc1 ) ; } |
32,752 | create a duration from the number of microseconds . concode_field_sep BigInteger NANOS_PER_SECOND_BIG_INTEGER concode_elem_sep long DURATION_SECONDS_MAX concode_elem_sep long DURATION_SECONDS_MIN concode_elem_sep long TIMESTAMP_SECONDS_MAX concode_elem_sep long NANOS_PER_SECOND concode_elem_sep long TIMESTAMP_SECONDS_M... | Duration function ( long arg0 ) { return Durations . fromMicros ( arg0 ) ; } |
32,753 | add a content modification . concode_field_sep ContentItemFilter itemFilter concode_field_sep T modifyBundle concode_elem_sep MiscContentItem createMiscItem concode_elem_sep T removeModule concode_elem_sep void setContentItemFilter concode_elem_sep T removeBundle concode_elem_sep T addModule concode_elem_sep T modifyMo... | T function ( final ContentModification arg0 ) { if ( itemFilter . accepts ( arg0 . getItem ( ) ) ) { internalAddModification ( arg0 ) ; } return returnThis ( ) ; } |
32,754 | get a spring beanfactory by context id . concode_field_sep PlaceHolder placeHolder concode_field_sep T getBean concode_elem_sep T getBean concode_elem_sep T getFactory concode_elem_sep void assertAutowiring | BeanFactoryReference function ( String arg0 ) { BeanFactoryLocator loc0 = DefaultLocatorFactory . getInstance ( ) ; return loc0 . useBeanFactory ( arg0 ) ; } |
32,755 | the tags key and value pairs of the resource group . this data type property is used in the createresourcegroup action . concode_field_sep java.util.Date createdAt concode_elem_sep String arn concode_elem_sep java.util.List<ResourceGroupTag> tags concode_field_sep ResourceGroup withArn concode_elem_sep void setCreatedA... | ResourceGroup function ( java . util . Collection < ResourceGroupTag > arg0 ) { setTags ( arg0 ) ; return this ; } |
32,756 | is this batchpresentation active inside category . concode_field_sep boolean shared concode_elem_sep byte[] fieldsData concode_elem_sep boolean active concode_elem_sep Store storage concode_elem_sep ClassPresentationType type concode_elem_sep int rangeSize concode_elem_sep Long version concode_elem_sep String name conc... | boolean function ( ) { return active ; } |
32,757 | returns a runnablefuture for the given callable task . concode_field_sep PlaceHolder placeHolder concode_field_sep Future<?> submit concode_elem_sep Future<T> submit concode_elem_sep Future<T> submit concode_elem_sep T doInvokeAny concode_elem_sep List<Future<T>> invokeAll concode_elem_sep List<Future<T>> invokeAll con... | RunnableFuture < T > function ( Callable < T > arg0 ) { return new FutureTask < T > ( arg0 ) ; } |
32,758 | creates a new mavenpom . concode_field_sep Object pomDir concode_elem_sep MavenFactory mavenFactory concode_elem_sep ProjectInternal project concode_elem_sep Conf2ScopeMappingContainer conf2ScopeMappings concode_field_sep Conf2ScopeMappingContainer getConf2ScopeMappings concode_elem_sep void setConf2ScopeMappings conco... | MavenPom function ( ) { return pom ( null ) ; } |
32,759 | returns the surface distance to the given point assuming the default earth radius of #earth_radius_meters . concode_field_sep S2LatLng CENTER concode_elem_sep double EARTH_RADIUS_METERS concode_elem_sep double latRadians concode_elem_sep double lngRadians concode_field_sep S2LatLng sub concode_elem_sep S2LatLng mul con... | double function ( final S2LatLng arg0 ) { return getDistance ( arg0 , EARTH_RADIUS_METERS ) ; } |
32,760 | notify all waiting threads concode_field_sep ReentrantMutex remutex_ concode_elem_sep Sync mutex_ concode_elem_sep boolean debug_ concode_field_sep int releaseMutex concode_elem_sep void acquireMutex concode_elem_sep void await concode_elem_sep boolean timedwait concode_elem_sep void signal | void function ( ) { notifyAll ( ) ; } |
32,761 | sets the reading offset in the array . concode_field_sep byte[] data concode_elem_sep int limit concode_elem_sep int position concode_field_sep int readUnsignedInt24 concode_elem_sep int readSynchSafeInt concode_elem_sep int readUnsignedIntToInt concode_elem_sep int capacity concode_elem_sep void skipBytes concode_elem... | void function ( int arg0 ) { Assertions . checkArgument ( arg0 >= 0 && arg0 <= limit ) ; this . position = arg0 ; } |
32,762 | sets the email address . concode_field_sep String emailAddress concode_elem_sep String[] ccMailList concode_elem_sep String[] bccMailList concode_elem_sep String templateName concode_elem_sep String userActivationCode concode_elem_sep String subject concode_elem_sep String ccMailId concode_elem_sep String bccMailId con... | void function ( String arg0 ) { this . emailAddress = arg0 ; } |
32,763 | add an attribute to this node , replacing any existing attribute with the same name . concode_field_sep String name concode_elem_sep HashMap attributes concode_elem_sep TreeNode parent concode_elem_sep String body concode_elem_sep ArrayList children concode_field_sep TreeNode findChild concode_elem_sep String findAttri... | void function ( String arg0 , String arg1 ) { if ( attributes == null ) attributes = new HashMap ( ) ; attributes . put ( arg0 , arg1 ) ; } |
32,764 | retrieves prefix + '' in '' + elapsedtime + '' ms. '' concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep void zero concode_elem_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep String currentElapsedTimeTo... | String function ( String arg0 ) { return arg0 + "srini_string" + elapsedTime ( ) + "srini_string" ; } |
32,765 | returns a list of all the fields in a document . note that fields which are not stored are not available in documents retrieved from the index , e.g. indexsearcher #doc int or indexreader #document int . concode_field_sep List<IndexableField> fields concode_elem_sep String[] NO_STRINGS concode_field_sep void add concod... | List < IndexableField > function ( ) { return Collections . unmodifiableList ( fields ) ; } |
32,766 | computes whether the interval min , max is effectively zero width . i.e. the width of the interval is so much less than the location of the interval that the midpoint of the interval can not be represented precisely . concode_field_sep int MIN_BINARY_EXPONENT concode_field_sep placeholderType placeHolder | boolean function ( double arg0 , double arg1 ) { double loc0 = arg1 - arg0 ; if ( loc0 == 0.0 ) return true ; double loc1 = Math . arg1 ( Math . abs ( arg0 ) , Math . abs ( arg1 ) ) ; double loc2 = loc0 / loc1 ; int loc3 = DoubleBits . exponent ( loc2 ) ; return loc3 <= MIN_BINARY_EXPONENT ; } |
32,767 | returns the default value for an optional parameter . if the value returned here is null , then this either means , that the parameter is mandatory or that the default value is computed by the expression itself . concode_field_sep String name concode_elem_sep long serialVersionUID concode_field_sep boolean isDeprecated... | Object function ( final int arg0 ) { return null ; } |
32,768 | sets the portlet preferences id of this portlet preferences . concode_field_sep PortletPreferences _portletPreferences concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode... | void function ( long arg0 ) { _portletPreferences . setPortletPreferencesId ( arg0 ) ; } |
32,769 | transform pixelspace to coordinates and get the distance . concode_field_sep OsmMercator MERCATOR_256 concode_elem_sep int DEFAUL_TILE_SIZE concode_elem_sep double EARTH_RADIUS concode_elem_sep double MIN_LAT concode_elem_sep double MAX_LAT concode_elem_sep int tileSize concode_field_sep double xToLon concode_elem_sep ... | double function ( int arg0 , int arg1 , int arg2 , int arg3 , int arg4 ) { double loc0 = yToLat ( arg1 , arg4 ) ; double loc1 = xToLon ( arg0 , arg4 ) ; double loc2 = yToLat ( arg3 , arg4 ) ; double loc3 = xToLon ( arg2 , arg4 ) ; return getDistance ( loc0 , loc1 , loc2 , loc3 ) ; } |
32,770 | create a proxy for an interface of implementations of that interface using the given failoverproxyprovider and the same retry policy for eachmethod in the interface . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | Object function ( Class < T > arg0 , FailoverProxyProvider < T > arg1 , RetryPolicy arg2 ) { return Proxy . newProxyInstance ( arg1 . getInterface ( ) . getClassLoader ( ) , new Class < ? > [ ] { arg0 } , new RetryInvocationHandler < T > ( arg1 , arg2 ) ) ; } |
32,771 | parses a given distance and converts it to this unit . concode_field_sep DistanceUnit unit concode_elem_sep String[] names concode_elem_sep double value concode_elem_sep DistanceUnit DEFAULT concode_elem_sep double meters concode_field_sep double getEarthCircumference concode_elem_sep double toMeters concode_elem_sep d... | double function ( String arg0 , DistanceUnit arg1 ) { return parse ( arg0 , arg1 , this ) ; } |
32,772 | adds view to specified cache . creates a cache list if it is null . concode_field_sep WheelView wheel concode_elem_sep List<View> emptyItems concode_elem_sep List<View> items concode_field_sep int recycleItems concode_elem_sep View getCachedView concode_elem_sep View getItem concode_elem_sep void recycleView concode_el... | List < View > function ( View arg0 , List < View > arg1 ) { if ( arg1 == null ) { arg1 = new LinkedList < View > ( ) ; } arg1 . add ( arg0 ) ; return arg1 ; } |
32,773 | gets the agencia value for this directdebitrequestin . concode_field_sep java.lang.String numeroBanco concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep long bonus concode_elem_sep java.lang.String numeroConta concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String ... | java . lang . String function ( ) { return agencia ; } |
32,774 | sets the value of the salesrepid property . concode_field_sep String salesRepId concode_field_sep String getSalesRepId | void function ( String arg0 ) { this . salesRepId = arg0 ; } |
32,775 | decodes a byte array from base64 format and ignores line separators , tabs and blanks . cr , lf , tab and space characters are ignored in the input data . this method is compatible with sun.misc.base64decoder.decodebuffer string . concode_field_sep char[] map1 concode_elem_sep String systemLineSeparator concode_elem_se... | byte [ ] function ( String arg0 ) { } |
32,776 | instructs that the bucket will need total bucket calculation . concode_field_sep byte VALUE_TYPE_VALUE concode_elem_sep JRExpression orderByExpression concode_elem_sep CrosstabTotalPositionEnum totalPosition concode_elem_sep byte type concode_elem_sep byte VALUE_TYPE_TOTAL concode_elem_sep byte VALUE_TYPE_NULL concode_... | void function ( ) { computeTotal = true ; } |
32,777 | returns the properties that are needed by this attribute in order to determine whether this attribute is enabled and/or for the actual attribute itself . concode_field_sep String[] EMPTY_PROPERTY_NAMES_ARRAY concode_elem_sep String[] fPropertyNames concode_field_sep void updateAttribute concode_elem_sep boolean isEnabl... | String [ ] function ( ) { return fPropertyNames ; } |
32,778 | add the data of interest for the given object . concode_field_sep String moduleName concode_elem_sep GenericApplicationContext m_context concode_elem_sep TriplestoreConnector m_conn concode_elem_sep ModuleConfiguration m_riConfig concode_elem_sep TripleGenerator m_generator concode_elem_sep ResourceIndex m_ri concode_e... | void function ( DigitalObject arg0 ) { m_ri . addObject ( new SimpleDOReader ( null , null , null , null , null , arg0 ) ) ; } |
32,779 | this is is a convenience method that pulls the string value from the internationalstringtype this convenience method will use the locale to get the string from the localizedstringtype concode_field_sep String DEFAULT_LANG concode_elem_sep Locale locale concode_field_sep Optional<String> getLocalizedString concode_elem_... | String function ( InternationalStringType arg0 ) { Optional < String > loc0 = Optional . empty ( ) ; if ( arg0 != null ) { loc0 = getLocalizedString ( arg0 . getLocalizedString ( ) ) ; } return loc0 . orElse ( "srini_string" ) ; } |
32,780 | gets the playbacklistener concode_field_sep int lastPosition concode_elem_sep PlaybackListener listener concode_elem_sep Bitstream bitstream concode_elem_sep Decoder decoder concode_elem_sep AudioDevice audio concode_elem_sep boolean complete concode_elem_sep boolean closed concode_field_sep void play concode_elem_sep ... | PlaybackListener function ( ) { return listener ; } |
32,781 | gets the sort order . concode_field_sep Long systemCount concode_elem_sep Integer sortOrder concode_elem_sep Long actionId concode_field_sep void setSystemCount concode_elem_sep Long getSystemCount concode_elem_sep Long getActionId concode_elem_sep void setSortOrder concode_elem_sep void setActionId concode_elem_sep St... | Integer function ( ) { return sortOrder ; } |
32,782 | an identifier for the message in this batch . this is used to communicate the result . note that the ids of a batch request need to be unique within the request . concode_field_sep Integer delaySeconds concode_elem_sep String messageBody concode_elem_sep com.amazonaws.internal.SdkInternalMap<String,MessageAttributeValu... | void function ( String arg0 ) { this . id = arg0 ; } |
32,783 | this method is called from classes implementing the jdbc interfaces . inside the engine it is used for conversion from a value of type other to another type . it will throw if the other is an instance of a classe that is not available . concode_field_sep byte[] data concode_field_sep int getBytesLength concode_elem_sep... | Serializable function ( ) { try { return InOutUtil . deserialize ( data ) ; } catch ( Exception loc0 ) { throw Trace . error ( Trace . SERIALIZATION_FAILURE , loc0 . getMessage ( ) ) ; } } |
32,784 | create an instance of userlist concode_field_sep QName _ApiExceptionFault_QNAME concode_elem_sep QName _RequestHeader_QNAME concode_elem_sep QName _ResponseHeader_QNAME concode_field_sep SimilarUserList createSimilarUserList concode_elem_sep Rule createRule concode_elem_sep LogicalUserListOperand createLogicalUserListO... | UserList function ( ) { return new UserList ( ) ; } |
32,785 | whether xhr streaming is disabled or not . concode_field_sep Log logger concode_elem_sep boolean xhrStreamingDisabled concode_elem_sep HttpHeaders requestHeaders concode_elem_sep String PRELUDE concode_field_sep List<TransportType> getTransportTypes concode_elem_sep HttpHeaders getRequestHeaders concode_elem_sep Respon... | boolean function ( ) { return this . xhrStreamingDisabled ; } |
32,786 | register a timer callback . at the specified time the triggerable will be invoked.this call is guaranteed to not happen concurrently with method calls on the operator . concode_field_sep boolean inputCopyDisabled concode_elem_sep StreamTask<?,?> container concode_elem_sep KvState<?,?,?>[] keyValueStates concode_elem_se... | void function ( long arg0 , Triggerable arg1 ) { container . registerTimer ( arg0 , arg1 ) ; } |
32,787 | closes socket , ignoring any checked exceptions . does nothing if socket is null . concode_field_sep Charset US_ASCII concode_elem_sep byte[] EMPTY_BYTE_ARRAY concode_elem_sep AtomicReference<byte[]> skipBuffer concode_elem_sep char[] DIGITS concode_elem_sep Charset UTF_8 concode_elem_sep String[] EMPTY_STRING_ARRAY co... | void function ( Socket arg0 ) { if ( arg0 != null ) { try { arg0 . close ( ) ; } catch ( RuntimeException loc0 ) { throw loc0 ; } catch ( Exception loc0 ) { } } } |
32,788 | quit . concode_field_sep int STATE_DOSTOP concode_elem_sep boolean dbResetDelay concode_elem_sep int STATE_SYNC concode_elem_sep int STATE_CANCEL concode_elem_sep int m_nState concode_elem_sep String sync concode_elem_sep long SYNC_WAIT_INTERVAL concode_elem_sep int STATE_PAUSE concode_elem_sep int STATE_NONE concode_f... | void function ( ) { synchronized ( sync ) { setState ( STATE_DOSTOP ) ; sync . notify ( ) ; SyncManager . closeConnection ( ) ; } } |
32,789 | sets the allowed origins of the rule . concode_field_sep String AllowedMethod concode_elem_sep List<String> allowedOrigins concode_elem_sep List<String> exposedHeaders concode_elem_sep List<String> allowedHeaders concode_elem_sep String id concode_elem_sep List<AllowedMethods> allowedMethods concode_elem_sep int maxAge... | void function ( List < String > arg0 ) { this . allowedOrigins = arg0 ; } |
32,790 | public information about the realm . concode_field_sep HttpRequest request concode_elem_sep UriInfo uriInfo concode_elem_sep HttpResponse response concode_elem_sep RealmModel realm concode_elem_sep Logger logger concode_field_sep Response accountPreflight concode_elem_sep PublishedRealmRepresentation realmRep | PublishedRealmRepresentation function ( ) { Cors . add ( request ) . allowedOrigins ( Cors . ACCESS_CONTROL_ALLOW_ORIGIN_WILDCARD ) . auth ( ) . build ( response ) ; return realmRep ( realm , uriInfo ) ; } |
32,791 | gets the value of the specified orb property . all orb properties can be queried using this method . this includes the properties that have been explicitly set by this service prior to creating the orb and all iiop properties that have been specified in the iiop subsystem configuration . concode_field_sep Properties pr... | String function ( String arg0 ) { return properties . getProperty ( arg0 ) ; } |
32,792 | signals this object to close , including exiting the thread running the request handling loop concode_field_sep Thread runnerThread concode_elem_sep Server server concode_elem_sep boolean keepAlive concode_elem_sep RowOutputBinary rowOut concode_elem_sep Session session concode_elem_sep byte[] mainBuffer concode_elem_s... | void function ( ) { keepAlive = false ; if ( ! Thread . currentThread ( ) . equals ( runnerThread ) ) { close ( ) ; } } |
32,793 | sets the value of the nameid property . concode_field_sep SubjectConfirmationDataType subjectConfirmationData concode_elem_sep String method concode_elem_sep EncryptedElementType encryptedID concode_elem_sep NameIDType nameID concode_elem_sep long serialVersionUID concode_elem_sep BaseIDAbstractType baseID concode_fiel... | void function ( NameIDType arg0 ) { this . nameID = arg0 ; } |
32,794 | called when the system is about to start resuming a previous activity . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String id concode_field_sep boolean onOverrideUrlLoading concode_elem_sep void onDestroy concode_ele... | void function ( boolean arg0 ) { } |
32,795 | updates the outlier list by adding the outlier to the end of the list and setting the averaged outlier to the average x and y coordinnate values of the outliers in the list . concode_field_sep List outlierLists concode_elem_sep boolean highFarOut concode_elem_sep boolean lowFarOut concode_field_sep boolean add concode_... | boolean function ( OutlierList arg0 , Outlier arg1 ) { boolean loc0 = false ; loc0 = arg0 . add ( arg1 ) ; arg0 . updateAveragedOutlier ( ) ; arg0 . setMultiple ( true ) ; return loc0 ; } |
32,796 | method called in the presenter lifecycle . invoked when the component containing the presenter is resumed . concode_field_sep T view concode_elem_sep boolean shouldRegisterGlobalErrorCallbacks concode_elem_sep UseCaseHandler useCaseHandler concode_elem_sep List<UseCaseCall> useCaseCalls concode_elem_sep List<OnErrorCal... | void function ( ) { registerGlobalErrorCallback ( ) ; } |
32,797 | this is the method that is invoked when the player thread 's start method is called . in turn , this thread has the checker player begin calculating the next move . concode_field_sep int[][] boardState concode_elem_sep int whosTurn concode_elem_sep CheckerPlayer player concode_field_sep placeholderType placeHolder | void function ( ) { try { player . calculateMove ( boardState , whosTurn ) ; } catch ( Exception loc0 ) { } } |
32,798 | set whether data should be flushed through to the output stream . concode_field_sep boolean autoflush concode_elem_sep int bufferSize concode_elem_sep OutputStream os concode_elem_sep boolean closeWhenExhausted concode_elem_sep int SMALL_BUFFER_SIZE concode_elem_sep Exception exception concode_elem_sep boolean started ... | void function ( boolean arg0 ) { this . autoflush = arg0 ; } |
32,799 | gets the name of this message type . concode_field_sep String name concode_elem_sep Map<String,MessageType> typeMap concode_elem_sep int type concode_field_sep MessageType forName concode_elem_sep int intValue concode_elem_sep MessageType valueOf | String function ( ) { return name ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.