idx int64 0 25k | question stringlengths 71 7.19k | target stringlengths 20 663 |
|---|---|---|
800 | get the system identifier for this input source . the getencoding method will return the character encoding of the object pointed to , or null if unknown . if the system id is a url , it will be fully resolved . concode_field_sep String systemId concode_elem_sep Reader characterStream concode_elem_sep InputStream byteS... | String function ( ) { return systemId ; } |
801 | checks that this class implements publiccloneable . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testSerialization concode_elem_sep void testHashCode concode_elem_sep void testEquals | void function ( ) { Stroke loc0 = new BasicStroke ( 2.0f ) ; XYLineAnnotation loc1 = new XYLineAnnotation ( 10.0 , 20.0 , 100.0 , 200.0 , loc0 , Color . blue ) ; assertTrue ( loc1 instanceof PublicCloneable ) ; } |
802 | set the pathmatcher implementation to use for matching url paths against registered url patterns . default is antpathmatcher . concode_field_sep Map<String,CorsConfiguration> corsConfigurations concode_elem_sep UrlPathHelper urlPathHelper concode_elem_sep PathMatcher pathMatcher concode_field_sep void registerCorsConfi... | void function ( PathMatcher arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; this . pathMatcher = arg0 ; } |
803 | called on filenotfoundexception . concode_field_sep Context context concode_field_sep void IO concode_elem_sep void Unexpected concode_elem_sep void Silent | void function ( FileNotFoundException arg0 ) { Toast . makeText ( context , R . string . ERROR_FILE_NOT_FOUND , Toast . LENGTH_SHORT ) . show ( ) ; arg0 . printStackTrace ( ) ; } |
804 | make an instance managed and persistent , synchronize the persistence context to the underlying database and finally find the persisted entity by its id . delegates to #persistandflush object then #find class , object with the #getid object entity id . helpful when ensuring that entity data is actually written and read... | E function ( E arg0 ) { EntityManager loc0 = getEntityManager ( ) ; persistAndFlush ( arg0 ) ; Object loc1 = getId ( arg0 ) ; loc0 . detach ( arg0 ) ; return ( E ) loc0 . find ( arg0 . getClass ( ) , loc1 ) ; } |
805 | specify if the writer should ignore the delimiter . concode_field_sep char delimiter concode_elem_sep boolean fixedWidth concode_elem_sep char fillChar concode_elem_sep boolean ignoreValueDelimiter concode_elem_sep boolean ignoreDelimiter concode_elem_sep int fill concode_elem_sep int FILLNONE concode_elem_sep int FILL... | void function ( boolean arg0 ) { this . ignoreDelimiter = arg0 ; } |
806 | get search string for the `` full '' field . concode_field_sep String REFS concode_elem_sep String SCOPES concode_elem_sep String TYPE concode_elem_sep String PATH concode_elem_sep String U concode_elem_sep String PROJECT concode_elem_sep String FULL concode_elem_sep String DEFS concode_elem_sep String TAGS concode_ele... | String function ( ) { return getQueryText ( DEFS ) ; } |
807 | geocascell dependent on other variables , e.g. m : = c + 3 concode_field_sep PlaceHolder placeHolder concode_field_sep GeoLine Tangent concode_elem_sep GeoLine Tangent | GeoCasCell function ( GeoCasCell arg0 ) { AlgoDependentCasCell loc0 = new AlgoDependentCasCell ( arg0 ) ; return loc0 . getCasCell ( ) ; } |
808 | returns a new object with rotated image data by 90 degrees counterclockwise . only callable if #isrotatesupported is true . concode_field_sep int width concode_elem_sep int height concode_field_sep LuminanceSource rotateCounterClockwise45 concode_elem_sep boolean isCropSupported concode_elem_sep int getHeight concode_e... | LuminanceSource function ( ) { throw new UnsupportedOperationException ( "srini_string" ) ; } |
809 | clear the internal state of this reader , meaning any sentence fragment that may be buffered will be considered a complete sentence and the word predictor will be updated accordingly . concode_field_sep ScoringWordPredictor<?> wp concode_elem_sep StringBuilder sb concode_field_sep void addSentence concode_elem_sep void... | void function ( ) { addSentence ( sb . toString ( ) ) ; sb = new StringBuilder ( ) ; } |
810 | condenses the i_th row of a simple matrix into a string . concode_field_sep SimpleVector consensus concode_elem_sep String filename concode_elem_sep String kernel concode_elem_sep SimpleMatrix eigenVectors concode_elem_sep SimpleMatrix trainingSets concode_elem_sep SimpleMatrix featureMatrix concode_elem_sep int pointD... | String function ( SimpleMatrix arg0 , int arg1 ) { String loc0 = "srini_string" ; for ( int loc1 = 0 ; loc1 < arg0 . getCols ( ) ; loc1 ++ ) { loc0 += ( Double . valueOf ( arg0 . getElement ( arg1 , loc1 ) ) + "srini_string" ) ; } return loc0 ; } |
811 | sets the title of the describable item . concode_field_sep Logger LOGGER concode_elem_sep String description concode_elem_sep String title concode_elem_sep String id concode_elem_sep String organization concode_elem_sep String version concode_field_sep String getVersion concode_elem_sep String getTitle concode_elem_sep... | void function ( String arg0 ) { LOGGER . debug ( "srini_string" ) ; this . title = arg0 ; LOGGER . debug ( "srini_string" ) ; } |
812 | flattens the exchange cookie map into the response header map . this should be called by a connector just before the response is started . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isEntityBodyAllowed concode_elem_sep boolean isEntityBodyAllowed concode_elem_sep void ungetRequestBytes concode_... | void function ( final HttpServerExchange arg0 ) { Map < String , Cookie > loc0 = arg0 . getResponseCookiesInternal ( ) ; if ( loc0 != null ) { for ( Map . Entry < String , Cookie > loc1 : loc0 . entrySet ( ) ) { arg0 . getResponseHeaders ( ) . add ( Headers . SET_COOKIE , getCookieString ( loc1 . getValue ( ) ) ) ; } }... |
813 | set the value for the prepared statement 's specified parameter position using the passed in value and type . this method can be overridden by sub-classes if needed . concode_field_sep Object[] args concode_elem_sep int[] argTypes concode_field_sep void setValues concode_elem_sep void cleanupParameters | void function ( PreparedStatement arg0 , int arg1 , int arg2 , Object arg3 ) { StatementCreatorUtils . setParameterValue ( arg0 , arg1 , arg2 , arg3 ) ; } |
814 | apply css changes to the rendered componenent concode_field_sep String CSS_UPDATE_FIELD concode_elem_sep String cssString concode_elem_sep Logger log concode_elem_sep String DISPLAY_ON concode_elem_sep String DISPLAY_OFF concode_elem_sep String lastCssString concode_field_sep boolean equals concode_elem_sep String getL... | void function ( FacesContext arg0 , UIComponent arg1 ) { apply ( arg0 , arg1 , null , null , null ) ; } |
815 | do n't change velocity concode_field_sep Handler handler concode_elem_sep VncCanvasActivity activity concode_elem_sep String TAG concode_elem_sep PointF velocity concode_elem_sep long lastSent concode_elem_sep DefaultUpdater instance concode_elem_sep VelocityUpdater updater concode_field_sep void stop concode_elem_sep ... | boolean function ( PointF arg0 , long arg1 ) { return true ; } |
816 | how long did jslint take to run ? milliseconds concode_field_sep long duration concode_elem_sep List<JSIdentifier> implieds concode_elem_sep Map<String,Integer> member concode_elem_sep List<Issue> issues concode_elem_sep List<JSIdentifier> unused concode_elem_sep List<String> urls concode_elem_sep String name concode_e... | long function ( ) { return duration ; } |
817 | formats an appropriate message for an out of range error . concode_field_sep Number number concode_elem_sep BigDecimal DOUBLE_MAX_BIG_DECIMAL concode_elem_sep BigDecimal DOUBLE_MIN_BIG_DECIMAL concode_elem_sep BigDecimal FLOAT_MAX_BIG_DECIMAL concode_elem_sep BigDecimal FLOAT_MIN_BIG_DECIMAL concode_elem_sep ParsePosit... | String function ( Number arg0 , Number arg1 , NumberFormat arg2 ) { String loc0 = null ; String loc1 = null ; synchronized ( arg2 ) { loc0 = arg2 . format ( arg0 ) ; loc1 = arg2 . format ( arg1 ) ; } return BindingMessages . formatString ( "srini_string" , new Object [ ] { loc0 , loc1 } ) ; } |
818 | return a string representation of this trajectory concode_field_sep List points concode_field_sep Iterator pointIterator concode_elem_sep Point4D lastPoint concode_elem_sep List pointList concode_elem_sep Point4D firstPoint concode_elem_sep boolean isEmpty concode_elem_sep void addPoint | String function ( ) { StringBuffer loc0 = new StringBuffer ( "srini_string" ) ; Iterator loc1 = points . iterator ( ) ; while ( loc1 . hasNext ( ) ) { loc0 . append ( loc1 . next ( ) ) ; if ( loc1 . hasNext ( ) ) { loc0 . append ( "srini_string" ) ; } } loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } |
819 | gets the maximum time in seconds to wait for a free connection . concode_field_sep ArrayList<PooledConnection> recycledConnections concode_elem_sep int maxConnections concode_elem_sep int DEFAULT_MAX_CONNECTIONS concode_elem_sep int activeConnections concode_elem_sep PrintWriter logWriter concode_elem_sep boolean isDis... | int function ( ) { return timeout ; } |
820 | returns true if the request contains conditions that save the server from sending a response that the client has locally . when the caller adds conditions , this cache wo n't participate in the request . concode_field_sep boolean onlyIfCached concode_elem_sep RawHeaders headers concode_elem_sep String transferEncoding ... | boolean function ( ) { return ifModifiedSince != null || ifNoneMatch != null ; } |
821 | get the status of the checksum error . concode_field_sep String filetype concode_elem_sep boolean noOp concode_elem_sep boolean checksumError concode_elem_sep String filepath concode_elem_sep String destination concode_elem_sep String onBehalfOf concode_elem_sep String packaging concode_elem_sep String userAgent concod... | boolean function ( ) { return checksumError ; } |
822 | dom : implements svgtransform #getmatrix . concode_field_sep float x concode_elem_sep float angle concode_elem_sep float y concode_elem_sep short type concode_elem_sep AffineTransform affineTransform concode_field_sep void setScale concode_elem_sep void setType concode_elem_sep void setTranslate concode_elem_sep float ... | SVGMatrix function ( ) { return createMatrix ( ) ; } |
823 | returns the date that the associated connection was established . concode_field_sep Date endDate concode_elem_sep String sharingProfileName concode_elem_sep String connectionIdentifier concode_elem_sep String connectionName concode_elem_sep String sharingProfileIdentifier concode_elem_sep Integer userID concode_elem_se... | Date function ( ) { return startDate ; } |
824 | this is the equivalent of calling animator.start , except that it can be called when the animation is running in the opposite direction , in which case we reverse direction and animate for a correspondingly shorter duration . concode_field_sep float mOriginalFromValue concode_elem_sep int OUT concode_elem_sep int mDire... | void function ( ) { animate ( IN ) ; } |
825 | adds a cached span to the in-memory representation . concode_field_sep File cacheDir concode_elem_sep long totalSpace concode_elem_sep HashMap<String,ArrayList<Listener>> listeners concode_elem_sep HashMap<String,CacheSpan> lockedSpans concode_elem_sep CachedContentIndex index concode_elem_sep CacheException initializa... | void function ( SimpleCacheSpan arg0 ) { index . add ( arg0 . key ) . addSpan ( arg0 ) ; totalSpace += arg0 . length ; notifySpanAdded ( arg0 ) ; } |
826 | given an index in the range 0 ... size -1 , returns the value from the indexth key-value mapping that this sparsearray stores . concode_field_sep Object DELETED_REF concode_elem_sep WeakReference<?> DELETED concode_elem_sep long[] mKeys concode_elem_sep boolean mGarbage concode_elem_sep int mSize concode_elem_sep WeakR... | E function ( int arg0 ) { if ( mGarbage ) { gc ( ) ; } return ( E ) mValues [ arg0 ] . get ( ) ; } |
827 | returns a vector from the pca 's basis . concode_field_sep int sampleIndex concode_elem_sep DenseMatrix64F A concode_elem_sep DenseMatrix64F V_t concode_elem_sep double mean[] concode_elem_sep int numComponents concode_field_sep void computeBasis concode_elem_sep double[] sampleToEigenSpace concode_elem_sep void addSam... | double [ ] function ( int arg0 ) { if ( arg0 < 0 || arg0 >= numComponents ) throw new IllegalArgumentException ( "srini_string" ) ; DenseMatrix64F loc0 = new DenseMatrix64F ( 1 , A . numCols ) ; CommonOps . extract ( V_t , arg0 , arg0 + 1 , 0 , A . numCols , loc0 , 0 , 0 ) ; return loc0 . data ; } |
828 | registers an event listener . will not add a pre-existing listener object to the list if allowduplicate is false . concode_field_sep L proxy concode_elem_sep List<L> listeners concode_elem_sep long serialVersionUID concode_elem_sep L[] prototypeArray concode_field_sep L[] getListeners concode_elem_sep void createProxy ... | void function ( final L arg0 , boolean arg1 ) { Validate . notNull ( arg0 , "srini_string" ) ; if ( arg1 ) { listeners . add ( arg0 ) ; } else if ( ! listeners . contains ( arg0 ) ) { listeners . add ( arg0 ) ; } } |
829 | if this method returns a result , the websocket will be rejected with that result . this method will be invoked before onready . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isActor concode_elem_sep Props actorProps concode_elem_sep void onReady | Result function ( ) { return null ; } |
830 | used when setting parameters to the preparedstatement concode_field_sep ParameterMode mode concode_elem_sep String jdbcTypeName concode_elem_sep TypeHandler<?> typeHandler concode_elem_sep String expression concode_elem_sep JdbcType jdbcType concode_elem_sep Configuration configuration concode_elem_sep String property ... | TypeHandler < ? > function ( ) { return typeHandler ; } |
831 | enables or disables the loopback mode in the multicast discovery mechanism . concode_field_sep boolean DEFAULT_LOOPBACK_MODE_ENABLED concode_elem_sep String multicastGroup concode_elem_sep int multicastTimeToLive concode_elem_sep Set<String> trustedInterfaces concode_elem_sep boolean DEFAULT_ENABLED concode_elem_sep in... | MulticastConfig function ( boolean arg0 ) { this . loopbackModeEnabled = arg0 ; return this ; } |
832 | sets the company id of this browser tracker . concode_field_sep BrowserTracker _browserTracker concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEsca... | void function ( long arg0 ) { _browserTracker . setCompanyId ( arg0 ) ; } |
833 | gets the runtime sql statement . concode_field_sep String column concode_elem_sep String runtimeSqlStatement concode_elem_sep boolean isIdentity concode_elem_sep String configuredSqlStatement concode_elem_sep String type concode_field_sep String getMyBatis3Order concode_elem_sep String getType concode_elem_sep XmlEleme... | String function ( ) { return runtimeSqlStatement ; } |
834 | called when the result of the clusterstatetaskexecutor #execute clusterstate , list have been processedproperly by all listeners . concode_field_sep PlaceHolder placeHolder concode_field_sep void onFailure concode_elem_sep void onNoLongerMaster | void function ( String arg0 , ClusterState arg1 , ClusterState arg2 ) { } |
835 | gets the jacobian of the model function to be optimized . concode_field_sep MultivariateMatrixFunction jacobian concode_field_sep placeholderType placeHolder | MultivariateMatrixFunction function ( ) { return jacobian ; } |
836 | loads the asset from the dataobject via the projectassetmanager in the lookup . returns the currently loaded asset when it has been loaded already , close the asset using closeasset . concode_field_sep AssetDataObject file concode_elem_sep String extension concode_elem_sep Date lastLoaded concode_elem_sep Mutex propsMu... | Savable function ( ) { return file . loadAsset ( ) ; } |
837 | set the support of this mdsequence concode_field_sep Sequence sequence concode_elem_sep int support concode_elem_sep MDPattern mdpattern concode_elem_sep int id concode_field_sep boolean strictlyContains concode_elem_sep void print concode_elem_sep boolean contains concode_elem_sep double getRelativeSupport concode_ele... | void function ( int arg0 ) { this . support = arg0 ; } |
838 | gets the insensitive unlocalized name . this is used for the lexicon . concode_field_sep List<PotionEffect> effects concode_elem_sep int cost concode_elem_sep int color concode_elem_sep boolean canInfuseIncense concode_elem_sep String name concode_elem_sep String key concode_elem_sep boolean canInfuseBloodPendant conco... | String function ( ) { return name ; } |
839 | gets the value of the systemmodstamp property . concode_field_sep String jobId concode_elem_sep Long apexProcessingTime concode_elem_sep XMLGregorianCalendar createdDate concode_elem_sep Integer numberRecordsFailed concode_elem_sep int numberRecordsProcessed concode_elem_sep String stateMessage concode_elem_sep XMLGreg... | XMLGregorianCalendar function ( ) { return systemModstamp ; } |
840 | resets the current progress towards timeout to 0 . concode_field_sep Timer timeoutTimer concode_elem_sep TimerTask timeoutTask concode_elem_sep boolean timeoutEnabled concode_elem_sep long timeoutMillis concode_field_sep void setSocketTimeout concode_elem_sep void setTimeoutEnabled concode_elem_sep void timeoutOccurred | void function ( ) { if ( timeoutTask != null ) timeoutTask . cancel ( ) ; if ( timeoutMillis == 0 || ! timeoutEnabled ) return ; timeoutTask = new TimerTask ( ) { @ Override public void run ( ) { timeoutOccurred ( ) ; } } ; timeoutTimer . schedule ( timeoutTask , timeoutMillis ) ; } |
841 | custom date formatter for the jquery-comment plugin , which uses the timeago plugin for jquery . convert the given date to utc time zone and format using the following spec : yyyy-mm-dd hh : mm : ss concode_field_sep Long SEC concode_elem_sep DateTimeFormatter isoNoMillisUtc concode_elem_sep DateTimeFormatter isoNoMill... | String function ( Date arg0 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return DateUtil . timeAgoUtc . withZoneUTC ( ) . print ( arg0 . getTime ( ) ) ; } |
842 | indicates whether this converter is capable of converting the given sourcecontenttype into targetcontenttype , using the given converters . when true , it may use any number of the given converters to form a chain . concode_field_sep Set<ContentTypeConverter<?,?>> candidates concode_elem_sep Class endPoint concode_elem... | boolean function ( Class < S > arg0 , Class < T > arg1 , List < ContentTypeConverter < ? , ? >> arg2 ) { return calculateRoute ( arg0 , arg1 , arg2 ) != null ; } |
843 | set the location of the ocsp responder . concode_field_sep Logger logger concode_elem_sep boolean enableOCSP concode_elem_sep KeyStore trustStore concode_elem_sep Collection<? extends CRL> crls concode_elem_sep String ocspResponderURL concode_elem_sep AtomicLong aliasCount concode_elem_sep boolean enableCRLDP concode_e... | void function ( String arg0 ) { arg0 = arg0 ; } |
844 | gets the optional checksum generation . concode_field_sep int ALIGN_LEFT concode_elem_sep int codeType concode_elem_sep float inkSpreading concode_elem_sep String altText concode_elem_sep PdfDocument document concode_elem_sep boolean generateChecksum concode_elem_sep float baseline concode_elem_sep int ALIGN_RIGHT conc... | boolean function ( ) { return generateChecksum ; } |
845 | generate red-green color palette . concode_field_sep Color PASTEL_GREEN concode_elem_sep Color DARK_PURPLE concode_elem_sep Color GOLD concode_elem_sep Color LIGHT_GREEN concode_elem_sep Color ROYAL_BLUE concode_elem_sep Color LIGHT_GRAY concode_elem_sep Color VIOLET_RED concode_elem_sep Color YELLOW concode_elem_sep C... | Color [ ] function ( int arg0 ) { return redgreen ( arg0 , 1.0f ) ; } |
846 | returns the group id of this document library file entry type . concode_field_sep DLFileEntryType _dlFileEntryType concode_field_sep void setName concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_elem_sep java.lang.String getName concode_elem_sep boolean isEscapedModel concode_el... | long function ( ) { return _dlFileEntryType . getGroupId ( ) ; } |
847 | create a new copy of the request-line concode_field_sep String reason concode_elem_sep int code concode_field_sep String getReason concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep int getCode | Object function ( ) { return new StatusLine ( getCode ( ) , getReason ( ) ) ; } |
848 | called when an update started . concode_field_sep Logger logger concode_elem_sep WhiteboardApp whiteboardApp concode_field_sep void updateFailed concode_elem_sep void managerStarted concode_elem_sep void updateCompleted concode_elem_sep void managerStopped concode_elem_sep void managerResumed concode_elem_sep void mana... | void function ( UpdateManagerEvent arg0 ) { logger . fine ( "srini_string" + arg0 ) ; } |
849 | test a point for containment in this fixture . concode_field_sep Object userData concode_elem_sep short[] tmp concode_elem_sep Shape shape concode_elem_sep Filter filter concode_elem_sep Body body concode_elem_sep long addr concode_field_sep float getRestitution concode_elem_sep float jniGetRestitution concode_elem_sep... | boolean function ( float arg0 , float arg1 ) { return jniTestPoint ( addr , arg0 , arg1 ) ; } |
850 | adds a boolean to an array or function call . concode_field_sep StringBuilder params concode_field_sep String escapeString concode_elem_sep JSONBuilder initialiseVar concode_elem_sep JSONBuilder endArray concode_elem_sep JSONBuilder entryNonNullValue concode_elem_sep JSONBuilder entryNonNullValue concode_elem_sep JSONB... | JSONBuilder function ( boolean arg0 ) { conditionallyAppendComma ( ) ; params . append ( arg0 ) ; return this ; } |
851 | adds all of the elements in the specified collection to this . concode_field_sep Set<FactDescriptor<?>> nanSet concode_elem_sep Set<FactDescriptor<?>> variantSet concode_elem_sep TreeSet<FactDescriptor<?>> nonNanSet concode_field_sep boolean add concode_elem_sep Iterator<FactDescriptor<?>> variantIterator concode_elem_... | boolean function ( final Collection < ? extends FactDescriptor < ? >> arg0 ) { boolean loc0 = false ; for ( final FactDescriptor < ? > loc1 : arg0 ) { loc0 = add ( loc1 ) || loc0 ; } return loc0 ; } |
852 | gets a map that contains attributes that are n't bound to any typed property on this class . the map is keyed by the name of the attribute and the value is the string value of the attribute . the map returned by this method is live , and you can add new attribute by updating the map directly . because of this design , ... | Map < QName , String > function ( ) { return otherAttributes ; } |
853 | returns the stringglarchmap . concode_field_sep FooComponent[] components concode_elem_sep List fees concode_elem_sep List bazez concode_elem_sep String code concode_elem_sep List subs concode_elem_sep FooProxy foo concode_elem_sep Collection bag concode_elem_sep Date[] timeArray concode_elem_sep FooProxy[] fooArray co... | Map function ( ) { return stringGlarchMap ; } |
854 | previous version of bigintegermath.factorial , kept for timing purposes . concode_field_sep int[] binomials concode_elem_sep int[] slowFactorials concode_elem_sep int[] factorials concode_elem_sep int factorialBound concode_field_sep int factorial concode_elem_sep void setUp concode_elem_sep int binomial concode_elem_s... | BigInteger function ( int arg0 ) { if ( arg0 <= 20 ) { return BigInteger . valueOf ( LongMath . factorial ( arg0 ) ) ; } else { int loc0 = 20 ; return BigInteger . valueOf ( LongMath . factorial ( loc0 ) ) . multiply ( oldSlowFactorial ( loc0 , arg0 ) ) ; } } |
855 | creates a new xmlconverter concode_field_sep PlaceHolder placeHolder concode_field_sep T createModelFromXml concode_elem_sep T createModelFromXml concode_elem_sep void applyNamespaces concode_elem_sep T modelToXml concode_elem_sep JAXBContext createJAXBContext concode_elem_sep String dumpModelAsXml concode_elem_sep JAX... | XmlConverter function ( CamelContext arg0 ) { XmlConverter loc0 ; if ( arg0 != null ) { TypeConverterRegistry loc1 = arg0 . getTypeConverterRegistry ( ) ; loc0 = loc1 . getInjector ( ) . newInstance ( XmlConverter . class ) ; } else { loc0 = new XmlConverter ( ) ; } return loc0 ; } |
856 | returns a calendar object from a julian date . concode_field_sep double J1970 concode_elem_sep double MILLISECONDS_PER_DAY concode_field_sep double midnightDateToJulianDate concode_elem_sep double endOfDayDateToJulianDate concode_elem_sep Calendar truncateToMidnight concode_elem_sep Range getRange concode_elem_sep doub... | Calendar function ( double arg0 ) { if ( Double . compare ( arg0 , Double . NaN ) == 0 || arg0 == 0 ) { return null ; } long loc0 = ( long ) ( ( arg0 + 0.5 - J1970 ) * MILLISECONDS_PER_DAY ) ; Calendar loc1 = Calendar . getInstance ( ) ; loc1 . setTimeInMillis ( loc0 ) ; return DateUtils . round ( loc1 , Calendar . MIN... |
857 | test of tostring method , of class defaultcalendardate . concode_field_sep CalendarDate calendarDate2 concode_elem_sep CalendarDate calendarDate1 concode_field_sep void testSetCalendarEraName concode_elem_sep void testGetCalendarDate concode_elem_sep void testGetCalendarEraName concode_elem_sep void testSetCalendarDate... | void function ( ) { String loc0 = calendarDate1 . toString ( ) ; assertFalse ( calendarDate2 . toString ( ) . equals ( loc0 ) ) ; } |
858 | sets the authenticated client id . this is meant to be used by the authentication layer . trying to set a different client id after it 's been set will result in an exception . concode_field_sep TransportResponseHandler handler concode_elem_sep Logger logger concode_elem_sep String clientId concode_elem_sep boolean tim... | void function ( String arg0 ) { Preconditions . checkState ( clientId == null , "srini_string" ) ; this . clientId = arg0 ; } |
859 | removes the session from management and disconnects . concode_field_sep Session sysLobSession concode_elem_sep long sessionIdCount concode_elem_sep LongKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep Session getSysSessionForScript concode_elem_sep Session newSysSession concode_elem_sep void ... | void function ( Session arg0 ) { sessionMap . remove ( arg0 . getId ( ) ) ; } |
860 | print a long to standard output and flush standard output . concode_field_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode... | void function ( long arg0 ) { out . print ( arg0 ) ; out . flush ( ) ; } |
861 | sets the authcodeamtremaining value for this giftcertredemption . concode_field_sep com.netsuite.webservices.platform.core_2014_2.RecordRef authCode concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.Double authCodeApplied concode_ele... | void function ( java . lang . Double arg0 ) { this . authCodeAmtRemaining = arg0 ; } |
862 | tells the camera to stop drawing preview frames . concode_field_sep String TAG concode_elem_sep Context context concode_elem_sep boolean initialized concode_elem_sep AutoFocusManager autoFocusManager concode_elem_sep Camera camera concode_elem_sep CameraConfigurationManager configManager concode_elem_sep boolean previe... | void function ( ) { if ( autoFocusManager != null ) { autoFocusManager . stop ( ) ; autoFocusManager = null ; } if ( camera != null && previewing ) { camera . stopPreview ( ) ; previewCallback . setHandler ( null , 0 ) ; previewing = false ; } } |
863 | returns the id num of this legacy producer . concode_field_sep LegacyProducer _legacyProducer concode_field_sep void setApproved concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setFacilityId concode_... | java . lang . String function ( ) { return _legacyProducer . getIdNum ( ) ; } |
864 | builds a metric key for given resource link and metric name . concode_field_sep String SEPARATOR concode_elem_sep String resourceId concode_elem_sep String metricName concode_elem_sep String timestamp concode_field_sep String getMetricKey concode_elem_sep String getMetricKey concode_elem_sep long computeIntervalBeginMi... | String function ( String arg0 , String arg1 ) { return UriUtils . getLastPathSegment ( arg0 ) + SEPARATOR + arg1 ; } |
865 | this method resets the incoming events time events included . concode_field_sep SCInterfaceImpl sCInterface concode_elem_sep int nextStateIndex concode_elem_sep boolean v2 concode_elem_sep long value concode_elem_sep State[] stateVector concode_field_sep void init concode_elem_sep SCInterface getSCInterface concode_ele... | void function ( ) { } |
866 | sets the versioningsystemname value for this wsversioningtagobjects . concode_field_sep java.lang.String[] names concode_elem_sep java.lang.String versioningSystemName concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc co... | void function ( java . lang . String arg0 ) { this . versioningSystemName = arg0 ; } |
867 | note : no-op in this case concode_field_sep EhcacheHibernate ehcacheHibernate concode_elem_sep ObjectName cacheManagerObjectName concode_elem_sep Status status concode_elem_sep int MAX_MBEAN_REGISTRATION_RETRIES concode_elem_sep EhCacheMessageLogger LOG concode_field_sep void notifyCacheRemoved concode_elem_sep MBeanSe... | void function ( ) { } |
868 | get the policy repository id . concode_field_sep PlaceHolder placeHolder concode_field_sep Policy extract concode_elem_sep Policy read concode_elem_sep void insert concode_elem_sep Policy narrow concode_elem_sep TypeCode type concode_elem_sep void write | String function ( ) { return "srini_string" ; } |
869 | converts a color in the rgb format into the same color in the hsb format . concode_field_sep PlaceHolder placeHolder concode_field_sep int[] hsbToRgb | double [ ] function ( int arg0 , int arg1 , int arg2 ) { float [ ] loc0 = new float [ 3 ] ; Color . RGBtoHSB ( arg0 , arg1 , arg2 , loc0 ) ; double [ ] loc1 = new double [ 3 ] ; loc1 [ 0 ] = loc0 [ 0 ] ; loc1 [ 1 ] = loc0 [ 1 ] ; loc1 [ 2 ] = loc0 [ 2 ] ; return loc1 ; } |
870 | this is getter method for slatime concode_field_sep String subCategory concode_elem_sep String selectCause concode_elem_sep String repeateCAll concode_elem_sep String SLATime concode_elem_sep String caseType concode_elem_sep int resolveOnline concode_elem_sep int detpId concode_elem_sep String loggedBy concode_elem_sep... | String function ( ) { return SLATime ; } |
871 | returns true if is reporting is enabled for this eclipse instance . concode_field_sep boolean INSTANCE_USAGE_REPORTING_ENABLED_DEFAULT concode_elem_sep IPropertiesProvider remoteMap concode_elem_sep String USAGE_REPORTING_ENABLED_KEY concode_elem_sep boolean ALLINSTANCES_USAGE_REPORTING_ENABLED_DEFAULT concode_elem_sep... | boolean function ( ) { return Boolean . valueOf ( System . getProperty ( USAGE_REPORTING_ENABLED_KEY , String . valueOf ( INSTANCE_USAGE_REPORTING_ENABLED_DEFAULT ) ) ) ; } |
872 | returns the version of the protocol to use . the returned value is : com.sun.jmx.snmp.snmpdefinitions #snmpversionone snmpversionone if the protocol is snmpv1 com.sun.jmx.snmp.snmpdefinitions #snmpversiontwo snmpversiontwo if the protocol is snmpv2 com.sun.jmx.snmp.snmpdefinitions #snmpversionthree snmpversionthree if ... | int function ( ) { return protocolVersion ; } |
873 | gets the remote peer of the last received/sent message . concode_field_sep NameAddress remote_user concode_elem_sep MessageAgent ma concode_elem_sep Log log concode_elem_sep RegisterAgent ra concode_field_sep void onMaReceivedMessage concode_elem_sep void unregister concode_elem_sep void unregisterall concode_elem_sep ... | String function ( ) { return remote_user . toString ( ) ; } |
874 | determine whether you have been granted particular permissions . concode_field_sep PermissionsHelper permissionHelper concode_elem_sep Queue<PermissionBlock> waiting concode_elem_sep Queue<PermissionBlock> prompt concode_field_sep HashSet<String> filterPermissionsByResult concode_elem_sep boolean atLeastOnePermissionDe... | boolean function ( Context arg0 , String ... arg1 ) { return permissionHelper . hasPermissions ( arg0 , arg1 ) ; } |
875 | returns the margin to the threshold to use as factor of the resolution . e.g. for a threshold of 10 % and a resolution of 1 % , with a factor of 1 the threshold will be 11 % , with a factor of 2.5 the threshold will be 12.5 % . concode_field_sep long serialVersionUID concode_elem_sep Double confidenceMargin concode_ele... | Double function ( ) { return confidenceMargin ; } |
876 | get custom deserializer concode_field_sep boolean defaultLandingPageUsed concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep long landingPageId concode_elem_sep java.lang.String customClickThroughUrl concode_elem_sep org.apache.axis.description.TypeDesc typeDesc conco... | org . apache . axis . encoding . Deserializer function ( java . lang . String arg0 , java . lang . Class arg1 , javax . xml . namespace . QName arg2 ) { return new org . apache . axis . encoding . ser . BeanDeserializer ( arg1 , arg2 , typeDesc ) ; } |
877 | setter for the field selectedpet . concode_field_sep QuestPetAbstract selectedPet concode_elem_sep Map<String,QuestPetAbstract> pets concode_elem_sep QuestPetAbstract plant concode_elem_sep boolean usePlant concode_field_sep QuestPetAbstract getPet concode_elem_sep Set<String> getPetNames concode_elem_sep Object readRe... | void function ( String arg0 ) { selectedPet = ( arg0 == null ) ? null : getPet ( arg0 ) ; } |
878 | reset the buffer back to empty concode_field_sep StringBuffer buffer concode_elem_sep int linePos concode_field_sep PaddingStringBuffer newline concode_elem_sep PaddingStringBuffer raAppend concode_elem_sep PaddingStringBuffer raAppend concode_elem_sep PaddingStringBuffer raAppend concode_elem_sep PaddingStringBuffer p... | void function ( ) { buffer = new StringBuffer ( ) ; linePos = 0 ; } |
879 | default value to set case type concode_field_sep boolean filter_attribute_state concode_elem_sep int case_type concode_elem_sep char begin_start_modifier concode_elem_sep char start_tag concode_elem_sep ResourceBundle resource concode_elem_sep char end_tag concode_elem_sep char attribute_equality_sign concode_elem_sep ... | int function ( ) { return case_type ; } |
880 | sets the response cache to be used to read and write cached responses . if unset , the responsecache #getdefault system-wide default response cache will be used . concode_field_sep boolean followProtocolRedirects concode_elem_sep HostnameVerifier hostnameVerifier concode_elem_sep ConnectionPool connectionPool concode_e... | OkHttpClient function ( ResponseCache arg0 ) { this . responseCache = arg0 ; return this ; } |
881 | this method was generated by mybatis generator . this method sets the value of the database column role_tbl . id concode_field_sep String view concode_elem_sep String flag concode_elem_sep String isDeleted concode_elem_sep Date createTime concode_elem_sep String name concode_elem_sep String memo concode_elem_sep Intege... | void function ( Integer arg0 ) { this . id = arg0 ; } |
882 | set the resource adapter concode_field_sep long serialVersionUID concode_elem_sep String name concode_elem_sep PrintWriter logwriter concode_elem_sep ResourceAdapter ra concode_field_sep void setName concode_elem_sep ManagedConnection createManagedConnection concode_elem_sep String getName concode_elem_sep void setLogW... | void function ( ResourceAdapter arg0 ) { this . ra = arg0 ; } |
883 | read a token from the character stream and store it into currenttoken . if there are no more tokens left store a null value . concode_field_sep TokenEnumeration input concode_elem_sep List currentTokens concode_elem_sep int n concode_elem_sep WVTTokenizer tokenizer concode_field_sep boolean hasMoreTokens concode_elem_s... | void function ( ) { if ( input . hasMoreTokens ( ) ) { String loc0 = input . nextToken ( ) ; if ( loc0 . length ( ) > n ) { for ( int loc1 = 0 ; loc1 < loc0 . length ( ) - n + 1 ; loc1 ++ ) { String loc2 = loc0 . substring ( loc1 , loc1 + n ) ; currentTokens . add ( loc2 ) ; } } else currentTokens . add ( loc0 ) ; } } |
884 | will add one element to an existing array concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder | String [ ] function ( String [ ] arg0 , String arg1 ) { String [ ] loc0 ; if ( arg0 != null ) { loc0 = Arrays . copyOf ( arg0 , arg0 . length + 1 ) ; loc0 [ arg0 . length ] = arg1 ; } else { loc0 = new String [ 1 ] ; loc0 [ 0 ] = arg1 ; } return loc0 ; } |
885 | 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 = ( double ) pivsign ; for ( int loc1 = 0 ; loc1 < n ; loc1 ++ ) { loc0 *= LU [ loc1 ] [ loc1 ] ; } return loc0 ; } |
886 | 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 ( String arg0 ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK , arg0 ) ) ; } |
887 | adds a collection of stats for export . concode_field_sep Collection<RecordingStat<? extends Number>> ORDERED_NUMERIC_STATS concode_elem_sep StatRegistry STAT_REGISTRY concode_elem_sep RecordingStat<? extends Number> stat concode_elem_sep Logger LOG concode_elem_sep Pattern NOT_NAME_CHAR concode_elem_sep StatsProvider ... | void function ( Iterable < Stat < ? extends Number >> arg0 ) { for ( Stat < ? extends Number > loc0 : arg0 ) { export ( loc0 ) ; } } |
888 | define valor do atributo valorstring . concode_field_sep String tipo concode_elem_sep long serialVersionUID concode_elem_sep Date dataFim concode_elem_sep String valorString concode_elem_sep String sistema concode_elem_sep Integer idCaracteristica concode_elem_sep ValorDTO valor concode_elem_sep Integer idEmpresa conco... | void function ( String arg0 ) { this . valorString = arg0 ; } |
889 | called when an interface is opened . concode_field_sep int currentInterface concode_elem_sep int enterAmountSlot concode_elem_sep int enterAmountInterfaceId concode_elem_sep int enterAmountId concode_elem_sep List<ContainerListener> containerListeners concode_elem_sep Player player concode_field_sep boolean isInterface... | void function ( int arg0 ) { if ( currentInterface != - 1 ) { interfaceClosed ( ) ; } currentInterface = arg0 ; } |
890 | returns the number of parameters contained in the internal list concode_field_sep List<DBXParameter> Params concode_field_sep DBXParameter getParamByName concode_elem_sep boolean LoadParametersValues concode_elem_sep void LoadParametersValues concode_elem_sep TJSONObject asJSONObject concode_elem_sep DBXParameter findP... | int function ( ) { return Params . size ( ) ; } |
891 | the wire-level request that initiated this http response . this is usually not the same request instance provided to the http client : it may be transformed by the http client . for example , the client may have added its own content-encoding header to enableresponse compression . it may be the request generated in res... | Request function ( ) { return request ; } |
892 | gets the number of entities involved in this relationship type . concode_field_sep String NOT_A_RELATIONSHIP concode_elem_sep RelationshipConstraint relConstraints concode_elem_sep RoleConstraint[] roleConstraints concode_elem_sep EntityMatcher[] entityMatchers concode_elem_sep Hashtable<String,Integer> indexes concode... | int function ( ) { return numberEntities ; } |
893 | this older version of this method is kept around for compatibility because downstream frameworks like spark and tez have been using it . downstream frameworks are expected to move off of it . concode_field_sep Pattern VAR_SUBBER concode_elem_sep String ID concode_elem_sep String APP concode_elem_sep Pattern VARVAL_SPLI... | void function ( Map < String , String > arg0 , String arg1 , String arg2 ) { addToEnvironment ( arg0 , arg1 , arg2 , File . pathSeparator ) ; } |
894 | remove concode_field_sep PlaceHolder placeHolder concode_field_sep void ejbCreate concode_elem_sep boolean isBound concode_elem_sep void ejbPassivate concode_elem_sep void ejbActivate concode_elem_sep void setSessionContext concode_elem_sep void testDataSource | void function ( ) { } |
895 | method to get the red value from a pixel represented as an int concode_field_sep int x concode_elem_sep int y concode_elem_sep DigitalPicture picture concode_field_sep int getCol concode_elem_sep int correctValue concode_elem_sep Color getColor concode_elem_sep void setAlpha concode_elem_sep int getRow concode_elem_sep... | int function ( int arg0 ) { int loc0 = ( arg0 >> 16 ) & 0xff ; return loc0 ; } |
896 | prints romized image data as c array concode_field_sep byte[] data concode_field_sep int size concode_elem_sep String toHex | void function ( PrintWriter arg0 , String arg1 , int arg2 ) { int loc0 = data . length ; arg0 . print ( arg1 ) ; for ( int loc1 = 0 ; loc1 < loc0 ; loc1 ++ ) { arg0 . print ( toHex ( data [ loc1 ] ) ) ; if ( loc1 != loc0 - 1 ) { arg0 . print ( "srini_string" ) ; if ( ( loc1 > 0 ) && ( ( loc1 + 1 ) % arg2 == 0 ) ) { arg... |
897 | create a new regular expression instance . concode_field_sep PlaceHolder placeHolder concode_field_sep RegexpMatcher createInstance concode_elem_sep boolean regexpMatcherPresent concode_elem_sep void testAvailability | RegexpMatcher function ( Project arg0 ) { String loc0 = null ; if ( arg0 == null ) { loc0 = System . getProperty ( MagicNames . REGEXP_IMPL ) ; } else { loc0 = arg0 . getProperty ( MagicNames . REGEXP_IMPL ) ; } if ( loc0 != null ) { return createInstance ( loc0 ) ; } return new Jdk14RegexpMatcher ( ) ; } |
898 | returns the name . concode_field_sep String name concode_elem_sep String value concode_elem_sep NameValuePair[] parameters concode_field_sep String getValue concode_elem_sep int getParameterCount concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep NameValuePair[] getParameters concode_elem_se... | String function ( ) { return this . name ; } |
899 | scan a list of nodes . concode_field_sep PlaceHolder placeHolder concode_field_sep R visitErroneous concode_elem_sep R visitSerial concode_elem_sep R visitThrows concode_elem_sep R visitAttribute concode_elem_sep R visitOther concode_elem_sep R visitInheritDoc concode_elem_sep R visitParam concode_elem_sep R visitText ... | R function ( Iterable < ? extends DocTree > arg0 , P arg1 ) { R loc0 = null ; if ( arg0 != null ) { boolean loc1 = true ; for ( DocTree loc2 : arg0 ) { loc0 = ( loc1 ? scan ( loc2 , arg1 ) : scanAndReduce ( loc2 , arg1 , loc0 ) ) ; loc1 = false ; } } return loc0 ; } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.