idx int64 0 25k | question stringlengths 72 5.69k | target stringlengths 21 481 |
|---|---|---|
24,000 | this method was generated by mybatis generator . this method returns the value of the database column actpdn.prdcde concode_field_sep String recsts concode_elem_sep String orgidt concode_elem_sep String prdcde concode_elem_sep Integer pdnseq concode_elem_sep String pdnyer concode_field_sep Integer getPdnseq concode_ele... | String function ( ) { return prdcde ; } |
24,001 | temporary hack . this id should stick with the table column . here , it will change based on user-specified column label . the int has is also being truncated into a short . concode_field_sep int ODBC_SM_OPTIONS concode_elem_sep int ODBC_SEVERITY_DEBUG concode_elem_sep int ODBC_AUTH_REQ_OK concode_elem_sep int ODBC_SEV... | short function ( int arg0 , ResultMetaData arg1 ) { if ( ! arg1 . isTableColumn ( arg0 ) ) { return 0 ; } short loc0 = ( short ) arg1 . getGeneratedColumnNames ( ) [ arg0 ] . loc0 ( ) ; if ( loc0 < 0 ) { loc0 *= - 1 ; } return loc0 ; } |
24,002 | sets the socket factory used to secure https connections . if unset , the httpsurlconnection #getdefaultsslsocketfactory system-wide default ssl socket factory will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep ConnectionPool connectionPo... | OkHttpClient function ( SSLSocketFactory arg0 ) { this . sslSocketFactory = arg0 ; return this ; } |
24,003 | sets pin state for the input path . concode_field_sep PlaceHolder placeHolder concode_field_sep void setTtl concode_elem_sep String convertMsToDate | void function ( FileSystem arg0 , AlluxioURI arg1 , boolean arg2 ) { try { SetAttributeOptions loc0 = SetAttributeOptions . defaults ( ) . setPinned ( arg2 ) ; arg0 . setAttribute ( arg1 , loc0 ) ; } catch ( AlluxioException loc0 ) { throw new IOException ( loc0 . getMessage ( ) ) ; } } |
24,004 | transform a list of userentity into a collection of user . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | List < User > function ( Collection < UserEntity > arg0 ) { List < User > loc0 = new ArrayList < > ( 20 ) ; User loc1 ; for ( UserEntity loc2 : arg0 ) { loc1 = transform ( loc2 ) ; if ( loc1 != null ) { loc0 . add ( loc1 ) ; } } return loc0 ; } |
24,005 | creates the key for given s3 bucket and key . returns the h2o key , or null if the key can not be created . concode_field_sep String S3_SOCKET_TIMEOUT_PROP concode_elem_sep String S3_MAX_ERROR_RETRY_PROP concode_elem_sep String S3_MAX_HTTP_CONNECTIONS_PROP concode_elem_sep Object _lock concode_elem_sep int KEY_PREFIX_L... | Key function ( String arg0 , String arg1 ) { Key loc0 = encodeKeyImpl ( arg0 , arg1 ) ; assert checkBijection ( loc0 , arg0 , arg1 ) ; return loc0 ; } |
24,006 | print a warning with line information concode_field_sep StdOutWriter out concode_elem_sep int warnings concode_elem_sep String NL concode_elem_sep int errors concode_field_sep void debug concode_elem_sep void checkErrors concode_elem_sep void err concode_elem_sep String getLine concode_elem_sep void setGUIMode concode_... | void function ( ErrorMessages arg0 , int arg1 ) { warnings ++ ; String loc0 = NL + "srini_string" ; if ( arg1 > 0 ) loc0 = loc0 + "srini_string" + ( arg1 + 1 ) ; err ( loc0 + "srini_string" + ErrorMessages . get ( arg0 ) ) ; } |
24,007 | transfers an item from one container to another . concode_field_sep List<ContainerListener> listeners concode_elem_sep boolean firingEvents concode_elem_sep Type type concode_elem_sep Item[] items concode_elem_sep int capacity concode_field_sep Collection<ContainerListener> getListeners concode_elem_sep void removeAllL... | boolean function ( Container arg0 , Container arg1 , int arg2 , int arg3 ) { final Item loc0 = arg0 . get ( arg2 ) ; if ( loc0 == null || loc0 . getId ( ) != arg3 ) { return false ; } if ( arg1 . add ( loc0 ) ) { arg0 . set ( arg2 , null ) ; return true ; } else { return false ; } } |
24,008 | loads a comma-separated list of strings from properties . commas may be quoted if needed , e.g. : property1 = value1 , value2 , `` a quoted value '' , ` another quoted value ' getstringarray props , `` property1 '' should return the same thing as new string `` value1 '' , `` value2 '' , `` a quoted value '' , `` anothe... | String [ ] function ( Properties arg0 , String arg1 ) { String [ ] loc0 = MetaClass . cast ( arg0 . getProperty ( arg1 ) , String [ ] . class ) ; if ( loc0 == null ) { loc0 = StringUtils . EMPTY_STRING_ARRAY ; } return loc0 ; } |
24,009 | implement the parcelable interface @hide concode_field_sep long online_time concode_elem_sep Creator<PPPOEInfo> CREATOR concode_elem_sep Status status concode_field_sep PPPOEInfo[] newArray concode_elem_sep String toString concode_elem_sep PPPOEInfo createFromParcel concode_elem_sep void writeToParcel | int function ( ) { return 0 ; } |
24,010 | return the integer code that identifies this state . concode_field_sep int baseCode concode_elem_sep int m_code concode_elem_sep String stateNames[] concode_field_sep String getName concode_elem_sep String getName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String legalRange concode_e... | int function ( ) { return ( m_code ) ; } |
24,011 | converts the specified ibm i data type to a java object . concode_field_sep short MAX_VALUE concode_elem_sep int SIZE concode_elem_sep short MIN_VALUE concode_elem_sep short DEFAULT_VALUE concode_elem_sep long serialVersionUID concode_field_sep int getByteLength concode_elem_sep byte[] toBytes concode_elem_sep byte[] t... | Object function ( byte [ ] arg0 ) { return new Short ( toShort ( arg0 , 0 ) ) ; } |
24,012 | returns a fetch task to be carried out . concode_field_sep int spiderTasksDone concode_elem_sep Map blocked concode_elem_sep Set assignedSpiderTasks concode_elem_sep Set assignedThinkerTasks concode_elem_sep List thinkerTasks concode_elem_sep int blockedCount concode_elem_sep int thinkerTasksDone concode_elem_sep List ... | WorkerTask function ( ) { if ( fetchTasks . size ( ) > 0 ) { WorkerTask loc0 = ( WorkerTask ) fetchTasks . remove ( 0 ) ; assignedSpiderTasks . add ( loc0 ) ; return loc0 ; } if ( allTasksDone ( ) ) { throw new SpideringDoneException ( ) ; } else { throw new NoSuitableItemFoundException ( ) ; } } |
24,013 | transaction commit callback . concode_field_sep int txRollbacks concode_elem_sep int txCommits concode_elem_sep long commitTime concode_elem_sep long serialVersionUID concode_elem_sep long rollbackTime concode_field_sep int txRollbacks concode_elem_sep void writeExternal concode_elem_sep long commitTime concode_elem_se... | void function ( ) { commitTime = U . currentTimeMillis ( ) ; txCommits ++ ; } |
24,014 | this method was generated by mybatis generator . this method sets the value of the database column ptenumain.enuname concode_field_sep String valuetype concode_elem_sep String enutype concode_elem_sep String enudesc concode_elem_sep String enuname concode_field_sep String getEnudesc concode_elem_sep void setEnudesc con... | void function ( String arg0 ) { this . enuname = arg0 ; } |
24,015 | get the list of mdpatterns contained in the mdsequences . concode_field_sep int sequenceNumber concode_elem_sep SequenceDatabase sequenceDatabase concode_elem_sep MDPatternsDatabase patternDatabase concode_elem_sep Set<ItemSimple> itemIDs concode_elem_sep List<MDSequence> sequences concode_field_sep Set<ItemSimple> get... | MDPatternsDatabase function ( ) { return patternDatabase ; } |
24,016 | return type metadata object concode_field_sep java.lang.Object __equalsCalc concode_elem_sep org.talend.sugarws.Document_revision document_revision concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.talend.sugarws.Error_value error concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_field_s... | org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; } |
24,017 | maximum number of connections allowed from a single ip address in the defined rateinterval . setting a value of 0 allows an unlimited connection rate ; otherwise , set a value between 1 and 100000 . concode_field_sep int rateInterval concode_elem_sep int minConnections concode_elem_sep int maxConnections concode_elem_s... | Builder function ( int arg0 ) { this . maxConnectionRate = arg0 ; return this ; } |
24,018 | interface testlistener for junit < = 3.4 . a test failed . concode_field_sep BufferedWriter output concode_elem_sep String systemError concode_elem_sep NumberFormat numberFormat concode_elem_sep BufferedWriter resultWriter concode_elem_sep StringWriter results concode_elem_sep String systemOutput concode_elem_sep doubl... | void function ( Test arg0 , Throwable arg1 ) { formatError ( "srini_string" , arg0 , arg1 ) ; } |
24,019 | returns the ngay of this phanphoi . concode_field_sep Phanphoi _phanphoi concode_field_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCachedModel concode_elem_sep com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge concode_elem_sep int getId concode_e... | java . util . Date function ( ) { return _phanphoi . getNgay ( ) ; } |
24,020 | returns the list of enrollments with the given external id . concode_field_sep EnrollmentDataService enrollmentDataService concode_field_sep List<Enrollment> findByStatus concode_elem_sep List<Enrollment> findByMetadataProperty concode_elem_sep List<Enrollment> findBySchedule concode_elem_sep List<Enrollment> retrieveA... | List < Enrollment > function ( String arg0 ) { return enrollmentDataService . findByExternalId ( arg0 ) ; } |
24,021 | sets the value of the enrolledinautorenewal property . concode_field_sep Boolean defaultPaymentMethod concode_elem_sep String identifier concode_elem_sep Address address concode_elem_sep String code concode_elem_sep Boolean enrolledInAutoRenewal concode_elem_sep String fullName concode_elem_sep long serialVersionUID co... | void function ( Boolean arg0 ) { this . enrolledInAutoRenewal = arg0 ; } |
24,022 | generate a last name composed of three elements concode_field_sep Random random concode_field_sep int[] getPermutation concode_elem_sep int getInt concode_elem_sep int getNonUniform concode_elem_sep String replace concode_elem_sep BigDecimal getBigDecimal concode_elem_sep boolean[] getBoolean concode_elem_sep String[] ... | String function ( int arg0 ) { String [ ] loc0 = { "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" , "srini_string" } ; StringBuilder loc1 = new StringBuilder ( ) ; loc1 . append ( loc0 [ arg0 / 100 ] ) ; loc1 . appen... |
24,023 | get custom serializer concode_field_sep java.lang.Double hours concode_elem_sep java.lang.Double amount concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.netsuite.webservices.platform.core_2014_2.Rec... | org . apache . axis . encoding . Serializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanSerializer ( arg1 , arg2 , typeDesc ) ; } |
24,024 | set the world spacing scale of our grid . also useful for converting between world coordinates and grid location . concode_field_sep Direction _stepDirection concode_elem_sep Vector3 _rayLocation concode_elem_sep double _totalTravel concode_elem_sep int[] _gridLocation concode_elem_sep Vector3 _gridSpacing concode_elem... | void function ( final Vector3 arg0 ) { _gridSpacing . set ( arg0 ) ; } |
24,025 | return the class name of the service component that implements this input method . concode_field_sep int mIsDefaultResId concode_elem_sep ResolveInfo mService concode_elem_sep Parcelable.Creator<InputMethodInfo> CREATOR concode_elem_sep ArrayList<InputMethodSubtype> mSubtypes concode_elem_sep String mId concode_elem_se... | String function ( ) { return mService . serviceInfo . name ; } |
24,026 | returns the default first host name associated by the default nameserver with the address bound to the specified network interface concode_field_sep String cachedHostname concode_elem_sep String cachedHostAddress concode_elem_sep String LOCALHOST concode_elem_sep Log LOG concode_field_sep String resolveLocalHostname co... | String function ( String arg0 ) { return getDefaultHost ( arg0 , null ) ; } |
24,027 | get the split locations , applicable for map tasks concode_field_sep TaskStarted datum concode_field_sep TaskID getTaskId concode_elem_sep EventType getEventType concode_elem_sep Object getDatum concode_elem_sep void setDatum concode_elem_sep long getStartTime concode_elem_sep TaskType getTaskType | String function ( ) { return datum . splitLocations . toString ( ) ; } |
24,028 | requests the task to be canceled . concode_field_sep Cancelable<?> mCurrentTask concode_elem_sep int mState concode_elem_sep T mResult concode_elem_sep int STATE_CANCELED concode_elem_sep int STATE_INITIAL concode_elem_sep int STATE_EXECUTING concode_elem_sep int STATE_ERROR concode_elem_sep Throwable mError concode_el... | boolean function ( ) { if ( mState == STATE_INITIAL ) { mState = STATE_CANCELED ; notifyAll ( ) ; return false ; } if ( mState == STATE_EXECUTING ) { if ( mCurrentTask != null ) mCurrentTask . requestCancel ( ) ; mState = STATE_CANCELING ; return true ; } return false ; } |
24,029 | create a new typeface from the specified font data . concode_field_sep int native_instance concode_elem_sep int BOLD_ITALIC concode_elem_sep Typeface DEFAULT_BOLD concode_elem_sep int BOLD concode_elem_sep int ITALIC concode_elem_sep Typeface[] sDefaults concode_elem_sep int NORMAL concode_elem_sep Typeface MONOSPACE c... | Typeface function ( AssetManager arg0 , String arg1 ) { return new Typeface ( nativeCreateFromAsset ( arg0 , arg1 ) ) ; } |
24,030 | sets the value of the order property . concode_field_sep String password concode_elem_sep String address concode_elem_sep Options options concode_elem_sep Boolean concurrent concode_elem_sep String type concode_elem_sep String username concode_elem_sep Integer order concode_field_sep void setPassword concode_elem_sep b... | void function ( Integer arg0 ) { this . order = arg0 ; } |
24,031 | tries to add or update a alias returns null if the aliasname contains invalid characters returns an arraylist of phones with matching names if the list has a size of 1 the name was distinct enough to and the alias was added . otherwise the user should specify more details with help from the list concode_field_sep Conte... | ArrayList < Phone > function ( String arg0 , String arg1 ) { if ( arg0 . contains ( "srini_string" ) ) return null ; ArrayList < Phone > loc0 ; loc0 = ContactsManager . getMobilePhones ( ctx , arg1 ) ; if ( loc0 . size ( ) == 1 ) { Phone loc1 = loc0 . get ( 0 ) ; addOrUpdate ( arg0 , loc1 . getCleanNumber ( ) , loc1 . ... |
24,032 | gets the current value at position i . concode_field_sep Unsafe unsafe concode_elem_sep int base concode_elem_sep long serialVersionUID concode_elem_sep int[] array concode_elem_sep int shift concode_field_sep int getAndIncrement concode_elem_sep void set concode_elem_sep int incrementAndGet concode_elem_sep boolean we... | int function ( int arg0 ) { return getRaw ( checkedByteOffset ( arg0 ) ) ; } |
24,033 | sets the nextwritefieldinfosgen . concode_field_sep Map<Integer,Set<String>> dvUpdatesFiles concode_elem_sep long delGen concode_elem_sep long fieldInfosGen concode_elem_sep long nextWriteDocValuesGen concode_elem_sep long docValuesGen concode_elem_sep long nextWriteFieldInfosGen concode_elem_sep long nextWriteDelGen c... | void function ( long arg0 ) { nextWriteFieldInfosGen = arg0 ; } |
24,034 | given a continent id returns a continent instance with this id concode_field_sep List<Continent> continents concode_elem_sep List<Territory> territories concode_field_sep List<Territory> getTerritories concode_elem_sep List<Continent> getContinents concode_elem_sep Territory findTerritoryById | Continent function ( int arg0 ) { for ( Continent loc0 : continents ) { if ( loc0 . getId ( ) == arg0 ) { return loc0 ; } } return null ; } |
24,035 | get time of day in clarion format value = 10ths of seconds since midnight + 1 . i.e. midnight = 1 the 10th of a second before midnight = 8640000 0 = invalid/null concode_field_sep Long localizedEpoch concode_field_sep int epochToClarionDate concode_elem_sep int date concode_elem_sep int month concode_elem_sep int year ... | int function ( ) { Calendar loc0 = Calendar . getInstance ( ) ; return 1 + loc0 . get ( Calendar . HOUR_OF_DAY ) * 360000 + loc0 . get ( Calendar . MINUTE ) * 6000 + loc0 . get ( Calendar . SECOND ) * 100 + loc0 . get ( Calendar . MILLISECOND ) / 10 ; } |
24,036 | returns the node for the next index on this database row , given the node for any index . concode_field_sep Node nPrimaryNode concode_elem_sep Object oData[] concode_field_sep Row newRow concode_elem_sep Row getUpdatedRow concode_elem_sep boolean isDeleted concode_elem_sep Node getNode concode_elem_sep void delete conc... | Node function ( Node arg0 ) { if ( arg0 == null ) { arg0 = nPrimaryNode ; } else { arg0 = arg0 . nNext ; } return arg0 ; } |
24,037 | writes the isofile without calculating the dcf hash as described in the oma dcf specification 5.3 . concode_field_sep RandomAccessDataSource originalIso concode_elem_sep BoxFactory boxFactory concode_elem_sep Box[] boxes concode_field_sep List<Sample<? extends TrackMetaDataContainer>> getTrack concode_elem_sep void swi... | void function ( OutputStream arg0 ) { IsoOutputStream loc0 = new IsoOutputStream ( arg0 , false ) ; try { for ( Box loc1 : boxes ) { loc1 . getBox ( loc0 ) ; } } finally { loc0 . flush ( ) ; } } |
24,038 | also do a shutdown if the object is destroy 'd . concode_field_sep Category logger concode_elem_sep RuntimeServices rsvc concode_field_sep void init concode_elem_sep void internalInit concode_elem_sep void logVelocityMessage concode_elem_sep void shutdown | void function ( ) { shutdown ( ) ; } |
24,039 | saves an anchor . concode_field_sep FileConfiguration anchorConfig concode_elem_sep MultiverseCore plugin concode_elem_sep Map<String,Location> anchors concode_field_sep boolean deleteAnchor concode_elem_sep boolean saveAnchors concode_elem_sep Set<String> getAllAnchors concode_elem_sep Location getAnchorLocation conco... | boolean function ( String arg0 , String arg1 ) { Location loc0 = plugin . getLocationManipulation ( ) . stringToLocation ( arg1 ) ; return loc0 != null && this . saveAnchorLocation ( arg0 , loc0 ) ; } |
24,040 | returns the current number of subtasks . concode_field_sep int numberOfSubtasks concode_elem_sep String invokableClassName concode_elem_sep JobVertexID vertexID concode_elem_sep Configuration taskConfiguration concode_elem_sep List<BlobKey> requiredJarFiles concode_elem_sep int targetSlotNumber concode_elem_sep JobID j... | int function ( ) { return numberOfSubtasks ; } |
24,041 | abbreviates this description to a length that will fit in the database . concode_field_sep int executionTime concode_elem_sep Date installedOn concode_elem_sep int installedRank concode_elem_sep boolean success concode_elem_sep Integer checksum concode_elem_sep String description concode_elem_sep String installedBy con... | String function ( String arg0 ) { if ( arg0 == null ) { return null ; } if ( arg0 . length ( ) <= 200 ) { return arg0 ; } return arg0 . substring ( 0 , 197 ) + "srini_string" ; } |
24,042 | get the position of the mediator in the current flow . concode_field_sep ContinuationState childContState concode_elem_sep int position concode_field_sep void addLeafChild concode_elem_sep ContinuationState getLeafChild concode_elem_sep boolean hasChild concode_elem_sep void removeLeafChild concode_elem_sep Continuatio... | int function ( ) { return position ; } |
24,043 | return the number of tracks in the collection . concode_field_sep Random random concode_elem_sep TrackReader reader concode_elem_sep ArrayList<Track> tracks concode_elem_sep MusicPlayer player concode_field_sep void listTrack concode_elem_sep void removeTrack concode_elem_sep void randomListOfSong concode_elem_sep bool... | int function ( ) { return tracks . size ( ) ; } |
24,044 | helper method to calculate the span of the sub-interval . simply returns the cieling of limit - start / segments and accounts for invalid start and limit combinations . concode_field_sep PlaceHolder placeHolder concode_field_sep int rank concode_elem_sep int[] countSegments | long function ( int arg0 , int arg1 , int arg2 ) { long loc0 = arg2 - arg1 ; if ( loc0 < 0 ) { return 0 ; } int loc1 = ( loc0 % arg0 ) == 0 ? 0 : 1 ; return ( loc0 / arg0 ) + loc1 ; } |
24,045 | returns the possibly partially known shape of the operation that will produce the tensor referred to by this output . concode_field_sep int index concode_elem_sep Operation operation concode_field_sep Operation op concode_elem_sep int index | Shape function ( ) { return new Shape ( operation . shape ( index ) ) ; } |
24,046 | rotates this point around 0,0 by the given amount of degrees . concode_field_sep float x concode_elem_sep float y concode_field_sep Point set concode_elem_sep Point set concode_elem_sep Point scale concode_elem_sep Point scale concode_elem_sep String toString concode_elem_sep Point copy concode_elem_sep Point translate... | Point function ( float arg0 ) { if ( x != 0 || y != 0 ) { float loc0 = Calculator . cosDeg ( arg0 ) ; float loc1 = Calculator . sinDeg ( arg0 ) ; float loc2 = x * loc0 - y * loc1 ; float loc3 = x * loc1 + y * loc0 ; this . x = loc2 ; this . y = loc3 ; } return this ; } |
24,047 | clones this sprite . does not clone position or velocity info . concode_field_sep float dx concode_elem_sep float dy concode_elem_sep float x concode_elem_sep float y concode_elem_sep Animation anim concode_field_sep void setY concode_elem_sep float getX concode_elem_sep int getHeight concode_elem_sep void setX concode... | Object function ( ) { return new Sprite ( anim ) ; } |
24,048 | removes the parameter with the specified key . concode_field_sep String primaryType concode_elem_sep String subType concode_elem_sep HashMap parameters concode_field_sep void writeExternal concode_elem_sep String getPrimaryType concode_elem_sep void readExternal concode_elem_sep String getSubType concode_elem_sep Strin... | void function ( String arg0 ) { parameters . remove ( arg0 ) ; } |
24,049 | return the value of the expanded property . concode_field_sep String branchContractedIcon concode_elem_sep boolean expanded concode_elem_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep String action concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_... | boolean function ( ) { return expanded ; } |
24,050 | method `` getviews '' extracts the views from the list . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean addColumns concode_elem_sep List<TdColumn> getColumns | List < TdView > function ( Collection < ? extends EObject > arg0 ) { List < TdView > loc0 = new ArrayList < TdView > ( ) ; for ( EObject loc1 : arg0 ) { TdView loc2 = SwitchHelpers . VIEW_SWITCH . doSwitch ( loc1 ) ; if ( loc2 != null ) { loc0 . add ( loc2 ) ; } } return loc0 ; } |
24,051 | returns the durable name of the provider . concode_field_sep String clientID concode_elem_sep int deliveryMode concode_elem_sep String durableName concode_elem_sep boolean transacted concode_elem_sep boolean isTopic concode_elem_sep String serverUri concode_elem_sep int ackMode concode_field_sep void setTransacted conc... | String function ( ) { return durableName ; } |
24,052 | returns either child abstractnode s , or if this is a leaf node , real data wrapped in itemboundable s . concode_field_sep int level concode_elem_sep ArrayList childBoundables concode_elem_sep Object bounds concode_elem_sep long serialVersionUID concode_field_sep int getLevel concode_elem_sep int size concode_elem_sep ... | List function ( ) { return childBoundables ; } |
24,053 | converts android bitmap to opencv mat . this function converts an android bitmap image to the opencv mat . ` argb_8888 ' and ` rgb_565 ' input bitmap formats are supported . the output mat is always created of the same size as the input bitmap and of the ` cv_8uc4 ' type , it keeps the image in rgba format . this funct... | void function ( Bitmap arg0 , Mat arg1 , boolean arg2 ) { if ( arg0 == null ) throw new java . lang . IllegalArgumentException ( "srini_string" ) ; if ( arg1 == null ) throw new java . lang . IllegalArgumentException ( "srini_string" ) ; nBitmapToMat2 ( arg0 , arg1 . nativeObj , arg2 ) ; } |
24,054 | the availability options configured for the domain . returns a reference to this object so that method calls can be chained together . concode_field_sep Boolean options concode_elem_sep OptionStatus status concode_field_sep AvailabilityOptionsStatus withStatus concode_elem_sep Boolean isOptions concode_elem_sep int has... | AvailabilityOptionsStatus function ( Boolean arg0 ) { this . options = arg0 ; return this ; } |
24,055 | the org.hawkular.metrics.model.metrictype type of metric to which thetemplate applies . concode_field_sep Set<String> functions concode_elem_sep Interval interval concode_elem_sep MetricType<T> type concode_field_sep Interval getInterval concode_elem_sep AggregationTemplate<T> setInterval concode_elem_sep int hashCode ... | MetricType < T > function ( ) { return type ; } |
24,056 | do not classify an edit , but instead ` pass ' on it -- and ensure that the passing user will never see the edit in question again . concode_field_sep String summary concode_elem_sep boolean rollback concode_elem_sep stiki_frontend_driver parent concode_elem_sep gui_revert_panel gui_revert_panel concode_elem_sep boolea... | void function ( ) { try { parent . client_interface . queues . queue_ignore ( md . rid , user ) ; } catch ( CommunicationsException loc0 ) { parent . reset_connection ( false ) ; submit_pass ( ) ; } catch ( Exception loc0 ) { System . out . println ( "srini_string" = "srini_string" ) ; loc0 . printStackTrace ( ) ; } } |
24,057 | whether server principal password for kerberos authentication is encrypted if the parameter is not set , default value is true concode_field_sep boolean isServerPrincipalPasswordEncrypted concode_elem_sep String serverPrincipalPassword concode_elem_sep String trustStores concode_elem_sep String allowedRoles concode_ele... | boolean function ( ) { return isServerPrincipalPasswordEncrypted ; } |
24,058 | check for an exit request - and convert it to an exception if made concode_field_sep List<Probe> monitorProbes concode_elem_sep Logger log concode_elem_sep String FAILURE_OF_A_LIVE_PROBE_DURING_BOOTSTRAPPING concode_elem_sep long bootstrapEndtime concode_elem_sep int bootstrapTimeout concode_elem_sep ProbeReportHandler... | void function ( ) { if ( mustExit ) { throw new ProbeInterruptedException ( ) ; } } |
24,059 | for lime the message id is created on the ap side . concode_field_sep QName QNAME_MESSAGEID concode_elem_sep QName QNAME_SENDERID concode_elem_sep QName QNAME_SCHEME concode_elem_sep QName QNAME_DOCUMENTID concode_elem_sep QName QNAME_PROCESSID concode_elem_sep QName QNAME_CHANNELID concode_elem_sep QName QNAME_RECIPIE... | IMessageMetadata function ( @ Nonnull final HeaderList arg0 , final String arg1 ) { return new MessageMetadata ( arg1 , getChannelID ( arg0 ) , _getParticipantID ( arg0 , QNAME_SENDERID ) , _getParticipantID ( arg0 , QNAME_RECIPIENTID ) , _getDocumentTypeID ( arg0 ) , _getProcessID ( arg0 ) ) ; } |
24,060 | listeners concode_field_sep Set<Spring> mActiveSprings concode_elem_sep boolean mIdle concode_elem_sep SpringLooper mSpringLooper concode_elem_sep CopyOnWriteArraySet<SpringSystemListener> mListeners concode_elem_sep Map<String,Spring> mSpringRegistry concode_field_sep void removeAllListeners concode_elem_sep List<Spri... | void function ( SpringSystemListener arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } mListeners . add ( arg0 ) ; } |
24,061 | utility method for creating an affinetransform . concode_field_sep AffineTransform affineTransform concode_field_sep void rotate concode_elem_sep void rotate concode_elem_sep void endTransformList concode_elem_sep AffineTransform getAffineTransform concode_elem_sep void skewX concode_elem_sep void startTransformList co... | AffineTransform function ( Reader arg0 ) { TransformListParser loc0 = new TransformListParser ( ) ; AWTTransformProducer loc1 = new AWTTransformProducer ( ) ; loc0 . setTransformListHandler ( loc1 ) ; loc0 . parse ( arg0 ) ; return loc1 . getAffineTransform ( ) ; } |
24,062 | sets the value of the logindate property . concode_field_sep String password concode_elem_sep String firstname concode_elem_sep WSDate createdDate concode_elem_sep String phone concode_elem_sep WSDate loginDate concode_elem_sep String project concode_elem_sep String email concode_elem_sep String username concode_elem_s... | void function ( WSDate arg0 ) { this . loginDate = arg0 ; } |
24,063 | create a new stringlabel , where the label is formed from the label object passed in . depending on what fields each label has , other things will be null . concode_field_sep PlaceHolder placeHolder concode_field_sep Label newLabelFromString | Label function ( Label arg0 ) { return new StringLabel ( arg0 ) ; } |
24,064 | sets the modified date of this entry . concode_field_sep Entry _entry concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep boolean isEscapedModel concode_elem_sep boolean isCa... | void function ( Date arg0 ) { _entry . setModifiedDate ( arg0 ) ; } |
24,065 | this method prints out every tracker velocity update change . concode_field_sep TrackerRemote tracker concode_elem_sep ButtonRemote button concode_elem_sep AnalogRemote analog concode_elem_sep String stationName concode_field_sep void trackerAccelerationUpdate concode_elem_sep void analogUpdate concode_elem_sep void tr... | void function ( TrackerRemote . VelocityUpdate arg0 , TrackerRemote arg1 ) { System . out . println ( "srini_string" ) ; } |
24,066 | converts a maven fileset to a list of file objects . concode_field_sep PlaceHolder placeHolder concode_field_sep String getCommaSeparatedList | List < File > function ( FileSet arg0 ) { String loc0 = getCommaSeparatedList ( arg0 . getIncludes ( ) ) ; String loc1 = getCommaSeparatedList ( arg0 . getExcludes ( ) ) ; return FileUtils . getFiles ( new File ( arg0 . getDirectory ( ) ) , loc0 , loc1 ) ; } |
24,067 | starts the server , returning a java.lang.process instance that represents the mysql server . concode_field_sep Process serverProcess concode_elem_sep Properties serverProps concode_elem_sep String EXECUTABLE_NAME_KEY concode_elem_sep String DEFAULTS_FILE_KEY concode_elem_sep String DATADIR_KEY concode_elem_sep String ... | Process function ( ) { if ( this . serverProcess != null ) { throw new IllegalArgumentException ( "srini_string" ) ; } this . serverProcess = Runtime . getRuntime ( ) . exec ( getCommandLine ( ) ) ; return this . serverProcess ; } |
24,068 | sets the listavt value for this listaastdistribuidosbpmwsexecuteresponse . concode_field_sep java.lang.Object __equalsCalc concode_elem_sep SIPV2190b.DistribuidosSDTDistribuidosSDTItem[] listavt concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_field_sep org.... | void function ( SIPV2190b . DistribuidosSDTDistribuidosSDTItem [ ] arg0 ) { this . listavt = arg0 ; } |
24,069 | sets the size of the internal buffer used to exchange data with the usb stack for write operations . most users should not need to change this . concode_field_sep int mPortNumber concode_elem_sep UsbDeviceConnection mConnection concode_elem_sep Object mWriteBufferLock concode_elem_sep byte[] mWriteBuffer concode_elem_s... | void function ( int arg0 ) { synchronized ( mWriteBufferLock ) { if ( arg0 == mWriteBuffer . length ) { return ; } mWriteBuffer = new byte [ arg0 ] ; } } |
24,070 | method with only manage #role_manager access . concode_field_sep PlaceHolder placeHolder concode_field_sep String work concode_elem_sep String admin | String function ( ) { return RESULT ; } |
24,071 | determine if log level will be logged 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 void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void setLogLevel concode_e... | boolean function ( int arg0 ) { return ( arg0 >= LOGLEVEL ) ; } |
24,072 | verify that this class implements publiccloneable . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSerialization2 concode_elem_sep void testCloning concode_elem_sep void testFindDomainBounds concode_elem_sep void testFindRangeBounds concode_elem_sep void testCloning2 concode_elem_sep void testSeri... | void function ( ) { XYErrorRenderer loc0 = new XYErrorRenderer ( ) ; assertTrue ( loc0 instanceof PublicCloneable ) ; } |
24,073 | returns the codes at a particular position in the word . concode_field_sep StringBuilder mTypedWord concode_elem_sep String mPreferredWord concode_elem_sep boolean mAutoCapitalized concode_elem_sep int mCapsCount concode_elem_sep ArrayList<int[]> mCodes concode_elem_sep boolean mIsFirstCharCapitalized concode_field_sep... | int [ ] function ( int arg0 ) { return mCodes . get ( arg0 ) ; } |
24,074 | gets the value of the description property . concode_field_sep String isolateSecurityPermissions concode_elem_sep ProfileLocalInterfaceName profileLocalInterfaceName concode_elem_sep Description description concode_elem_sep String id concode_field_sep String getIsolateSecurityPermissions concode_elem_sep void setId con... | Description function ( ) { return description ; } |
24,075 | method used by the ui to clear information on the screen . concode_field_sep int studentId concode_elem_sep String firstName concode_elem_sep String lastName concode_elem_sep String address concode_elem_sep boolean uiToggle concode_elem_sep Set<Course> courses concode_field_sep void setLastName concode_elem_sep void se... | String function ( ) { firstName = "srini_string" ; lastName = "srini_string" ; address = "srini_string" ; return "srini_string" ; } |
24,076 | remove the managed bean based on the bean name . concode_field_sep Logger log concode_elem_sep Properties buildProperties concode_field_sep String getRequestParameter concode_elem_sep UIComponent findComponent concode_elem_sep ServletContext getServletContext concode_elem_sep void redirectBrowser concode_elem_sep Objec... | void function ( String arg0 ) { FacesContext loc0 = FacesContext . getCurrentInstance ( ) ; ELContext loc1 = loc0 . getELContext ( ) ; ExpressionFactory loc2 = loc0 . getApplication ( ) . getExpressionFactory ( ) ; loc2 . createValueExpression ( loc1 , getJsfEl ( arg0 ) , Object . class ) . setValue ( loc1 , null ) ; } |
24,077 | determine whether the supplied character is a valid first character in an xml name . the first character in an xml name is more restrictive than the #isvalidname int remaining characters . concode_field_sep int PUBID_CHARACTER concode_elem_sep int CONTENT_CHARACTER concode_elem_sep int NCNAME_CHARACTER concode_elem_sep... | boolean function ( int arg0 ) { return arg0 < NUMBER_OF_CHARACTERS && ( MASKS [ arg0 ] & NAME_START_CHARACTER ) != 0 ; } |
24,078 | return lower triangular factor 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 double det concode_elem_sep int[] getPivot concode_elem_sep Matrix solve concode_elem_sep double[]... | Matrix function ( ) { Matrix loc0 = new Matrix ( m , n ) ; double [ ] [ ] loc1 = loc0 . getArray ( ) ; for ( int loc2 = 0 ; loc2 < m ; loc2 ++ ) { for ( int loc3 = 0 ; loc3 < n ; loc3 ++ ) { if ( loc2 > loc3 ) { loc1 [ loc2 ] [ loc3 ] = LU [ loc2 ] [ loc3 ] ; } else if ( loc2 == loc3 ) { loc1 [ loc2 ] [ loc3 ] = 1.0 ; ... |
24,079 | called when the process is ready to receive string data on stdin . before this method returns , you must set the buffer 's charbuffer #position position and charbuffer #limit limit for example , byinvoking charbuffer #flip to indicate how much data is in the buffer before returning from this method . you must first cal... | boolean function ( CharBuffer arg0 ) { return false ; } |
24,080 | returns the field 's name , prepended by `` countof '' . concode_field_sep String fldname concode_elem_sep int count concode_field_sep void processFirst concode_elem_sep void processNext concode_elem_sep Constant value | String function ( ) { return "srini_string" + fldname ; } |
24,081 | encodes a plain title string to wiki-style . page titles in wikipedia are encoded in a way that urls containing the title are valid . title strings entered by users normally do not conform to this wiki-style encoding . concode_field_sep String rawTitleText concode_elem_sep String sectionText concode_elem_sep String wik... | String function ( String arg0 ) { String loc0 = arg0 . replace ( ' ' , '_' ) ; return loc0 ; } |
24,082 | indicates whether the value is a zero . concode_field_sep Period period concode_elem_sep String storedBy concode_elem_sep Date created concode_elem_sep DataElementCategoryOptionCombo categoryOptionCombo concode_elem_sep DataElement dataElement concode_elem_sep OrganisationUnit source concode_elem_sep String auditValue ... | boolean function ( ) { return dataElement != null && dataElement . getValueType ( ) . isNumeric ( ) && value != null && ZERO_PATTERN . matcher ( value ) . find ( ) ; } |
24,083 | sets the value of the count property . concode_field_sep ArrayList<ArtifactType> artifact concode_elem_sep SearchResults.Data data concode_elem_sep BigInteger count concode_elem_sep BigInteger from concode_elem_sep BigInteger totalCount concode_elem_sep boolean tooManyResults concode_field_sep void setTotalCount concod... | void function ( BigInteger arg0 ) { this . count = arg0 ; } |
24,084 | create a new jndi initial context . invoked by #getcontext . the default implementation use this template 's environment settings . can be subclassed for custom contexts , e.g. for testing . concode_field_sep Properties environment concode_elem_sep Log logger concode_field_sep void releaseContext concode_elem_sep Objec... | Context function ( ) { Hashtable < ? , ? > loc0 = null ; Properties loc1 = getEnvironment ( ) ; if ( loc1 != null ) { loc0 = new Hashtable < > ( loc1 . size ( ) ) ; CollectionUtils . mergePropertiesIntoMap ( loc1 , loc0 ) ; } return new InitialContext ( loc0 ) ; } |
24,085 | sets the underlying write timeout in milliseconds . a value of 0 specifies an infinite timeout . concode_field_sep boolean defaultClient concode_elem_sep OkHttpClient client concode_field_sep void setReadTimeout concode_elem_sep Request buildRequest concode_elem_sep void setConnectTimeout concode_elem_sep ClientHttpReq... | void function ( int arg0 ) { this . client = this . client . newBuilder ( ) . arg0 ( arg0 , TimeUnit . MILLISECONDS ) . build ( ) ; } |
24,086 | parse the first byte of a vint/vlong to determine the number of bytes concode_field_sep PlaceHolder placeHolder concode_field_sep void writeVInt concode_elem_sep int readVInt concode_elem_sep void writeVLong concode_elem_sep void checkBufferLength concode_elem_sep int getVIntSize concode_elem_sep boolean isNegativeVInt... | int function ( byte arg0 ) { if ( arg0 >= - 112 ) { return 1 ; } else if ( arg0 < - 120 ) { return - 119 - arg0 ; } return - 111 - arg0 ; } |
24,087 | check a property on the node . concode_field_sep Logger log concode_elem_sep boolean skipReport concode_elem_sep String url concode_elem_sep String report concode_elem_sep Set<String> links concode_elem_sep String filter concode_elem_sep OutputStream reportOS concode_elem_sep String user concode_elem_sep String pwd con... | void function ( Node arg0 , String arg1 ) { log . trace ( "srini_string" ) ; log . trace ( "srini_string" + arg1 ) ; for ( int loc0 = 0 ; loc0 < prefix . length ; loc0 ++ ) { if ( arg1 != null && arg1 . startsWith ( prefix [ loc0 ] ) ) { checkLink ( arg0 , arg1 ) ; } } if ( arg1 . contains ( "srini_string" ) ) { parseH... |
24,088 | logs warn mesg concode_field_sep int LEVEL_FATAL concode_elem_sep int level concode_elem_sep int LEVEL_ERROR concode_elem_sep String name concode_elem_sep int LEVEL_INFO concode_elem_sep int LEVEL_DEBUG concode_elem_sep int LEVEL_WARN concode_elem_sep Map<String,Logger> loggers concode_field_sep int getLevel concode_el... | void function ( String arg0 , Throwable arg1 ) { if ( this . level > LEVEL_WARN ) return ; log ( arg0 , arg1 ) ; } |
24,089 | gets the value of the text property . concode_field_sep String filename concode_elem_sep TEXT text concode_elem_sep CP cp concode_elem_sep URL url concode_elem_sep TAGS tags concode_field_sep void setTEXT concode_elem_sep URL getURL concode_elem_sep String getFilename concode_elem_sep void setTAGS concode_elem_sep CP g... | TEXT function ( ) { return text ; } |
24,090 | returns the list of vertex points . the order they appear is not necessarily the same as the vertices . concode_field_sep Map verticesToNeighbors concode_elem_sep Map verticesToPoints concode_field_sep void moveVertex concode_elem_sep void removeVertex concode_elem_sep Object[] vertices concode_elem_sep int numberOfVer... | Point2D [ ] function ( ) { return ( Point2D [ ] ) verticesToPoints . values ( ) . toArray ( new Point2D [ 0 ] ) ; } |
24,091 | the wire-level request that initiated this http response . this is not necessarily the same request issued by the application : it may be transformed by the http client . for example , the client may copy headers like content-length from the request body.it may be the request generated in response to an http redirect o... | Request function ( ) { return request ; } |
24,092 | deserializes from the given stream and returns the object from it . concode_field_sep String SERIAL_VERSION_UID concode_field_sep boolean hasUID concode_elem_sep boolean hasUID concode_elem_sep long getUID concode_elem_sep long getUID concode_elem_sep void writeAll concode_elem_sep void writeAll concode_elem_sep boolea... | Object function ( InputStream arg0 ) { ObjectInputStream loc0 ; Object loc1 ; if ( ! ( arg0 instanceof BufferedInputStream ) ) arg0 = new BufferedInputStream ( arg0 ) ; loc0 = new ObjectInputStream ( arg0 ) ; loc1 = loc0 . readObject ( ) ; loc0 . close ( ) ; return loc1 ; } |
24,093 | transform the given normal from world space to object space . a new vector3 object is returned . concode_field_sep Shader[] shaders concode_elem_sep Matrix4 o2w concode_elem_sep Matrix4 w2o concode_elem_sep BoundingBox bounds concode_elem_sep Geometry geometry concode_elem_sep Modifier[] modifiers concode_field_sep Sha... | Vector3 function ( Vector3 arg0 ) { return o2w == null ? new Vector3 ( arg0 ) : o2w . transformTransposeV ( arg0 ) ; } |
24,094 | sets the value of the arcrole property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_sep String title concode_elem_sep JAXBElement... | void function ( String arg0 ) { this . arcrole = arg0 ; } |
24,095 | calls pull , update and merge on this repository . common for merge testing . concode_field_sep TempDirTestFixture myDirFixture concode_elem_sep HgTestRepository myParent concode_elem_sep VirtualFile myDir concode_elem_sep HgTest myTest concode_field_sep TempDirTestFixture createFixtureDir concode_elem_sep void add con... | void function ( ) { pull ( ) ; update ( ) ; merge ( ) ; } |
24,096 | the xaresource api spec indicates implies that this is only for 2-phase transactions . i guess that one-phase transactions need to call rollback to abort . i think we want this jdbcxaresource instance to be garbage-collectable after a this method is called , and b the tx manager releases its handle to it . concode_fiel... | void function ( Xid arg0 ) { validateXid ( arg0 ) ; if ( state != XA_STATE_PREPARED ) { throw new XAException ( "srini_string" + "srini_string" ) ; } dispose ( ) ; state = XA_STATE_INITIAL ; } |
24,097 | zeros accumulated running time and restarts this object . concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep String currentElapsedTimeToMessage concode_elem_se... | void function ( ) { total = 0 ; start ( ) ; } |
24,098 | sets the list of all ui fields which had errors that occurred during the step processing . this list is for usage in generating the appropriate error message s in the ui . the list of fields which had errors should be set by the abstractprocessingstep 's doprocessing method , so that it can be accessed later by whateve... | void function ( HttpServletRequest arg0 , List < String > arg1 ) { if ( arg1 == null ) { arg0 . removeAttribute ( ERROR_FIELDS_ATTRIBUTE ) ; } else { arg0 . setAttribute ( ERROR_FIELDS_ATTRIBUTE , arg1 ) ; } } |
24,099 | gets a benchmark task . concode_field_sep boolean allVictimsEligibleForPreemption concode_elem_sep double victimClusterUtilization concode_elem_sep Set<IHostAttributes> hostAttributes concode_elem_sep double siblingClusterUtilization concode_elem_sep double victimClusterUtilization concode_elem_sep Set<IScheduledTask> ... | Set < IScheduledTask > function ( ) { return tasks ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.