idx
int64
0
25k
question
stringlengths
68
5.14k
target
stringlengths
20
503
10,000
returns the current character value . concode_field_sep int current concode_elem_sep LocalizableSupport localizableSupport concode_elem_sep NormalizingReader reader concode_elem_sep String BUNDLE_CLASSNAME concode_elem_sep ErrorHandler errorHandler concode_field_sep String formatMessage concode_elem_sep void skipCommaS...
int function ( ) { return current ; }
10,001
this is adaptation of #getitemburntime item which accepts blocks.check #getitemburntime item for detailed method description . concode_field_sep List<Item> itemBurnBlacklist concode_elem_sep Map<Item,Integer> itemBurnTimeMap concode_elem_sep Map<Object,Integer> materialBurnTimeMap concode_field_sep int getItemBurnTimeS...
int function ( Block arg0 ) { if ( arg0 == null ) { return 0 ; } return getItemBurnTime ( Item . getItemFromBlock ( arg0 ) ) ; }
10,002
add new domain to representation . concode_field_sep String name concode_elem_sep Set domains concode_elem_sep Set populations concode_field_sep void setName concode_elem_sep Set getPopulations concode_elem_sep String getName concode_elem_sep void setPopulations concode_elem_sep void setDomains concode_elem_sep void ad...
void function ( Domain arg0 ) { domains . add ( arg0 ) ; }
10,003
removes an observer for any connection type changes . concode_field_sep ArrayList<Long> nativeNetworkObservers concode_elem_sep NetworkMonitor instance concode_elem_sep String TAG concode_elem_sep ArrayList<NetworkObserver> networkObservers concode_elem_sep ConnectionType currentConnectionType concode_elem_sep Context ...
void function ( NetworkObserver arg0 ) { getInstance ( ) . removeNetworkObserverInternal ( arg0 ) ; }
10,004
override object.clone to make the method public . this method simply calls super.clone , deferring to the default shallow cloning . some processorinstruction subclasses may need to override with custom safe or deep cloning . concode_field_sep PlaceHolder placeHolder concode_field_sep PlanNode getDescriptionProperties c...
ProgramInstruction function ( ) { try { return ( ProgramInstruction ) super . clone ( ) ; } catch ( CloneNotSupportedException loc0 ) { } return null ; }
10,005
rules can have tags - non-hierarchical keywords or terms for describing them . this method is used for getting the tags assign to this rule . the tags are used to filter the rules . concode_field_sep String uid concode_elem_sep Visibility visibility concode_elem_sep Configuration configuration concode_elem_sep List<Con...
Set < String > function ( ) { return tags ; }
10,006
gets the value of the recommendedpctariffid property . concode_field_sep Long recommendedPcTariffId concode_elem_sep String recommendedTariffId concode_elem_sep String recommendedTariffName concode_elem_sep String segment concode_elem_sep String subsegment concode_field_sep void setRecommendedPcTariffId concode_elem_se...
Long function ( ) { return recommendedPcTariffId ; }
10,007
send an alert for an onofftype . concode_field_sep ItemRegistry itemRegistry concode_elem_sep Agent agent concode_elem_sep boolean agentConnected concode_elem_sep OpenHabCommandProcessor sitewhere concode_elem_sep boolean configured concode_elem_sep Logger LOGGER concode_elem_sep String SERVICE_NAME concode_elem_sep Si...
void function ( String arg0 , Item arg1 , OnOffType arg2 ) { addDeviceAlert ( arg0 , arg1 , TYPE_OPENHAB_ONOFF , arg2 . toString ( ) ) ; }
10,008
compares this instance with the specified object and indicates if they are equal . in order to be equal , o must be an instance of boolean and have the same boolean value as this object . concode_field_sep Boolean FALSE concode_elem_sep Boolean TRUE concode_elem_sep Class<Boolean> TYPE concode_elem_sep boolean value co...
boolean function ( Object arg0 ) { return ( arg0 == this ) || ( ( arg0 instanceof Boolean ) && ( ( ( Boolean ) arg0 ) . value == value ) ) ; }
10,009
return whether phrasehighlight or not . concode_field_sep boolean fieldMatch concode_elem_sep int phraseLimit concode_elem_sep boolean phraseHighlight concode_elem_sep boolean DEFAULT_FIELD_MATCH concode_elem_sep FragListBuilder fragListBuilder concode_elem_sep boolean DEFAULT_PHRASE_HIGHLIGHT concode_elem_sep Fragment...
boolean function ( ) { return phraseHighlight ; }
10,010
should non-expiring tokens be cached using the default cache timeout concode_field_sep int defaultExpireTime concode_elem_sep HttpClient httpClient concode_elem_sep OAuth2Authentication auth concode_elem_sep Map<String,TokenCacheObject> authCache concode_elem_sep HttpComponentsClientHttpRequestFactory factory concode_e...
void function ( boolean arg0 ) { this . cacheNonExpiringTokens = arg0 ; }
10,011
gets the value of the saleschannel property . concode_field_sep String paymentCategory concode_elem_sep String technicalChannel concode_elem_sep String customerToken concode_elem_sep float cashAmount concode_elem_sep float creditAmount concode_elem_sep String salesChannel concode_elem_sep String region concode_elem_sep...
String function ( ) { return salesChannel ; }
10,012
reads the last used assigner from shared preference . concode_field_sep String PREF_LAST_USED_ASSIGNER concode_elem_sep String DEFAULT_EMPTY_STRING concode_field_sep String findAssignerUrl concode_elem_sep String readString concode_elem_sep void writeString concode_elem_sep void setLastUsedAssigner
String function ( Context arg0 ) { return readString ( arg0 , PREF_LAST_USED_ASSIGNER ) ; }
10,013
creates an instance of defaulthttpresponsefactory to be usedfor creating httpresponse objects received by over thisconnection . this method can be overridden in a super class in order to provide a different implementation of the httpresponsefactory interface . concode_field_sep EntitySerializer entityserializer concode...
HttpResponseFactory function ( ) { return new DefaultHttpResponseFactory ( ) ; }
10,014
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 ) ; }
10,015
returns the spring bean id for this bean . concode_field_sep AssetTagService _assetTagService concode_field_sep com.liferay.portal.kernel.json.JSONObject getJSONGroupTags concode_elem_sep com.liferay.portlet.asset.model.AssetTag updateTag concode_elem_sep void setWrappedService concode_elem_sep int getTagsCount concode...
java . lang . String function ( ) { return _assetTagService . getBeanIdentifier ( ) ; }
10,016
print an int to standard output and then terminate the line . concode_field_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep PrintWriter out concode_field_sep void print concode_elem_sep void print concode_elem_sep void print concode_elem_sep void print concode_elem_sep void print concode_elem_se...
void function ( int arg0 ) { out . println ( arg0 ) ; }
10,017
return the specified connection as-is . concode_field_sep Connection connection concode_field_sep void releaseConnection concode_elem_sep String toString
Connection function ( ) { return this . connection ; }
10,018
remove the ball from the game . concode_field_sep java.awt.Color color concode_elem_sep GameEnvironment enviroment concode_elem_sep Point center concode_elem_sep Velocity velocity concode_elem_sep int radius concode_field_sep Point getCenter concode_elem_sep Velocity getVelocity concode_elem_sep void timePassed concode...
void function ( GameLevel arg0 ) { arg0 . removeSprite ( this ) ; }
10,019
get int32 minimum : 20.0 maximum : 200.0 concode_field_sep byte[] _byte concode_elem_sep String password concode_elem_sep BigDecimal number concode_elem_sep Float _float concode_elem_sep Integer integer concode_elem_sep Double _double concode_elem_sep String string concode_elem_sep OffsetDateTime dateTime concode_elem_...
Integer function ( ) { return int32 ; }
10,020
returns the given value restricted to the range 0.0 , 1.0 . concode_field_sep Map<Phase,PhaseTracking> phases concode_field_sep long getSize concode_elem_sep Iterable<Phase> getPhases concode_elem_sep StepTracking getStepTracking concode_elem_sep Iterable<Step> getSteps concode_elem_sep long getTotal concode_elem_sep l...
float function ( float arg0 ) { return Math . max ( 0.0f , Math . min ( 1.0f , arg0 ) ) ; }
10,021
sets the value of the status property . concode_field_sep Long feedId concode_elem_sep Function matchingFunction concode_elem_sep List<Integer> placeholderTypes concode_elem_sep CustomerFeedStatus status concode_field_sep Function getMatchingFunction concode_elem_sep void setFeedId concode_elem_sep Long getFeedId conco...
void function ( CustomerFeedStatus arg0 ) { this . status = arg0 ; }
10,022
concates and saves a list of reports to xml format . concode_field_sep Log logger concode_field_sep placeholderType placeHolder
boolean function ( final MasterReport arg0 , final String arg1 ) { if ( arg0 == null ) { throw new NullPointerException ( ) ; } if ( arg1 == null ) { throw new NullPointerException ( ) ; } return createXml ( arg0 , new File ( arg1 ) ) ; }
10,023
register with the registrar server . concode_field_sep NameAddress remote_user concode_elem_sep MessageAgent ma concode_elem_sep Log log concode_elem_sep RegisterAgent ra concode_field_sep void onMaReceivedMessage concode_elem_sep String getRemoteUser concode_elem_sep void unregister concode_elem_sep void unregisterall...
void function ( int arg0 ) { ra . register ( arg0 ) ; }
10,024
create an instance of jaxbelement . concode_field_sep QName _Language_QNAME concode_elem_sep QName _Subject_QNAME concode_elem_sep QName _Creator_QNAME concode_elem_sep QName _Date_QNAME concode_elem_sep QName _Contributor_QNAME concode_elem_sep QName _Type_QNAME concode_elem_sep QName _Publisher_QNAME concode_elem_sep...
JAXBElement < SimpleLiteral > function ( SimpleLiteral arg0 ) { return new JAXBElement < SimpleLiteral > ( _Subject_QNAME , SimpleLiteral . class , null , arg0 ) ; }
10,025
initialises the transformer for operation with specific characteristics . concode_field_sep Operation mode concode_elem_sep Direction wired concode_elem_sep ByteArrayOutputStream inBuffer concode_elem_sep ByteArrayOutputStream outBuffer concode_elem_sep String DIRECTION concode_elem_sep Transformer tail concode_field_s...
void function ( Map arg0 ) { if ( wired != null ) throw new IllegalStateException ( ) ; Direction loc0 = ( Direction ) arg0 . get ( DIRECTION ) ; if ( loc0 == null ) loc0 = Direction . FORWARD ; wired = loc0 ; inBuffer . reset ( ) ; outBuffer . reset ( ) ; tail . init ( arg0 ) ; initDelegate ( arg0 ) ; }
10,026
implements outputstream.write int in terms of outputstream.write byte , int , int . outputstream assumes that you implement outputstream.write int and provides default implementations of the others , but often the opposite is more efficient . concode_field_sep Charset US_ASCII concode_elem_sep byte[] EMPTY_BYTE_ARRAY c...
void function ( OutputStream arg0 , int arg1 ) { byte [ ] loc0 = new byte [ 1 ] ; loc0 [ 0 ] = ( byte ) ( arg1 & 0xff ) ; arg0 . write ( loc0 ) ; }
10,027
produce a comma delimited text from a jsonarray of jsonobjects . the first row will be a list of names obtained by inspecting the first jsonobject . concode_field_sep PlaceHolder placeHolder concode_field_sep String getValue concode_elem_sep JSONObject rowToJSONObject concode_elem_sep JSONArray toJSONArray concode_elem...
String function ( JSONArray arg0 ) { JSONObject loc0 = arg0 . optJSONObject ( 0 ) ; if ( loc0 != null ) { JSONArray loc1 = loc0 . loc1 ( ) ; if ( loc1 != null ) { return rowToString ( loc1 ) + toString ( loc1 , arg0 ) ; } } return null ; }
10,028
returns the string representation of the uint64 argument . concode_field_sep String ANDROID_TIMEFORMAT_WO_MS concode_elem_sep SimpleDateFormat datetimeFormatter concode_elem_sep String DATETIMEFORMAT concode_elem_sep DBXDefaultFormatter instance concode_elem_sep String TIMEFORMAT_MS concode_elem_sep String TIMEFORMAT_W...
String function ( long arg0 ) { return String . valueOf ( arg0 ) ; }
10,029
this method return the type of a character concode_field_sep int power concode_elem_sep String type concode_elem_sep String[] weapons concode_field_sep int getPower concode_elem_sep String getWeapons
String function ( ) { return type ; }
10,030
true if the vector represents a pair of valid , non-infinite floating point numbers . concode_field_sep float x concode_elem_sep float y concode_elem_sep long serialVersionUID concode_field_sep Vec2 mulLocal concode_elem_sep Vec2 sub concode_elem_sep Vec2 addLocal concode_elem_sep Vec2 addLocal concode_elem_sep void ab...
boolean function ( ) { return ! Float . isNaN ( x ) && ! Float . isInfinite ( x ) && ! Float . isNaN ( y ) && ! Float . isInfinite ( y ) ; }
10,031
this class and subclasses should write to the underlying writestream only with this method . that way we can be confident that byteswritten will always be accurate . concode_field_sep int DEFAULT_BLOCKS_PER_RECORD concode_elem_sep int DEFAULT_COMPRESSION concode_elem_sep byte[] ZERO_BLOCK concode_elem_sep OutputStream ...
void function ( byte [ ] arg0 , int arg1 ) { writeStream . write ( arg0 , 0 , arg1 ) ; bytesWritten += arg1 ; }
10,032
calls the run method of the given action with as initial access control context the given context combined with the protection domain of the calling class . calls to checkpermission in the run method ignore all earlier protection domains of classes in the call chain , but add checks for the protection domains given in ...
T function ( PrivilegedAction < T > arg0 , AccessControlContext arg1 ) { VMAccessController . pushContext ( arg1 ) ; try { return arg0 . run ( ) ; } finally { VMAccessController . popContext ( ) ; } }
10,033
returns the number of bytes that will be written to out in a callto #writeto , or -1 if that count is unknown . concode_field_sep RawHeaders headers concode_elem_sep String method concode_elem_sep RawHeaders headers concode_elem_sep String method concode_elem_sep Object tag concode_elem_sep Body body concode_elem_sep U...
long function ( ) { return - 1 ; }
10,034
get name concode_field_sep Date date concode_elem_sep String question concode_elem_sep String answer concode_elem_sep String name concode_elem_sep int state concode_elem_sep int id concode_elem_sep String title concode_elem_sep String userId concode_field_sep void setName concode_elem_sep String getQuestion concode_ele...
String function ( ) { return name ; }
10,035
is the world locked in the middle of a time step . concode_field_sep Vec2 point1 concode_elem_sep Array<Contact> contacts concode_elem_sep Vector2 point concode_elem_sep ObjectMap<org.jbox2d.dynamics.Body,Body> bodies concode_elem_sep ObjectMap<org.jbox2d.dynamics.joints.Joint,Joint> joints concode_elem_sep AABB aabb c...
boolean function ( ) { return world . isLocked ( ) ; }
10,036
gets the voidation time . concode_field_sep long serialVersionUID concode_elem_sep Boolean valid concode_elem_sep String voidedBy concode_elem_sep Date voidationTime concode_elem_sep Ticket ticket concode_elem_sep String cancellationReason concode_elem_sep Reservation reservation concode_elem_sep Integer id concode_ele...
Date function ( ) { return voidationTime ; }
10,037
returns the default avatar loader factory , if there is one , otherwise returns null . concode_field_sep AvatarLoaderFactorySPI defaultAvatarLoaderFactory concode_elem_sep AvatarLoaderRegistry registry concode_elem_sep Map<String,AvatarLoaderFactorySPI> avatarLoaderMap concode_field_sep AvatarLoaderRegistry getAvatarLo...
AvatarLoaderFactorySPI function ( ) { return defaultAvatarLoaderFactory ; }
10,038
resets the adler32 checksum to the initial value . concode_field_sep int BASE concode_elem_sep int checksum concode_field_sep long getValue concode_elem_sep void update concode_elem_sep void update concode_elem_sep void update
void function ( ) { checksum = 1 ; }
10,039
returns the memory used by this queue as a fraction of the entire cluster capacity . concode_field_sep FairSchedulerQueueInfoList childQueues concode_elem_sep float fractionMemMaxShare concode_elem_sep ResourceInfo fairResources concode_elem_sep float fractionMemUsed concode_elem_sep ResourceInfo minResources concode_e...
float function ( ) { return fractionMemUsed ; }
10,040
lol concode_field_sep List<Projection> elements concode_field_sep ProjectionList add concode_elem_sep ProjectionList add concode_elem_sep Projection getProjection concode_elem_sep String[] getAliases concode_elem_sep int getLength concode_elem_sep boolean isGrouped concode_elem_sep String[] getColumnAliases concode_ele...
ProjectionList function ( ) { return new ProjectionList ( ) ; }
10,041
background color specified for this textcharacter concode_field_sep char character concode_elem_sep TextColor backgroundColor concode_elem_sep TextColor foregroundColor concode_elem_sep EnumSet<SGR> modifiers concode_elem_sep TextCharacter DEFAULT_CHARACTER concode_field_sep TextColor getForegroundColor concode_elem_se...
TextColor function ( ) { return backgroundColor ; }
10,042
create local variables and transfer the members of a holder to them . concode_field_sep ObjectIntHashMap<String> fieldMap concode_elem_sep Type[] types concode_elem_sep String[] names concode_elem_sep int[] offsets concode_elem_sep Type type concode_elem_sep int first concode_field_sep void init concode_elem_sep void t...
int function ( final DirectSorter arg0 ) { final int loc0 = addLocals ( arg0 , 0 ) ; transferToLocal ( arg0 , loc0 ) ; return loc0 ; }
10,043
display warning with warning icon concode_field_sep CLogger logger concode_field_sep boolean ask concode_elem_sep boolean ask concode_elem_sep void error concode_elem_sep void error concode_elem_sep void error concode_elem_sep void error concode_elem_sep String constructMessage concode_elem_sep void info concode_elem_s...
void function ( int arg0 , String arg1 ) { warn ( arg0 , null , arg1 , null , null ) ; }
10,044
sets the version needed to extract the entry . concode_field_sep short version concode_elem_sep short minVersion concode_elem_sep short internalAttributes concode_elem_sep Compression method concode_elem_sep short flags concode_elem_sep EnumSet<Feature> featureSet concode_elem_sep long crc concode_elem_sep int bit conc...
void function ( short arg0 ) { this . versionNeeded = arg0 ; }
10,045
sets the adunitid value for this adunittargeting . 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.Boolean includeDescendants concode_elem_sep java.lang.String adUnitId concode_field_sep org...
void function ( java . lang . String arg0 ) { this . adUnitId = arg0 ; }
10,046
set search argument for predicate push down . concode_field_sep TypeDescription schema concode_elem_sep boolean[] include concode_elem_sep Boolean useZeroCopy concode_elem_sep boolean forcePositionalEvolution concode_elem_sep String[] columnNames concode_elem_sep Boolean tolerateMissingSchema concode_elem_sep long offs...
Options function ( SearchArgument arg0 , String [ ] arg1 ) { this . sarg = arg0 ; this . columnNames = arg1 ; return this ; }
10,047
convenience method to encode a string . please use this to encode a string , rather than trying to encode the string yourself using the 0-arg string.getbytes which is not deterministic . concode_field_sep byte[] base64Reverse concode_elem_sep char[] base64Alphabet concode_elem_sep char[] base64StandardAlphabet concode_...
String function ( String arg0 , boolean arg1 ) { return encode ( arg0 . getBytes ( UTF8 ) , arg1 , base64Alphabet ) ; }
10,048
returns the node for a given index , using the ordinal position of the index within the table object . concode_field_sep Node nPrimaryNode concode_elem_sep Object oData[] concode_field_sep Row newRow concode_elem_sep Row getUpdatedRow concode_elem_sep boolean isDeleted concode_elem_sep Node getNextNode concode_elem_sep...
Node function ( int arg0 ) { Node loc0 = nPrimaryNode ; while ( arg0 -- > 0 ) { loc0 = loc0 . nNext ; } return loc0 ; }
10,049
trigger the currently-running lease monitor to re-check its leases immediately . this is for use by unit tests . concode_field_sep HashSet<Long> files concode_elem_sep HashMap<Long,Lease> leasesById concode_elem_sep String name concode_elem_sep String holder concode_elem_sep long softLimit concode_elem_sep Daemon lmthr...
void function ( ) { Preconditions . checkState ( lmthread != null , "srini_string" ) ; lmthread . interrupt ( ) ; }
10,050
get the map of plugin factory names to plugin factories . load plugins if the map has not yet been initialized . concode_field_sep HashMap<String,IServiceFactory> PLUGIN_JAVA6_FACTORY_MAP concode_elem_sep TreeMap<String,PluginFactoryContainer> PLUGIN_CONTAINER_MAP concode_elem_sep boolean mapsInitialized concode_elem_s...
HashMap < String , AnnotationProcessorFactory > function ( ) { loadFactoryPlugins ( ) ; return PLUGIN_JAVA5_FACTORY_MAP ; }
10,051
defines the password which will be used if the document is encrypted with standard encryption . this could be either user or owner password . concode_field_sep byte[] password concode_elem_sep IExternalDecryptionProcess externalDecryptionProcess concode_elem_sep long serialVersionUID concode_elem_sep Certificate certif...
ReaderProperties function ( byte [ ] arg0 ) { clearEncryptionParams ( ) ; this . password = arg0 ; return this ; }
10,052
returns the filesystem that owns this path . concode_field_sep char SEPARATOR_CHAR concode_elem_sep String SEPARATOR concode_elem_sep String CUR_DIR concode_elem_sep long serialVersionUID concode_elem_sep URI uri concode_field_sep Path getParent concode_elem_sep String getName concode_elem_sep void read concode_elem_se...
FileSystem function ( ) { return FileSystem . get ( this . toUri ( ) ) ; }
10,053
get the comment time . concode_field_sep String resourcePath concode_elem_sep String commentPath concode_elem_sep String text concode_elem_sep Calendar time concode_elem_sep String user concode_field_sep void setContent concode_elem_sep Calendar getLastModified concode_elem_sep void setAuthorUserName concode_elem_sep v...
Calendar function ( ) { return time ; }
10,054
gets the execution config defined on the execution environment of the job to which this operator belongs . concode_field_sep boolean inputCopyDisabled concode_elem_sep StreamTask<?,?> container concode_elem_sep KvState<?,?,?>[] keyValueStates concode_elem_sep Logger LOG concode_elem_sep KeySelector<?,?> stateKeySelecto...
ExecutionConfig function ( ) { return container . getExecutionConfig ( ) ; }
10,055
this method was generated by mybatis generator . this method returns the value of the database column t_region_map . manageno concode_field_sep String no concode_elem_sep Integer lvl concode_elem_sep String name concode_elem_sep String manageno concode_field_sep void setName concode_elem_sep void setLvl concode_elem_se...
String function ( ) { return manageno ; }
10,056
set the configuration concode_field_sep boolean recognizeQueryParameters concode_elem_sep Configuration config concode_field_sep void setSAXInputSource concode_elem_sep boolean queryParametersAreRecognized concode_elem_sep Configuration getConfiguration concode_elem_sep Source resolve concode_elem_sep Source getPTreeSo...
void function ( Configuration arg0 ) { this . config = arg0 ; }
10,057
calculates the hash code of the manifest . implemented by a xor of the hash code of the main attributes with the hash code of the entries map . concode_field_sep Map entries concode_elem_sep Attributes mainAttr concode_field_sep void read_main_section concode_elem_sep void write_version_info concode_elem_sep Attributes...
int function ( ) { return mainAttr . hashCode ( ) ^ entries . hashCode ( ) ; }
10,058
writes the treenode value into common data representation cdr stream . concode_field_sep TreeNode value concode_field_sep void _read concode_elem_sep void _write
TypeCode function ( ) { return TreeNodeHelper . type ( ) ; }
10,059
this method returns the name of the signature file to use with asic-e container . concode_field_sep boolean zipComment concode_elem_sep String mimeType concode_elem_sep SignatureForm containerForm concode_elem_sep DSSDocument enclosedSignature concode_elem_sep SignatureForm underlyingForm concode_elem_sep String signat...
String function ( ) { return signatureFileName ; }
10,060
set this to true to filter by static modifier . concode_field_sep Set<String> loggerNames concode_elem_sep boolean constantField concode_elem_sep String fieldName concode_elem_sep Pattern fieldNamePattern concode_elem_sep boolean loggers concode_elem_sep String methodName concode_elem_sep boolean transientModifier conc...
void function ( boolean arg0 ) { this . staticModifier = arg0 ; }
10,061
checks if threads to be created through this threadfactory are daemon threads . concode_field_sep Log LOG concode_elem_sep boolean daemon concode_elem_sep String prefix concode_elem_sep int counter concode_elem_sep Object lock concode_field_sep void setDaemon concode_elem_sep String getPrefix concode_elem_sep Thread ne...
boolean function ( ) { return daemon ; }
10,062
message box concode_field_sep String TAG concode_field_sep AlertDialog createAlertDialog concode_elem_sep void loadSpinner concode_elem_sep void showNavMethodDialog concode_elem_sep void setDownloadDlgUI concode_elem_sep void launchBrowser concode_elem_sep void toggleView concode_elem_sep void setLauncherDlgOptionsUI c...
void function ( final Context arg0 , final String arg1 ) { Toast . makeText ( arg0 , arg1 , Toast . LENGTH_LONG ) . show ( ) ; }
10,063
gets the balance value for this vendorcurrency . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.Double balance concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.lang.Double unbilledOrders concode_elem_sep boolean __hashCodeCalc concode_elem_sep com.netsuite...
java . lang . Double function ( ) { return balance ; }
10,064
sets the value of the clicks property . concode_field_sep Money cost concode_elem_sep Long clicks concode_elem_sep Long impressions concode_elem_sep Money bid concode_elem_sep Long promotedImpressions concode_field_sep Long getImpressions concode_elem_sep void setImpressions concode_elem_sep void setCost concode_elem_s...
void function ( Long arg0 ) { this . clicks = arg0 ; }
10,065
retrieves a sinkinput by its name concode_field_sep String ITEM_SINK_INPUT concode_elem_sep String ITEM_SINK concode_elem_sep String CMD_UNLOAD_MODULE concode_elem_sep String MODULE_COMBINE_SINK concode_elem_sep List<Module> modules concode_elem_sep String CMD_LIST_SOURCE_OUTPUTS concode_elem_sep String CMD_LIST_SINKS ...
SinkInput function ( String arg0 ) { for ( AbstractAudioDeviceConfig loc0 : items ) { if ( loc0 . getName ( ) . equalsIgnoreCase ( arg0 ) && loc0 instanceof SinkInput ) return ( SinkInput ) loc0 ; } return null ; }
10,066
sets the user exponent to a given value . the exponent must be positive . if not , an illegalargumentexception will be thrown . the output image pixels will be placed through a transformation of the form : sample = integer_sample / 2 ^ bitdepth - 1.0 decoding_exponent = user_exponent / gamma_from_file display_exponent ...
void function ( float arg0 ) { if ( arg0 <= 0.0F ) { throw new IllegalArgumentException ( PropertyUtil . getString ( "srini_string" ) ) ; } this . userExponent = arg0 ; }
10,067
return a short description of the total running time . concode_field_sep boolean running concode_elem_sep int taskCount concode_elem_sep long startTimeMillis concode_elem_sep String currentTaskName concode_elem_sep TaskInfo lastTaskInfo concode_elem_sep long totalTimeMillis concode_elem_sep List<TaskInfo> taskList conc...
String function ( ) { return "srini_string" + this . id + "srini_string" + totalTime ( ) ; }
10,068
returns the kaleo node id of this kaleo task . concode_field_sep KaleoTask _kaleoTask concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep void setGroupId concode_ele...
long function ( ) { return _kaleoTask . getKaleoNodeId ( ) ; }
10,069
sets whether the current file is readable . concode_field_sep boolean isExecutable concode_elem_sep long lastModifiedTime concode_elem_sep boolean isWritable concode_elem_sep boolean isReadable concode_elem_sep long lastChangeTime concode_elem_sep Clock clock concode_field_sep void setWritable concode_elem_sep boolean ...
boolean function ( ) { return isReadable ; }
10,070
this method will initialize the game board wrt the state it reads from the file . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean isFileNameValid concode_elem_sep ArrayList<String> loadFile concode_elem_sep void emptyAllDataStructures concode_elem_sep void initializeTroubleMarkerOnGameBoard concode_...
void function ( ArrayList < String > arg0 ) { emptyAllDataStructures ( ) ; String [ ] loc0 = arg0 . get ( 0 ) . split ( "srini_string" ) ; int loc1 = Integer . parseInt ( loc0 [ 1 ] . trim ( ) ) ; arg0 . remove ( 0 ) ; BoardGame . start ( loc1 ) ; createPlayers ( arg0 ) ; }
10,071
validate a value against the set of regular expressions . concode_field_sep Pattern[] patterns concode_field_sep String[] match concode_elem_sep String toString concode_elem_sep String validate
boolean function ( String arg0 ) { if ( arg0 == null ) { return false ; } for ( int loc0 = 0 ; loc0 < patterns . length ; loc0 ++ ) { if ( patterns [ loc0 ] . matcher ( arg0 ) . matches ( ) ) { return true ; } } return false ; }
10,072
moves the reading offset by bytes . concode_field_sep byte[] data concode_elem_sep int limit concode_elem_sep int position concode_field_sep int readLittleEndianInt concode_elem_sep int readLittleEndianInt24 concode_elem_sep int readSynchSafeInt concode_elem_sep int readUnsignedIntToInt concode_elem_sep void setPositio...
void function ( int arg0 ) { setPosition ( position + arg0 ) ; }
10,073
initialize the vector a call to vector.set x , y , z is equivalent to vector.x = x ; vector.y = y ; vector.z = z ; concode_field_sep double x concode_elem_sep double y concode_elem_sep double z concode_field_sep void add concode_elem_sep void sub concode_elem_sep void normalize concode_elem_sep double length concode_el...
void function ( double arg0 , double arg1 , double arg2 ) { this . x = arg0 ; this . y = arg1 ; this . z = arg2 ; }
10,074
check that table in given states concode_field_sep State state concode_elem_sep TableName tableName concode_field_sep boolean isInStates concode_elem_sep State getState concode_elem_sep int hashCode concode_elem_sep TableName getTableName concode_elem_sep boolean equals concode_elem_sep TableState parseFrom concode_ele...
boolean function ( State ... arg0 ) { for ( State loc0 : arg0 ) { if ( loc0 . equals ( this . state ) ) return true ; } return false ; }
10,075
by default , assumes that the eobject is attached to an xml resource , and returns that . concode_field_sep Map nameFeatureMap concode_elem_sep Object NULL_TOKEN concode_field_sep boolean shouldOverrideCopyOperation concode_elem_sep void setName concode_elem_sep boolean canContain concode_elem_sep String getName concod...
XMLResource function ( EObject arg0 ) { return ( XMLResource ) arg0 . eResource ( ) ; }
10,076
adds a padencryptedpin object to the list concode_field_sep String padKeyCookieDomain concode_elem_sep ArrayList<PadEncryptedPin> padEncryptedPins concode_field_sep int getTotalPinNumbers concode_elem_sep void setPadEncryptedPins concode_elem_sep PadEncryptedPin getPadEncryptedPin concode_elem_sep void setPadKeyCookieD...
void function ( PadEncryptedPin arg0 ) { getPadEncryptedPins ( ) . add ( arg0 ) ; }
10,077
this method is called by the application server during crash recovery . concode_field_sep String workManagerName concode_elem_sep String name concode_elem_sep Logger log concode_elem_sep String bootstrapContextName concode_field_sep void setName concode_elem_sep String getWorkManagerName concode_elem_sep String getBoot...
XAResource [ ] function ( ActivationSpec [ ] arg0 ) { log . finest ( "srini_string" ) ; return null ; }
10,078
return type metadata object concode_field_sep java.lang.Integer startIndex concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep java.lang.Integer totalResultSetSize concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep com.google.api.ads.dfp.a...
org . apache . axis . description . TypeDesc function ( ) { return typeDesc ; }
10,079
gets the value of the date property . concode_field_sep String date concode_elem_sep String country concode_elem_sep String last concode_elem_sep String city concode_elem_sep String title concode_elem_sep String type concode_elem_sep List<DbReferenceType> dbReference concode_elem_sep String volume concode_elem_sep Stri...
String function ( ) { return date ; }
10,080
a valid regular state must produce no issues . concode_field_sep SGraphFactory factory concode_elem_sep BasicDiagnostic diagnostics concode_elem_sep SGraphJavaValidator validator concode_elem_sep StextFactory sTextFactory concode_elem_sep State state concode_elem_sep Region region concode_elem_sep Statechart statechart...
void function ( ) { prepareStateTest ( ) ; Entry loc0 = factory . createEntry ( ) ; region . getVertices ( ) . add ( loc0 ) ; createTransition ( loc0 , state ) ; assertTrue ( validator . validate ( state , diagnostics , new HashMap < Object , Object > ( ) ) ) ; assertIssueCount ( diagnostics , 0 ) ; }
10,081
returns the samltokenconsuer concode_field_sep SAMLTokenConsumer consumer concode_elem_sep Log log concode_field_sep String getIssuerInfoString concode_elem_sep void setInfocardSessionAttributes concode_elem_sep void injectDataToRequestOnFailure concode_elem_sep void injectDataToRequestOnSuccess concode_elem_sep boolea...
SAMLTokenConsumer function ( ) { return consumer ; }
10,082
returns the etags retrieved from amazon s3 for a multi-part upload id . these parts will be skipped while resuming a paused upload . concode_field_sep AmazonS3 s3 concode_elem_sep Log log concode_elem_sep UploadImpl upload concode_elem_sep TransferManagerConfiguration configuration concode_elem_sep List<PartETag> eTags...
List < PartETag > function ( ) { return eTagsToSkip ; }
10,083
add authn context decl ref concode_field_sep List<String> authnContextDeclRef concode_elem_sep AuthnContextComparisonType comparison concode_elem_sep List<String> authnContextClassRef concode_field_sep void addAuthnContextClassRef concode_elem_sep List<String> getAuthnContextDeclRef concode_elem_sep void removeAuthnCon...
void function ( String arg0 ) { this . authnContextDeclRef . add ( arg0 ) ; }
10,084
return the roleinfo object describing the current role . return the roleinfo object describing the current role . the roleinfo object is used by rest api users . concode_field_sep Controller controller concode_elem_sep HARole role concode_elem_sep RoleManagerCounters counters concode_elem_sep RoleInfo currentRoleInfo c...
RoleInfo function ( ) { return currentRoleInfo ; }
10,085
checks if the match element uses regexp-based form of the pos tag . concode_field_sep Pattern pPosRegexMatch concode_elem_sep boolean inMessageOnly concode_elem_sep CaseConversion caseConversionType concode_elem_sep String posTagReplace concode_elem_sep IncludeRange includeSkipped concode_elem_sep String regexReplace c...
boolean function ( ) { return postagRegexp ; }
10,086
returns true if the abstractchannelpoolmap is empty , otherwise false . concode_field_sep ConcurrentMap<K,P> map concode_field_sep Iterator<Entry<K,P>> iterator concode_elem_sep boolean contains concode_elem_sep int size concode_elem_sep P newPool concode_elem_sep P get concode_elem_sep void close concode_elem_sep bool...
boolean function ( ) { return map . isEmpty ( ) ; }
10,087
load 8 bytes into long in a little endian manner , from the substring between position and position + 8 . the array must have at least 8 bytes from offset inclusive . concode_field_sep int BYTE_ARRAY_BASE_OFFSET concode_elem_sep Unsafe theUnsafe concode_elem_sep LittleEndianBytes byteArray concode_field_sep int load32 ...
long function ( byte [ ] arg0 , int arg1 ) { assert arg0 . length >= arg1 + 8 ; return byteArray . getLongLittleEndian ( arg0 , arg1 ) ; }
10,088
this method returns the sequence quality . concode_field_sep int occurrences concode_elem_sep double score concode_elem_sep String sequence concode_elem_sep String strand concode_elem_sep String cigar concode_elem_sep String chromosome concode_elem_sep int map_quality concode_elem_sep int start concode_elem_sep int end...
String function ( ) { return quality ; }
10,089
returns the first offset greater than offset and smaller than end whose character is not a space or tab character . if no such offset is found , end is returned . concode_field_sep String COMMENT_END concode_elem_sep ISourceViewer fSourceViewer concode_elem_sep String fContentType concode_elem_sep String COMMENT_START ...
int function ( IDocument arg0 , int arg1 , int arg2 ) { }
10,090
sets up the iselementof processors . concode_field_sep IsElementOf chainedProcessor concode_elem_sep List<Object> input concode_elem_sep IsElementOf processor concode_field_sep void testChainedConstructorWithNullCollection concode_elem_sep void testIsElementOf concode_elem_sep void testConstructorWithNullCollection con...
void function ( ) { processor = new IsElementOf ( input ) ; chainedProcessor = new IsElementOf ( input , new IdentityTransform ( ) ) ; }
10,091
visits a set of items . concode_field_sep PlaceHolder placeHolder concode_field_sep Set<R> visitAllUnique concode_elem_sep C visitAll
R function ( T [ ] arg0 , Visitor < T , R > arg1 ) { return visit ( arg0 , null , arg1 ) ; }
10,092
stores the listener and its jso counterpart . concode_field_sep JavaScriptObject jso concode_elem_sep TransliterationEventListener listener concode_elem_sep List<ListenerInfo> listenerCache concode_elem_sep EventType eventType concode_field_sep EventType getEventType concode_elem_sep JavaScriptObject createJSOEventList...
void function ( EventType arg0 , TransliterationEventListener arg1 , JavaScriptObject arg2 ) { listenerCache . add ( new ListenerInfo ( arg0 , arg1 , arg2 ) ) ; }
10,093
bewegung im koordinatensystem nach oben concode_field_sep double _ausrichtung concode_elem_sep int _yPos concode_elem_sep int _xPos concode_elem_sep int _hoehe concode_elem_sep int _breite concode_field_sep void zeichnen concode_elem_sep void left concode_elem_sep void aendereAusrichtung concode_elem_sep void backward ...
void function ( int arg0 ) { int loc0 = 1 ; double loc1 = arg0 * Math . cos ( _ausrichtung ) ; for ( int loc2 = 0 ; loc2 < arg0 ; loc2 ++ ) { _yPos += loc0 ; _xPos += ( int ) loc1 / arg0 ; zeichnen ( ) ; } }
10,094
get the head element for this xhtmldocument container . concode_field_sep head head concode_elem_sep String codeset concode_elem_sep html html concode_elem_sep Doctype doctype concode_elem_sep long serialVersionUID concode_elem_sep body body concode_elem_sep title title concode_field_sep html getHtml concode_elem_sep b...
head function ( ) { return ( head ) ; }
10,095
get a description of this type for use in diagnostics concode_field_sep AnySimpleType theInstance concode_field_sep boolean isNamespaceSensitive concode_elem_sep boolean isSimpleType concode_elem_sep ValidationFailure validateContent concode_elem_sep String getSystemId concode_elem_sep String getName concode_elem_sep A...
String function ( ) { return "srini_string" ; }
10,096
returns true if type represents an in-process connection to database . concode_field_sep String S_URL_PREFIX concode_elem_sep String S_DOT concode_elem_sep String S_FILE concode_elem_sep String url_database concode_elem_sep String S_MEM concode_elem_sep String S_ALIAS concode_elem_sep String S_HSQLS concode_elem_sep St...
boolean function ( String arg0 ) { if ( arg0 == S_FILE || arg0 == S_RES || arg0 == S_MEM ) { return true ; } return false ; }
10,097
return the hashcode of the string value providing there is one . otherwise , returns an arbitrary constant for the case of null . concode_field_sep long serialVersionUID concode_field_sep void setValue concode_elem_sep boolean equals concode_elem_sep void setFromString concode_elem_sep String toString concode_elem_sep ...
int function ( ) { String loc0 = value ( ) ; return loc0 == null ? 3 : loc0 . hashCode ( ) ; }
10,098
retrieve the singleton instance of unsafe . the calling method should guard this instance from untrusted code , as it provides access to low-level operations such as direct memory access . concode_field_sep Unsafe unsafe concode_field_sep int arrayIndexScale concode_elem_sep int arrayBaseOffset concode_elem_sep boolean...
Unsafe function ( ) { SecurityManager loc0 = System . getSecurityManager ( ) ; if ( loc0 != null ) loc0 . checkPropertiesAccess ( ) ; return unsafe ; }
10,099
set the name of the associated blueprint . ' concode_field_sep BlueprintEntity blueprint concode_elem_sep String blueprintName concode_elem_sep String settingData concode_elem_sep long id concode_elem_sep String settingName concode_field_sep String getBlueprintName concode_elem_sep String getSettingData concode_elem_se...
void function ( String arg0 ) { this . blueprintName = arg0 ; }