idx
int64
0
25k
question
stringlengths
71
7.19k
target
stringlengths
20
663
1,800
deletes the announcements delivery with the primary key from the database . also notifies the appropriate model listeners . concode_field_sep AnnouncementsDeliveryLocalService _service concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery g...
com . liferay . announcements . kernel . model . AnnouncementsDelivery function ( long arg0 ) { return getService ( ) . deleteAnnouncementsDelivery ( arg0 ) ; }
1,801
determine the generic value type of the given map field . concode_field_sep PlaceHolder placeHolder concode_field_sep Class<?> getCollectionReturnType concode_elem_sep Class<?> getCollectionReturnType concode_elem_sep Class<?> getMapValueParameterType concode_elem_sep Class<?> getMapKeyReturnType concode_elem_sep Class...
Class < ? > function ( Field arg0 , int arg1 , Map < Integer , Integer > arg2 ) { return ResolvableType . forField ( arg0 ) . getNested ( arg1 , arg2 ) . asMap ( ) . resolveGeneric ( 1 ) ; }
1,802
square and store result in accum b concode_field_sep long A concode_elem_sep long B concode_field_sep void negB concode_elem_sep void negA concode_elem_sep void clearB concode_elem_sep void clearA concode_elem_sep void squareAndAddToB concode_elem_sep void mulAndAddToA concode_elem_sep int getUpperA concode_elem_sep vo...
void function ( int arg0 ) { B = arg0 * arg0 ; }
1,803
setter for state concode_field_sep String sharedKey concode_elem_sep Server server concode_elem_sep Date nextActionTime concode_elem_sep Date created concode_elem_sep String jabberId concode_elem_sep String name concode_elem_sep Date modified concode_elem_sep Date lastMessageTime concode_elem_sep Long id concode_elem_s...
void function ( PushClientState arg0 ) { this . state = arg0 ; }
1,804
consume an event concode_field_sep Logger log concode_elem_sep BitstreamInfoDAO bitstreamInfoDAO concode_field_sep void end concode_elem_sep void finish concode_elem_sep void initialize
void function ( Context arg0 , Event arg1 ) { if ( arg1 . getEventType ( ) == Event . DELETE ) { log . debug ( "srini_string" ) ; bitstreamInfoDAO . deleteBitstreamInfoWithHistory ( arg1 . getSubjectID ( ) ) ; log . debug ( "srini_string" ) ; } }
1,805
the destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled . returns a reference to this object so that method calls can be chained together . concode_field_sep String destinationRegion concode_elem_sep String snapshotCopyGrantName concode_elem_sep Long retentionPeriod ...
ClusterSnapshotCopyStatus function ( String arg0 ) { this . destinationRegion = arg0 ; return this ; }
1,806
returns a new char buffer based on the specified char array . concode_field_sep PlaceHolder placeHolder concode_field_sep DoubleBuffer newDoubleBuffer concode_elem_sep DoubleBuffer newDoubleBuffer concode_elem_sep LongBuffer newLongBuffer concode_elem_sep LongBuffer newLongBuffer concode_elem_sep FloatBuffer newFloatBu...
CharBuffer function ( char arg0 [ ] ) { return new ReadWriteCharArrayBuffer ( arg0 ) ; }
1,807
the unique identifier of the shard within the amazon kinesis stream . concode_field_sep String parentShardId concode_elem_sep SequenceNumberRange sequenceNumberRange concode_elem_sep String shardId concode_elem_sep HashKeyRange hashKeyRange concode_elem_sep String adjacentParentShardId concode_field_sep void setAdjacen...
void function ( String arg0 ) { this . shardId = arg0 ; }
1,808
creates a new instance of generalpath for this abstracttext object and applies the current pagetransformation to it . the containment calculation is then applied the newly tranformed path for the given rectangle . this method is usually used for text selection via a selection box . concode_field_sep boolean highlight c...
boolean function ( Rectangle2D arg0 ) { GeneralPath loc0 = new GeneralPath ( getBounds ( ) ) ; return loc0 . intersects ( arg0 ) ; }
1,809
close the microphone capture , saving all processed audio to the specified file . if already closed , this does nothing concode_field_sep File audioFile concode_elem_sep TargetDataLine targetDataLine concode_elem_sep CaptureState state concode_elem_sep AudioFileFormat.Type fileType concode_field_sep File getAudioFile c...
void function ( ) { if ( getState ( ) == CaptureState . CLOSED ) { } else { getTargetDataLine ( ) . stop ( ) ; getTargetDataLine ( ) . close ( ) ; } }
1,810
set the named environment entry to the specified value . concode_field_sep String PREFIX concode_elem_sep boolean trace concode_elem_sep String SHORT_PREFIX concode_elem_sep File logfile concode_elem_sep Map<String,String> env concode_elem_sep boolean debug concode_field_sep void setShortPrefix concode_elem_sep String ...
String function ( String arg0 , String arg1 ) { return env . put ( arg0 , arg1 ) ; }
1,811
gets the optional params . concode_field_sep List<LinkParameter> requiredParams concode_elem_sep String rel concode_elem_sep List<LinkParameter> optionalParams concode_elem_sep String href concode_elem_sep HttpMethod httpMethod concode_elem_sep Pattern PATH_VAR_PATTERN concode_field_sep String getHref concode_elem_sep ...
List < LinkParameter > function ( ) { return optionalParams ; }
1,812
sets the value of the prop property . concode_field_sep String syncToken concode_elem_sep Prop prop concode_elem_sep BigInteger limit concode_elem_sep String syncLevel concode_field_sep String getSyncToken concode_elem_sep void setSyncToken concode_elem_sep BigInteger getLimit concode_elem_sep String getSyncLevel conco...
void function ( Prop arg0 ) { this . prop = arg0 ; }
1,813
set the task executor for this request factory . setting this property is required for @linkplain #createasyncrequest uri , httpmethod creating asynchronous requests . concode_field_sep int connectTimeout concode_elem_sep Proxy proxy concode_elem_sep boolean bufferRequestBody concode_elem_sep boolean outputStreaming co...
void function ( AsyncListenableTaskExecutor arg0 ) { this . taskExecutor = arg0 ; }
1,814
get custom serializer concode_field_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String targetType concode_field_sep java.lang.String getTargetType concode_elem_sep org.apache.axis.description.TypeDesc...
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 ) ; }
1,815
sets the seed for this pseudorandom number generator . as described above , two instances of the same random class , starting with the same seed , should produce the same results , if the same methods are called . the implementation for java.util.random is : public synchronized void setseed long seed this.seed = seed ^...
void function ( long arg0 ) { this . seed = ( arg0 ^ 0x5DEECE66DL ) & ( ( 1L << 48 ) - 1 ) ; haveNextNextGaussian = false ; }
1,816
this is the function users of the framework are expected to use to download file list . concode_field_sep String _share concode_elem_sep int AWAY_FLAG concode_elem_sep int FIREBALL_AWAY_FLAG concode_elem_sep boolean hasQuit concode_elem_sep String _CID concode_elem_sep int NORMAL_FLAG concode_elem_sep String _desc conc...
void function ( OutputStream arg0 , int arg1 ) { DUEntity loc0 = new DUEntity ( DUEntity . Type . FILELIST , "srini_string" , 0 , - 1 , arg0 , arg1 ) ; _bot . downloadManager . download ( loc0 , this ) ; }
1,817
error log message . 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 boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void set...
void function ( String arg0 , String arg1 ) { if ( LOG . ERROR >= LOGLEVEL ) Log . e ( arg0 , arg1 ) ; }
1,818
appends the string representation of each entry in entries , using the previously configured separator and key-value separator , to builder . identical to #appendto appendable , iterable , except that it does not throw ioexception . concode_field_sep String keyValueSeparator concode_elem_sep Joiner joiner concode_elem_...
StringBuilder function ( StringBuilder arg0 , Iterable < ? extends Map . Entry < ? , ? >> arg1 ) { return appendTo ( arg0 , arg1 . iterator ( ) ) ; }
1,819
reads the next unsigned byte from the buffer . concode_field_sep Logger logger concode_elem_sep CharsetDecoder utfDecoder concode_elem_sep ByteBuf buf concode_field_sep byte getByte concode_elem_sep short getShort concode_elem_sep String getUTFString concode_elem_sep String getUTFString concode_elem_sep int getUnsigned...
short function ( ) { return buf . readUnsignedByte ( ) ; }
1,820
returns org.apache.hadoop.hbase.security.saslutil.qualityofprotection corresponding to the given stringqop value . concode_field_sep String saslQop concode_elem_sep Log log concode_elem_sep int SWITCH_TO_SIMPLE_AUTH concode_elem_sep String SASL_DEFAULT_REALM concode_field_sep String getSaslQop concode_elem_sep Map<Stri...
QualityOfProtection function ( String arg0 ) { for ( QualityOfProtection loc0 : QualityOfProtection . values ( ) ) { if ( loc0 . matches ( arg0 ) ) { return loc0 ; } } throw new IllegalArgumentException ( "srini_string" + arg0 + "srini_string" ) ; }
1,821
stop the stop watch . concode_field_sep double NANOS_PER_SEC concode_elem_sep long startTime concode_elem_sep long stopTime concode_field_sep void start concode_elem_sep String toString concode_elem_sep double time concode_elem_sep long timeInNanoseconds
void function ( ) { stopTime = System . nanoTime ( ) ; }
1,822
returns the number of live threads . concode_field_sep int filled concode_field_sep long getThreadCpuTime concode_elem_sep int getDaemonThreadCount concode_elem_sep void getMonitorInfo concode_elem_sep long[] findMonitorDeadlockedThreads concode_elem_sep void resetPeakThreadCount concode_elem_sep void getLockInfo conco...
int function ( ) { getAllThreads ( ) ; return filled ; }
1,823
get / authenticate - > check if the user is authenticated , and return its login . concode_field_sep Logger log concode_elem_sep UserRepository userRepository concode_elem_sep MailService mailService concode_elem_sep UserService userService concode_field_sep ResponseEntity<?> registerAccount concode_elem_sep ResponseEn...
String function ( HttpServletRequest arg0 ) { log . debug ( "srini_string" ) ; return arg0 . getRemoteUser ( ) ; }
1,824
tests for equality between the specified object and this object . two rc2parameterspec objects are considered equal if their effective key sizes and ivs are equal . two iv references are considered equal if both are null . concode_field_sep int effectiveKeyBits concode_elem_sep byte[] iv concode_field_sep int hashCode ...
boolean function ( Object arg0 ) { if ( arg0 == this ) { return true ; } if ( ! ( arg0 instanceof RC2ParameterSpec ) ) { return false ; } RC2ParameterSpec loc0 = ( RC2ParameterSpec ) arg0 ; return ( ( effectiveKeyBits == loc0 . effectiveKeyBits ) && java . util . Arrays . equals ( iv , loc0 . iv ) ) ; }
1,825
the id of the certificate . concode_field_sep String certificatePem concode_elem_sep String certificateArn concode_elem_sep java.util.Date lastModifiedDate concode_elem_sep String certificateId concode_elem_sep java.util.Date creationDate concode_elem_sep String ownedBy concode_elem_sep String status concode_field_sep ...
String function ( ) { return this . certificateId ; }
1,826
retrieve the vertex out-degree number of out-going edges . 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_sep Edge<K,EV> edge conc...
long function ( ) { return outDegree ; }
1,827
whether to initialize filedescriptor lazily or not . if true , file descriptors are created only when data is going to be transferred . this can reduce the number of open files . concode_field_sep String SPARK_NETWORK_IO_NUMCONNECTIONSPERPEER_KEY concode_elem_sep String SPARK_NETWORK_IO_LAZYFD_KEY concode_elem_sep Stri...
boolean function ( ) { return conf . getBoolean ( SPARK_NETWORK_IO_LAZYFD_KEY , true ) ; }
1,828
a list of image layer objects corresponding to the image layer references in the request . note : this method appends the values to the existing list if any . use #setlayers java.util.collection or #withlayers java.util.collection if you want to override theexisting values . concode_field_sep java.util.List<LayerFailur...
BatchCheckLayerAvailabilityResult function ( Layer ... arg0 ) { if ( this . layers == null ) { setLayers ( new java . util . ArrayList < Layer > ( arg0 . length ) ) ; } for ( Layer loc0 : arg0 ) { this . layers . add ( loc0 ) ; } return this ; }
1,829
releases an object of type t , this must be called after the thread is done using a resource obtained by acquire . concode_field_sep AtomicInteger mCurrentCapacity concode_elem_sep ReentrantLock mTakeLock concode_elem_sep Condition mNotEmpty concode_elem_sep int mMaxCapacity concode_elem_sep ConcurrentLinkedQueue<T> mR...
void function ( T arg0 ) { mResources . add ( arg0 ) ; try ( LockResource loc0 = new LockResource ( mTakeLock ) ) { mNotEmpty . signal ( ) ; } }
1,830
get the primitive item type corresponding to this item type . for item , this is type.item . for node , it is type.node . for specific node kinds , it is the value representing the node kind , for example type.element . for anyatomicvalue it is type.atomic _ value . for numeric it is type.number . for other atomic type...
ItemType function ( ) { return this ; }
1,831
computes the logarithm of the given value to the base of 2 , rounded down . it corresponds to the position of the highest non-zero bit . the position is counted , starting with 0 from the least significant bit to the most significant bit . for example , log2floor 16 = 4 , and log2floor 10 = 3 . concode_field_sep PlaceH...
int function ( int arg0 ) { if ( arg0 == 0 ) { throw new ArithmeticException ( "srini_string" ) ; } return 31 - Integer . numberOfLeadingZeros ( arg0 ) ; }
1,832
sets new xmpp address of the sip gateway component . concode_field_sep ProtocolProviderHandler protocolProviderHandler concode_elem_sep String[] JIRECON_RECORDER_FEATURES concode_elem_sep Logger logger concode_elem_sep String[] PUBSUB_FEATURES concode_elem_sep String jireconRecorder concode_elem_sep BridgeSelector brid...
void function ( String arg0 ) { this . sipGateway = arg0 ; }
1,833
returns the id . concode_field_sep List xxs concode_elem_sep X x concode_elem_sep Y y concode_elem_sep Long id concode_field_sep void setY concode_elem_sep X getX concode_elem_sep Y getY concode_elem_sep void setXxs concode_elem_sep void setX concode_elem_sep List getXxs concode_elem_sep void setId concode_elem_sep voi...
long function ( ) { return id ; }
1,834
gets a hexadecimal string representation of this object 's data , which is in fact , the raw data contained in this object concode_field_sep Reference reference concode_elem_sep Logger logger concode_elem_sep StringBuilder stringData concode_field_sep StringBuilder hexToString concode_elem_sep StringBuilder normalizeHe...
String function ( ) { return stringData . toString ( ) ; }
1,835
gets the value of the typeid property . concode_field_sep String internalId concode_elem_sep String name concode_elem_sep String externalId concode_elem_sep String typeId concode_field_sep void setName concode_elem_sep String getName concode_elem_sep void setInternalId concode_elem_sep String getInternalId concode_elem...
String function ( ) { return typeId ; }
1,836
removes a property change listener from the series . concode_field_sep long serialVersionUID concode_elem_sep EventListenerList listeners concode_elem_sep String description concode_elem_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep Comparable key concode_elem_sep boolean notify concode_field_sep Com...
void function ( PropertyChangeListener arg0 ) { this . propertyChangeSupport . removePropertyChangeListener ( arg0 ) ; }
1,837
adding optional field is compatible concode_field_sep PlaceHolder placeHolder concode_field_sep ThriftType.StructType struct concode_elem_sep void testList concode_elem_sep void testRenameField concode_elem_sep void testRemoveOptionalField concode_elem_sep void testAddRequiredField concode_elem_sep void testReuirementC...
void function ( ) { verifyCompatible ( StructV1 . class , StructV2 . class , true ) ; }
1,838
sets the specified value on the stack , without disturbing it . concode_field_sep TopValue TOP_VALUE concode_elem_sep Value[] values concode_elem_sep int actualMaxSize concode_elem_sep int currentSize concode_field_sep DoubleValue dpop concode_elem_sep Value getBottom concode_elem_sep Value pop concode_elem_sep int has...
void function ( int arg0 , Value arg1 ) { values [ currentSize - arg0 - 1 ] = arg1 ; }
1,839
starts a minihadoopcluster . concode_field_sep MiniMRClientCluster mr concode_elem_sep StartupOption dfsOpts concode_elem_sep int nnPort concode_elem_sep JobConf conf concode_elem_sep Log LOG concode_elem_sep String fs concode_elem_sep MiniDFSCluster dfs concode_elem_sep int jhsPort concode_elem_sep boolean noDFS conco...
void function ( String [ ] arg0 ) { new MiniHadoopClusterManager ( ) . run ( arg0 ) ; }
1,840
put boolean preferences concode_field_sep String PREFERENCE_NAME concode_field_sep long getLong concode_elem_sep long getLong concode_elem_sep int getInt concode_elem_sep int getInt concode_elem_sep boolean putFloat concode_elem_sep boolean putInt concode_elem_sep boolean putString concode_elem_sep boolean getBoolean c...
boolean function ( Context arg0 , String arg1 , boolean arg2 ) { SharedPreferences loc0 = arg0 . getSharedPreferences ( PREFERENCE_NAME , Context . MODE_PRIVATE ) ; SharedPreferences . Editor loc1 = loc0 . edit ( ) ; loc1 . putBoolean ( arg1 , arg2 ) ; return loc1 . commit ( ) ; }
1,841
sets the ma tinh of this topic details . concode_field_sep TopicDetails _topicDetails concode_field_sep TopicDetails getWrappedTopicDetails concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscape...
void function ( java . lang . String arg0 ) { _topicDetails . setMaTinh ( arg0 ) ; }
1,842
create a copy of this query , but one whose results should be ordered by the supplied orderings . concode_field_sep List<Column> columns concode_elem_sep Constraint constraint concode_elem_sep long serialVersionUID concode_elem_sep Source source concode_elem_sep List<Ordering> orderings concode_elem_sep int hcode conco...
Query function ( List < Ordering > arg0 ) { return new Query ( source , constraint , arg0 , columns , getLimits ( ) ) ; }
1,843
retrieve the default charset of the system . concode_field_sep boolean enforce8Bit concode_elem_sep Charset defaultCharset concode_elem_sep byte[] buffer concode_field_sep boolean hasUTF16BEBuffer concode_elem_sep void setDefaultCharset concode_elem_sep boolean getEnforce8Bit concode_elem_sep boolean isTwoBytesSequence...
Charset function ( ) { return Charset . forName ( System . getProperty ( "srini_string" ) ) ; }
1,844
returns the primary key of this phone . concode_field_sep Phone _phone concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean isEscapedModel concode_elem_sep boolean...
long function ( ) { return _phone . getPrimaryKey ( ) ; }
1,845
gets the card 's suit . concode_field_sep String[] SUITS concode_elem_sep int rank concode_elem_sep int suit concode_elem_sep String[] RANKS concode_field_sep int getRank concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep int compareTo concode_elem_sep int position
int function ( ) { return this . suit ; }
1,846
custom box sdk configuration , not required normally concode_field_sep BoxApiName apiName concode_elem_sep String userPassword concode_elem_sep String clientId concode_elem_sep boolean revokeOnShutdown concode_elem_sep Map<String,Object> httpParams concode_elem_sep IAuthSecureStorage authSecureStorage concode_elem_sep ...
void function ( IBoxConfig arg0 ) { this . boxConfig = arg0 ; }
1,847
sets the value of the maximpressions property . concode_field_sep Integer maxImpressions concode_elem_sep Integer numTimeUnits concode_elem_sep TimeUnit timeUnit concode_field_sep Integer getMaxImpressions concode_elem_sep void setTimeUnit concode_elem_sep void setNumTimeUnits concode_elem_sep Integer getNumTimeUnits c...
void function ( Integer arg0 ) { this . maxImpressions = arg0 ; }
1,848
defines whether the action parameter , that request will be build for , should be required . concode_field_sep boolean hidden concode_elem_sep String displayName concode_elem_sep SortedSet<String> options concode_elem_sep String type concode_elem_sep String value concode_elem_sep String key concode_elem_sep boolean req...
ActionParameterRequestBuilder function ( boolean arg0 ) { this . required = arg0 ; return this ; }
1,849
move the tasks from the given queue to this one . concode_field_sep ConcurrentLinkedQueue<GameTask<?>> _queue concode_elem_sep AtomicBoolean _executeMultiple concode_elem_sep List<ExecutionExceptionListener> _executionExceptionListeners concode_elem_sep long _executionTime concode_elem_sep String RENDER concode_elem_se...
void function ( final GameTaskQueue arg0 ) { _queue . addAll ( arg0 . _queue ) ; arg0 . _queue . clear ( ) ; }
1,850
adds the new settings name if it does not nexist , or overwrites the old one . concode_field_sep String homedir concode_elem_sep String fileName concode_elem_sep String emptySettingName concode_elem_sep String[][] sJDBCTypes concode_elem_sep String[][] connTypes concode_elem_sep File recentSettings concode_field_sep vo...
void function ( Hashtable arg0 , ConnectionSetting arg1 ) { arg0 . put ( arg1 . getName ( ) , arg1 ) ; ConnectionDialogCommon . storeRecentConnectionSettings ( arg0 ) ; }
1,851
subclasses of viewmanager that expect to receive commands through uimanagermodule #dispatchviewmanagercommand should override this method returning themap between names of the commands and ids that are then used in #receivecommand methodwhenever the command is dispatched for this particular viewmanager . as an example ...
Map < String , Integer > function ( ) { return null ; }
1,852
camel 2.10.1 : the prefix which is used in the com.amazonaws.services.s3.model.listobjectsrequest to only consume objects we are interested in . concode_field_sep String bucketName concode_elem_sep String fileName concode_elem_sep String serverSideEncryption concode_elem_sep String secretKey concode_elem_sep String pre...
void function ( String arg0 ) { this . prefix = arg0 ; }
1,853
cleans up the after comments or the empty spaces/tabs surrounding the given string concode_field_sep String COMMENT_SEMICOLON concode_elem_sep Map<String,Properties> _sections concode_elem_sep String COMMENT_HASH concode_field_sep void load concode_elem_sep Map<String,Properties> getSections
String function ( String arg0 ) { if ( arg0 . contains ( COMMENT_SEMICOLON ) ) { arg0 = arg0 . substring ( 0 , arg0 . indexOf ( COMMENT_SEMICOLON ) ) ; } if ( arg0 . contains ( COMMENT_HASH ) ) { arg0 = arg0 . substring ( 0 , arg0 . indexOf ( COMMENT_HASH ) ) ; } return arg0 . trim ( ) ; }
1,854
returns an iterator of the elements contained in the stack . concode_field_sep Stack<RatPoly> polys concode_field_sep void add concode_elem_sep void sub concode_elem_sep void swap concode_elem_sep void mul concode_elem_sep void clear concode_elem_sep RatPoly getNthFromTop concode_elem_sep void push concode_elem_sep voi...
Iterator < RatPoly > function ( ) { return polys . iterator ( ) ; }
1,855
writes the tag for a double . concode_field_sep int INDENTION_STEP concode_field_sep void writeInt concode_elem_sep String getIndentString concode_elem_sep String getTagClose concode_elem_sep void writeIntBuffer concode_elem_sep void writeStringArray concode_elem_sep void writeTuple4f concode_elem_sep String getTagOpen...
void function ( PrintStream arg0 , double arg1 , String arg2 , int arg3 ) { arg0 . println ( getTagOpen ( arg2 , arg3 ) + arg1 + getTagClose ( arg2 , 0 ) ) ; }
1,856
converts a utf-8 byte array to a string . concode_field_sep Charset ENCODING_CHARSET concode_field_sep byte[] getBytes
String function ( final byte [ ] arg0 ) { return new String ( arg0 , ENCODING_CHARSET ) ; }
1,857
logs the given message and throwable at the ` trace ' level . concode_field_sep int TRACE concode_elem_sep int DEBUG concode_elem_sep int ERROR concode_elem_sep int INFO concode_elem_sep int FATAL concode_elem_sep int WARN concode_elem_sep StringBuffer bufferedLog concode_elem_sep boolean logLocationInfo concode_field_...
void function ( Object arg0 , Throwable arg1 ) { logInternal ( TRACE , arg0 , arg1 ) ; }
1,858
returns the current labels concode_field_sep String chartPadding concode_elem_sep String responsiveOptions concode_elem_sep boolean animateAdvanced concode_elem_sep long serialVersionUID concode_elem_sep boolean animatePath concode_elem_sep String width concode_elem_sep AspectRatio aspectRatio concode_elem_sep boolean ...
List < Object > function ( ) { return labels ; }
1,859
create a new categorywordtag label , where the label is formed from the various string objects passed in . concode_field_sep PlaceHolder placeHolder concode_field_sep Label newLabelFromString
Label function ( String arg0 , String arg1 , String arg2 ) { return new CategoryWordTag ( arg2 , arg0 , arg1 ) ; }
1,860
builder pattern method to return oauth1secrets after settingconsumer secret . concode_field_sep String consumerSecret concode_elem_sep String tokenSecret concode_field_sep OAuth1Secrets consumerSecret concode_elem_sep String getConsumerSecret concode_elem_sep void setTokenSecret concode_elem_sep OAuth1Secrets clone con...
OAuth1Secrets function ( String arg0 ) { setConsumerSecret ( arg0 ) ; return this ; }
1,861
two objects that are equal are required to return the same hashcode . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testSerialization concode_elem_sep void testEquals
void function ( ) { CyclicNumberAxis loc0 = new CyclicNumberAxis ( 10 , 0 , "srini_string" ) ; CyclicNumberAxis loc1 = new CyclicNumberAxis ( 10 , 0 , "srini_string" ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; int loc2 = loc0 . hashCode ( ) ; int loc3 = loc1 . hashCode ( ) ; assertEquals ( loc2 , loc3 ) ; }
1,862
isreadermtomaware concode_field_sep javax.xml.namespace.QName MY_QNAME concode_field_sep java.lang.String generatePrefix concode_elem_sep void serialize concode_elem_sep void serialize concode_elem_sep void writeQName concode_elem_sep void writeQNames concode_elem_sep javax.xml.stream.XMLStreamReader getPullParser conc...
boolean function ( javax . xml . stream . XMLStreamReader arg0 ) { boolean loc0 = false ; try { loc0 = java . lang . Boolean . TRUE . equals ( arg0 . getProperty ( org . apache . axiom . om . OMConstants . IS_DATA_HANDLERS_AWARE ) ) ; } catch ( java . lang . IllegalArgumentException loc1 ) { loc0 = false ; } return loc...
1,863
encodes an object using the caverphone algorithm . this method is provided in order to satisfy the requirements of the encoder interface , and will throw an encoderexception if the supplied object is not of type java.lang.string . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isEncodeEqual
Object function ( Object arg0 ) { if ( ! ( arg0 instanceof String ) ) { throw new EncoderException ( "srini_string" ) ; } return this . encode ( ( String ) arg0 ) ; }
1,864
test intlist > initial_slab_size so that we have multiple slabs being created concode_field_sep PlaceHolder placeHolder concode_field_sep void doTestIntList concode_elem_sep void populateList concode_elem_sep void testListGreaterThanMaxSlabSize concode_elem_sep void testSmallList concode_elem_sep void verifyIteratorRes...
void function ( ) { int loc0 = IntList . INITIAL_SLAB_SIZE + 100 ; doTestIntList ( loc0 , IntList . INITIAL_SLAB_SIZE * 2 ) ; }
1,865
how much elements , on average , are included in sparse stream from the general sequence concode_field_sep PlaceHolder placeHolder concode_field_sep Iterator<BigInteger> sampleAfter concode_elem_sep BigInteger valueAt concode_elem_sep Iterator<BigInteger> mergeIterators concode_elem_sep Map<Integer,Future<Double>> appr...
double function ( int arg0 , int arg1 ) { return arg1 / valueAt ( iteratorSparse ( arg0 ) , arg1 - 1 ) . doubleValue ( ) ; }
1,866
checks if is ntlm message . concode_field_sep byte[] NTLM_SSP_SIGNATURE concode_field_sep int getMessageType
boolean function ( final byte [ ] arg0 ) { if ( arg0 == null || arg0 . length < NtlmMessage . NTLM_SSP_SIGNATURE . length ) { return false ; } for ( int loc0 = 0 ; loc0 < NtlmMessage . NTLM_SSP_SIGNATURE . length ; loc0 ++ ) { if ( NtlmMessage . NTLM_SSP_SIGNATURE [ loc0 ] != arg0 [ loc0 ] ) { return false ; } } return...
1,867
the number of errored entities . concode_field_sep Integer total concode_elem_sep Integer stopped concode_elem_sep Integer warned concode_elem_sep Integer passed concode_elem_sep Integer failed concode_elem_sep Integer errored concode_elem_sep Integer skipped concode_field_sep void setTotal concode_elem_sep Counters wi...
void function ( Integer arg0 ) { this . errored = arg0 ; }
1,868
sets the interval at which cache is cleaned up regularly . concode_field_sep Cache<Object,Object> cache concode_elem_sep long maxCacheSize concode_elem_sep int entryExpiryDurationInMillis concode_elem_sep ExpiryType entryExpiryStrategy concode_elem_sep int cacheCleanupIntervalInMillis concode_elem_sep ScheduledExecutor...
void function ( int arg0 ) { this . cacheCleanupIntervalInMillis = arg0 ; }
1,869
create a map < string , string > from a namedlist given no keys are repeated concode_field_sep PlaceHolder placeHolder concode_field_sep Boolean getFieldBool concode_elem_sep boolean getFieldBool concode_elem_sep Float getFieldFloat concode_elem_sep float getFieldFloat concode_elem_sep Double getDouble concode_elem_sep...
Map < String , String > function ( NamedList arg0 ) { HashMap < String , String > loc0 = new HashMap < > ( ) ; for ( int loc1 = 0 ; loc1 < arg0 . size ( ) ; loc1 ++ ) { loc0 . put ( arg0 . getName ( loc1 ) , arg0 . getVal ( loc1 ) . toString ( ) ) ; } return loc0 ; }
1,870
sets the value of the uptodate property . concode_field_sep Compatibilities incompatibleBuildTypes concode_elem_sep Boolean uptodate concode_elem_sep String ip concode_elem_sep AgentPool pool concode_elem_sep BuildTypes compatibleBuildTypes concode_elem_sep Boolean enabled concode_elem_sep Boolean connected concode_ele...
void function ( Boolean arg0 ) { this . uptodate = arg0 ; }
1,871
javadoc definition of factory method . excludes surrounding comment markers . note that using standard java reflection it is not possible to obtain this , however source code parsers can read this . concode_field_sep String factoryMethod concode_elem_sep List<String> exceptions concode_elem_sep String javaDoc concode_e...
String function ( ) { return javaDoc ; }
1,872
find a single value of the given type in the given collection . concode_field_sep Enumeration<E> enumeration concode_elem_sep Map<K,List<V>> map concode_field_sep Iterator<E> toIterator concode_elem_sep E next concode_elem_sep void mergePropertiesIntoMap concode_elem_sep boolean containsInstance concode_elem_sep Collec...
T function ( Collection < ? > arg0 , Class < T > arg1 ) { if ( isEmpty ( arg0 ) ) { return null ; } T loc0 = null ; for ( Object loc1 : arg0 ) { if ( arg1 == null || arg1 . isInstance ( loc1 ) ) { if ( loc0 != null ) { return null ; } loc0 = ( T ) loc1 ; } } return loc0 ; }
1,873
return the header of the output . if qoption is false , output directory count , file count , and content size ; if qoption is true , output quota and remaining quota as well . concode_field_sep String QUOTA_SUMMARY_FORMAT concode_elem_sep String SPACE_QUOTA_SUMMARY_FORMAT concode_elem_sep String STORAGE_TYPE_SUMMARY_F...
String function ( boolean arg0 ) { return arg0 ? QUOTA_HEADER : HEADER ; }
1,874
get the agent last name . concode_field_sep String eid concode_elem_sep AgentImpl agent concode_elem_sep String agentString concode_elem_sep boolean accessViaUrl concode_elem_sep String displayIdString concode_elem_sep AgentHelper helper concode_elem_sep long serialVersionUID concode_elem_sep String displayId concode_e...
String function ( ) { return helper . getLastName ( agentString ) ; }
1,875
one or more metrics . concode_field_sep com.amazonaws.internal.SdkInternalList<MetricCollectionType> metrics concode_elem_sep com.amazonaws.internal.SdkInternalList<MetricGranularityType> granularities concode_field_sep DescribeMetricCollectionTypesResult withMetrics concode_elem_sep DescribeMetricCollectionTypesResult...
void function ( java . util . Collection < MetricCollectionType > arg0 ) { if ( arg0 == null ) { this . metrics = null ; return ; } this . metrics = new com . amazonaws . internal . SdkInternalList < MetricCollectionType > ( arg0 ) ; }
1,876
sets the value of the qa property . concode_field_sep Qa qa concode_elem_sep String code concode_elem_sep List<Test> test concode_elem_sep String name concode_elem_sep long serialVersionUID concode_elem_sep Long id concode_field_sep void setName concode_elem_sep void unsetTest concode_elem_sep String getName concode_el...
void function ( Qa arg0 ) { this . qa = arg0 ; }
1,877
returns the power requirement for this provider . concode_field_sep int AVAILABLE concode_elem_sep int OUT_OF_SERVICE concode_elem_sep int TEMPORARILY_UNAVAILABLE concode_elem_sep String BAD_CHARS_REGEX concode_elem_sep String mName concode_elem_sep ProviderProperties mProperties concode_field_sep boolean requiresSatel...
int function ( ) { return mProperties . mPowerRequirement ; }
1,878
formats a warningvalue as a string suitable for including in a header . for example , you can : warningvalue wv = ... ; httpresponse resp = ... ; resp.addheader `` warning '' , wv.tostring ; concode_field_sep Pattern WARN_DATE_PATTERN concode_elem_sep String ASCTIME_DATE concode_elem_sep String HOST concode_elem_sep Da...
String function ( ) { if ( warnDate != null ) { return String . format ( "srini_string" % s , warnCode , warnAgent , warnText , DateUtils . formatDate ( warnDate ) ) ; } else { return String . format ( "srini_string" , warnCode , warnAgent , warnText ) ; } }
1,879
prints a boolean to standard output and flushes 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 c...
void function ( boolean arg0 ) { out . print ( arg0 ) ; out . flush ( ) ; }
1,880
reset all statisticimpl objects concode_field_sep Map statistics concode_field_sep Statistic[] getStatistics concode_elem_sep Statistic getStatistic concode_elem_sep void addStatistic concode_elem_sep String toString concode_elem_sep String[] getStatisticNames
void function ( ) { Iterator loc0 = statistics . values ( ) . iterator ( ) ; while ( loc0 . hasNext ( ) ) { Object loc1 = loc0 . loc1 ( ) ; if ( loc1 instanceof StatisticImpl ) { StatisticImpl loc2 = ( StatisticImpl ) loc1 ; loc2 . reset ( ) ; } } }
1,881
fetches database for symbols . concode_field_sep MongoDatabase db concode_elem_sep MongoClient mongoClient concode_field_sep String format concode_elem_sep List<Document> scrapeSymbols concode_elem_sep void update concode_elem_sep boolean symbolExists
List < String > function ( ) { FindIterable < Document > loc0 = db . getCollection ( "srini_string" ) . find ( ) . sort ( new Document ( "srini_string" , 1 ) ) ; ArrayList < String > loc1 = new ArrayList < > ( ) ; for ( Document loc2 : loc0 ) { loc1 . add ( loc2 . get ( "srini_string" ) . toString ( ) ) ; } return loc1...
1,882
sets the message number a monotonically increasing value starting with 1 . overriding is only supported for the purpose of calling the super implementation and changing the return type , but nothing else . concode_field_sep String resourceId concode_elem_sep long messageNumber concode_elem_sep String resourceState conc...
AbstractNotification function ( long arg0 ) { Preconditions . checkArgument ( arg0 >= 1 ) ; this . messageNumber = arg0 ; return this ; }
1,883
get value as eight bytes in big endian byte order . concode_field_sep int BYTE_1_SHIFT concode_elem_sep long BYTE_6_MASK concode_elem_sep int BYTE_1_MASK concode_elem_sep int BYTE_3_SHIFT concode_elem_sep int LEFTMOST_BIT_SHIFT concode_elem_sep long BYTE_7_MASK concode_elem_sep BigInteger value concode_elem_sep ZipEigh...
byte [ ] function ( long arg0 ) { return getBytes ( BigInteger . valueOf ( arg0 ) ) ; }
1,884
called when a chapter is written . position will hold the height at which the chapter will be written to . concode_field_sep ArrayList<PdfPageEvent> events concode_field_sep void addPageEvent concode_elem_sep void onSection concode_elem_sep void onParagraph concode_elem_sep void onParagraphEnd concode_elem_sep void onO...
void function ( PdfWriter arg0 , Document arg1 , float arg2 , Paragraph arg3 ) { for ( PdfPageEvent loc0 : events ) { loc0 . onChapter ( arg0 , arg1 , arg2 , arg3 ) ; } }
1,885
returns the lower bound . concode_field_sep boolean includeUpperBound concode_elem_sep double upperBound concode_elem_sep double lowerBound concode_elem_sep boolean includeLowerBound concode_elem_sep long serialVersionUID concode_elem_sep int itemCount concode_field_sep boolean accepts concode_elem_sep int getItemCount...
double function ( ) { return this . lowerBound ; }
1,886
return the visibility of tab panel 1 . concode_field_sep String tabPlacement concode_elem_sep HtmlSelectOneRadio selectedTabObject concode_elem_sep PanelTabSet tabSet concode_elem_sep String selectedTabFocus concode_elem_sep boolean tabbedPane1Visible concode_elem_sep boolean tabbedPane2Visible concode_elem_sep boolean...
boolean function ( ) { return tabbedPane1Visible ; }
1,887
the expirypolicy factory concode_field_sep Factory<CacheWriter> cacheWriterFactory concode_elem_sep Factory<ExpiryPolicy> expiryPolicyFactory concode_elem_sep boolean writeThrough concode_elem_sep List<EventType> filteredEvents concode_elem_sep boolean createCacheIfNotExists concode_elem_sep boolean statisticsEnabled c...
Factory < ExpiryPolicy > function ( ) { return expiryPolicyFactory ; }
1,888
called after plugin construction and fields have been initialized . prefer to use plugininitialize instead since there is no value in having parameters on the initialize function . concode_field_sep CordovaPreferences preferences concode_elem_sep CordovaInterface cordova concode_elem_sep CordovaWebView webView concode_...
void function ( CordovaInterface arg0 , CordovaWebView arg1 ) { }
1,889
remove an idlehandler from the queue that was previously addedwith #addidlehandler . if the given object is not currently in the idle list , nothing is done . concode_field_sep boolean mQuitAllowed concode_elem_sep int mPtr concode_elem_sep IdleHandler[] mPendingIdleHandlers concode_elem_sep int mId concode_elem_sep Me...
void function ( IdleHandler arg0 ) { synchronized ( this ) { mIdleHandlers . remove ( arg0 ) ; } }
1,890
gets the number of locals . concode_field_sep LineNumberList lineNumbers concode_elem_sep LocalVariableList localVariables concode_elem_sep Method method concode_elem_sep boolean accSuper concode_elem_sep CstString sourceFile concode_elem_sep AttCode attCode concode_field_sep CstString getDescriptor concode_elem_sep Cs...
int function ( ) { return attCode . getMaxLocals ( ) ; }
1,891
return the first filter in the filter chain for this appender . the return value may be null if no is filter is set . concode_field_sep Layout layout concode_elem_sep Filter tailFilter concode_elem_sep String name concode_elem_sep Priority threshold concode_elem_sep Filter headFilter concode_elem_sep ErrorHandler error...
Filter function ( ) { return headFilter ; }
1,892
sets the value of the label property . concode_field_sep String internalId concode_elem_sep Boolean defaultBilling concode_elem_sep String label concode_elem_sep Boolean defaultShipping concode_elem_sep Address addressbookAddress concode_field_sep Boolean isDefaultBilling concode_elem_sep String getLabel concode_elem_s...
void function ( String arg0 ) { this . label = arg0 ; }
1,893
sets the value of the datetime property . concode_field_sep String dateTime concode_elem_sep String jobEventType concode_field_sep String getDateTime concode_elem_sep String getJobEventType concode_elem_sep void setJobEventType
void function ( String arg0 ) { this . dateTime = arg0 ; }
1,894
get the value for an undocumented option . concode_field_sep long serialVersionUID concode_elem_sep Context.Key<Options> optionsKey concode_elem_sep LinkedHashMap<String,String> values concode_elem_sep List<Runnable> listeners concode_field_sep boolean lint concode_elem_sep boolean isUnset concode_elem_sep boolean isUn...
String function ( String arg0 ) { return values . get ( arg0 ) ; }
1,895
sets the value of the reqdcolltndt property . concode_field_sep String pmtEndToEndId concode_elem_sep String firstPmtEndToEndId concode_elem_sep XMLGregorianCalendar exportDt concode_elem_sep String orgnlPmtEndToEndId concode_elem_sep String representationAttNo concode_elem_sep BigDecimal pmntAmt concode_elem_sep Strin...
void function ( XMLGregorianCalendar arg0 ) { this . reqdColltnDt = arg0 ; }
1,896
sets the value of the meta property . concode_field_sep String screensavePage concode_elem_sep BigDecimal maxMobileScreenWidth concode_elem_sep BigDecimal defaultColumns concode_elem_sep Meta meta concode_elem_sep String design concode_elem_sep Boolean bindClickToWidget concode_elem_sep String backend concode_elem_sep ...
void function ( Meta arg0 ) { this . meta = arg0 ; }
1,897
create an instance of documentation concode_field_sep QName _ResourceReference_QNAME concode_elem_sep QName _Resource_QNAME concode_field_sep Example createExample concode_elem_sep Content createContent concode_elem_sep JAXBElement<ResourceType> createResource concode_elem_sep Navigation createNavigation concode_elem_s...
Documentation function ( ) { return new Documentation ( ) ; }
1,898
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 ) ) ; } }
1,899
receive the given byte data . concode_field_sep DatagramSocket mySocket concode_elem_sep int myPort concode_elem_sep DatagramPacket myPacketIn concode_elem_sep DatagramPacket myPacketOut concode_elem_sep int myClientPort concode_elem_sep InetAddress myClientAddress concode_field_sep void send concode_elem_sep void clos...
byte [ ] function ( int arg0 ) { byte [ ] loc0 = new byte [ arg0 ] ; myPacketIn = new DatagramPacket ( loc0 , loc0 . length ) ; mySocket . receive ( myPacketIn ) ; return loc0 ; }