idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
18,600 | defines whether the solution set is kept in managed memory flink 's internal way of keeping object in serialized form or as a simple object map . by default , the solution set runs in managed memory . concode_field_sep int parallelism concode_elem_sep Map<String,Aggregator<?>> aggregators concode_elem_sep boolean optNu... | void function ( boolean arg0 ) { this . unmanagedSolutionSet = arg0 ; } |
18,601 | gets amount approved in the transaction concode_field_sep double requestedAmount concode_elem_sep double approvedAmount concode_elem_sep double balanceAmountOnCard concode_elem_sep long serialVersionUID concode_elem_sep Log logger concode_field_sep void setRequestedAmount concode_elem_sep void setRequestedAmount concod... | double function ( ) { return approvedAmount ; } |
18,602 | clears the value of the field . concode_field_sep GeneratedMessage.BuilderParent parent concode_elem_sep boolean isClean concode_elem_sep BType builder concode_elem_sep MType message concode_field_sep BType getBuilder concode_elem_sep void onChanged concode_elem_sep void markDirty concode_elem_sep MType build concode_e... | SingleFieldBuilder < MType , BType , IType > function ( ) { message = ( MType ) ( message != null ? message . getDefaultInstanceForType ( ) : builder . getDefaultInstanceForType ( ) ) ; if ( builder != null ) { builder . dispose ( ) ; builder = null ; } onChanged ( ) ; return this ; } |
18,603 | set the factory that should be used by default for the #create method is invoked . concode_field_sep ObjectIDFactory defaultFactory concode_elem_sep IDGenerator INSTANCE concode_elem_sep Map factories concode_elem_sep Set protocols concode_field_sep void addFactory concode_elem_sep Set getProtocols concode_elem_sep Col... | void function ( final String arg0 ) { final ObjectIDFactory loc0 = getFactory ( arg0 ) ; defaultFactory = loc0 ; } |
18,604 | extracts the tag from an xml element . concode_field_sep char[] ESCAPE_CHARS concode_field_sep boolean isEscapeChar concode_elem_sep String getMetaFromFence concode_elem_sep int rnd concode_elem_sep void _appendHexEntity concode_elem_sep int skipSpaces concode_elem_sep int _escape concode_elem_sep void appendMailto con... | String function ( final String arg0 ) { final StringBuilder loc0 = new StringBuilder ( ) ; int loc1 = 1 ; if ( arg0 . charAt ( 1 ) == '/' ) loc1 ++ ; while ( Character . isLetterOrDigit ( arg0 . charAt ( loc1 ) ) ) loc0 . append ( arg0 . charAt ( loc1 ++ ) ) ; return loc0 . toString ( ) . toLowerCase ( Locale . US ) ; ... |
18,605 | equals to resultset.isbeforefirst . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean next concode_elem_sep boolean previous concode_elem_sep boolean last concode_elem_sep boolean isLast concode_elem_sep boolean isExpressionsFromThisRowSource concode_elem_sep void setRowPosition concode_elem_sep void ... | boolean function ( ) { throw SmallSQLException . create ( Language . RSET_FWDONLY ) ; } |
18,606 | extracts the contents of an archive into the specified directory . concode_field_sep Logger LOGGER concode_field_sep void createParentFile concode_elem_sep void extractFilesUsingFilter concode_elem_sep void extractArchive concode_elem_sep void closeStream concode_elem_sep void extractFile | void function ( File arg0 , File arg1 ) { extractFiles ( arg0 , arg1 , null ) ; } |
18,607 | setter for #unique . concode_field_sep boolean unique concode_elem_sep String name concode_elem_sep String definition concode_elem_sep String comment concode_elem_sep String tableName concode_field_sep String getDefinition concode_elem_sep void setName concode_elem_sep void setTableName concode_elem_sep String getName ... | void function ( final boolean arg0 ) { this . unique = arg0 ; } |
18,608 | enable gui display of pole balancing concode_field_sep double ONE_DEGREE concode_elem_sep double THIRTYSIX_DEGREES concode_elem_sep String PENALIZE_OSCILLATIONS_KEY concode_elem_sep double TWELVE_DEGREES concode_elem_sep double DEFAULT_TRACK_LENGTH concode_elem_sep double TIME_DELTA concode_elem_sep String TIMESTEPS_KE... | void function ( ) { display = new PoleBalanceDisplay ( trackLength , new double [ ] { poleLength1 , poleLength2 } , maxTimesteps ) ; display . setVisible ( true ) ; } |
18,609 | receives a datagram packet from this socket . concode_field_sep DatagramSocket socket concode_field_sep int getLocalPort concode_elem_sep int getSoTimeout concode_elem_sep void setSoTimeout concode_elem_sep String toString concode_elem_sep void close concode_elem_sep void send concode_elem_sep IpAddress getLocalAddress | void function ( UdpPacket arg0 ) { DatagramPacket loc0 = arg0 . getDatagramPacket ( ) ; socket . receive ( loc0 ) ; arg0 . setDatagramPacket ( loc0 ) ; } |
18,610 | obtain the workspaceitem object which wraps the given item . this method queries the database directly to determine if this is the case rather than using the dspace api which is very slow . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isItemInWorkspace concode_elem_sep boolean isItemInWorkflow co... | WorkspaceItem function ( Context arg0 , Item arg1 ) { try { return WorkspaceItem . findByItem ( arg0 , arg1 ) ; } catch ( SQLException loc0 ) { throw new DSpaceSwordException ( loc0 ) ; } } |
18,611 | iterates over the children and children 's children to check if a figure is a direct child or indirect child of the given parent . concode_field_sep String TREE_NODE_POSITION concode_elem_sep String TREE_NODE_PARENT_URI concode_elem_sep String TREE_LAYOUT_ANNOTATION concode_field_sep int getTreeNodePosition concode_ele... | boolean function ( IFigure arg0 , IFigure arg1 ) { boolean loc0 = false ; for ( Object loc1 : arg0 . getChildren ( ) ) { if ( loc1 == arg1 ) { return true ; } if ( loc1 instanceof IFigure ) { loc0 = isChildFigure ( ( IFigure ) loc1 , arg1 ) ; if ( loc0 ) { break ; } } } return loc0 ; } |
18,612 | add a new child node to this node . 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 findAttribute concode_elem_sep String getName concode_elem_... | void function ( TreeNode arg0 ) { if ( children == null ) children = new ArrayList ( ) ; children . add ( arg0 ) ; } |
18,613 | set the additional html tag attributes . concode_field_sep String copyright concode_elem_sep long serialVersionUID concode_elem_sep PropertyChangeSupport changes_ concode_elem_sep Properties attributes_ concode_field_sep Properties getAttributes concode_elem_sep void addPropertyChangeListener concode_elem_sep void remo... | void function ( Properties arg0 ) { if ( arg0 == null ) throw new NullPointerException ( "srini_string" ) ; Properties loc0 = attributes_ ; attributes_ = arg0 ; if ( changes_ != null ) changes_ . firePropertyChange ( "srini_string" , loc0 , attributes_ ) ; } |
18,614 | attempt to convert a typed value to a char using the supplied type converter . concode_field_sep PlaceHolder placeHolder concode_field_sep int toInt concode_elem_sep T convertTypedValue concode_elem_sep double toDouble concode_elem_sep boolean toBoolean concode_elem_sep long toLong concode_elem_sep float toFloat concod... | char function ( TypeConverter arg0 , TypedValue arg1 ) { return ( Character ) arg0 . convertValue ( arg1 . getValue ( ) , arg1 . getTypeDescriptor ( ) , TypeDescriptor . valueOf ( Character . class ) ) ; } |
18,615 | analyzes the passed expression and tries to find the path to the backing field that is accessed . concode_field_sep String STRING_IDENTIFIER concode_elem_sep Hashtable4 _prototypes concode_elem_sep Reflector _reflector concode_elem_sep boolean _ignoreTransient concode_elem_sep Hashtable4 _integerConverters concode_elem... | Iterator4 < String > function ( Class < T > arg0 , Object arg1 ) { return backingFieldPath ( _reflector . forClass ( arg0 ) , arg1 ) ; } |
18,616 | write 8 bit integer to address . concode_field_sep MemoryInterface memIntf concode_field_sep void setByteValueOf concode_elem_sep void setIntValueOf concode_elem_sep long getLongValueOf concode_elem_sep short getShortValueOf concode_elem_sep void setInt64ValueOf concode_elem_sep int getInt32ValueOf concode_elem_sep voi... | void function ( long arg0 , byte arg1 ) { memIntf . setMemorySegment ( arg0 , new byte [ ] { arg1 } ) ; } |
18,617 | an action which sets the secondary progress value of view . warning : the created observable keeps a strong reference to view . unsubscribe to free this reference . concode_field_sep PlaceHolder placeHolder concode_field_sep Action1<? super Integer> incrementSecondaryProgressBy concode_elem_sep Action1<? super Integer>... | Action1 < ? super Integer > function ( @ NonNull final ProgressBar arg0 ) { return new Action1 < Integer > ( ) { @ Override public void call ( Integer arg1 ) { arg0 . setSecondaryProgress ( arg1 ) ; } } ; } |
18,618 | reset the list of beans concode_field_sep int IDLE concode_elem_sep int m_y concode_elem_sep int m_x concode_elem_sep int BEAN_EXECUTING concode_elem_sep Object m_bean concode_elem_sep Vector COMPONENTS concode_field_sep void paintLabels concode_elem_sep void setY concode_elem_sep void removeAllBeansFromContainer conco... | void function ( JComponent arg0 ) { removeAllBeansFromContainer ( arg0 ) ; COMPONENTS = new Vector ( ) ; } |
18,619 | gets selected time zone display name . concode_field_sep DateFormat selectedFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep DateFormat serverFormat concode_elem_sep int renderInterval concode_elem_sep ArrayList allTimeZoneList concode_elem_sep Hashtable checkboxStates concode_elem_sep TimeZone se... | String function ( ) { synchronized ( TimeZone . class ) { return displayNameTokenizer ( selectedTimeZone . getDisplayName ( ) ) ; } } |
18,620 | given an throwable and a native stacktrace returns an array of stacktraceelement containing class , method , file and linenumbers . concode_field_sep boolean use_addr2line concode_elem_sep boolean demangle concode_elem_sep boolean remove_interpreter concode_elem_sep BufferedWriter cppfiltOut concode_elem_sep Process ad... | StackTraceElement [ ] function ( Throwable arg0 , RawData arg1 , int arg2 ) { StackTraceElement [ ] loc0 = new StackTraceElement [ arg2 ] ; for ( int loc1 = 0 ; loc1 < arg2 ; loc1 ++ ) loc0 [ loc1 ] = lookup ( arg1 , loc1 ) ; if ( demangle && sanitize ) return sanitizeStack ( loc0 , arg0 ) ; else return loc0 ; } |
18,621 | getmemories returns the arraylist of this player 's memories concode_field_sep float misanthropy concode_elem_sep int life_points concode_elem_sep float optimism concode_elem_sep float PROB_MUTATION concode_elem_sep int total_life concode_elem_sep int memory_span concode_elem_sep ArrayList<Float> memories concode_elem_... | ArrayList < Float > function ( ) { return memories ; } |
18,622 | creates a new web d a v props with the primary key . does not add the web d a v props to the database . concode_field_sep WebDAVPropsPersistence _persistence concode_field_sep int countAll concode_elem_sep void cacheResult concode_elem_sep void cacheResult concode_elem_sep WebDAVProps removeByC_C concode_elem_sep List<... | WebDAVProps function ( long arg0 ) { return getPersistence ( ) . create ( arg0 ) ; } |
18,623 | make an instance of javafx.scene.effect.coloradjust based on the properties set on this builder . concode_field_sep double saturation concode_elem_sep javafx.scene.effect.Effect input concode_elem_sep double brightness concode_elem_sep int __set concode_elem_sep double contrast concode_elem_sep double hue concode_field... | javafx . scene . effect . ColorAdjust function ( ) { javafx . scene . effect . ColorAdjust loc0 = new javafx . scene . effect . ColorAdjust ( ) ; applyTo ( loc0 ) ; return loc0 ; } |
18,624 | find out if the log line is of the given level . levels are either info , warn or error concode_field_sep String user concode_elem_sep String level concode_elem_sep String action concode_elem_sep Date date concode_elem_sep String params concode_field_sep String getLevel concode_elem_sep boolean afterDate concode_elem_s... | boolean function ( String arg0 ) { if ( this . getLevel ( ) . equals ( arg0 ) ) { return true ; } return false ; } |
18,625 | sets the mvcc version of this release . concode_field_sep Release _release concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setBuildNumber concode_elem_sep boolean isEscapedModel concode_elem_sep jav... | void function ( long arg0 ) { _release . setMvccVersion ( arg0 ) ; } |
18,626 | sets the value of the span property . concode_field_sep String valign concode_elem_sep String language concode_elem_sep String title concode_elem_sep String dir concode_elem_sep String align concode_elem_sep List<String> clazzs concode_elem_sep String charoff concode_elem_sep String width concode_elem_sep String style ... | void function ( BigInteger arg0 ) { this . span = arg0 ; } |
18,627 | set the querylookupstrategy.key to be used . concode_field_sep RepositoryFactorySupport factory concode_elem_sep RepositoryMetadata repositoryMetadata concode_elem_sep ClassLoader classLoader concode_elem_sep EvaluationContextProvider evaluationContextProvider concode_elem_sep Class<?> repositoryBaseClass concode_elem_... | void function ( Key arg0 ) { this . queryLookupStrategyKey = arg0 ; } |
18,628 | returns a gdiobject from the handle table concode_field_sep Vector objectVector concode_elem_sep boolean bReading concode_elem_sep Vector records concode_elem_sep int numRecords concode_elem_sep int lastObjectIdx concode_elem_sep int vpW concode_elem_sep URL url concode_elem_sep int vpY concode_elem_sep int numObjects ... | GdiObject function ( int arg0 ) { return ( GdiObject ) objectVector . get ( arg0 ) ; } |
18,629 | returns the family name of this font , it may contain more than one . concode_field_sep String fontStretch concode_elem_sep float strikethroughPosition concode_elem_sep float overlinePosition concode_elem_sep String fontVariant concode_elem_sep float unitsPerEm concode_elem_sep String fontStyle concode_elem_sep float s... | String function ( ) { return familyName ; } |
18,630 | returns the numeric type used to index the numeric values concode_field_sep NumberFormat format concode_elem_sep Class<? extends Number> type concode_field_sep NumberFormat getNumberFormat concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void setType concode_elem_sep void setNumberFormat | Class < ? extends Number > function ( ) { return type ; } |
18,631 | prints a message at error priority . concode_field_sep int ERROR concode_elem_sep int VERBOSE concode_elem_sep int WARN concode_elem_sep int NONE concode_elem_sep int ASSERT concode_elem_sep int DEBUG concode_elem_sep LogNode mLogNode concode_elem_sep int INFO concode_field_sep void println concode_elem_sep void printl... | void function ( String arg0 , String arg1 ) { e ( arg0 , arg1 , null ) ; } |
18,632 | the default behavior of this method is to return startasync runnable on the wrapped request object . concode_field_sep ServletRequest request concode_field_sep void setRequest concode_elem_sep int getLocalPort concode_elem_sep String getRemoteAddr concode_elem_sep ServletContext getServletContext concode_elem_sep Servl... | AsyncContext function ( ServletRequest arg0 , ServletResponse arg1 ) { return request . startAsync ( arg0 , arg1 ) ; } |
18,633 | return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String labelName concode_field_sep org.apache.axis.encoding.Serializer getSerializer concode_elem_sep org.apache.a... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
18,634 | . returns global build statistics and load information . concode_field_sep RestBasedJenkinsCIConnector connector concode_elem_sep String[] defaultGlobalRoles concode_elem_sep Log log concode_field_sep List<String> getAllJobNames concode_elem_sep String getJobName concode_elem_sep String getJobName concode_elem_sep Stat... | Statistic [ ] function ( Map < String , String > arg0 , String arg1 ) { List < Statistic > loc0 = connector . getOverallLoad ( arg1 ) ; return loc0 . toArray ( new Statistic [ loc0 . size ( ) ] ) ; } |
18,635 | method to return a singleton instance of this class concode_field_sep String DEFAULT_COLOR concode_elem_sep Vector colorList concode_elem_sep boolean stamp concode_elem_sep String[] ALL_COLORS concode_elem_sep Log log concode_elem_sep ChatState singleton concode_elem_sep Random generator concode_elem_sep Vector userLis... | ChatState function ( ) { if ( singleton == null ) { singleton = new ChatState ( ) ; } return ( singleton ) ; } |
18,636 | create group . concode_field_sep PlaceHolder placeHolder concode_field_sep Composite startNewGridLayout concode_elem_sep Composite startNewGridLayout concode_elem_sep void createHorizontalLine concode_elem_sep Composite startNewDimensionnedGridLayout concode_elem_sep Composite startNewDimensionnedGridLayout | Group function ( Composite arg0 , int arg1 , String arg2 ) { return createGroup ( arg0 , arg1 , arg2 , 0 ) ; } |
18,637 | the value of the filter . concode_field_sep String value concode_elem_sep String key concode_field_sep String getKey concode_elem_sep String getValue concode_elem_sep DocumentFilter withValue concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep DocumentFilter clone concode_elem_sep String toSt... | void function ( String arg0 ) { this . value = arg0 ; } |
18,638 | gets the value of the intgpd property . concode_field_sep TrgOpsType trgOps concode_elem_sep OptFieldsType optFields concode_elem_sep String name concode_elem_sep String buffered concode_elem_sep String datSet concode_elem_sep String rptID concode_elem_sep Short intgPd concode_elem_sep RptEnabledType rptEnabled concode... | Short function ( ) { return intgPd ; } |
18,639 | access to the soql query api . concode_field_sep String recentItemsUrl concode_elem_sep String chatterUsersUrl concode_elem_sep String partnerUrl concode_elem_sep String chatterFeedsUrl concode_elem_sep String sobjectUrl concode_elem_sep String chatterFeedItemsUrl concode_elem_sep String userProfileUrl concode_elem_sep... | String function ( ) { return this . queryUrl ; } |
18,640 | decrypt the secret using the cipherkey . concode_field_sep String password concode_elem_sep RuntimePermission decodePermission concode_elem_sep ObjectName serviceName concode_field_sep Object run concode_elem_sep char[] decode | byte [ ] function ( String arg0 ) { SecurityManager loc0 = System . getSecurityManager ( ) ; if ( loc0 != null ) loc0 . checkPermission ( decodePermission ) ; MBeanServer loc1 = MBeanServerLocator . locateJBoss ( ) ; return ( byte [ ] ) loc1 . invoke ( serviceName , "srini_string" , new Object [ ] { arg0 } , new String... |
18,641 | create a new bank account and store it in the bank . return a reference to the account . concode_field_sep java.util.Hashtable _accounts concode_field_sep Account get_account | Account function ( String arg0 ) { Account loc0 = new Account ( arg0 ) ; _accounts . put ( arg0 , loc0 ) ; return loc0 ; } |
18,642 | returns a range of all the browser trackers . 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 to com.liferay.portal.kernel.dao.orm.queryutil... | java . util . List < com . liferay . portal . kernel . model . BrowserTracker > function ( int arg0 , int arg1 ) { return getService ( ) . getBrowserTrackers ( arg0 , arg1 ) ; } |
18,643 | listen on this socket for incoming connections . concode_field_sep VMChannel.State channelFd concode_elem_sep int CP_IP_TTL concode_elem_sep State nfd concode_field_sep int getNativeFD concode_elem_sep void join6 concode_elem_sep Object getOption concode_elem_sep int getOption concode_elem_sep void leaveGroup6 concode_... | void function ( int arg0 ) { listen ( nfd . getNativeFD ( ) , arg0 ) ; } |
18,644 | create an instance of jaxbelement concode_field_sep QName _StoreLocations_QNAME concode_elem_sep QName _EsiGetStoreLocationsResponse_QNAME concode_elem_sep QName _EsiGetStoreLocationsRequest_QNAME concode_field_sep ESIGetStoreLocationsRequestType createESIGetStoreLocationsRequestType concode_elem_sep JAXBElement<StoreL... | JAXBElement < ESIGetStoreLocationsRequestType > function ( ESIGetStoreLocationsRequestType arg0 ) { return new JAXBElement < ESIGetStoreLocationsRequestType > ( _EsiGetStoreLocationsRequest_QNAME , ESIGetStoreLocationsRequestType . class , null , arg0 ) ; } |
18,645 | reinjecting into a method . concode_field_sep PicoContainer parent concode_elem_sep ComponentMonitor monitor concode_elem_sep Properties NO_PROPERTIES concode_elem_sep NullLifecycleStrategy NO_LIFECYCLE concode_field_sep Method toMethod | Object function ( Class < ? > arg0 , InjectionFactory arg1 ) { Object loc0 = reinject ( arg0 , arg0 , parent . getComponent ( arg0 ) , NO_PROPERTIES , arg1 ) ; return loc0 ; } |
18,646 | sets the log writer for this datasource object to the given java.io.printwriter object . the log writer is a character output stream to which all logging and tracing messages for this data source will be printed . this includes messages printed by the methods of this object , messages printed by methods of other object... | void function ( java . io . PrintWriter arg0 ) { logWriter = arg0 ; } |
18,647 | restriction of integer to positive values . please just treat this as a number , actual value returned may be biginteger or long or integer . concode_field_sep PlaceHolder placeHolder concode_field_sep String encode concode_elem_sep QName getTarget concode_elem_sep Class getType concode_elem_sep int getExecutionMode | Object function ( InstanceComponent arg0 , Object arg1 ) { Number loc0 = ( Number ) arg1 ; if ( loc0 . longValue ( ) < 1 ) { throw new IllegalArgumentException ( "srini_string" + loc0 + "srini_string" ) ; } return BigInteger . valueOf ( loc0 . longValue ( ) ) ; } |
18,648 | returns null until #executebuild iterable , boolean is invoked . concode_field_sep ArtifactCache artifactCache concode_elem_sep ExecutionContext executionContext concode_elem_sep BuildEngine buildEngine concode_elem_sep ActionGraph actionGraph concode_elem_sep Clock clock concode_elem_sep BuildContext buildContext conc... | BuildContext function ( ) { return buildContext ; } |
18,649 | returns if the security option ahould be enabled on the login dialog . concode_field_sep int m_invalidLoginCount concode_elem_sep int m_maxBadAttempts concode_elem_sep int m_disableMillis concode_elem_sep int m_disableMinutes concode_elem_sep int MAX_BAD_ATTEMPTS_DEFAULT concode_elem_sep long m_disableTimeStart concode... | boolean function ( ) { return m_enableSecurity ; } |
18,650 | generates a new synthetic id for an action . concode_field_sep Map actionRegistry concode_elem_sep int lastGeneratedID concode_field_sep AbstractAction get concode_elem_sep AbstractAction normalize concode_elem_sep void clear concode_elem_sep AbstractAction put | String function ( AbstractAction arg0 ) { this . lastGeneratedID ++ ; String loc0 = arg0 . getIDPrefix ( ) ; if ( loc0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return loc0 + this . lastGeneratedID ; } |
18,651 | gets the id of the owner of the vm . concode_field_sep long currentAllocatedSize concode_elem_sep List<Double> currentAllocatedMips concode_elem_sep double mips concode_elem_sep int numberOfPes concode_elem_sep int userId concode_elem_sep boolean inMigration concode_elem_sep CloudletScheduler cloudletScheduler concode_... | int function ( ) { return userId ; } |
18,652 | determinant concode_field_sep int pivsign concode_elem_sep double[][] LU concode_elem_sep long serialVersionUID concode_elem_sep int[] piv concode_elem_sep int m concode_elem_sep int n concode_field_sep int[] getPivot concode_elem_sep Matrix getL concode_elem_sep Matrix solve concode_elem_sep double[] getDoublePivot co... | double function ( ) { if ( m != n ) { throw new IllegalArgumentException ( "srini_string" ) ; } double loc0 = pivsign ; for ( int loc1 = 0 ; loc1 < n ; loc1 ++ ) { loc0 *= LU [ loc1 ] [ loc1 ] ; } return loc0 ; } |
18,653 | get a message given the message key . an assertion will be raised if the message key does not exist in the resource bundle . concode_field_sep UResourceBundle resources concode_elem_sep String BUNDLE_NAME concode_field_sep UResourceBundle getUResourceBundle concode_elem_sep ResourceBundle getResourceBundle | String function ( String arg0 ) { if ( arg0 == null ) return null ; try { return resources . getString ( arg0 ) ; } catch ( MissingResourceException loc0 ) { assert false : arg0 + "srini_string" ; return arg0 ; } } |
18,654 | set the messageconverter to use or null if the out-of-the-boxconverter should be used . concode_field_sep DestinationResolver destinationResolver concode_elem_sep MessageConverter messageConverter concode_elem_sep JtaTransactionManager transactionManager concode_elem_sep JmsProperties jmsProperties concode_field_sep vo... | void function ( MessageConverter arg0 ) { this . messageConverter = arg0 ; } |
18,655 | removes the `` file : / / '' prefix from the given uri string , if applicable . if the given uri string does n't have a `` file : / / '' prefix , it is returned unchanged . concode_field_sep String _DATA concode_elem_sep String LOG_TAG concode_field_sep String getRealPathFromURI_API11to18 concode_elem_sep String getMim... | String function ( String arg0 ) { if ( arg0 . startsWith ( "srini_string" ) ) { arg0 = arg0 . substring ( 7 ) ; } return arg0 ; } |
18,656 | removes the specified index file . this results in the index file being deleted from the file system . the deleted index is finally removed from the index cache . concode_field_sep HashMap currentIndexes concode_elem_sep boolean doCache concode_field_sep Index getNewIndex concode_elem_sep Index getNewIndex concode_elem... | void function ( Index arg0 ) { this . disposeIndex ( arg0 . getIndexFile ( ) . getName ( ) ) ; } |
18,657 | loads the data from a query and returns it as a treturn . concode_field_sep Class<TModel> modelClass concode_elem_sep InstanceAdapter instanceAdapter concode_elem_sep DatabaseDefinition databaseDefinition concode_field_sep InstanceAdapter getInstanceAdapter concode_elem_sep DatabaseDefinition getDatabaseDefinition conc... | TReturn function ( @ NonNull DatabaseWrapper arg0 , String arg1 ) { return load ( arg0 , arg1 , null ) ; } |
18,658 | returns the homematic valueitem . concode_field_sep Object newValue concode_elem_sep Item item concode_elem_sep HomematicBindingConfig bindingConfig concode_elem_sep HmValueItem hmValueItem concode_elem_sep Type type concode_field_sep HomematicBindingConfig getBindingConfig concode_elem_sep double getDelay concode_elem... | HmValueItem function ( ) { return hmValueItem ; } |
18,659 | returns true if this connection is alive . concode_field_sep int httpMinorVersion concode_elem_sep byte[] HTTP_11 concode_elem_sep Route route concode_elem_sep long idleStartTimeNs concode_elem_sep InputStream in concode_elem_sep SpdyConnection spdyConnection concode_elem_sep Socket socket concode_elem_sep byte[] SPDY3... | boolean function ( ) { return ! socket . isClosed ( ) && ! socket . isInputShutdown ( ) && ! socket . isOutputShutdown ( ) ; } |
18,660 | return a constant value as a string . concode_field_sep Map<String,Object> fieldCache concode_elem_sep String className concode_field_sep String toCodeForProperty concode_elem_sep Set<Object> getValues concode_elem_sep String toCode concode_elem_sep Number asNumber concode_elem_sep Set<String> getNames concode_elem_sep... | String function ( String arg0 ) { return asObject ( arg0 ) . toString ( ) ; } |
18,661 | last cluster state observer by this observer . note that this may not be the current one concode_field_sep boolean timedOut concode_elem_sep ChangePredicate changePredicate concode_elem_sep ChangePredicate MATCH_ALL_CHANGES_PREDICATE concode_elem_sep Logger logger concode_elem_sep Long startTimeNS concode_elem_sep List... | ClusterState function ( ) { ObservedState loc0 = lastObservedState . get ( ) ; assert loc0 != null ; return loc0 . clusterState ; } |
18,662 | returns the since date to use to filter the messages received during that time . in other words , only the messages received since the datetime specified will be included in the history . concode_field_sep String password concode_elem_sep int seconds concode_elem_sep int maxChars concode_elem_sep History history concod... | Date function ( ) { return since ; } |
18,663 | returns the workflow instance id of this workflow instance link . concode_field_sep WorkflowInstanceLink _workflowInstanceLink concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_... | long function ( ) { return _workflowInstanceLink . getWorkflowInstanceId ( ) ; } |
18,664 | measures the circumference of earth in 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 toMeters concode_elem_sep double fromMeters concode_elem_sep double getEarthRad... | double function ( ) { return GeoUtils . EARTH_EQUATOR / meters ; } |
18,665 | return the script 's name concode_field_sep int offset concode_elem_sep int MAX_NAME_LENGTH concode_elem_sep String sourceName concode_field_sep String computeSourceName concode_elem_sep int getOffset concode_elem_sep RuntimeException createError | String function ( ) { return sourceName ; } |
18,666 | return type metadata object concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.String rsid concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String site_title concode_elem_sep com.omniture.www.Ui_element[] ui_visibil... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
18,667 | gets the initialization vector . concode_field_sep SymmetricCipher embeddedCipher concode_elem_sep byte[] iv concode_elem_sep int blockSize concode_field_sep void init concode_elem_sep void restore concode_elem_sep void save concode_elem_sep void updateAAD concode_elem_sep SymmetricCipher getEmbeddedCipher concode_elem... | byte [ ] function ( ) { return iv ; } |
18,668 | get the size of the list . concode_field_sep int[] data concode_elem_sep int size concode_elem_sep int hash concode_field_sep void add concode_elem_sep int hashCode concode_elem_sep int get concode_elem_sep boolean equals concode_elem_sep void toArray concode_elem_sep void removeRange concode_elem_sep String toString c... | int function ( ) { return size ; } |
18,669 | caller identity accessor . used by a server stub to access the caller identity of the received message . concode_field_sep java.lang.Object server concode_elem_sep boolean stopped concode_elem_sep boolean clientT concode_elem_sep com.ericsson.otp.erlang.OtpErlangRef send_ref concode_elem_sep java.lang.String cookie con... | com . ericsson . otp . erlang . OtpErlangPid function ( ) { return clientP ; } |
18,670 | create an instance of s concode_field_sep PlaceHolder placeHolder concode_field_sep Corpus createCorpus concode_elem_sep W createW concode_elem_sep P createP concode_elem_sep Body createBody | S function ( ) { return new S ( ) ; } |
18,671 | gives all the handrelations . concode_field_sep BufferedReader keyboard concode_elem_sep String DEFAULT concode_elem_sep String CUSTOM concode_elem_sep Deck deck concode_elem_sep HandGauntlet tester concode_elem_sep Hand hand concode_elem_sep String QUIT concode_elem_sep HandRelations relations concode_field_sep void m... | HandRelations function ( ) { return relations ; } |
18,672 | de-reference the output eventadapter service dependency . concode_field_sep ServiceRegistration serviceRegistration concode_elem_sep Log log concode_field_sep void activate concode_elem_sep void setOutputEventAdapterService concode_elem_sep void deactivate | void function ( OutputEventAdapterService arg0 ) { DeviceTypeManagementDataHolder . getInstance ( ) . setOutputEventAdapterService ( null ) ; } |
18,673 | gets the input format . concode_field_sep long lastAccessTime concode_elem_sep String databaseName concode_elem_sep long createTime concode_elem_sep List<String> values concode_elem_sep String location concode_elem_sep String inputFormat concode_elem_sep String outputFormat concode_elem_sep String serdeInfo concode_ele... | String function ( ) { return this . inputFormat ; } |
18,674 | no names in arcgis server database concode_field_sep PlaceHolder placeHolder concode_field_sep String getJsonFromArcGisLayer concode_elem_sep ContactList findContactsBuildingAndRoom concode_elem_sep ContactList findContacts concode_elem_sep ContactList findRoomOnArcGisServer | ContactList function ( String arg0 ) { return null ; } |
18,675 | sets the regex used to match the database name . concode_field_sep Pattern pattern4 concode_elem_sep String toRegex4 concode_elem_sep String fromRegex4 concode_elem_sep Pattern pattern1 concode_elem_sep String fromRegex3 concode_elem_sep String fromRegex2 concode_elem_sep Pattern pattern2 concode_elem_sep String fromRe... | void function ( String arg0 ) { this . fromRegex2 = arg0 ; } |
18,676 | rewrites the subop of distinct concode_field_sep OpSequence result concode_elem_sep SecNode graphIRI concode_elem_sep Logger LOG concode_elem_sep SecurityEvaluator securityEvaluator concode_elem_sep boolean silentFail concode_field_sep Op rewriteOp2 concode_elem_sep Op rewriteOp1 concode_elem_sep Triple registerBGPTrip... | void function ( final OpDistinct arg0 ) { addOp ( new OpDistinct ( rewriteOp1 ( arg0 ) ) ) ; } |
18,677 | this method resets the outgoing events . concode_field_sep boolean event1 concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep int nextStateIndex concode_elem_sep State[] stateVector concode_field_sep void enterSequence_main_region_B_subregion1_default concode_elem_sep SCInterface getSCInterface concode_elem_s... | void function ( ) { } |
18,678 | add a change in the modifiers . concode_field_sep String modifiersChange_ concode_elem_sep String inheritedFrom_ concode_elem_sep String newExceptions_ concode_elem_sep String documentationChange_ concode_elem_sep String oldExceptions_ concode_elem_sep String newType_ concode_elem_sep String oldType_ concode_elem_sep S... | void function ( String arg0 ) { if ( arg0 != null ) { if ( modifiersChange_ == null ) modifiersChange_ = arg0 ; else modifiersChange_ += "srini_string" + arg0 ; } } |
18,679 | doc bqian comment method `` setdestinationvalue '' . concode_field_sep Button browseArchivesButton concode_elem_sep String lastPath concode_elem_sep String previouslyBrowsedArchive concode_elem_sep Combo archivePathField concode_elem_sep Composite workArea concode_elem_sep Button itemFromDirectoryRadio concode_elem_sep... | void function ( String arg0 ) { if ( isArchiveTypeSelected ( ) ) { archivePathField . setText ( arg0 ) ; } else { directoryPathField . setText ( arg0 ) ; } } |
18,680 | unsupported . concode_field_sep BufferedReader reader concode_elem_sep String segment concode_elem_sep String DASH_COMMENT concode_elem_sep String SLASH_COMMENT concode_elem_sep String SEMI concode_field_sep Object next concode_elem_sep void closeReader concode_elem_sep boolean hasNext concode_elem_sep int nextInt conc... | void function ( Object arg0 ) { throw new UnsupportedOperationException ( ) ; } |
18,681 | save data base on key given , and the value is on long format concode_field_sep String USER_TOKEN concode_elem_sep String DATA_VERSION concode_elem_sep String AGENT_DETAIL concode_elem_sep String COMPANY_DATA concode_elem_sep String ANNOUNCEMENT_DATA concode_elem_sep String VERSION_CODE concode_elem_sep String APARTMEN... | void function ( Context arg0 , String arg1 , long arg2 ) { sharedPreferences ( arg0 ) . edit ( ) . putLong ( arg1 , arg2 ) . commit ( ) ; } |
18,682 | information about the role . concode_field_sep Role role concode_field_sep int hashCode concode_elem_sep void setRole concode_elem_sep boolean equals concode_elem_sep Role getRole concode_elem_sep GetRoleResult clone concode_elem_sep String toString | GetRoleResult function ( Role arg0 ) { setRole ( arg0 ) ; return this ; } |
18,683 | convenience method for finding the most far right relative index . concode_field_sep Map<CliqueEqualityWrapper,Clique> interner concode_elem_sep Clique c concode_elem_sep long serialVersionUID concode_elem_sep int hashCode concode_elem_sep int[] relativeIndices concode_field_sep Clique intern concode_elem_sep Object re... | int function ( ) { return relativeIndices [ relativeIndices . length - 1 ] ; } |
18,684 | returns the name of the customer involved in this transaction . concode_field_sep double amount concode_elem_sep Date when concode_elem_sep String who concode_field_sep double amount concode_elem_sep int compare concode_elem_sep int compare concode_elem_sep int compare concode_elem_sep int hashCode concode_elem_sep boo... | String function ( ) { return who ; } |
18,685 | the information of the peer vpc . concode_field_sep VpcPeeringConnectionVpcInfo requesterVpcInfo concode_elem_sep VpcPeeringConnectionVpcInfo accepterVpcInfo concode_elem_sep java.util.Date expirationTime concode_elem_sep String vpcPeeringConnectionId concode_elem_sep VpcPeeringConnectionStateReason status concode_elem... | VpcPeeringConnectionVpcInfo function ( ) { return accepterVpcInfo ; } |
18,686 | reads the setting from the options hash . if it is nil or undefined , returns the default value given . if not , ensures it is a rubyclass instance and shares the same allocator as the default value i.e. for the basic types which have their specific allocators , this ensures the passed value is a subclass of them . con... | RubyClass function ( String arg0 , RubyClass arg1 ) { IRubyObject loc0 = get ( arg0 ) ; if ( loc0 == null || loc0 . isNil ( ) ) return arg1 ; return ( RubyClass ) loc0 ; } |
18,687 | associates a search routing value to the alias concode_field_sep String filter concode_elem_sep String searchRouting concode_elem_sep String name concode_elem_sep String indexRouting concode_field_sep String filter concode_elem_sep Alias filter concode_elem_sep Alias filter concode_elem_sep Alias filter concode_elem_se... | Alias function ( String arg0 ) { this . searchRouting = arg0 ; return this ; } |
18,688 | create a new reversenested aggregation with the given name . concode_field_sep PlaceHolder placeHolder concode_field_sep GeoBoundsAggregationBuilder geoBounds concode_elem_sep DateRangeAggregationBuilder dateRange concode_elem_sep DateHistogramAggregationBuilder dateHistogram concode_elem_sep RangeAggregationBuilder ra... | ReverseNestedAggregationBuilder function ( String arg0 ) { return new ReverseNestedAggregationBuilder ( arg0 ) ; } |
18,689 | gets the value type of the getter . concode_field_sep Method getter concode_elem_sep String fieldName concode_elem_sep Field field concode_elem_sep Class<?> setterType concode_elem_sep Class<?> getterType concode_elem_sep Method setter concode_field_sep Method getGetter concode_elem_sep Collection<BeanProperty> beanPro... | Class < ? > function ( ) { return getterType ; } |
18,690 | the file after it has been compressed concode_field_sep String gpsDateStamp concode_elem_sep String gpsLatitudeRef concode_elem_sep String gpsLongitude concode_elem_sep String gpsLatitude concode_elem_sep String whiteBalance concode_elem_sep String orientation concode_elem_sep String model concode_elem_sep String focal... | void function ( String arg0 ) { this . outFile = new ExifInterface ( arg0 ) ; } |
18,691 | the list of tags for the ec2 security group . concode_field_sep String eC2SecurityGroupOwnerId concode_elem_sep String eC2SecurityGroupName concode_elem_sep String status concode_elem_sep com.amazonaws.internal.ListWithAutoConstructFlag<Tag> tags concode_field_sep EC2SecurityGroup withStatus concode_elem_sep void setEC... | void function ( java . util . Collection < Tag > arg0 ) { if ( arg0 == null ) { this . tags = null ; return ; } com . amazonaws . internal . ListWithAutoConstructFlag < Tag > loc0 = new com . amazonaws . internal . ListWithAutoConstructFlag < Tag > ( arg0 . size ( ) ) ; loc0 . addAll ( arg0 ) ; this . tags = loc0 ; } |
18,692 | formats a price for display . concode_field_sep PlaceHolder placeHolder concode_field_sep String formatAddress concode_elem_sep String formatLoyaltyWalletObject concode_elem_sep String formatPaymentDescriptions | String function ( Context arg0 , long arg1 ) { return arg0 . getString ( R . string . price_format , arg1 / 1000000d ) ; } |
18,693 | during a stack update , use the existing parameter value that the stack is using for a given parameter key . if you specify true , do not specify a parameter value . concode_field_sep Boolean usePreviousValue concode_elem_sep String parameterKey concode_elem_sep String parameterValue concode_field_sep String getParamet... | Parameter function ( Boolean arg0 ) { setUsePreviousValue ( arg0 ) ; return this ; } |
18,694 | create an instance of content concode_field_sep QName _ResourceReference_QNAME concode_elem_sep QName _Resource_QNAME concode_field_sep Example createExample concode_elem_sep JAXBElement<ResourceType> createResource concode_elem_sep Navigation createNavigation concode_elem_sep Node createNode concode_elem_sep JspxPages... | Content function ( ) { return new Content ( ) ; } |
18,695 | removes pointer from the touch screen at it 's current position . this method should only be called after pointerdown has been called . concode_field_sep boolean isDown concode_elem_sep List<Map<String,Object>> actionChain concode_field_sep void addAction concode_elem_sep void addAction concode_elem_sep TouchActionBuil... | TouchActionBuilder function ( ) { Preconditions . checkState ( isDown ) ; addAction ( TouchActionName . POINTER_UP ) ; return this ; } |
18,696 | when converting between string chars and bytes , there 's an implied encoding to be used , dependent on the context and platform . if none is specified , then string byte will use the platform 's default encoding . this method is for when encoding is not relevant , when the string simply holds byte values in each char ... | String function ( byte [ ] arg0 ) { final int loc0 = arg0 . length ; StringBuilder loc1 = new StringBuilder ( loc0 ) ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { int loc3 = ( ( int ) arg0 [ loc2 ] ) & 0xFF ; loc1 . append ( ( char ) loc3 ) ; } return loc1 . toString ( ) ; } |
18,697 | create a new histogram aggregation with the given name . concode_field_sep PlaceHolder placeHolder concode_field_sep GeoBoundsBuilder geoBounds concode_elem_sep DateRangeBuilder dateRange concode_elem_sep DateHistogramBuilder dateHistogram concode_elem_sep RangeBuilder range concode_elem_sep SumBuilder sum concode_elem... | HistogramBuilder function ( String arg0 ) { return new HistogramBuilder ( arg0 ) ; } |
18,698 | returns the number of elements added to the array . concode_field_sep int size concode_elem_sep int[] array concode_field_sep void add concode_elem_sep void set concode_elem_sep int[] trim concode_elem_sep int get | int function ( ) { return size ; } |
18,699 | get the log writer for this managedconnectionfactory instance . concode_field_sep Logger log concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep ManagedConnection createManagedConne... | PrintWriter function ( ) { log . finest ( "srini_string" ) ; return logwriter ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.