idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
6,500
check that a state tansition is valid and throw an exception if not concode_field_sep String name concode_elem_sep boolean[][] statemap concode_elem_sep Service.STATE state concode_field_sep Service.STATE getState concode_elem_sep Service.STATE enterState concode_elem_sep void ensureCurrentState concode_elem_sep boolea...
void function ( String arg0 , Service . STATE arg1 , Service . STATE arg2 ) { if ( ! isValidStateTransition ( arg1 , arg2 ) ) { throw new ServiceStateException ( arg0 + "srini_string" + arg2 + "srini_string" + arg1 ) ; } }
6,501
gets the value of the valuefrom property . concode_field_sep String cmpCode concode_elem_sep int parentIndex concode_elem_sep String valueTo concode_elem_sep TypeCtLeftBracketVocab lBracket concode_elem_sep String reserved concode_elem_sep int index concode_elem_sep TypeComResponsibility vocab concode_elem_sep TypeCtRi...
String function ( ) { return valueFrom ; }
6,502
the preferred file name to use to store the entity on disk or null if nopreferred value has been set . concode_field_sep String fileName concode_elem_sep ContentType contentType concode_elem_sep byte[] content concode_field_sep void setFileName concode_elem_sep void setContent concode_elem_sep byte[] getContent concode...
String function ( ) { return this . fileName ; }
6,503
get the location of this partition concode_field_sep String file concode_field_sep String getPartitionValue
String function ( ) { return file ; }
6,504
sets the owldatafactory concode_field_sep OWLDataFactory factory concode_elem_sep boolean writeAnnotations concode_elem_sep AssociationRulesParser parser concode_elem_sep double confidenceThreshold concode_elem_sep IRI confidenceAnnotationUri concode_elem_sep Connection dbConnection concode_elem_sep IRI supportAnnotati...
void function ( OWLDataFactory arg0 ) { this . factory = arg0 ; }
6,505
unlocks the file . concode_field_sep FileLock fileLock concode_elem_sep File file concode_elem_sep RandomAccessFile raFile concode_field_sep void lock concode_elem_sep void lock concode_elem_sep String toString concode_elem_sep void close
void function ( ) { if ( fileLock != null ) { U . releaseQuiet ( fileLock ) ; fileLock = null ; } }
6,506
specify the lockmode to be used for a specific query alias . concode_field_sep boolean scope concode_elem_sep int NO_WAIT concode_elem_sep LockOptions NONE concode_elem_sep Map<String,LockMode> aliasSpecificLockModes concode_elem_sep LockOptions READ concode_elem_sep LockOptions UPGRADE concode_elem_sep LockMode lockMo...
LockOptions function ( String arg0 , LockMode arg1 ) { if ( aliasSpecificLockModes == null ) { aliasSpecificLockModes = new HashMap < String , LockMode > ( ) ; } aliasSpecificLockModes . put ( arg0 , arg1 ) ; return this ; }
6,507
c : x509_verify_param_get_flags concode_field_sep int trust concode_elem_sep VerifyParameter[] defaultTable concode_elem_sep int depth concode_elem_sep Date checkTime concode_elem_sep int purpose concode_elem_sep long inheritFlags concode_elem_sep String name concode_elem_sep long flags concode_elem_sep List<ASN1Primit...
long function ( ) { return flags ; }
6,508
makes an objectname for the given domain using our domain and the name attribute . concode_field_sep String NAME concode_elem_sep SimpleRegistry mRegistry concode_elem_sep MBeanServer server concode_elem_sep String DOMAIN concode_elem_sep MockEndpointFixture mMockEndpoint concode_elem_sep DefaultCamelContext mContext c...
ObjectName function ( String arg0 ) { ObjectName loc0 = new ObjectName ( DOMAIN , NAME , arg0 ) ; return loc0 ; }
6,509
returns an image composed of a base image decorated by another image . concode_field_sep Map<Font,Font> m_fontToBoldFontMap concode_elem_sep Map<RGB,Color> m_colorMap concode_elem_sep int BOTTOM_LEFT concode_elem_sep int BOTTOM_RIGHT concode_elem_sep int TOP_RIGHT concode_elem_sep int TOP_LEFT concode_elem_sep Map<Inte...
Image function ( Image arg0 , Image arg1 ) { return decorateImage ( arg0 , arg1 , BOTTOM_RIGHT ) ; }
6,510
add an edge between two nodes . concode_field_sep List<T> m_nodesReady concode_elem_sep ListMultiMap<T,T> m_dependingOn concode_elem_sep boolean DEBUG concode_elem_sep List<T> m_nodesFinished concode_elem_sep ListMultiMap<T,T> m_dependedUpon concode_elem_sep Comparator<? super T> m_nodeComparator concode_elem_sep List<...
void function ( T arg0 , T ... arg1 ) { for ( T loc0 : arg1 ) { m_dependingOn . put ( loc0 , arg0 ) ; m_dependedUpon . put ( arg0 , loc0 ) ; } }
6,511
not expected to fail created bean should use the same xpc concode_field_sep FirstDAO firstDAO concode_elem_sep SecondDAO secondDAO concode_field_sep void referenceTwoDistinctExtendedPersistenceContextsInSameTX_fail concode_elem_sep void induceCreationViaJNDILookup
void function ( ) { firstDAO . induceTwoLevelCreationViaJNDILookup ( ) ; }
6,512
returns the description for the given datapoint . concode_field_sep Map<String,String> descriptions concode_elem_sep ResourceBundle descriptionsBundle concode_elem_sep Map<String,Set<String>> standardDatapoints concode_elem_sep Logger logger concode_field_sep String getParameterName concode_elem_sep String getLabel con...
String function ( HmDatapoint arg0 ) { if ( arg0 . isVariable ( ) || arg0 . isScript ( ) ) { return null ; } return getDescription ( arg0 . getChannel ( ) . getType ( ) , arg0 . getName ( ) ) ; }
6,513
encodes an object using the soundex 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 char[] soundexMapping concode_elem_sep char[] US_ENGLISH_MAPPING concode_e...
Object function ( final Object arg0 ) { if ( ! ( arg0 instanceof String ) ) { throw new EncoderException ( "srini_string" ) ; } return soundex ( ( String ) arg0 ) ; }
6,514
returns the optional size in bytes , possibly long.min _ value if undefined . concode_field_sep int sequenceNumber concode_elem_sep String file concode_elem_sep long size concode_elem_sep AtomicInteger SEQUENCE concode_elem_sep StepType type concode_field_sep StepType getType concode_elem_sep int hashCode concode_elem_...
long function ( ) { return size ; }
6,515
returns the native transaction . concode_field_sep Transaction.Response nativeResponse concode_elem_sep DefaultEntityManager entityManager concode_elem_sep Datastore datastore concode_elem_sep DefaultDatastoreReader reader concode_elem_sep Transaction nativeTransaction concode_elem_sep DefaultDatastoreWriter writer con...
Transaction function ( ) { return nativeTransaction ; }
6,516
reload concode_field_sep boolean m_loadedFromFile concode_elem_sep long m_lastModified concode_elem_sep SiteStatusViewsFactory m_instance concode_elem_sep SiteStatusViewConfiguration m_config concode_elem_sep boolean initialized concode_elem_sep Map<String,View> m_viewsMap concode_field_sep void initializeViewsMap conc...
void function ( ) { m_instance = null ; init ( ) ; }
6,517
removestatebasedeffect . concode_field_sep HashMap<String,Integer> stateBasedMap concode_elem_sep HashMap<String,String[]> cardToEffectsList concode_elem_sep ArrayList<StaticEffect> staticEffects concode_field_sep void addStateBasedEffect concode_elem_sep HashMap<String,String[]> getCardToEffectsList concode_elem_sep v...
void function ( String arg0 ) { if ( stateBasedMap . containsKey ( arg0 ) ) { stateBasedMap . put ( arg0 , stateBasedMap . get ( arg0 ) - 1 ) ; if ( stateBasedMap . get ( arg0 ) == 0 ) stateBasedMap . remove ( arg0 ) ; } }
6,518
transform this call to an websocket url . concode_field_sep java.util.Random rand concode_field_sep String path concode_elem_sep String fragment concode_elem_sep String method concode_elem_sep Call withFragment concode_elem_sep Call unique concode_elem_sep String absoluteURL concode_elem_sep String absoluteURL concode_...
String function ( Http . Request arg0 , boolean arg1 ) { return webSocketURL ( arg1 , arg0 . host ( ) ) ; }
6,519
the upload is completed correctly . concode_field_sep long maxFileSizeLimit concode_elem_sep boolean retry concode_elem_sep AtomicInteger uploadProgress concode_elem_sep File file concode_elem_sep StringBuffer speed concode_elem_sep String downURL concode_elem_sep String host concode_elem_sep UploadStatus status concod...
void function ( ) { status = UploadStatus . UPLOADFINISHED ; resetSpeed ( ) ; CommonUploaderTasks . uploadFinished ( this ) ; }
6,520
unmarshal method for the pid class , decodes a pid object from the stream . concode_field_sep com.ericsson.otp.ic.TypeCode _tc concode_field_sep Pid extract concode_elem_sep void marshal concode_elem_sep String name concode_elem_sep void insert concode_elem_sep String id concode_elem_sep com.ericsson.otp.ic.TypeCode ty...
Pid function ( com . ericsson . otp . erlang . OtpInputStream arg0 ) { com . ericsson . otp . erlang . OtpErlangPid loc0 = arg0 . read_pid ( ) ; return new Pid ( loc0 . node ( ) , loc0 . id ( ) , loc0 . serial ( ) , loc0 . creation ( ) ) ; }
6,521
sets the child view for the icon . if the view contains a textview with the id `` text '' , operations such as #settextappearance and #makeicon string will operate upon that textview . concode_field_sep RotationLayout mRotationLayout concode_elem_sep int STYLE_ORANGE concode_elem_sep int STYLE_PURPLE concode_elem_sep i...
void function ( View arg0 ) { mRotationLayout . removeAllViews ( ) ; mRotationLayout . addView ( arg0 ) ; mContentView = arg0 ; final View loc0 = mRotationLayout . findViewById ( R . id . text ) ; mTextView = loc0 instanceof TextView ? ( TextView ) loc0 : null ; }
6,522
add the pad bytes to the passed in block , returning the number of bytes added . concode_field_sep PlaceHolder placeHolder concode_field_sep void init concode_elem_sep int padCount concode_elem_sep String getPaddingName
int function ( byte [ ] arg0 , int arg1 ) { int loc0 = ( arg0 . length - arg1 ) ; while ( arg1 < arg0 . length ) { arg0 [ arg1 ] = ( byte ) 0 ; arg1 ++ ; } return loc0 ; }
6,523
note that this always returns null because the set is no longer valid after this call concode_field_sep long bucket concode_elem_sep int DEFAULT_BATCH_SIZE concode_elem_sep List<SpillableSetImpl<V>> removedSets concode_elem_sep WindowBoundedMapCache<K,SpillableSetImpl<V>> cache concode_elem_sep TimeExtractor<K> timeExt...
Set < V > function ( @ NotNull Object arg0 ) { SpillableSetImpl < V > loc0 = getHelper ( ( K ) arg0 ) ; if ( loc0 != null ) { cache . remove ( ( K ) arg0 ) ; map . put ( ( K ) arg0 , new ImmutablePair < > ( 0 , loc0 . getHead ( ) ) ) ; loc0 . clear ( ) ; removedSets . add ( loc0 ) ; } return null ; }
6,524
returns whether there is an entry instance for each of the given columns . concode_field_sep String columnId concode_elem_sep int currentWidth concode_elem_sep boolean visible concode_elem_sep long serialVersionUID concode_elem_sep Entry[] stateArray concode_field_sep void setVisible concode_elem_sep int getColumnWidth...
boolean function ( Collection < IGridColumn < M , I , S >> arg0 ) { if ( stateArray . length != arg0 . size ( ) ) { return false ; } for ( IGridColumn < M , I , S > loc0 : arg0 ) { if ( getEntryIndex ( loc0 . getId ( ) ) == - 1 ) { return false ; } } return true ; }
6,525
converts the object to a boolean . concode_field_sep PlaceHolder placeHolder concode_field_sep Integer toInteger concode_elem_sep void setDatapointValue concode_elem_sep String toString concode_elem_sep String getAddress concode_elem_sep String[] toOptionList concode_elem_sep void adjustRssiValue concode_elem_sep Numbe...
Boolean function ( Object arg0 ) { if ( arg0 == null || arg0 instanceof Boolean ) { return ( Boolean ) arg0 ; } return BooleanUtils . toBoolean ( ObjectUtils . toString ( arg0 ) ) ; }
6,526
generates 64 bit hash from byte array with default seed value . concode_field_sep PlaceHolder placeHolder concode_field_sep int hash32 concode_elem_sep int hash32 concode_elem_sep int hash32 concode_elem_sep int hash32
long function ( final byte [ ] arg0 , int arg1 ) { return hash64 ( arg0 , arg1 , 0xe17a1465 ) ; }
6,527
access the list of all the stamps . the received-object stamps are sorted according to the routing path , from the oldest to the newest . concode_field_sep Date date concode_elem_sep String comments concode_elem_sep Long payloadLength concode_elem_sep int EXPECTED_LIST_SIZE concode_elem_sep ArrayList intendedReceiver c...
ReceivedObject [ ] function ( ) { ReceivedObject [ ] loc0 = new ReceivedObject [ stamps . size ( ) ] ; int loc1 = 0 ; for ( Iterator loc2 = stamps . iterator ( ) ; loc2 . hasNext ( ) ; ) loc0 [ loc1 ++ ] = ( ReceivedObject ) loc2 . next ( ) ; return loc0 ; }
6,528
sets the state machine reference of the event . concode_field_sep boolean periodic concode_elem_sep int index concode_elem_sep ITimedStatemachine statemachine concode_field_sep boolean isPeriodic concode_elem_sep ITimedStatemachine getStatemachine concode_elem_sep int getIndex
void function ( ITimedStatemachine arg0 ) { this . statemachine = arg0 ; }
6,529
action method wrapper to be called from the page concode_field_sep LogBean singleton concode_elem_sep MessageLog messageLog concode_elem_sep ChatState state concode_elem_sep Log log concode_elem_sep String autoLoad concode_elem_sep ArrayList controlLog concode_elem_sep Timer nightlyReset concode_elem_sep String LOG_PAT...
String function ( ) { return resetAuction ( false ) ; }
6,530
returns the result of interpretting the object as an instance of ` eobject ' . this implementation returns null ; returning a non-null result will terminate the switch , but this is the last case anyway . concode_field_sep ResourcePackage modelPackage concode_field_sep Object doSwitch concode_elem_sep Object doSwitch c...
Object function ( EObject arg0 ) { return null ; }
6,531
return the name of the type . concode_field_sep Properties parameters concode_elem_sep String typeName concode_elem_sep String typeClass concode_field_sep void setParameters concode_elem_sep void afterPropertiesSet concode_elem_sep void setTypeName concode_elem_sep Properties getParameters concode_elem_sep void setBean...
String function ( ) { return typeName ; }
6,532
sets the value of the ghdr property . concode_field_sep JAXBElement<GetOpenstackHypervisorDetailsReq> ghdr concode_field_sep JAXBElement<GetOpenstackHypervisorDetailsReq> getGhdr
void function ( JAXBElement < GetOpenstackHypervisorDetailsReq > arg0 ) { this . ghdr = arg0 ; }
6,533
the amazon ec2 instance id for this information . concode_field_sep java.util.Date sampleTimestamp concode_elem_sep String ec2InstanceId concode_elem_sep String infoType concode_elem_sep String message concode_field_sep EnvironmentInfoDescription withInfoType concode_elem_sep EnvironmentInfoDescription withInfoType con...
void function ( String arg0 ) { this . ec2InstanceId = arg0 ; }
6,534
queries whether my hints include the specified hint . concode_field_sep List copyAlwaysIds concode_elem_sep String containerClass concode_elem_sep String hints concode_elem_sep String copyParentId concode_elem_sep List alwaysCopyEObjectInfoList concode_elem_sep String objId concode_elem_sep int NONE concode_elem_sep St...
boolean function ( String arg0 ) { return hints . indexOf ( arg0 ) != NONE ; }
6,535
merge two json objects . concode_field_sep Context context concode_field_sep Notification cancel concode_elem_sep void cancelAll concode_elem_sep List<Integer> getIdsByType concode_elem_sep List<Notification> getAll concode_elem_sep List<Notification> getByType concode_elem_sep NotificationManager getNotMgr concode_ele...
JSONObject function ( JSONObject arg0 , JSONObject arg1 ) { Iterator loc0 = arg1 . keys ( ) ; while ( loc0 . hasNext ( ) ) { try { String loc1 = ( String ) loc0 . next ( ) ; arg0 . put ( loc1 , arg1 . opt ( loc1 ) ) ; } catch ( JSONException loc1 ) { loc1 . printStackTrace ( ) ; } } return arg0 ; }
6,536
todo concode_field_sep int compact_pages_free concode_elem_sep int compact_levels concode_elem_sep int compact_pages_truncated concode_elem_sep int compact_timeout concode_elem_sep int compact_deadlock concode_elem_sep int compact_pages concode_elem_sep int compact_fillpercent concode_elem_sep int compact_pages_examine...
int function ( ) { return compact_pages_truncated ; }
6,537
insert the exception into the given any . concode_field_sep String _id concode_field_sep CannotProceed extract concode_elem_sep CannotProceed read concode_elem_sep String id concode_elem_sep TypeCode type concode_elem_sep void write
void function ( Any arg0 , CannotProceed arg1 ) { arg0 . insert_Streamable ( new CannotProceedHolder ( arg1 ) ) ; }
6,538
returns a position in a source where this symbol starts . concode_field_sep int COLUMN_FIELD_BITS concode_elem_sep int COLUMN_FIELD_MASK concode_elem_sep int start concode_elem_sep int end concode_elem_sep short id concode_elem_sep Object value concode_field_sep int getLine concode_elem_sep int getColumn concode_elem_s...
int function ( ) { return start ; }
6,539
copy the values to other saves object creation and gc . concode_field_sep double a1 concode_elem_sep double min concode_elem_sep double max concode_elem_sep MinMax minmax concode_elem_sep double DEFAULT_MIN_VALUE concode_elem_sep double s0 concode_elem_sep double DEFAULT_MAX_VALUE concode_elem_sep double s1 concode_ele...
void function ( SampleStat arg0 ) { arg0 . reset ( numSamples , a0 , a1 , s0 , s1 , minmax ) ; }
6,540
called when this index is closed . concode_field_sep long BASE_BYTES_PER_CHM_ENTRY concode_elem_sep Map<BytesRef,VersionValue> current concode_elem_sep AtomicLong ramBytesUsedTombstones concode_elem_sep Map<BytesRef,VersionValue> old concode_elem_sep Map<BytesRef,DeleteVersionValue> tombstones concode_elem_sep Maps map...
void function ( ) { maps = new Maps ( ) ; tombstones . clear ( ) ; ramBytesUsedCurrent . set ( 0 ) ; if ( mgr != null ) { mgr . removeListener ( this ) ; mgr = null ; } }
6,541
gets the value of the manufacturingcosttemplate property . concode_field_sep Long operationSequence concode_elem_sep Long laborResources concode_elem_sep String lagUnits concode_elem_sep Long machineResources concode_elem_sep ManufacturingLagType lagType concode_elem_sep Double runRate concode_elem_sep String operation...
RecordRef function ( ) { return manufacturingCostTemplate ; }
6,542
if chunk handling is supported end streaming chunks . concode_field_sep Object[] args concode_elem_sep Object handler concode_elem_sep Method method concode_elem_sep Logger log concode_elem_sep Response responder concode_elem_sep HttpStreamHandler httpStreamHandler concode_field_sep void chunk concode_elem_sep void inv...
void function ( ) { try { httpStreamHandler . end ( ) ; } catch ( Throwable loc0 ) { log . error ( "srini_string" , loc0 ) ; httpStreamHandler . error ( loc0 ) ; throw loc0 ; } }
6,543
returns an array of threadinfo s for this stacksample . the display thread is always the first in the array . concode_field_sep ThreadInfo[] traces concode_elem_sep long timestamp concode_field_sep long getTimestamp concode_elem_sep String toString
ThreadInfo [ ] function ( ) { return traces ; }
6,544
animation engine should call this method for every animation frame passing animation progress value as a parameter . animation progress should be within the range 0 . .1 the exception here would be a spring animation engine which may slightly exceed start and end progress values . this method will return false if the a...
boolean function ( float arg0 ) { Assertions . assertCondition ( ! mIsFinished , "srini_string" ) ; if ( ! mCancelled ) { mPropertyUpdater . onUpdate ( Assertions . assertNotNull ( mAnimatedView ) , arg0 ) ; } return ! mCancelled ; }
6,545
if haschanged returns true , calls the update method for every observer in the list of observers using null as the argument . afterwards , calls clearchanged . equivalent to calling notifyobservers null . concode_field_sep boolean changed concode_elem_sep List<Observer> observers concode_field_sep void deleteObservers ...
void function ( ) { notifyObservers ( null ) ; }
6,546
sets the display surface while in a transaction . concode_field_sep Rect mCurrentDisplayRect concode_elem_sep Rect mCurrentLayerStackRect concode_elem_sep DisplayAdapter mDisplayAdapter concode_elem_sep int mCurrentLayerStack concode_elem_sep Surface mCurrentSurface concode_elem_sep IBinder mDisplayToken concode_elem_s...
void function ( Surface arg0 ) { if ( mCurrentSurface != arg0 ) { mCurrentSurface = arg0 ; SurfaceControl . setDisplaySurface ( mDisplayToken , arg0 ) ; } }
6,547
close the rtp socket , stop the rtcpreceiver and close the rtcp socket . concode_field_sep RtcpReceiver rtcpReceiver concode_elem_sep int MAX_RECEIVE_BUFFER concode_elem_sep DatagramSocket rtcpDatagramSocket concode_elem_sep int MAX_SEND_BUFFER concode_elem_sep int rtpTimeout concode_elem_sep DatagramSocket rtpDatagram...
void function ( ) { if ( rtpDatagramSocket != null ) { rtpDatagramSocket . close ( ) ; rtpDatagramSocket = null ; } if ( rtcpReceiver != null ) { rtcpReceiver . end ( ) ; rtcpDatagramSocket . close ( ) ; rtcpReceiver = null ; } }
6,548
test speechrecognitionerrorevent string constructor concode_field_sep PlaceHolder placeHolder concode_field_sep void getMessageTest
void function ( ) { SpeechRecognitionErrorEvent loc0 = new SpeechRecognitionErrorEvent ( "srini_string" ) ; Assert . assertNotNull ( "srini_string" , loc0 ) ; }
6,549
sets the last zone record for this time zone . concode_field_sep List<RuleRec> usedRuleRecs concode_elem_sep int UNDEF_DST concode_elem_sep ZoneRec lastZoneRec concode_elem_sep int lastSaving concode_elem_sep List<ZoneRec> usedZoneRecs concode_elem_sep int dstType concode_elem_sep List<RuleRec> lastRules concode_elem_s...
void function ( ZoneRec arg0 ) { lastZoneRec = arg0 ; }
6,550
generates the next pseudorandom float uniformly distributed between 0.0 f inclusive and 1.0 f exclusive . the implementation is as follows . public float nextfloat return next 24 / float 1 < < 24 ; concode_field_sep long seed concode_elem_sep long serialVersionUID concode_elem_sep boolean haveNextNextGaussian concode_e...
float function ( ) { return next ( 24 ) / ( float ) ( 1 << 24 ) ; }
6,551
invokes the static main string method from each specified class . concode_field_sep String LS concode_elem_sep String SYNTAX_MSG concode_elem_sep String[] emptyStringArray concode_field_sep void syntaxFailure concode_elem_sep void main
void function ( String arg0 , String [ ] arg1 ) { Class loc0 ; Method loc1 ; Class [ ] loc2 = { emptyStringArray . getClass ( ) } ; Object [ ] loc3 = { ( arg1 == null ) ? emptyStringArray : arg1 } ; loc0 = Class . forName ( arg0 ) ; loc1 = loc0 . getMethod ( "srini_string" , loc2 ) ; loc1 . invoke ( null , loc3 ) ; }
6,552
retrieves the mapper class to use for this split . concode_field_sep Class<? extends InputFormat> inputFormatClass concode_elem_sep Class<? extends InputSplit> inputSplitClass concode_elem_sep Configuration conf concode_elem_sep InputSplit inputSplit concode_elem_sep Class<? extends Mapper> mapperClass concode_field_se...
Class < ? extends Mapper > function ( ) { return mapperClass ; }
6,553
resolve the given class name as primitive class , if appropriate , according to the jvm 's naming rules for primitive classes . also supports the jvm 's internal class names for primitive arrays . does not support the '' '' suffix notation for primitive arrays ; this is only supported by #forname . concode_field_sep Ma...
Class < ? > function ( String arg0 ) { Class < ? > loc0 = null ; if ( arg0 != null && arg0 . length ( ) <= 8 ) { loc0 = ( Class < ? > ) primitiveTypeNameMap . get ( arg0 ) ; } return loc0 ; }
6,554
storing albums in shared preferences concode_field_sep Editor editor concode_elem_sep String KEY_ALBUMS concode_elem_sep Context _context concode_elem_sep String TAG concode_elem_sep SharedPreferences pref concode_elem_sep String KEY_NO_OF_COLUMNS concode_elem_sep String KEY_GALLERY_NAME concode_elem_sep String PREF_NA...
void function ( List < Category > arg0 ) { editor = pref . edit ( ) ; Gson loc0 = new Gson ( ) ; Log . d ( TAG , "srini_string" + loc0 . toJson ( arg0 ) ) ; editor . putString ( KEY_ALBUMS , loc0 . toJson ( arg0 ) ) ; editor . commit ( ) ; }
6,555
tests if headers with the given name are contained within this group . header name comparison is case insensitive . concode_field_sep List headers concode_elem_sep long serialVersionUID concode_field_sep Header getCondensedHeader concode_elem_sep void setHeaders concode_elem_sep void addHeader concode_elem_sep void upd...
boolean function ( String arg0 ) { for ( int loc0 = 0 ; loc0 < headers . size ( ) ; loc0 ++ ) { Header loc1 = ( Header ) headers . get ( loc0 ) ; if ( loc1 . getName ( ) . equalsIgnoreCase ( arg0 ) ) { return true ; } } return false ; }
6,556
test method for org.apache.accumulo.core.util.pair #getfirst . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSwap concode_elem_sep void testToString concode_elem_sep void testGetSecond concode_elem_sep void testToMapEntry concode_elem_sep void testToStringStringStringString concode_elem_sep void ...
void function ( ) { Pair < Integer , String > loc0 = new Pair < > ( 25 , "srini_string" ) ; assertEquals ( ( Integer ) 25 , loc0 . getFirst ( ) ) ; }
6,557
returns the pre value of the document node that matches the specified path , or -1 . concode_field_sep Binaries bins concode_elem_sep Docs docs concode_field_sep boolean drop concode_elem_sep int costs concode_elem_sep void read concode_elem_sep void insert concode_elem_sep IndexIterator iter concode_elem_sep void dele...
int function ( final String arg0 ) { return docs . doc ( arg0 ) ; }
6,558
was the conversation successful ? concode_field_sep boolean success concode_elem_sep boolean complete concode_field_sep void success concode_elem_sep void waitForCompletion concode_elem_sep ContentHandler getHandler concode_elem_sep boolean isComplete
boolean function ( ) { return success ; }
6,559
start the thread . this method is called after opening the database to avoid deadlocks concode_field_sep WeakReference<Database> databaseRef concode_elem_sep boolean stop concode_elem_sep int writeDelay concode_elem_sep Thread thread concode_field_sep void setWriteDelay concode_elem_sep WriterThread create concode_elem...
void function ( ) { thread . start ( ) ; thread = null ; }
6,560
the name of the dimension . concode_field_sep String name concode_elem_sep String value concode_field_sep void setName concode_elem_sep String getValue concode_elem_sep String getName concode_elem_sep Dimension withValue concode_elem_sep int hashCode concode_elem_sep void setValue concode_elem_sep boolean equals concod...
Dimension function ( String arg0 ) { setName ( arg0 ) ; return this ; }
6,561
get an array of midi tracks used in this sequence . concode_field_sep float SMPTE_24 concode_elem_sep float divisionType concode_elem_sep float SMPTE_25 concode_elem_sep float PPQ concode_elem_sep float SMPTE_30 concode_elem_sep int resolution concode_elem_sep Vector<Track> tracks concode_elem_sep float SMPTE_30DROP co...
Track [ ] function ( ) { return tracks . toArray ( new Track [ tracks . size ( ) ] ) ; }
6,562
the default implementation does nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep void exitStart_entry concode_elem_sep void exitExpr concode_elem_sep void enterDecoration concode_elem_sep void exitShape_rule concode_elem_sep void exitDecoration concode_elem_sep void exitObject_identifier concode_el...
void function ( ShapeGrammarParser . FuncContext arg0 ) { }
6,563
create a filter for the operation . set the condition into the new filter . concode_field_sep Logger logger concode_elem_sep QueryDomainTypeImpl<?> dobj concode_elem_sep I18NHelper local concode_field_sep Predicate or concode_elem_sep void operationEqualFor concode_elem_sep void setSatisfied concode_elem_sep void markP...
void function ( QueryExecutionContext arg0 , ScanOperation arg1 ) { try { ScanFilter loc0 = arg1 . getScanFilter ( arg0 ) ; loc0 . begin ( ) ; filterCmpValue ( arg0 , arg1 , loc0 ) ; loc0 . end ( ) ; } catch ( ClusterJException loc0 ) { throw loc0 ; } catch ( Exception loc0 ) { throw new ClusterJException ( local . mes...
6,564
return the first parameter concode_field_sep boolean extendAddress concode_elem_sep boolean demandAck concode_elem_sep boolean threePhase concode_elem_sep Command command concode_field_sep void setDemandAckTo concode_elem_sep int getSecondParameter concode_elem_sep List<Byte> getDataBytes concode_elem_sep Command getCo...
int function ( ) { return command . getData1 ( ) ; }
6,565
create an instance of ejblinktype concode_field_sep QName _HandlerChains_QNAME concode_field_sep XsdAnyURIType createXsdAnyURIType concode_elem_sep EmptyType createEmptyType concode_elem_sep PortComponentRefType createPortComponentRefType concode_elem_sep SecurityRoleRefType createSecurityRoleRefType concode_elem_sep X...
EjbLinkType function ( ) { return new EjbLinkType ( ) ; }
6,566
returns the currently active exceptionlistener instance . concode_field_sep PersistenceDelegate defaultPersistenceDelegate concode_elem_sep IdentityHashMap candidates concode_elem_sep ExceptionListener exceptionListener concode_elem_sep HashMap delegates concode_elem_sep int accessCounter concode_elem_sep PersistenceDe...
ExceptionListener function ( ) { return exceptionListener ; }
6,567
sets the value of the subtitle property . concode_field_sep long m_nPageCount concode_elem_sep MockJAXBIssue.FirstPage m_aFirstPage concode_elem_sep long m_nCollectionID concode_elem_sep String m_sValue concode_elem_sep String m_sMenuLayout concode_elem_sep long m_nWidth concode_elem_sep BigDecimal m_aTitle concode_ele...
void function ( final String arg0 ) { this . m_sSubTitle = arg0 ; }
6,568
traces and logs a caught exception . concode_field_sep int TOTAL_WORK concode_elem_sep IClipboardSupport clipboardSupport concode_elem_sep int WORK_UNIT concode_elem_sep IProgressMonitor monitor concode_field_sep boolean isCancelled concode_elem_sep IClipboardSupport getClipboardOperationHelper concode_elem_sep void th...
void function ( String arg0 , Exception arg1 ) { ClipboardPlugin . catching ( getClass ( ) , arg0 , arg1 ) ; }
6,569
remove a listener for the propertychange event . concode_field_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep ElementAlignment value concode_field_sep String getJavaInitializationString concode_elem_sep Object getValue concode_elem_sep Component getCustomEditor concode_elem_sep boolean supportsCustomE...
void function ( final PropertyChangeListener arg0 ) { propertyChangeSupport . removePropertyChangeListener ( arg0 ) ; }
6,570
predicate : can this disseminator crosswalk the given object . needed by oai-pmh server implementation . concode_field_sep PlaceHolder placeHolder concode_field_sep List<Element> disseminateList concode_elem_sep Namespace[] getNamespaces concode_elem_sep Element disseminateElement concode_elem_sep String getSchemaLocat...
boolean function ( DSpaceObject arg0 ) { return true ; }
6,571
this method was generated by mybatis generator . this method sets the value of the database column leave.userid concode_field_sep String reason concode_elem_sep Date createtime concode_elem_sep Date endtime concode_elem_sep Integer id concode_elem_sep Date starttime concode_elem_sep Integer userid concode_field_sep Dat...
void function ( Integer arg0 ) { this . userid = arg0 ; }
6,572
returns a hash code for this object . this implementation returns the hash code of the managed object . concode_field_sep String FMT_TO_STRING concode_elem_sep T object concode_field_sep T getObject concode_elem_sep T get concode_elem_sep boolean equals concode_elem_sep String toString
int function ( ) { return getObject ( ) != null ? getObject ( ) . hashCode ( ) : 0 ; }
6,573
open the client for use . concode_field_sep boolean opened concode_elem_sep Logger log concode_elem_sep AtomicReference<UserDB> dbReference concode_elem_sep UserDBStorage dbStorage concode_field_sep A3Client newMemoryOnlyClient concode_elem_sep A3Client newMemoryOnlyClient concode_elem_sep A3Client newZooKeeperClient c...
void function ( ) { dbStorage . registerUserDBWatcher ( new UserDBStorage . Watcher ( ) { @ Override public void onUpdate ( final UserDB arg0 ) { dbReference . set ( arg0 ) ; } } ) ; opened = true ; }
6,574
deletes the password policy rel from the database . also notifies the appropriate model listeners . concode_field_sep PasswordPolicyRelLocalService _passwordPolicyRelLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.model.PasswordPolicyRel updatePasswordPolicyR...
com . liferay . portal . model . PasswordPolicyRel function ( com . liferay . portal . model . PasswordPolicyRel arg0 ) { return _passwordPolicyRelLocalService . deletePasswordPolicyRel ( arg0 ) ; }
6,575
gets the value of the min property . concode_field_sep Layout layout concode_elem_sep Boolean sendOnFinish concode_elem_sep String mapping concode_elem_sep List<Address> address concode_elem_sep BigDecimal min concode_elem_sep String styling concode_elem_sep String flavour concode_elem_sep BigDecimal max concode_elem_s...
BigDecimal function ( ) { return min ; }
6,576
determines if an iproject has a modeler nature this will also look at `` closed '' projects . concode_field_sep String DOT_PROJECT concode_field_sep Collection<IFile> getAllProjectResources concode_elem_sep boolean isModelNature concode_elem_sep boolean isDotProject concode_elem_sep boolean isDotProject concode_elem_se...
boolean function ( IProject arg0 ) { boolean loc0 = false ; IFile loc1 = DotProjectUtils . getDotProjectFile ( arg0 ) ; if ( loc1 != null ) { try { loc0 = DotProjectUtils . isDotProject ( loc1 , true ) ; } catch ( Exception loc2 ) { ModelerCore . Util . log ( loc2 ) ; } } return loc0 ; }
6,577
gets the svn checkout url . concode_field_sep String svnInfo concode_elem_sep StatusClass encodingStatus concode_elem_sep Map<String,String> missingMessages concode_elem_sep int countOfMessages concode_elem_sep Map<String,String> notTranslatedMessages concode_elem_sep Map<String,String[]> inconsistentTranslations conco...
String function ( ) { return svnCheckoutUrl ; }
6,578
get custom serializer concode_field_sep java.lang.String query concode_elem_sep com.google.api.ads.dfp.axis.v201502.String_ValueMapEntry[] values concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep boolean __hashCodeCalc concode_field_sep org.ap...
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 ) ; }
6,579
returns the number of audit send mailses . concode_field_sep AuditSendMailsLocalService _service concode_field_sep com.tls.liferaylms.mail.model.AuditSendMails addAuditSendMails concode_elem_sep com.tls.liferaylms.mail.model.AuditSendMails createAuditSendMails concode_elem_sep com.liferay.portal.kernel.dao.orm.DynamicQ...
int function ( ) { return getService ( ) . getAuditSendMailsesCount ( ) ; }
6,580
call load with a reference to the calling plugin to load the appropriate html body from a file with the name p.getname + '' . html '' concode_field_sep String HTML_BODY_REGEX concode_field_sep placeholderType placeHolder
String function ( Plugin arg0 ) { return load ( arg0 . getClass ( ) . getName ( ) ) ; }
6,581
getter method to get the ticket escalation concode_field_sep WorkflowStepObjectVO escalationStep concode_elem_sep EscalateTicketObjectVO escalation concode_field_sep void setEscalation concode_elem_sep void setEscalationStep concode_elem_sep WorkflowStepObjectVO getEscalationStep
EscalateTicketObjectVO function ( ) { return escalation ; }
6,582
get public.rewards _ report as a table . concode_field_sep FilmNotInStock FILM_NOT_IN_STOCK concode_elem_sep NicerButSlowerFilmList NICER_BUT_SLOWER_FILM_LIST concode_elem_sep PaymentP2007_02 PAYMENT_P2007_02 concode_elem_sep FilmActor FILM_ACTOR concode_elem_sep FilmInStock FILM_IN_STOCK concode_elem_sep PaymentP2007_...
RewardsReport function ( Field < Integer > arg0 , Field < BigDecimal > arg1 ) { return RewardsReport . REWARDS_REPORT . call ( arg0 , arg1 ) ; }
6,583
interface method implementation . returns userinfo #getid concode_field_sep ObjectMapper objectMapper concode_field_sep Long getSequenceId concode_elem_sep List<Person> getChangeEvents concode_elem_sep Object getChangeEventKey concode_elem_sep String getNFTypeName
Object function ( UserInfo arg0 ) { return arg0 . getId ( ) ; }
6,584
decodes a jbig2 image from a file object concode_field_sep JBIG2StreamDecoder streamDecoder concode_field_sep int getNumberOfPages concode_elem_sep void setGlobalData concode_elem_sep void cleanupPostDecode concode_elem_sep Segment findSegment concode_elem_sep boolean isRandomAccessOrganisationUsed concode_elem_sep JBI...
void function ( File arg0 ) { decodeJBIG2 ( arg0 . getAbsolutePath ( ) ) ; }
6,585
set the modifiers of the method . the values correspond to the constants in the modifiers class . concode_field_sep ClassInfo classInfo concode_elem_sep Code code concode_elem_sep int name concode_elem_sep boolean DEBUG concode_elem_sep int modifiers concode_elem_sep int type concode_elem_sep Exceptions exceptions conc...
void function ( final int arg0 ) { this . modifiers = arg0 ; }
6,586
sets the data buffer for this packet . concode_field_sep DatagramPacket packet concode_field_sep DatagramPacket getDatagramPacket concode_elem_sep void setLength concode_elem_sep int getPort concode_elem_sep IpAddress getIpAddress concode_elem_sep int getOffset concode_elem_sep int getLength concode_elem_sep void setIp...
void function ( byte [ ] arg0 , int arg1 , int arg2 ) { packet . setData ( arg0 , arg1 , arg2 ) ; }
6,587
write the #value field to the given stream.for string , the functionality is delegated to org.omg.corba.portable.outputstream #write_wstring string . concode_field_sep String value concode_elem_sep StringTypeCode t_string concode_field_sep void _read concode_elem_sep TypeCode _type
void function ( OutputStream arg0 ) { arg0 . write_wstring ( value ) ; }
6,588
determine if a file or directory exists . concode_field_sep String LOG_TAG concode_field_sep boolean testSaveLocationExists concode_elem_sep File constructFilePaths concode_elem_sep long getFreeExternalStorageSpace concode_elem_sep long getFreeSpaceInBytes
boolean function ( String arg0 ) { boolean loc0 ; if ( ( testSaveLocationExists ( ) ) && ( ! arg0 . equals ( "srini_string" ) ) ) { File loc1 = Environment . getExternalStorageDirectory ( ) ; File loc2 = constructFilePaths ( loc1 . toString ( ) , arg0 ) ; loc0 = loc2 . exists ( ) ; } else { loc0 = false ; } return loc0...
6,589
tests this function for equality with an arbitrary object . concode_field_sep double[] coefficients concode_field_sep double getValue concode_elem_sep int hashCode concode_elem_sep int getOrder concode_elem_sep double[] getCoefficients
boolean function ( Object arg0 ) { if ( ! ( arg0 instanceof PolynomialFunction2D ) ) { return false ; } PolynomialFunction2D loc0 = ( PolynomialFunction2D ) arg0 ; return Arrays . equals ( this . coefficients , loc0 . coefficients ) ; }
6,590
gets the value of the error property . concode_field_sep Propstat propstat concode_elem_sep String href concode_elem_sep Error error concode_elem_sep String status concode_elem_sep String responsedescription concode_field_sep void setResponsedescription concode_elem_sep String getHref concode_elem_sep String getRespons...
Error function ( ) { return error ; }
6,591
pfam-a parsing does not require the alignments . concode_field_sep SignatureLibrary signatureLibrary concode_elem_sep Pattern MODEL_ACCESSION_LINE_PATTERN concode_elem_sep GaValuesRetriever gaValuesRetriever concode_elem_sep String signatureLibraryRelease concode_field_sep void setSignatureLibrary concode_elem_sep Stri...
boolean function ( ) { return false ; }
6,592
completes the opening tag which is started in the constructor . and writes a new line eg > concode_field_sep String nsPrefix concode_elem_sep Charset charset concode_elem_sep Element parent concode_elem_sep String name concode_elem_sep boolean openEnded concode_elem_sep Logger log concode_elem_sep boolean allowNewlines...
Element function ( ) { return open ( true ) ; }
6,593
peek ahead to the next record , without incrementing the file position concode_field_sep int arrayGrowSize concode_elem_sep int filePos concode_elem_sep CompoundFile compoundFile concode_elem_sep byte[] data concode_elem_sep int oldPos concode_elem_sep int initialFileSize concode_elem_sep WorkbookSettings workbookSetti...
Record function ( ) { int loc0 = filePos ; Record loc1 = new Record ( data , filePos , this ) ; filePos = loc0 ; return loc1 ; }
6,594
if size is not an absolute size , return the product of font size in pixels and value . otherwise , return the absolute value . concode_field_sep SizeUnits units concode_elem_sep double value concode_field_sep double getValue concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep SizeUnits getUn...
double function ( Font arg0 ) { return pixels ( 1.0f , arg0 ) ; }
6,595
gets the value of the format property . concode_field_sep BigInteger width concode_elem_sep String format concode_elem_sep OnlineResourceType onlineResource concode_elem_sep BigInteger height concode_field_sep BigInteger getHeight concode_elem_sep OnlineResourceType getOnlineResource concode_elem_sep void setFormat con...
String function ( ) { return format ; }
6,596
returns whether the game is over . the game is over when all squares are filled with a piece . concode_field_sep int NUM_COLS concode_elem_sep int numRows concode_elem_sep UI ui concode_elem_sep int blackCount concode_elem_sep Color[][] squares concode_elem_sep int NUM_ROWS concode_elem_sep int numCols concode_elem_sep...
boolean function ( ) { return getTotalCount ( ) == numRows * numCols ; }
6,597
removes this push event listener from the push notifications concode_field_sep IcePushClientLibrary icePushClient concode_elem_sep GWTPushContext instance concode_field_sep GWTPushContext getInstance concode_elem_sep void removePushEventListener concode_elem_sep IcePushClientLibrary getIcePushClientLibrary concode_elem...
void function ( PushEventListener arg0 , String arg1 ) { icePushClient . removeGroupMember ( arg1 , arg0 . getPushId ( ) ) ; }
6,598
gets the password . concode_field_sep String password concode_elem_sep String userName concode_field_sep void setPassword concode_elem_sep void setUserName concode_elem_sep String getUserName
String function ( ) { return password ; }
6,599
the last port in the range . returns a reference to this object so that method calls can be chained together . concode_field_sep Integer from concode_elem_sep Integer to concode_field_sep void setFrom concode_elem_sep int hashCode concode_elem_sep PortRange withFrom concode_elem_sep boolean equals concode_elem_sep Port...
PortRange function ( Integer arg0 ) { this . to = arg0 ; return this ; }