idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
3,800
returns a new array based long buffer with the specified capacity . concode_field_sep PlaceHolder placeHolder concode_field_sep DoubleBuffer newDoubleBuffer concode_elem_sep DoubleBuffer newDoubleBuffer concode_elem_sep FloatBuffer newFloatBuffer concode_elem_sep FloatBuffer newFloatBuffer concode_elem_sep IntBuffer ne...
LongBuffer function ( int arg0 ) { return new ReadWriteLongArrayBuffer ( arg0 ) ; }
3,801
sac : implements org.w3c.css.sac.documenthandler #endmedia sacmedialist . concode_field_sep DocumentHandler INSTANCE concode_field_sep void startPage concode_elem_sep void endFontFace concode_elem_sep void ignorableAtRule concode_elem_sep void importStyle concode_elem_sep void startDocument concode_elem_sep void endDoc...
void function ( SACMediaList arg0 ) { }
3,802
sets the value of the primary property . concode_field_sep RecordRef build concode_elem_sep RecordRef version concode_elem_sep Boolean primary concode_field_sep RecordRef getVersion concode_elem_sep RecordRef getBuild concode_elem_sep void setVersion concode_elem_sep Boolean isPrimary concode_elem_sep void setBuild
void function ( Boolean arg0 ) { this . primary = arg0 ; }
3,803
indexed setter for property key . concode_field_sep String keyPrefix concode_elem_sep int[] key concode_elem_sep Space space concode_elem_sep int[] ignoredFields concode_elem_sep int[] savedFields concode_elem_sep long timeout concode_elem_sep long TIMEOUT concode_elem_sep int matchDirection concode_elem_sep boolean ov...
void function ( int arg0 , int arg1 ) { this . key [ arg0 ] = arg1 ; }
3,804
get the create read delete rights of this user . concode_field_sep PlaceHolder placeHolder concode_field_sep List<ACL> removeId concode_elem_sep List<ACL> getAllRights concode_elem_sep List<ACL> getReadRight concode_elem_sep String getSignature concode_elem_sep String getUserName concode_elem_sep Id getId concode_elem_...
List < ACL > function ( String arg0 , List < ACL > arg1 ) { List < ACL > loc0 = new ArrayList < ACL > ( ) ; for ( ACL loc1 : arg1 ) { Id loc2 = loc1 . getId ( ) ; if ( belongsTo ( loc2 , arg0 ) ) { ACL loc3 = new ACL ( Perms . CREATE | Perms . READ | Perms . DELETE , loc2 ) ; loc0 . add ( loc3 ) ; break ; } } return lo...
3,805
returns the appname for the current invocation , equivalent to the value bound to java : app/appname , without the cost of lookup . for standalone modules , returns the same value as getmodulename . for invocations that are not on java ee components , returns null . concode_field_sep Object container concode_elem_sep M...
String function ( ) { return appName ; }
3,806
remove the specified modifier from the instance 's list if it is being used . 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 Shader getShader conco...
void function ( Modifier arg0 ) { if ( modifiers != null ) { for ( int loc0 = 0 ; loc0 < modifiers . length ; loc0 ++ ) if ( modifiers [ loc0 ] == arg0 ) modifiers [ loc0 ] = null ; } }
3,807
call immediately after decode , from the same thread . the result is undefined while decode is running . concode_field_sep Reader reader concode_elem_sep List<ResultPoint> possibleResultPoints concode_field_sep BinaryBitmap toBitmap concode_elem_sep Reader getReader concode_elem_sep void foundPossibleResultPoint concod...
List < ResultPoint > function ( ) { return new ArrayList < > ( possibleResultPoints ) ; }
3,808
sends the presentation time stamp to egl . time is expressed in nanoseconds . concode_field_sep EGLContext mEGLSharedContext concode_elem_sep Surface mSurface concode_elem_sep String TAG concode_elem_sep int EGL_RECORDABLE_ANDROID concode_elem_sep EGLContext mEGLContext concode_elem_sep EGLSurface mEGLSurface concode_e...
void function ( long arg0 ) { EGLExt . eglPresentationTimeANDROID ( mEGLDisplay , mEGLSurface , arg0 ) ; checkEglError ( "srini_string" ) ; }
3,809
commit a pending transaction . concode_field_sep Connection conn concode_elem_sep Statement stat concode_elem_sep HashMap<String,PreparedStatement> prepared concode_elem_sep PreparedStatement prep concode_elem_sep int index concode_field_sep Prepared prepare concode_elem_sep Prepared set concode_elem_sep Prepared set c...
void function ( ) { try { conn . commit ( ) ; } catch ( SQLException loc0 ) { throw convert ( loc0 ) ; } }
3,810
sets the definition id of this definition . concode_field_sep Definition _definition 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_s...
void function ( long arg0 ) { _definition . setDefinitionId ( arg0 ) ; }
3,811
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String name concode_elem_sep String type concode_field_sep void setName concode_elem_sep String getName concode_elem_sep String getType concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep Blo...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getName ( ) != null ) loc0 . append ( "srini_string" + getName ( ) + "srini_string" ) ; if ( getType ( ) != null ) loc0 . append ( "srini_string" + getType ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . ...
3,812
implements java.io.closeable . important : this method deletes the work file after closing it ! concode_field_sep int DEFAULT_BLOCKS_PER_RECORD concode_elem_sep int DEFAULT_COMPRESSION concode_elem_sep byte[] ZERO_BLOCK concode_elem_sep OutputStream writeStream concode_elem_sep boolean debug concode_elem_sep int NO_COM...
void function ( ) { if ( writeStream == null ) { return ; } try { writeStream . close ( ) ; if ( ! writeFile . delete ( ) ) { throw new IOException ( RB . workfile_delete_fail . getString ( writeFile . getAbsolutePath ( ) ) ) ; } } finally { writeStream = null ; } }
3,813
returns a result wrapping the result of merging the output value encapsulated in thisresult with the given mergevalue using the merger , or if this is the result of a #failed attempt , returns the #samefailure . concode_field_sep Result<Object> FAILURE concode_elem_sep Throwable failure concode_elem_sep Result<Object> ...
Result < V > function ( @ NonNull final U arg0 , @ NonNull final Merger < ? super T , ? super U , V > arg1 ) { if ( value != null ) { return success ( arg1 . merge ( value , arg0 ) ) ; } return sameFailure ( ) ; }
3,814
return the smaller of two numerics . concode_field_sep PlaceHolder placeHolder concode_field_sep Numeric addition2 concode_elem_sep Numeric max concode_elem_sep Numeric subtraction2 concode_elem_sep Numeric subtraction concode_elem_sep Numeric numeric concode_elem_sep Numeric abs2 concode_elem_sep Numeric negate2 conco...
Numeric function ( Numeric arg0 , Numeric arg1 ) { if ( arg0 . isAbsolute ( ) && arg1 . isAbsolute ( ) ) { return min2 ( arg0 , arg1 , null ) ; } else { return new RelativeNumericProperty ( RelativeNumericProperty . MIN , arg0 , arg1 ) ; } }
3,815
provides the name of the db parameter group . concode_field_sep String dBParameterGroupName concode_field_sep String getDBParameterGroupName concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep ModifyDBParameterGroupResult clone concode_elem_sep ModifyDBParameterGroupResult withDBParameterGrou...
void function ( String arg0 ) { this . dBParameterGroupName = arg0 ; }
3,816
serialize an instance , restore it , and check for equality . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testEquals
void function ( ) { LineNeedle loc0 = new LineNeedle ( ) ; LineNeedle loc1 = ( LineNeedle ) TestUtilities . serialised ( loc0 ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; }
3,817
return the sequence number of the payload . concode_field_sep long sequence concode_elem_sep ByteBuffer data concode_elem_sep String SEQ_HEADER concode_elem_sep char[] HEX_CHARS concode_elem_sep Log logger concode_elem_sep int BUFFER_SIZE concode_field_sep void writeTo concode_elem_sep void logOutgoing concode_elem_sep...
long function ( ) { return this . sequence ; }
3,818
get the aggregated value that an aggregator computed in the previous iteration . concode_field_sep K vertexId concode_elem_sep EdgesIterator<K,EV> edgeIterator concode_elem_sep long numberOfVertices concode_elem_sep long outDegree concode_elem_sep Iterator<?> edges concode_elem_sep long serialVersionUID concode_elem_se...
T function ( String arg0 ) { return this . runtimeContext . < T > getPreviousIterationAggregate ( arg0 ) ; }
3,819
returns the request id of this social request . concode_field_sep SocialRequest _socialRequest concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode...
long function ( ) { return _socialRequest . getRequestId ( ) ; }
3,820
creates an instance of ssliosession decorating the given iosession . this method can be overridden in a super class in order to provide a different implementation of ssl i/o session . concode_field_sep SSLIOSessionHandler sslHandler concode_elem_sep NHttpClientHandler handler concode_elem_sep SSLContext sslcontext conc...
SSLIOSession function ( final IOSession arg0 , final SSLContext arg1 , final SSLIOSessionHandler arg2 ) { return new SSLIOSession ( arg0 , arg1 , arg2 ) ; }
3,821
returns the word starting positions within line , excluding the first position 0 . the returned list is compatible with splitfixedwidth . concode_field_sep PlaceHolder placeHolder concode_field_sep String[] splitFixedWidth concode_elem_sep String[] splitWhiteSpace
List < Integer > function ( String arg0 ) { if ( arg0 == null ) throw new GATKException ( "srini_string" ) ; List < Integer > loc0 = new ArrayList < > ( ) ; int loc1 = arg0 . length ( ) ; for ( int loc2 = 1 ; loc2 < loc1 ; loc2 ++ ) if ( Character . isWhitespace ( arg0 . charAt ( loc2 - 1 ) ) ) if ( ! Character . isWhi...
3,822
check if a blobstore specific container exists or not concode_field_sep PlaceHolder placeHolder concode_field_sep void mkDirs concode_elem_sep InputStream readBlob concode_elem_sep void removeBlob concode_elem_sep long countBlob concode_elem_sep void clearContainer concode_elem_sep void removeBlobs concode_elem_sep voi...
boolean function ( BlobStore arg0 , String arg1 ) { boolean loc0 = arg0 . containerExists ( arg1 ) ; return loc0 ; }
3,823
sets the create date of this entry . concode_field_sep Entry _entry concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setContent concode_elem_sep boolean ...
void function ( long arg0 ) { _entry . setCreateDate ( arg0 ) ; }
3,824
performs a dynamic query on the database and returns the matching rows . concode_field_sep TypeLocalService _typeLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamic...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return _typeLocalService . arg0 ( arg0 ) ; }
3,825
reconnect thread concode_field_sep RolloverButton _button concode_elem_sep boolean _closedOnError concode_elem_sep JPanel _commandpanel concode_elem_sep long serialVersionUID concode_field_sep void authenticated concode_elem_sep void reconnectionFailed concode_elem_sep void setReconnectText concode_elem_sep void reconn...
void function ( ) { try { if ( _closedOnError ) { ( ( AbstractXMPPConnection ) SparkManager . getConnection ( ) ) . connect ( ) ; } else { SparkManager . getMainWindow ( ) . logout ( false ) ; } } catch ( Exception loc0 ) { loc0 . printStackTrace ( ) ; } }
3,826
by default , do n't provide any child paste override behaviour . concode_field_sep Map nameFeatureMap concode_elem_sep Object NULL_TOKEN concode_field_sep boolean shouldOverrideCopyOperation concode_elem_sep void setName concode_elem_sep boolean canContain concode_elem_sep XMLResource getResource concode_elem_sep Strin...
boolean function ( EObject arg0 , EObject arg1 ) { return false ; }
3,827
the name of the security group . concode_field_sep String groupName concode_elem_sep String groupId concode_field_sep String getGroupName concode_elem_sep GroupIdentifier withGroupName concode_elem_sep void setGroupId concode_elem_sep GroupIdentifier withGroupId concode_elem_sep int hashCode concode_elem_sep boolean eq...
void function ( String arg0 ) { this . groupName = arg0 ; }
3,828
gets the results value for this contactpage . concode_field_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize concode_elem_sep com.google.api.ads.dfp.axis.v201405.Contact[] results concode_elem_se...
com . google . api . ads . dfp . axis . v201405 . Contact [ ] function ( ) { return results ; }
3,829
make the principal name the same as the group name . concode_field_sep String password concode_elem_sep String fullName concode_elem_sep String username concode_field_sep void removeRole concode_elem_sep void setPassword concode_elem_sep boolean isInGroup concode_elem_sep void setUsername concode_elem_sep boolean isInR...
String function ( ) { return ( getUsername ( ) ) ; }
3,830
this method was generated by mybatis generator . this method returns the value of the database column actblh.erydat concode_field_sep Long draccm concode_elem_sep BigDecimal ddrirt concode_elem_sep String apcode concode_elem_sep String recsts concode_elem_sep Date bngdat concode_elem_sep BigDecimal crirat concode_elem_...
Date function ( ) { return erydat ; }
3,831
whether to autodetect proxy settings . concode_field_sep String proxyAutoconfigUrl concode_elem_sep String socksUsername concode_elem_sep String socksPassword concode_elem_sep boolean autodetect concode_elem_sep String httpProxy concode_elem_sep ProxyType proxyType concode_elem_sep String noProxy concode_elem_sep Strin...
boolean function ( ) { return autodetect ; }
3,832
report an error to an activity . these errors come up from webcore , and are network errors . concode_field_sep PlaceHolder placeHolder concode_field_sep void onPageStarted concode_elem_sep void onLoadResource concode_elem_sep boolean shouldOverrideKeyEvent concode_elem_sep void onPageFinished concode_elem_sep void onU...
void function ( WebView arg0 , int arg1 , String arg2 , String arg3 ) { }
3,833
saves the @param array to file : @param filename concode_field_sep Formatter formatter concode_field_sep void printDoubleArrayToFile concode_elem_sep void print2DTabbedDoubleArrayToConole concode_elem_sep void printFloatArrayToFile concode_elem_sep void printFloatArrayToConole concode_elem_sep void print2DDoubleArrayTo...
void function ( int [ ] arg0 , String arg1 ) { try { formatter = new Formatter ( arg1 ) ; } catch ( FileNotFoundException loc0 ) { System . err . println ( "srini_string" + arg1 ) ; return ; } for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { formatter . format ( "srini_string" , arg0 [ loc0 ] ) ; } formatter . f...
3,834
get the ip addresses of an unknown interface concode_field_sep String DEFAULT concode_elem_sep Log LOG concode_field_sep void testGetLocalHostIsFast concode_elem_sep void testNullInterface concode_elem_sep void testLocalhostResolves concode_elem_sep void testGetIPWithDefault concode_elem_sep InetAddress getLocalIPAddr ...
void function ( ) { try { DNS . getIPs ( "srini_string" ) ; fail ( "srini_string" ) ; } catch ( UnknownHostException loc0 ) { assertEquals ( "srini_string" , loc0 . getMessage ( ) ) ; } }
3,835
set the framing rectangle of this shape using the center of the frame , and one of the four corners . the area will be positive . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean intersects concode_elem_sep Rectangle2D getFrame concode_elem_sep double getMaxX concode_elem_sep boolean isEmpty concode_...
void function ( double arg0 , double arg1 , double arg2 , double arg3 ) { double loc0 = Math . abs ( arg2 - arg0 ) ; double loc1 = Math . abs ( arg3 - arg1 ) ; setFrame ( arg0 - loc0 , arg1 - loc1 , loc0 + loc0 , loc1 + loc1 ) ; }
3,836
sets the primary key of this s a m todo list . concode_field_sep SAMTodoList _samTodoList concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concod...
void function ( long arg0 ) { _samTodoList . setPrimaryKey ( arg0 ) ; }
3,837
simple test routine . concode_field_sep PlaceHolder placeHolder concode_field_sep void bitreverse concode_elem_sep void inverse concode_elem_sep void transform concode_elem_sep double test concode_elem_sep double num_flops concode_elem_sep void transform_internal concode_elem_sep int log2 concode_elem_sep double[] make...
void function ( String arg0 [ ] ) { if ( arg0 . length == 0 ) { int loc0 = 1024 ; System . out . println ( "srini_string" + loc0 + "srini_string" + test ( makeRandom ( loc0 ) ) ) ; } for ( int loc0 = 0 ; loc0 < arg0 . length ; loc0 ++ ) { int loc1 = Integer . parseInt ( arg0 [ loc0 ] ) ; System . out . println ( "srini...
3,838
end pass n. concode_field_sep ShaderProvider[] passShaderProviders concode_elem_sep BaseLight currentLight concode_elem_sep LightProperties currentLightProperties concode_elem_sep DirectionalAnalyzer directionalAnalyzer concode_elem_sep TextureRegion region concode_elem_sep PointLightProperties currentPointProperties c...
void function ( int arg0 ) { frameBuffers [ arg0 ] . end ( ) ; }
3,839
returns the amino acid sequence . concode_field_sep String sequence concode_elem_sep int charge concode_elem_sep Map<String,String> attributes concode_elem_sep MascotProteinHit parentProteinHit concode_elem_sep double mz concode_elem_sep Map<Integer,MascotModification> modifications concode_elem_sep String scanTitle co...
String function ( ) { return sequence ; }
3,840
log a message with the error level . concode_field_sep ALogger logger concode_elem_sep play.api.Logger logger concode_field_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void trace concode_elem_sep vo...
void function ( String arg0 ) { logger . error ( arg0 ) ; }
3,841
get a string representing the token . this method is equivalent to getvalue . concode_field_sep MIPSprogram originalMIPSprogram concode_elem_sep int originalSourceLine concode_elem_sep int sourceLine concode_elem_sep MIPSprogram sourceMIPSprogram concode_elem_sep TokenTypes type concode_elem_sep String value concode_el...
String function ( ) { return value ; }
3,842
this method resets the outgoing events . concode_field_sep long exits concode_elem_sep long entries concode_elem_sep boolean e concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep int nextStateIndex concode_elem_sep boolean e1 concode_elem_sep State[] stateVector concode_field_sep void exitSequence_main_region...
void function ( ) { }
3,843
sets the region id of this region . concode_field_sep Region _region concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang....
void function ( long arg0 ) { _region . setRegionId ( arg0 ) ; }
3,844
returns a range of all the foos . 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 #all_pos wi...
java . util . List < com . example . sample . model . Foo > function ( int arg0 , int arg1 ) { return _fooLocalService . getFoos ( arg0 , arg1 ) ; }
3,845
add an additional partstructure too the list concode_field_sep String _openUrl concode_elem_sep String _database concode_elem_sep String _displayName concode_elem_sep org.osid.shared.Id __id concode_elem_sep Serializable __value concode_elem_sep String _id concode_elem_sep List _partStructureList concode_elem_sep org.a...
void function ( org . osid . shared . Id arg0 , Serializable arg1 ) { _partStructureList . add ( new PartPair ( arg0 , arg1 ) ) ; }
3,846
returns generated value in the session context . concode_field_sep NumberSequence sequence concode_elem_sep Expression defaultExpression concode_elem_sep boolean isNullable concode_elem_sep boolean isIdentity concode_elem_sep boolean isPrimaryKey concode_elem_sep Type type concode_elem_sep HsqlName columnName concode_e...
Object function ( Session arg0 ) { return generatingExpression == null ? null : generatingExpression . getValue ( arg0 , type ) ; }
3,847
retrieves the absolute path , given some path specification . concode_field_sep boolean fsNormalizesPosixSeparator concode_elem_sep FileDescriptor outDescriptor concode_elem_sep FileUtil fileUtil concode_elem_sep Random random concode_elem_sep boolean fsIsIgnoreCase concode_field_sep void renameElement concode_elem_sep...
String function ( String arg0 ) { return ( new File ( arg0 ) ) . getAbsolutePath ( ) ; }
3,848
returns the plugin 's service name what you 'd use when calling pluginmanger.getplugin concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_elem_sep String serviceName concode_field_sep boolean onReceivedClientCertRequest concode_elem...
String function ( ) { return serviceName ; }
3,849
tests whether there were errors initializing language config concode_field_sep String PROPERTIES_OVERRIDE_FILE concode_elem_sep double CERTAINTY_LIMIT concode_elem_sep String PROFILE_ENCODING concode_elem_sep String errors concode_elem_sep String LANGUAGES_KEY concode_elem_sep double distance concode_elem_sep String PR...
boolean function ( ) { return errors != "srini_string" ; }
3,850
set the uri pointing to a logo image of the client application concode_field_sep String clientIpAddress concode_elem_sep String clientId concode_elem_sep List<String> allowedGrantTypes concode_elem_sep boolean isConfidential concode_elem_sep boolean registeredDynamically concode_elem_sep List<String> applicationCertifi...
void function ( String arg0 ) { this . applicationLogoUri = arg0 ; }
3,851
checks if we have a database connection concode_field_sep ItemRegistry itemRegistry concode_elem_sep String FIELD_REALNAME concode_elem_sep String FIELD_ITEM concode_elem_sep MongoClient cl concode_elem_sep String collection concode_elem_sep String url concode_elem_sep String FIELD_TIMESTAMP concode_elem_sep String FIE...
boolean function ( ) { return cl != null ; }
3,852
sets the user tracker path id of this user tracker path . concode_field_sep UserTrackerPath _userTrackerPath concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep ...
void function ( long arg0 ) { _userTrackerPath . setUserTrackerPathId ( arg0 ) ; }
3,853
gets the value of the content property . objects of the following type s are allowed in the list org.w3c.dom.element string object concode_field_sep List<Object> content concode_elem_sep URI algorithm concode_field_sep void removeTransform concode_elem_sep URI getAlgorithm concode_elem_sep void addTransform
List < Object > function ( ) { return Collections . unmodifiableList ( this . content ) ; }
3,854
set the host to which this server will bind . concode_field_sep Environment environment concode_elem_sep String framing concode_elem_sep String TCP concode_elem_sep int port concode_elem_sep Codec delegateCodec concode_elem_sep Map<String,Codec> codecs concode_elem_sep int lengthFieldLength concode_elem_sep String host...
ReactorPeerFactoryBean < IN , OUT > function ( String arg0 ) { Assert . notNull ( arg0 , "srini_string" ) ; this . host = arg0 ; return this ; }
3,855
this method was generated by mybatis generator . this method returns the value of the database column t_article . author concode_field_sep String imgUrl concode_elem_sep String author concode_elem_sep Integer num concode_elem_sep String name concode_elem_sep String index concode_elem_sep Integer id concode_elem_sep Dat...
String function ( ) { return author ; }
3,856
the actual response indexresponse or deleteresponse . null in case of failure . concode_field_sep ActionWriteResponse response concode_elem_sep Failure failure concode_elem_sep String opType concode_elem_sep String index concode_elem_sep Throwable cause concode_elem_sep int id concode_elem_sep String type concode_elem_...
T function ( ) { return ( T ) response ; }
3,857
create a spring with a random uuid for its name . 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 remov...
Spring function ( ) { Spring loc0 = new Spring ( this ) ; registerSpring ( loc0 ) ; return loc0 ; }
3,858
size of the boolean for the ov-chip protocol layer , see ds.ov2.util.apdu _ serializable #size apdu_serializable . size . concode_field_sep boolean value concode_field_sep boolean is_compatible_with concode_elem_sep short to_byte_array concode_elem_sep short from_byte_array
short function ( ) { return 1 ; }
3,859
sets the value of the acceptableanswers property . concode_field_sep AcceptableAnswers acceptableAnswers concode_elem_sep String questionId concode_elem_sep List<AssessmentAnswers> assessmentAnswer concode_elem_sep long serialVersionUID concode_elem_sep String questionName concode_elem_sep String questionScript concode...
void function ( AcceptableAnswers arg0 ) { this . acceptableAnswers = arg0 ; }
3,860
getting the map of this game concode_field_sep Stack<Pokemon> pokemon concode_elem_sep Stack<Station> station concode_elem_sep Player HKUST concode_elem_sep Map map concode_field_sep Player getPlayer concode_elem_sep void addPlayer concode_elem_sep boolean go concode_elem_sep void main concode_elem_sep void initialize ...
Map function ( ) { return map ; }
3,861
returns the name representing the url eg . jive software . this can be used in as a label , or identifer in applications . concode_field_sep boolean isRss concode_elem_sep String name concode_elem_sep String URL concode_elem_sep boolean isShared concode_field_sep void setName concode_elem_sep String getURL concode_elem...
String function ( ) { return name ; }
3,862
retreive the portlet state container associated with the current session . concode_field_sep Map stateMap concode_elem_sep String PORTLET_STATE_PARAM concode_field_sep void add concode_elem_sep PortletState getPortletState concode_elem_sep PortletState get concode_elem_sep void setPortletState
PortletStateContainer function ( HttpSession arg0 ) { PortletStateContainer loc0 = ( PortletStateContainer ) arg0 . getAttribute ( PORTLET_STATE_PARAM ) ; if ( loc0 == null ) { loc0 = new PortletStateContainer ( ) ; arg0 . setAttribute ( PORTLET_STATE_PARAM , loc0 ) ; } return loc0 ; }
3,863
this implementation throws a filenotfoundexception , assuming that the resource can not be resolved to an absolute file path . concode_field_sep PlaceHolder placeHolder concode_field_sep URL getURL concode_elem_sep boolean isOpen concode_elem_sep File getFileForLastModifiedCheck concode_elem_sep String getFilename conc...
File function ( ) { throw new FileNotFoundException ( getDescription ( ) + "srini_string" ) ; }
3,864
returns the euclidean distance between this rectangle and the point p. concode_field_sep double ymin concode_elem_sep double xmin concode_elem_sep double ymax concode_elem_sep double xmax concode_field_sep double distanceSquaredTo concode_elem_sep double ymin concode_elem_sep double xmin concode_elem_sep boolean inters...
double function ( Point2D arg0 ) { return Math . sqrt ( this . distanceSquaredTo ( arg0 ) ) ; }
3,865
sets the value of the groupid property . concode_field_sep String repoId concode_elem_sep String extension concode_elem_sep String artifactLink concode_elem_sep String groupId concode_elem_sep String classifier concode_elem_sep String artifactId concode_elem_sep String packaging concode_elem_sep String contextId concod...
void function ( String arg0 ) { this . groupId = arg0 ; }
3,866
injects dependencies into task and its children , if it was set via io.piotrjastrzebski.bte.aieditor #settaskinjector taskinjector concode_field_sep Array<ChangeListener> listeners concode_elem_sep TaskModel parent concode_elem_sep boolean init concode_elem_sep TaskModel guard concode_elem_sep boolean readOnly concode_...
void function ( Task arg0 ) { if ( injector != null && arg0 != null ) { injector . inject ( arg0 ) ; } }
3,867
unregisters an encoding concode_field_sep String _GIF_EXTENSION concode_elem_sep String GIF_TYPE concode_elem_sep ImageEncoderManager _sDefaultInstance concode_elem_sep ArrayMap<String,String> _extensions concode_elem_sep String _PNG_EXTENSION concode_elem_sep String PNG_TYPE concode_elem_sep ArrayMap<String,Object> _e...
void function ( String arg0 ) { synchronized ( this ) { _encoders . remove ( arg0 ) ; _extensions . remove ( arg0 ) ; } }
3,868
returns the index id of the next record . concode_field_sep IndexManager indexMgr concode_elem_sep ByteBuffer cache concode_elem_sep long offset concode_elem_sep FileChannel channel concode_elem_sep Integer indexID concode_elem_sep long end concode_elem_sep int id concode_elem_sep long begin concode_elem_sep RecordStat...
Integer function ( ) { if ( indexID == null ) { try { getNextRecord ( ) ; } catch ( IOException loc0 ) { Message loc1 = ERR_JEB_IMPORT_BUFFER_IO_ERROR . get ( indexMgr . getBufferFileName ( ) ) ; logError ( loc1 ) ; throw new RuntimeException ( loc0 ) ; } } return indexID ; }
3,869
sets the sort order . default is false , i.e. order by relevance . concode_field_sep boolean fOrderAlphabetically concode_field_sep int compare concode_elem_sep int getRelevance concode_elem_sep String getSortKey
void function ( boolean arg0 ) { fOrderAlphabetically = arg0 ; }
3,870
adds usersearchproviderlistener instance to the list of listeners . concode_field_sep List<UserSearchProviderListener> listeners concode_elem_sep String USER_SEARCH_SERVICE_NAME concode_elem_sep ProtocolProviderServiceJabberImpl provider concode_elem_sep String serviceName concode_elem_sep Boolean userSearchEnabled con...
void function ( UserSearchProviderListener arg0 ) { synchronized ( listeners ) { if ( ! listeners . contains ( arg0 ) ) listeners . add ( arg0 ) ; } }
3,871
initializes sequences after dbunit inserts concode_field_sep EmpireConfiguration emireCfg concode_elem_sep String dtdSchema concode_field_sep IDatabaseConnection getConnection concode_elem_sep IDatabaseConnection getConnection concode_elem_sep IDatabaseConnection getConnection concode_elem_sep Connection getSqlConnecti...
void function ( Transaction arg0 , int arg1 , String ... arg2 ) { initSequences ( getSqlConnection ( arg0 ) , arg1 , arg2 ) ; }
3,872
gets the total number of rtp data packets from this source that have been lost since the beginning of reception . this number is defined to be the number of packets expected less the number of packets actually received , where the number of packets received includes any which are late or duplicates . thus , packets tha...
long function ( ) { long loc0 = getPacketsExpected ( ) - this . receivedPackets ; if ( loc0 > 0x7fffff ) { return 0x7fffff ; } if ( loc0 < - 0x800000 ) { return - 0x800000 ; } return loc0 ; }
3,873
returns the osgi service identifier . concode_field_sep SVNRepositoryLocalService _service concode_field_sep com.liferay.socialcoding.model.SVNRepository updateSVNRepository concode_elem_sep void updateSVNRepository concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery conc...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
3,874
sets the value of the description property . concode_field_sep List<Object> citationOrProtocol concode_elem_sep List<SoftwareType> software concode_elem_sep TextType description concode_elem_sep List<String> instrumentation concode_elem_sep List<ProcedureStepType> subStep concode_field_sep List<SoftwareType> getSoftwar...
void function ( TextType arg0 ) { this . description = arg0 ; }
3,875
get bounding face rectangle infrared concode_field_sep KRectangle rectColor concode_elem_sep KRectangle rectInfrared concode_elem_sep PVector[] faceInfraredPoints concode_elem_sep boolean faceTracked concode_elem_sep float roll concode_elem_sep FaceFeatures[] facefeatures concode_elem_sep PVector[] faceColorPoints conc...
KRectangle function ( ) { return rectInfrared ; }
3,876
gets the value of the catalogheader property . concode_field_sep List<NotificationTemplate> notification concode_elem_sep List<Product> product concode_elem_sep List<Object> lookupTable concode_elem_sep CatalogHeader catalogHeader concode_elem_sep long serialVersionUID concode_elem_sep List<Classification> classificati...
CatalogHeader function ( ) { return catalogHeader ; }
3,877
given a comma separated string , get the tokens as a list concode_field_sep PicketLinkLogger logger concode_field_sep boolean isNotNull concode_elem_sep String getSystemPropertyAsString concode_elem_sep String[] split concode_elem_sep boolean isNullOrEmpty concode_elem_sep void match concode_elem_sep Map<String,String>...
List < String > function ( String arg0 ) { return tokenize ( arg0 , "srini_string" ) ; }
3,878
return true if this token represents an operator that can be defined by users . concode_field_sep Token next concode_elem_sep int offset concode_elem_sep Token previous concode_elem_sep TokenType type concode_field_sep Token getPrevious concode_elem_sep int getOffset concode_elem_sep boolean isSynthetic concode_elem_se...
boolean function ( ) { return type . isUserDefinableOperator ( ) ; }
3,879
get year in yyyy format based on provided date concode_field_sep Long localizedEpoch concode_field_sep int epochToClarionDate concode_elem_sep int date concode_elem_sep int month concode_elem_sep int today concode_elem_sep int clock concode_elem_sep int day concode_elem_sep String age concode_elem_sep long clarionDateT...
int function ( int arg0 ) { Calendar loc0 = Calendar . getInstance ( ) ; loc0 . setTimeInMillis ( clarionDateToEpoch ( arg0 ) ) ; return loc0 . get ( Calendar . YEAR ) ; }
3,880
returns newly created autonomoussystemtlv object . concode_field_sep int rawValue concode_elem_sep short TYPE concode_elem_sep Logger log concode_elem_sep short LENGTH concode_field_sep PcepVersion getVersion concode_elem_sep int getInt concode_elem_sep AutonomousSystemTlv read concode_elem_sep short getType concode_el...
AutonomousSystemTlv function ( final int arg0 ) { return new AutonomousSystemTlv ( arg0 ) ; }
3,881
encodes the set bits in a form suitable for zip archives . concode_field_sep int UFT8_NAMES_FLAG concode_elem_sep boolean strongEncryptionFlag concode_elem_sep boolean encryptionFlag concode_elem_sep boolean languageEncodingFlag concode_elem_sep int DATA_DESCRIPTOR_FLAG concode_elem_sep int STRONG_ENCRYPTION_FLAG conco...
void function ( byte [ ] arg0 , int arg1 ) { ZipShort . putShort ( ( dataDescriptorFlag ? DATA_DESCRIPTOR_FLAG : 0 ) | ( languageEncodingFlag ? UFT8_NAMES_FLAG : 0 ) | ( encryptionFlag ? ENCRYPTION_FLAG : 0 ) | ( strongEncryptionFlag ? STRONG_ENCRYPTION_FLAG : 0 ) , arg0 , arg1 ) ; }
3,882
gets the value of the intgpd property . concode_field_sep String optFields concode_elem_sep String trgOps concode_elem_sep String cbName concode_elem_sep String datSet concode_elem_sep String rptID concode_elem_sep String value concode_elem_sep String intgPd concode_elem_sep String bufTime concode_field_sep String getT...
String function ( ) { return intgPd ; }
3,883
call this from oncreate so that any saved startactivityforresult parameters will be restored . concode_field_sep Activity activity concode_elem_sep int resultCode concode_elem_sep int activityResultRequestCode concode_elem_sep Intent intent concode_elem_sep Bundle savedPluginState concode_elem_sep String TAG concode_el...
void function ( Bundle arg0 ) { initCallbackService = arg0 . getString ( "srini_string" ) ; savedPluginState = arg0 . getBundle ( "srini_string" ) ; activityWasDestroyed = true ; }
3,884
create a new pileupelement based on the current state of this element must not be a left or right edge concode_field_sep GATKRead read concode_elem_sep int offsetIntoCurrentCigarElement concode_elem_sep Cigar cigar concode_elem_sep int readOffset concode_elem_sep int genomeOffset concode_elem_sep int nCigarElements con...
PileupElement function ( ) { if ( isLeftEdge ( ) || isRightEdge ( ) ) throw new IllegalStateException ( "srini_string" ) ; return new PileupElement ( read , getReadOffset ( ) , getCurrentCigarElement ( ) , getCurrentCigarElementOffset ( ) , getOffsetIntoCurrentCigarElement ( ) ) ; }
3,885
gets whether this opcode is commutative the order of its sources are unimportant or not . all commutative rops have exactly two sources and have no branchiness . concode_field_sep int BRANCH_RETURN concode_elem_sep int BRANCH_GOTO concode_elem_sep int BRANCH_IF concode_elem_sep TypeList sources concode_elem_sep int BRA...
boolean function ( ) { switch ( opcode ) { case RegOps . AND : case RegOps . OR : case RegOps . XOR : case RegOps . ADD : case RegOps . MUL : return true ; default : return false ; } }
3,886
returns the value of the global variable spi_tuptable . concode_field_sep int ERROR_NOATTRIBUTE concode_elem_sep int OK_SELINTO concode_elem_sep int OK_CURSOR concode_elem_sep int ERROR_OPUNKNOWN concode_elem_sep int ERROR_UNCONNECTED concode_elem_sep int ERROR_COPY concode_elem_sep int ERROR_CONNECT concode_elem_sep i...
TupleTable function ( TupleDesc arg0 ) { synchronized ( Backend . THREADLOCK ) { return _getTupTable ( arg0 ) ; } }
3,887
resolves all the parameters . concode_field_sep SimpleDateFormat datetimeFormat concode_elem_sep String DATE_FORMAT concode_elem_sep SimpleDateFormat dateFormat concode_elem_sep int FIND_FILES_MAX_DEPTH concode_elem_sep String DATE_TIME_FORMAT concode_field_sep String getDateTimeAsString concode_elem_sep String getSyst...
String function ( String arg0 , DateTime arg1 , String arg2 , String arg3 ) { return injectParams ( arg0 , getSystemUserName ( ) , arg1 , arg2 , arg3 ) ; }
3,888
get / authenticate : check if the user is authenticated , and return its login . concode_field_sep Logger log concode_field_sep ResponseEntity<UserDTO> getAccount
String function ( HttpServletRequest arg0 ) { log . debug ( "srini_string" ) ; return arg0 . getRemoteUser ( ) ; }
3,889
multiplikation 2er zahlen concode_field_sep int currentTotal concode_field_sep void setTotal concode_elem_sep void add concode_elem_sep String getTotalString concode_elem_sep void subtract concode_elem_sep void divide concode_elem_sep int convertToNumber
void function ( String arg0 ) { currentTotal *= convertToNumber ( arg0 ) ; }
3,890
return a string representation of the label . for a multipart label , this will return all parts . the tostring method causes a label to spill its guts . it should always return an empty string rather than null if there is no value . concode_field_sep String DIVIDER concode_elem_sep String tag concode_elem_sep String w...
String function ( ) { return toString ( DIVIDER ) ; }
3,891
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_elem_sep boolean event2 concode_field_sep SCInterface getSCInterface concode_elem_sep void raiseEvent2 concode_elem_sep ...
void function ( ) { }
3,892
add a port . currently only a single port is being used . concode_field_sep long m_pollInterval concode_elem_sep DeviceStatus m_status concode_elem_sep ArrayList<String> m_ports concode_elem_sep Driver m_driver concode_elem_sep Long m_lastMsgReceived concode_elem_sep Logger logger concode_elem_sep Deque<QEntry> m_reque...
void function ( String arg0 ) { if ( arg0 == null ) return ; if ( ! m_ports . contains ( arg0 ) ) { m_ports . add ( arg0 ) ; } }
3,893
returns the hint of the specified type . null if not found concode_field_sep PlaceHolder placeHolder concode_field_sep String toClassString concode_elem_sep Any hint concode_elem_sep Any hint concode_elem_sep Object[] join concode_elem_sep boolean containsHint concode_elem_sep boolean containsHint
Any function ( Object [ ] arg0 , Class < Any > arg1 ) { if ( arg0 != null ) { for ( int loc0 = arg0 . length - 1 ; loc0 >= 0 ; loc0 -- ) { if ( arg1 . isInstance ( arg0 [ loc0 ] ) ) { return ( Any ) arg0 [ loc0 ] ; } } } return null ; }
3,894
sets the value of the value property . concode_field_sep Value value concode_elem_sep String key concode_field_sep String getKey concode_elem_sep Value getValue concode_elem_sep void setKey
void function ( Value arg0 ) { this . value = arg0 ; }
3,895
get the start date . concode_field_sep String phase concode_elem_sep Datum startDate concode_elem_sep Datum stopDate concode_elem_sep String desc concode_field_sep String makeLine concode_elem_sep boolean setData concode_elem_sep boolean before concode_elem_sep boolean inTimeFrame concode_elem_sep String getDesc concod...
Datum function ( ) { return startDate ; }
3,896
create an svg clip . concode_field_sep String SVG_NS concode_field_sep Rectangle2D getStringBounds concode_elem_sep Element createImage concode_elem_sep float getStringWidth concode_elem_sep Element createG concode_elem_sep Element createText concode_elem_sep Element createLine concode_elem_sep float getStringHeight co...
Element function ( Document arg0 , Element arg1 , String arg2 ) { Element loc0 = arg0 . createElementNS ( SVG_NS , "srini_string" ) ; loc0 . setAttributeNS ( null , "srini_string" , arg2 ) ; loc0 . appendChild ( arg1 ) ; return loc0 ; }
3,897
returns the standard deviation . concode_field_sep Number mean concode_elem_sep long serialVersionUID concode_elem_sep Number standardDeviation concode_field_sep double getMeanValue concode_elem_sep boolean equals concode_elem_sep double getStandardDeviationValue concode_elem_sep Number getMean concode_elem_sep String ...
Number function ( ) { return this . standardDeviation ; }
3,898
writes to xml . concode_field_sep PlaceHolder placeHolder concode_field_sep ExchangeVersion getVersion concode_elem_sep void writeAttributesToXml concode_elem_sep Class<?> getType concode_elem_sep boolean tryLoadFromXml concode_elem_sep String toString concode_elem_sep String getPrintableName concode_elem_sep String ge...
void function ( EwsServiceXmlWriter arg0 ) { arg0 . writeStartElement ( XmlNamespace . Types , this . getXmlElementName ( ) ) ; this . writeAttributesToXml ( arg0 ) ; arg0 . writeEndElement ( ) ; }
3,899
returns the start of the given day as a java.util.calendar . this calculation will take the basecalendar time zone into account if it is not null . concode_field_sep String description concode_elem_sep TimeZone timeZone concode_elem_sep long serialVersionUID concode_elem_sep Calendar baseCalendar concode_field_sep java...
java . util . Calendar function ( long arg0 ) { java . util . Calendar loc0 = createJavaCalendar ( arg0 ) ; loc0 . set ( java . util . Calendar . HOUR_OF_DAY , 0 ) ; loc0 . set ( java . util . Calendar . MINUTE , 0 ) ; loc0 . set ( java . util . Calendar . SECOND , 0 ) ; loc0 . set ( java . util . Calendar . MILLISECON...