idx
int64
0
100k
question
stringlengths
68
7.19k
target
stringlengths
20
663
11,800
sets the name of this logfilter concode_field_sep int SLOW concode_elem_sep int FAST concode_elem_sep int load concode_elem_sep String name concode_elem_sep int MODERATE concode_elem_sep LogFilter filter concode_field_sep void readSpecificXML concode_elem_sep String getName concode_elem_sep LogFilter readXML concode_el...
void function ( String arg0 ) { this . name = arg0 ; }
11,801
get the job priority concode_field_sep JobPriorityChange datum concode_field_sep EventType getEventType concode_elem_sep Object getDatum concode_elem_sep JobID getJobId concode_elem_sep void setDatum
JobPriority function ( ) { return JobPriority . valueOf ( datum . getPriority ( ) . toString ( ) ) ; }
11,802
retrieves the choice id stored for the given vertex in the choice mapping . concode_field_sep HashMap<ModelGraphVertex,HLID> vertexToHLActivityMapping concode_elem_sep HLProcess hlProcess concode_elem_sep ModelGraph model concode_elem_sep HashMap<ModelGraphVertex,HLID> vertexToHLChoiceMapping concode_field_sep void rep...
HLID function ( ModelGraphVertex arg0 ) { return vertexToHLChoiceMapping . get ( arg0 ) ; }
11,803
a function thats returns a 64-bit crc for string concode_field_sep long POLY64REV concode_elem_sep long INITIALCRC concode_elem_sep long[] sCrcTable concode_elem_sep String TAG concode_field_sep int getBitmapSize concode_elem_sep byte[] makeKey concode_elem_sep byte[] copyOfRange concode_elem_sep long getUsableSpace co...
long function ( String arg0 ) { if ( arg0 == null || arg0 . length ( ) == 0 ) { return 0 ; } return crc64Long ( getBytes ( arg0 ) ) ; }
11,804
create an instance of repositoryobjectlist concode_field_sep PlaceHolder placeHolder concode_field_sep RepositoryObjectKey createRepositoryObjectKey concode_elem_sep MetadataItem createMetadataItem concode_elem_sep MetadataItemKey createMetadataItemKey concode_elem_sep DataChunk createDataChunk concode_elem_sep Metadat...
RepositoryObjectList function ( ) { return new RepositoryObjectList ( ) ; }
11,805
deletes the contact with the primary key from the database . also notifies the appropriate model listeners . concode_field_sep ContactLocalService _contactLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.portal.kernel.dao.orm.A...
com . liferay . portal . kernel . model . Contact function ( long arg0 ) { return _contactLocalService . deleteContact ( arg0 ) ; }
11,806
reset any internal state , allowing this builder to be recycled . concode_field_sep StringBuilder mSelection concode_elem_sep String mHaving concode_elem_sep String mGroupBy concode_elem_sep String mTable concode_elem_sep Map<String,String> mProjectionMap concode_elem_sep ArrayList<String> mSelectionArgs concode_elem_s...
SelectionBuilder function ( ) { mTable = null ; mGroupBy = null ; mHaving = null ; mSelection . setLength ( 0 ) ; mSelectionArgs . clear ( ) ; return this ; }
11,807
set the dragcontext globe . concode_field_sep Point previousPoint concode_elem_sep View view concode_elem_sep Globe globe concode_elem_sep String dragState concode_elem_sep Point initialPoint concode_elem_sep Point point concode_elem_sep SceneController sceneController concode_field_sep Point getPoint concode_elem_sep ...
void function ( Globe arg0 ) { if ( arg0 == null ) { String loc0 = Logging . getMessage ( "srini_string" ) ; Logging . logger ( ) . severe ( loc0 ) ; throw new IllegalArgumentException ( loc0 ) ; } this . globe = arg0 ; }
11,808
calculates the intersection of two fieldmasks . concode_field_sep String FIELD_SEPARATOR_REGEX concode_elem_sep String FIELD_PATH_SEPARATOR concode_elem_sep String FIELD_PATH_SEPARATOR_REGEX concode_elem_sep boolean replaceMessageFields concode_elem_sep boolean replaceRepeatedFields concode_field_sep FieldMask fromStri...
FieldMask function ( FieldMask arg0 , FieldMask arg1 ) { FieldMaskTree loc0 = new FieldMaskTree ( arg0 ) ; FieldMaskTree loc1 = new FieldMaskTree ( ) ; for ( String loc2 : arg1 . getPathsList ( ) ) { loc0 . intersectFieldPath ( loc2 , loc1 ) ; } return loc1 . toFieldMask ( ) ; }
11,809
checks if entry is valid all ways concode_field_sep int[][] solvedPuzzle concode_elem_sep int[][] origPuzzle concode_elem_sep int puzzleSize concode_field_sep void next concode_elem_sep boolean checkCol concode_elem_sep boolean[][] checkGuess concode_elem_sep void solve concode_elem_sep boolean checkRow concode_elem_se...
boolean function ( int arg0 , int arg1 , int arg2 ) { return checkRow ( arg0 , arg2 ) && checkCol ( arg1 , arg2 ) && checkBox ( arg0 , arg1 , arg2 ) ; }
11,810
redirect browser to a different page . the redirect page is selected based on the navigation rule . the user 's browser will be immediately redirected without any user interaction required . concode_field_sep Lifecycle lifecycle concode_elem_sep Log log concode_elem_sep ExecutorService executorService concode_elem_sep ...
void function ( String arg0 ) { try { facesContext . setCurrentInstance ( ) ; facesContext . getApplication ( ) . getNavigationHandler ( ) . handleNavigation ( facesContext , facesContext . getViewRoot ( ) . getViewId ( ) , arg0 ) ; responseState . flush ( ) ; } catch ( Exception loc0 ) { throw new RuntimeException ( l...
11,811
gets the minimum of two float values . nan is only returned if all numbers are nan as per ieee-754r . concode_field_sep PlaceHolder placeHolder concode_field_sep double max concode_elem_sep float max concode_elem_sep double max concode_elem_sep double max concode_elem_sep float max concode_elem_sep float max
float function ( final float arg0 , final float arg1 ) { if ( Float . isNaN ( arg0 ) ) { return arg1 ; } else if ( Float . isNaN ( arg1 ) ) { return arg0 ; } else { return Math . min ( arg0 , arg1 ) ; } }
11,812
sets the tree 's default model . concode_field_sep SelectItem[] componentList concode_elem_sep NodeUserObject selectedNodeObject concode_elem_sep DefaultMutableTreeNode rootTreeNode concode_elem_sep DefaultTreeModel model concode_elem_sep Integer componentToAdd concode_elem_sep int labelCount concode_elem_sep String se...
void function ( DefaultTreeModel arg0 ) { this . model = arg0 ; }
11,813
creates an instance of defaultnhttpclientconnection based on thegiven iosession . this method can be overridden in a super class in order to provide a different implementation of the nhttpclientiotarget interface . concode_field_sep NHttpClientHandler handler concode_elem_sep ByteBufferAllocator allocator concode_elem_...
NHttpClientIOTarget function ( final IOSession arg0 ) { return new DefaultNHttpClientConnection ( arg0 , createHttpResponseFactory ( ) , this . allocator , this . params ) ; }
11,814
return the width of the given character concode_field_sep CMap toUnicode concode_elem_sep Map<Integer,Float> cidWidths concode_elem_sep float[] widths concode_elem_sep Encoding encoding concode_elem_sep Rectangle2D maxCharBounds concode_elem_sep int firstCh concode_elem_sep float descent concode_elem_sep float missingW...
char function ( char arg0 ) { if ( cMap != null && arg0 < cMap . length ) { return cMap [ arg0 ] ; } else { return arg0 ; } }
11,815
staff api concode_field_sep DataManagerClient mDataManagerClient concode_elem_sep BaseApiManager mBaseApiManager concode_field_sep Observable<CollectionSheet> getCollectionSheet concode_elem_sep Observable<Page<Charges>> getClientCharges concode_elem_sep Observable<List<SearchedEntity>> searchClientsByName concode_elem...
Observable < List < Staff >> function ( int arg0 ) { return mBaseApiManager . getStaffApi ( ) . getStaffForOffice ( arg0 ) ; }
11,816
sets the value of the remoteschema property . concode_field_sep Quantity quantity concode_elem_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String remoteSchema concode_el...
void function ( String arg0 ) { this . remoteSchema = arg0 ; }
11,817
this method is invoked by the jaxb implementation on each instance when unmarshalling completes . concode_field_sep Object parent concode_elem_sep Long min concode_elem_sep Boolean pt concode_elem_sep Long max concode_elem_sep Long id concode_elem_sep Boolean man concode_field_sep void setMax concode_elem_sep void setP...
void function ( Unmarshaller arg0 , Object arg1 ) { setParent ( arg1 ) ; }
11,818
gets the nextwritefieldinfosgen . concode_field_sep Map<Integer,Set<String>> dvUpdatesFiles concode_elem_sep long delGen concode_elem_sep long fieldInfosGen concode_elem_sep long nextWriteDocValuesGen concode_elem_sep Set<String> fieldInfosFiles concode_elem_sep long docValuesGen concode_elem_sep long nextWriteFieldInf...
long function ( ) { return nextWriteFieldInfosGen ; }
11,819
returns all of the frame ids from all of the known contexts in this thread data or an empty list , never null concode_field_sep Long threadId concode_elem_sep RhinoDebuggerImpl debugger concode_elem_sep long currentFrameId concode_elem_sep long currentContextId concode_elem_sep LinkedList contexts concode_field_sep voi...
List function ( ) { ArrayList loc0 = new ArrayList ( contexts . size ( ) ) ; for ( Iterator loc1 = contexts . loc1 ( ) ; loc1 . hasNext ( ) ; ) { Context loc2 = ( Context ) loc1 . next ( ) ; ContextData loc3 = ( ContextData ) loc2 . getDebuggerContextData ( ) ; loc0 . addAll ( loc3 . getFrameIds ( ) ) ; } return loc0 ;...
11,820
returns the osgi service identifier . concode_field_sep SystemEventLocalService _service concode_field_sep com.liferay.portal.kernel.model.SystemEvent updateSystemEvent concode_elem_sep com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery concode_elem_sep com.liferay.portal.kernel.model.Sy...
java . lang . String function ( ) { return getService ( ) . getOSGiServiceIdentifier ( ) ; }
11,821
gets a clone of the current constraints . concode_field_sep Container container concode_elem_sep int DEFAULT_HPAD concode_elem_sep GridBagConstraints constraints concode_elem_sep GridBagConstraints defaultConstraints concode_field_sep void add concode_elem_sep void add concode_elem_sep ConstraintBuilder makeDefault con...
GridBagConstraints function ( ) { return ( GridBagConstraints ) constraints . clone ( ) ; }
11,822
enabled -- . concode_field_sep Map options concode_elem_sep int allowed_modifier_changes_unsafe concode_elem_sep int allowed_modifier_changes_safe concode_elem_sep int allowed_modifier_changes_none concode_field_sep boolean insert_redundant_casts concode_elem_sep boolean rerun_jb concode_elem_sep boolean insert_null_ch...
boolean function ( ) { return soot . PhaseOptions . getBoolean ( options , "srini_string" ) ; }
11,823
change the maximum percentage of the current throttling operation . if no throttling operation is in effect , one will be started . concode_field_sep ThreadThrottler previous concode_elem_sep double DEFAULT_THROTTLING_PERCENTAGE concode_elem_sep long lastTickTime concode_elem_sep double multiplier concode_elem_sep doub...
boolean function ( double arg0 ) { if ( DISABLED ) return false ; ThreadThrottler loc0 = ( ThreadThrottler ) THROTTLERS . get ( ) ; if ( loc0 == null ) { loc0 = new ThreadThrottler ( null , arg0 ) ; THROTTLERS . set ( loc0 ) ; return true ; } else { loc0 . setPercentage ( arg0 ) ; return false ; } }
11,824
the actual file size on `` disk '' , if compressed , the compressed size concode_field_sep Version writtenBy concode_elem_sep String name concode_elem_sep long length concode_elem_sep String checksum concode_elem_sep BytesRef hash concode_field_sep void writeTo concode_elem_sep boolean hasLegacyChecksum concode_elem_se...
long function ( ) { return length ; }
11,825
specifies the default timeout for any invocation of this operation , specified in seconds . any specific invocation can override this timeout if it passes in a simple property parameter named #timeout_param_name . concode_field_sep String QUERY_FIND_BY_RESOURCE_AND_NAME concode_elem_sep String displayName concode_elem_...
Integer function ( ) { return timeout ; }
11,826
deals a card from this deck . concode_field_sep List<Card> cards concode_elem_sep int size concode_field_sep int size concode_elem_sep boolean isEmpty concode_elem_sep String toString concode_elem_sep void shuffle
Card function ( ) { if ( isEmpty ( ) ) { return null ; } size -- ; Card loc0 = cards . get ( size ) ; return loc0 ; }
11,827
gets the value of the source property . concode_field_sep String identifierValue concode_elem_sep String source concode_field_sep void setIdentifierValue concode_elem_sep void setSource concode_elem_sep String getIdentifierValue
String function ( ) { return source ; }
11,828
sets whether to use custom dimensions for the image concode_field_sep File outputFile concode_elem_sep double m_xScale concode_elem_sep JComponent component concode_elem_sep boolean m_ScalingEnabled concode_elem_sep int m_CustomHeight concode_elem_sep int m_CustomWidth concode_elem_sep boolean DEBUG concode_elem_sep do...
void function ( boolean arg0 ) { m_UseCustomDimensions = arg0 ; }
11,829
gets a list of suggested user ids concode_field_sep ActionType actionType concode_elem_sep String data concode_elem_sep ArrayList<String> suggestions concode_elem_sep String to concode_elem_sep Filters filters concode_elem_sep String message concode_elem_sep String title concode_elem_sep String objectId concode_field_s...
ArrayList < String > function ( ) { return this . suggestions ; }
11,830
adds a generic property for this message . the key can be any string but it should be such that no other class accidently uses the same value . the value can be any object but it 's good idea to store only immutable objects because when message is replicated , only a shallow copy of the properties is made . concode_fie...
void function ( String arg0 , Object arg1 ) { if ( this . properties != null && this . properties . containsKey ( arg0 ) ) { throw new SimError ( "srini_string" + this + "srini_string" + "srini_string" + arg0 ) ; } this . updateProperty ( arg0 , arg1 ) ; }
11,831
predicts attendance by looking at the previous days attendance concode_field_sep Map<Integer,Double> chain concode_elem_sep boolean attend concode_field_sep void updatePredictions concode_elem_sep boolean isAttending concode_elem_sep double predictAttendance concode_elem_sep void updateAttendance concode_elem_sep void ...
double function ( int arg0 ) { int loc0 = arg0 / 10 ; Double loc1 = chain . get ( loc0 ) ; if ( loc1 == null ) { return 0.0 ; } else { return loc1 ; } }
11,832
sets the primary key 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 boolean i...
void function ( long arg0 ) { _userTrackerPath . setPrimaryKey ( arg0 ) ; }
11,833
gets the property value . concode_field_sep PropertyChangeSupport propertyChangeSupport concode_elem_sep ElementAlignment value concode_field_sep String getJavaInitializationString concode_elem_sep Component getCustomEditor concode_elem_sep boolean supportsCustomEditor concode_elem_sep void setValue concode_elem_sep vo...
Object function ( ) { return value ; }
11,834
given a java logging level , returns the corresponding android log priority . concode_field_sep Map<Level,Integer> levelToPriority concode_elem_sep int minimumLogLevel concode_elem_sep boolean filteringDisabled concode_elem_sep String logPrefix concode_elem_sep String tag concode_elem_sep int MAX_TAG_LENGTH concode_fie...
int function ( Level arg0 ) { Integer loc0 = levelToPriority . get ( arg0 ) ; if ( loc0 != null ) { return loc0 ; } throw new IllegalArgumentException ( "srini_string" + arg0 ) ; }
11,835
some checks for the equals method . concode_field_sep List events concode_field_sep void testNotification concode_elem_sep void chartChanged concode_elem_sep void testCloning concode_elem_sep CombinedDomainCategoryPlot createPlot concode_elem_sep void testRemoveSubplot concode_elem_sep CategoryDataset createDataset2 co...
void function ( ) { CombinedDomainCategoryPlot loc0 = createPlot ( ) ; CombinedDomainCategoryPlot loc1 = createPlot ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; }
11,836
checks whether this file is a read only or not concode_field_sep int resourceId concode_elem_sep double cost concode_elem_sep String ownerName concode_elem_sep int size concode_elem_sep long creationTime concode_elem_sep String name concode_elem_sep int checksum concode_elem_sep boolean masterCopy concode_elem_sep bool...
boolean function ( ) { return readOnly ; }
11,837
register the specified dtd/schema url for the specified public identifier . this must be called before the first call to parse . when adding a schema file . xsd , only the name of the file will get added . if two schemas with the same name are added , only the last one will be stored . concode_field_sep String schemaEx...
void function ( String arg0 , String arg1 ) { String loc0 = arg0 ; if ( arg0 . indexOf ( schemaExtension ) != - 1 ) loc0 = arg0 . substring ( arg0 . lastIndexOf ( '/' ) + 1 ) ; entityValidator . put ( loc0 , arg1 ) ; }
11,838
same as #emitmethod com.squareup.javawriter.javawriter , com.raizlabs.android.dbflow.processor.writer.flowwriter , string , string , java.util.set , string except it also emits an java.lang.override annotation . concode_field_sep PlaceHolder placeHolder concode_field_sep void emitMethod concode_elem_sep boolean writeBa...
void function ( JavaWriter arg0 , FlowWriter arg1 , String arg2 , String arg3 , Set < Modifier > arg4 , String ... arg5 ) { try { arg0 . emitEmptyLine ( ) . emitAnnotation ( Override . class ) ; emitMethod ( arg0 , arg1 , arg2 , arg3 , arg4 , arg5 ) ; } catch ( IOException loc0 ) { loc0 . printStackTrace ( ) ; } }
11,839
a convenience method to get the parsed type . should not be overridden . concode_field_sep ParsedResult result concode_elem_sep Activity activity concode_elem_sep Result rawResult concode_field_sep CharSequence getDisplayContents concode_elem_sep Activity getActivity concode_elem_sep int getDisplayTitle concode_elem_se...
ParsedResultType function ( ) { return result . getType ( ) ; }
11,840
inputfile can now send progress events before the file upload begins , and after it has completed , to facilitate synchronous mode , so that applications may turn on and off an indeterminate progress bar during the file upload , since they ca n't push incremental progress updates . concode_field_sep File file concode_e...
boolean function ( ) { return postUpload ; }
11,841
returns the number of shape painter of this composite shape painter . concode_field_sep Shape shape concode_elem_sep int count concode_elem_sep ShapePainter[] painters concode_field_sep Shape getPaintedArea concode_elem_sep Rectangle2D getSensitiveBounds2D concode_elem_sep ShapePainter getShapePainter concode_elem_sep ...
int function ( ) { return count ; }
11,842
this function returns whether or not the switch is on or not . concode_field_sep SingleThrowSwitch switch2 concode_elem_sep SingleThrowSwitch switch1 concode_field_sep placeholderType placeHolder
boolean function ( ) { if ( ( this . switch1 == null ) || ( this . switch1 . isOn ( ) == true ) || ( this . switch2 == null ) || ( this . switch2 . isOn ( ) == true ) ) return ( false ) ; else return ( true ) ; }
11,843
returns the type from super class 's type parameter in moretypes #canonicalize type canonical form . concode_field_sep Class<? super T> rawType concode_elem_sep int hashCode concode_elem_sep Type type concode_field_sep Class<? super T> getRawType concode_elem_sep Type resolveType concode_elem_sep TypeLiteral<?> resolve...
Type function ( Class < ? > arg0 ) { Type loc0 = arg0 . getGenericSuperclass ( ) ; if ( loc0 instanceof Class ) { throw new RuntimeException ( "srini_string" ) ; } ParameterizedType loc1 = ( ParameterizedType ) loc0 ; return canonicalize ( loc1 . getActualTypeArguments ( ) [ 0 ] ) ; }
11,844
close handle concode_field_sep HelloWorldManagedConnectionFactory mcf concode_elem_sep List<ConnectionEventListener> listeners concode_elem_sep PrintWriter logWriter concode_elem_sep ConnectionManager cm concode_elem_sep Logger log concode_elem_sep Set<HelloWorldConnectionImpl> connections concode_field_sep LocalTransa...
void function ( HelloWorldConnection arg0 ) { connections . remove ( ( HelloWorldConnectionImpl ) arg0 ) ; ConnectionEvent loc0 = new ConnectionEvent ( this , ConnectionEvent . CONNECTION_CLOSED ) ; loc0 . setConnectionHandle ( arg0 ) ; for ( ConnectionEventListener loc1 : listeners ) { loc1 . connectionClosed ( loc0 )...
11,845
return the interval between two attempts in milliseconds . concode_field_sep long currentAttempts concode_elem_sep long DEFAULT_INTERVAL concode_elem_sep long UNLIMITED_ATTEMPTS concode_elem_sep long interval concode_elem_sep long maxAttempts concode_field_sep long nextBackOff concode_elem_sep void setInterval concode_...
long function ( ) { return interval ; }
11,846
records that a `` load image '' context menu request has been made . concode_field_sep String DATA_REDUCTION_ENABLED_PREF concode_elem_sep String DATA_REDUCTION_PROXY_ENABLED_KEY concode_elem_sep String WEBLITE_HOSTNAME concode_elem_sep long mReceived concode_elem_sep String WEBLITE_QUERY_PARAM concode_elem_sep long mN...
void function ( ) { nativeSetLoFiLoadImageRequested ( mNativeDataReductionProxySettings ) ; }
11,847
store a new javaclass instance into this repository . concode_field_sep Map _instances concode_elem_sep String DEFAULT_PATH concode_elem_sep Map _loadedClasses concode_elem_sep ClassPath _path concode_field_sep ClassPath getClassPath concode_elem_sep void removeClass concode_elem_sep JavaClass loadClass concode_elem_se...
void function ( JavaClass arg0 ) { _loadedClasses . put ( arg0 . getClassName ( ) , new SoftReference ( arg0 ) ) ; arg0 . setRepository ( this ) ; }
11,848
sets the protocol of the device . concode_field_sep int deviceType concode_elem_sep String protocol concode_elem_sep String data concode_elem_sep String name concode_elem_sep String model concode_elem_sep int supportedMethods concode_elem_sep int deviceId concode_elem_sep int status concode_elem_sep int TELLSTICK_SUCCE...
boolean function ( String arg0 ) { this . protocol = arg0 ; return JNA . CLibrary . INSTANCE . tdSetProtocol ( getId ( ) , arg0 ) ; }
11,849
returns the array of fields in the database row . if the table has no primary index , an extra internal field is included in the last position of this array . concode_field_sep Node nPrimaryNode concode_elem_sep Object[] oData concode_elem_sep int iPos concode_field_sep int getRealSize concode_elem_sep int getStorageSi...
Object [ ] function ( ) { return oData ; }
11,850
sets the value of the mask at a certain pixel . concode_field_sep boolean mask_from_the_stack concode_elem_sep int width concode_elem_sep Polygon polygon concode_elem_sep boolean[] mask concode_elem_sep int height concode_field_sep boolean getValue concode_elem_sep Point getPoint concode_elem_sep int numberOfMaskPoints...
void function ( int arg0 , int arg1 , boolean arg2 ) { if ( arg0 >= 0 && arg0 < width && arg1 >= 0 && arg1 < height ) mask [ arg1 * width + arg0 ] = arg2 ; }
11,851
returns the hashcode value . the hashcode value is the sum of all hashcodes of the attributes contained in this set . concode_field_sep Class myInterface concode_elem_sep long serialVersionUID concode_elem_sep HashMap attributeMap concode_field_sep boolean add concode_elem_sep boolean containsKey concode_elem_sep void ...
int function ( ) { int loc0 = 0 ; Iterator loc1 = attributeMap . values ( ) . iterator ( ) ; while ( loc1 . hasNext ( ) ) loc0 = loc0 + loc1 . next ( ) . hashCode ( ) ; return loc0 ; }
11,852
creates a maptype by specifying the data type of keys keytype , the data type of values keytype , and whether values contain any null value valuecontainsnull . concode_field_sep DataType StringType concode_elem_sep DataType DateType concode_elem_sep DataType BooleanType concode_elem_sep DataType BinaryType concode_elem...
MapType function ( DataType arg0 , DataType arg1 , boolean arg2 ) { if ( arg0 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } if ( arg1 == null ) { throw new IllegalArgumentException ( "srini_string" ) ; } return new MapType ( arg0 , arg1 , arg2 ) ; }
11,853
gets the startindex value for this baseratepage . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_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 co...
java . lang . Integer function ( ) { return startIndex ; }
11,854
interface abc : operation paramop param1 : integer , param2 : boolean : string operation stringop in event voidevent in event intevent : integer var intvar : integer var boolvar : boolean concode_field_sep ILinker linker concode_elem_sep StextResourceFactory factory concode_elem_sep IParser parser concode_field_sep Ste...
Scope function ( ) { return createInterfaceScope ( "srini_string" ) ; }
11,855
gets the value of the customerstop property . concode_field_sep String previewPrintFormatCode concode_elem_sep SalesInvoiceUDFList salesInvoiceHeaderUDFList concode_elem_sep boolean creditNoteSendToPortal concode_elem_sep boolean previewSendToPortal concode_elem_sep boolean invoiceSendToPortal concode_elem_sep String i...
boolean function ( ) { return customerStop ; }
11,856
return type metadata object concode_field_sep java.lang.String bookmark concode_elem_sep java.lang.String displayName concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.String style concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
11,857
returns the outputstream associated with this imageencoder . concode_field_sep OutputStream output concode_elem_sep ImageEncodeParam param concode_field_sep void encode concode_elem_sep void encode concode_elem_sep ImageEncodeParam getParam concode_elem_sep void setParam
OutputStream function ( ) { return output ; }
11,858
gets the value of the arcrole property . concode_field_sep String role concode_elem_sep DirectPositionType pos concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep String type concode_elem_sep S...
String function ( ) { return arcrole ; }
11,859
get the xmlreader to be used for the source . concode_field_sep String FEATURE concode_elem_sep XMLReader reader concode_elem_sep InputSource inputSource concode_field_sep String getSystemId concode_elem_sep InputSource sourceToInputSource concode_elem_sep void setSystemId concode_elem_sep void setInputSource concode_e...
XMLReader function ( ) { return reader ; }
11,860
returns a specific bonus for a given bonus type and bonus name on the player character identified by the given charid . concode_field_sep PlayerCharacterTrackingFacet trackingFacet concode_field_sep Number getBonusValue concode_elem_sep double calcBonus concode_elem_sep double getAllBonusValues concode_elem_sep Collect...
double function ( CharID arg0 , String arg1 , String arg2 ) { PlayerCharacter loc0 = trackingFacet . getPC ( arg0 ) ; return loc0 . getTotalBonusTo ( arg1 , arg2 ) ; }
11,861
update the message digest with a single byte . concode_field_sep int xOff concode_elem_sep int mOff concode_elem_sep byte[] S concode_elem_sep int COff concode_elem_sep int DIGEST_LENGTH concode_elem_sep byte[] C concode_elem_sep byte[] M concode_elem_sep byte[] X concode_field_sep void processCheckSum concode_elem_sep...
void function ( byte arg0 ) { M [ mOff ++ ] = arg0 ; if ( mOff == 16 ) { processCheckSum ( M ) ; processBlock ( M ) ; mOff = 0 ; } }
11,862
a string representation of the current value . concode_field_sep String _cssText concode_elem_sep RGBColor rgbColorValue concode_elem_sep float floatValue concode_elem_sep Rect rectValue concode_elem_sep Counter counter concode_elem_sep short primitiveType concode_field_sep void setStringValue concode_elem_sep short ge...
String function ( ) { return this . _cssText ; }
11,863
shuts down the in-memory service . concode_field_sep Server server concode_elem_sep SocketAddress address concode_elem_sep int FLOW_CONTROL_WINDOW concode_elem_sep LocalLoggingImpl loggingImpl concode_field_sep LocalLoggingImpl getLoggingImpl concode_elem_sep ManagedChannel createChannel concode_elem_sep void start con...
void function ( ) { server . shutdownNow ( ) ; }
11,864
sets the value of the result property . concode_field_sep int result concode_field_sep int getResult
void function ( int arg0 ) { this . result = arg0 ; }
11,865
remove the managed bean based on the bean name . concode_field_sep PlaceHolder placeHolder concode_field_sep String getRequestParameter concode_elem_sep Application getApplication concode_elem_sep Object getElValue concode_elem_sep ServletContext getServletContext concode_elem_sep Object getManagedBean concode_elem_sep...
void function ( String arg0 ) { getValueBinding ( getJsfEl ( arg0 ) ) . setValue ( FacesContext . getCurrentInstance ( ) , null ) ; }
11,866
returns the declaration view of this model item . concode_field_sep RefreshView refreshView concode_elem_sep Node node concode_elem_sep ModelItem parent concode_elem_sep String filename concode_elem_sep LocalUpdateViewImpl localUpdateView concode_elem_sep StateChangeViewImpl stateChangeView concode_elem_sep String id c...
DeclarationView function ( ) { return this . declarationView ; }
11,867
if not null , this is an error message possibly a full stack trace to indicate the overall error that occurred when the configuration update failed . this will normally be null unless the #getstatus status indicates a bundledeploymentstatus #failure . concode_field_sep String QUERY_UPDATE_FOR_VERSION_REMOVE concode_ele...
String function ( ) { return errorMessage ; }
11,868
returns the id of the scheduled event . concode_field_sep String start concode_elem_sep String weekday concode_elem_sep Recurrence recurrence concode_elem_sep String end concode_elem_sep String id concode_elem_sep String type concode_field_sep String getStart concode_elem_sep String getType concode_elem_sep Recurrence ...
String function ( ) { return id ; }
11,869
print an boolean and then flush the output stream . concode_field_sep String charsetName concode_elem_sep Locale US_LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_sep void println concode_elem_...
void function ( boolean arg0 ) { out . print ( arg0 ) ; out . flush ( ) ; }
11,870
sets new subscription manager concode_field_sep CarbonNotificationManager notificationManager concode_elem_sep ExecutorService executor concode_elem_sep SubscriptionManager subscriptionManager concode_elem_sep TopicManager topicManager concode_elem_sep DeliveryManager deliveryManager concode_field_sep void init concode...
void function ( SubscriptionManager arg0 ) { this . subscriptionManager = arg0 ; }
11,871
the date on which the record was last modified . concode_field_sep java.util.Date lastModifiedDate concode_elem_sep String lastModifiedBy concode_elem_sep Long syncCount concode_elem_sep String value concode_elem_sep String key concode_elem_sep java.util.Date deviceLastModifiedDate concode_field_sep String getKey conco...
java . util . Date function ( ) { return this . lastModifiedDate ; }
11,872
add an inode at the end of the array concode_field_sep Log LOG concode_elem_sep byte[][] path concode_elem_sep INode[] inodes concode_elem_sep int numNonNull concode_elem_sep int snapshotRootIndex concode_elem_sep Snapshot snapshot concode_elem_sep boolean isSnapshot concode_elem_sep int capacity concode_field_sep Snap...
void function ( INode arg0 ) { inodes [ numNonNull ++ ] = arg0 ; }
11,873
method declaration concode_field_sep String scriptHelp[] concode_elem_sep String insertHelp[] concode_elem_sep String createTableHelp[] concode_elem_sep String dropIndexHelp[] concode_elem_sep String testHelp[] concode_elem_sep String deleteHelp[] concode_elem_sep String selectHelp[] concode_elem_sep Random rRandom con...
int function ( int arg0 ) { arg0 = rRandom . nextInt ( ) % arg0 ; return arg0 < 0 ? - arg0 : arg0 ; }
11,874
returns the document manager instance for the specified project . concode_field_sep PlaceHolder placeHolder concode_field_sep PsiFile getPsiFile concode_elem_sep void documentCreated concode_elem_sep void commitDocument concode_elem_sep CharSequence getLastCommittedText concode_elem_sep boolean isUncommited concode_ele...
PsiDocumentManager function ( @ NotNull Project arg0 ) { return arg0 . getComponent ( PsiDocumentManager . class ) ; }
11,875
gets the method associated with the given name and signature concode_field_sep String _name concode_elem_sep SymTabAST _node concode_field_sep IVariable getVariableDefinition concode_elem_sep IClass getClassDefinition concode_elem_sep int getNumReferences concode_elem_sep String getName concode_elem_sep IClass[] getInn...
IMethod function ( String arg0 , ISignature arg1 ) { return null ; }
11,876
interface method implementations . does nothing concode_field_sep Logger LOGGER concode_elem_sep Semaphore parallelFetch concode_elem_sep int BATCH_SIZE concode_elem_sep String BATCH_SERVICE_URL concode_elem_sep ObjectMapper objectMapper concode_elem_sep int MAX_RESULTS concode_elem_sep Queue<UserInfo> localQueue conco...
void function ( ExecutionContext arg0 ) { }
11,877
convert an array of mbeanparameterinfo into an array of class instances corresponding to the parameters . concode_field_sep Log logger concode_elem_sep String MBEAN_SUFFIX concode_elem_sep String IDENTITY_OBJECT_NAME_KEY concode_field_sep Class<?> getMBeanInterface concode_elem_sep String[] getMethodSignature concode_e...
Class < ? > [ ] function ( MBeanParameterInfo [ ] arg0 , ClassLoader arg1 ) { Class < ? > [ ] loc0 = null ; if ( arg0 != null && arg0 . length > 0 ) { loc0 = new Class < ? > [ arg0 . length ] ; for ( int loc1 = 0 ; loc1 < arg0 . length ; loc1 ++ ) { loc0 [ loc1 ] = ClassUtils . forName ( arg0 [ loc1 ] . getType ( ) , a...
11,878
specifies the status of optionstatus for advanced options for the specified elasticsearch domain . concode_field_sep java.util.Map<String,String> options concode_elem_sep OptionStatus status concode_field_sep AdvancedOptionsStatus withOptions concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_se...
AdvancedOptionsStatus function ( OptionStatus arg0 ) { setStatus ( arg0 ) ; return this ; }
11,879
adds a new task based on the user input field . concode_field_sep ListDataProvider<ToDoItem> filteredTodos concode_elem_sep ViewEventHandler viewHandler concode_elem_sep View view concode_elem_sep EventBus eventBus concode_elem_sep ToDoRouting routing concode_elem_sep List<ToDoItem> todos concode_elem_sep String STORAG...
void function ( ) { String loc0 = view . getTaskText ( ) . trim ( ) ; if ( loc0 . equals ( "srini_string" ) ) return ; ToDoItem loc1 = new ToDoItem ( loc0 ) ; view . clearTaskText ( ) ; todos . add ( loc1 ) ; taskStateChanged ( ) ; }
11,880
sets the value of the totalcost property . concode_field_sep Money averageCpc concode_elem_sep Double clickThroughRate concode_elem_sep Double averagePosition concode_elem_sep Float clicksPerDay concode_elem_sep Money totalCost concode_elem_sep Float impressionsPerDay concode_field_sep void setAveragePosition concode_e...
void function ( Money arg0 ) { this . totalCost = arg0 ; }
11,881
performs a dynamic query on the database and returns an ordered range of the matching rows . 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...
java . util . List < T > function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 , com . liferay . portal . kernel . util . OrderByComparator < T > arg3 ) { return getService ( ) . arg0 ( arg0 , arg1 , arg2 , arg3 ) ; }
11,882
returns a random field name . can be a leaf field name or the path to refer to a field name using the dot notation . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean canAddField concode_elem_sep Map<String,Object> randomSource concode_elem_sep String randomString concode_elem_sep String randomExistin...
String function ( Random arg0 ) { int loc0 = RandomInts . randomIntBetween ( arg0 , 1 , 5 ) ; String loc1 = "srini_string" ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { if ( loc2 > 0 ) { loc1 += "srini_string" ; } loc1 += randomString ( arg0 ) ; } return loc1 ; }
11,883
clears database schema . concode_field_sep PlaceHolder placeHolder concode_field_sep File[] getDDLScriptFilesByDatabaseType concode_elem_sep DatabaseType getDatabaseType concode_elem_sep byte[] hexStringToByteArray concode_elem_sep DatabaseType getDatabaseTypeBySQLDialect
void function ( ) { final TestPersistenceContext loc0 = new TestPersistenceContext ( ) ; loc0 . init ( PersistenceUnit . CLEAR_SCHEMA ) ; loc0 . clean ( ) ; }
11,884
hook method dispatched by the genericactivity framework to initialize the hobbitops object after it 's been created . concode_field_sep String TAG concode_elem_sep HobbitOpsImpl mHobbitOpsImpl concode_elem_sep ContentProviderAccessType mAccessType concode_field_sep void displayAll concode_elem_sep int updateByUri conco...
void function ( Activity arg0 , boolean arg1 ) { mHobbitOpsImpl . onConfiguration ( arg0 , arg1 ) ; }
11,885
returns the type of the parameter . concode_field_sep ImmutableList<Annotation> annotations concode_elem_sep int position concode_elem_sep TypeToken<?> type concode_elem_sep Invokable<?,?> declaration concode_field_sep Invokable<?,?> getDeclaringInvokable concode_elem_sep A[] getAnnotationsByType concode_elem_sep boole...
TypeToken < ? > function ( ) { return type ; }
11,886
gets the value of the wmode property . concode_field_sep CTLayoutTarget layoutTarget concode_elem_sep CTLayoutMode yMode concode_elem_sep CTLayoutMode xMode concode_elem_sep CTLayoutMode hMode concode_elem_sep CTExtensionList extLst concode_elem_sep CTDouble w concode_elem_sep CTDouble x concode_elem_sep CTDouble h con...
CTLayoutMode function ( ) { return wMode ; }
11,887
restore any instance state associated with this adapter and its pages that was previously saved by #savestate . concode_field_sep int POSITION_NONE concode_elem_sep DataSetObserver mViewPagerObserver concode_elem_sep int POSITION_UNCHANGED concode_elem_sep DataSetObservable mObservable concode_field_sep void startUpdat...
void function ( Parcelable arg0 , ClassLoader arg1 ) { }
11,888
returns the sender of the socks5 bytestream initialization request . concode_field_sep Bytestream bytestreamRequest concode_elem_sep Cache<String,Integer> ADDRESS_BLACKLIST concode_elem_sep int CONNECTION_FAILURE_THRESHOLD concode_elem_sep Socks5BytestreamManager manager concode_elem_sep long BLACKLIST_LIFETIME concode...
String function ( ) { return this . bytestreamRequest . getFrom ( ) ; }
11,889
returns whether or not the specified data flavor is an plain flavor that is supported . concode_field_sep ImageIcon image concode_elem_sep DataFlavor[] plainFlavors concode_elem_sep Object[] cells concode_elem_sep DataFlavor[] stringFlavors concode_elem_sep DataFlavor[] htmlFlavors concode_elem_sep DataFlavor[] imageFl...
boolean function ( DataFlavor arg0 ) { DataFlavor [ ] loc0 = plainFlavors ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { if ( loc0 [ loc1 ] . equals ( arg0 ) ) { return true ; } } return false ; }
11,890
to implements org.w3c.dom.svg.svgtests #hasextension string . concode_field_sep PlaceHolder placeHolder concode_field_sep SVGStringList getSystemLanguage concode_elem_sep SVGStringList getRequiredFeatures concode_elem_sep SVGStringList getRequiredExtensions
boolean function ( Element arg0 , String arg1 ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
11,891
run the application under spring boot control . concode_field_sep String USE_HAZELCAST concode_field_sep placeholderType placeHolder
void function ( String [ ] arg0 ) { SpringApplication . run ( Application . class , arg0 ) ; }
11,892
deletes the ticket with the primary key from the database . also notifies the appropriate model listeners . concode_field_sep TicketLocalService _ticketLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep com.liferay.portal.kernel.model.Ticket fetchTicket concode_elem_sep com.lifera...
com . liferay . portal . kernel . model . Ticket function ( long arg0 ) { return _ticketLocalService . deleteTicket ( arg0 ) ; }
11,893
the intervalrenderer is a groupasyncrenderer that requests aserver-initiated render of all the renderables in its collection . the request to render is made repeatedly at the set interval . thsi method returns the appropriate groupasyncrenderer based on the name . if the name is new , a new instance is created and stor...
IntervalRenderer function ( String arg0 ) { return ( IntervalRenderer ) getRenderer ( arg0 , INTERVAL ) ; }
11,894
gets the value of the sp3d property . concode_field_sep CTFlatText flatTx concode_elem_sep CTShape3D sp3D concode_field_sep void setSp3D concode_elem_sep void setFlatTx concode_elem_sep CTFlatText getFlatTx
CTShape3D function ( ) { return sp3D ; }
11,895
records success connecting to failedroute . concode_field_sep Set<Route> failedRoutes concode_field_sep int failedRoutesCount concode_elem_sep void failed concode_elem_sep boolean shouldPostpone
void function ( Route arg0 ) { failedRoutes . remove ( arg0 ) ; }
11,896
returns true if this object is equal to the specified object , and false otherwise . concode_field_sep AreaRendererEndType TRUNCATE concode_elem_sep AreaRendererEndType TAPER concode_elem_sep String name concode_elem_sep AreaRendererEndType LEVEL concode_elem_sep long serialVersionUID concode_field_sep Object readResol...
boolean function ( Object arg0 ) { if ( this == arg0 ) { return true ; } if ( ! ( arg0 instanceof AreaRendererEndType ) ) { return false ; } AreaRendererEndType loc0 = ( AreaRendererEndType ) arg0 ; if ( ! this . name . equals ( loc0 . toString ( ) ) ) { return false ; } return true ; }
11,897
replaces deprecated java.sql.date constructor . concode_field_sep ThreadLocal<Calendar> CAL concode_field_sep Time createTime concode_elem_sep void primeCalendar concode_elem_sep Calendar initialValue concode_elem_sep Timestamp createTimestamp
Date function ( int arg0 , int arg1 , int arg2 ) { primeCalendar ( ) ; CAL . get ( ) . set ( arg0 + 1900 , arg1 , arg2 ) ; return new Date ( CAL . get ( ) . getTimeInMillis ( ) ) ; }
11,898
attempts to establish a connection with the data source that this datasource object represents . concode_field_sep int loginTimeout concode_elem_sep PrintWriter logWriter concode_elem_sep String user concode_elem_sep String database concode_elem_sep String password concode_field_sep void setPassword concode_elem_sep St...
Connection function ( ) { return getConnection ( user , password ) ; }
11,899
returns the value for the role . concode_field_sep int value concode_field_sep Affiliation getAffiliation concode_elem_sep JID getRoleAddress concode_elem_sep NodeID getNodeID concode_elem_sep Role valueOf concode_elem_sep Affiliation valueOf concode_elem_sep void setPresence concode_elem_sep Role getRole concode_elem_...
int function ( ) { return value ; }