code
stringlengths
20
663
nl
stringlengths
68
7.19k
int function ( ) { try { ServerSocket loc0 = new ServerSocket ( 0 ) ; int loc1 = loc0 . getLocalPort ( ) ; loc0 . close ( ) ; return loc1 ; } catch ( IOException loc0 ) { throw new RuntimeException ( loc0 ) ; } }
picks an unused port . concode_field_sep String TEST_SERVER_HOST concode_field_sep ServerInterceptor recordRequestHeadersInterceptor concode_elem_sep InetSocketAddress testServerAddress concode_elem_sep InetSocketAddress testServerAddress concode_elem_sep File loadCert concode_elem_sep SSLSocketFactory newSslSocketFact...
boolean function ( ) { if ( webView . canGoBack ( ) ) { webView . goBack ( ) ; return true ; } return false ; }
go to previous page in history . we manage our own history concode_field_sep PluginManager pluginManager concode_elem_sep CordovaInterface cordova concode_elem_sep BroadcastReceiver receiver concode_elem_sep SystemWebView webView concode_elem_sep CordovaWebView parentWebView concode_elem_sep CordovaWebViewEngine.Client...
boolean function ( ) { return hasLineNumbers ; }
does this method have line number information ? concode_field_sep MethodGen methodGen concode_elem_sep boolean LINE_NUMBER_BUG concode_elem_sep IdentityHashMap<InstructionHandle,LineNumber> lineNumberMap concode_elem_sep boolean hasLineNumbers concode_elem_sep boolean DEBUG concode_field_sep void checkTable concode_ele...
int function ( ) { return fConfidence ; }
generates a hashcode based on the confidence value concode_field_sep byte[] fRawInput concode_elem_sep InputStream fInputStream concode_elem_sep int fRawLength concode_elem_sep int BOM concode_elem_sep int ENCODING_SCHEME concode_elem_sep int DECLARED_ENCODING concode_elem_sep int LANG_STATISTICS concode_elem_sep Chars...
int function ( ) { return type ; }
return the type of this gdiobject . concode_field_sep int type concode_elem_sep Object obj concode_elem_sep int id concode_elem_sep boolean used concode_field_sep Object getObject concode_elem_sep void clear concode_elem_sep int getID concode_elem_sep void Setup concode_elem_sep boolean isUsed
boolean function ( MouseEvent arg0 ) { return ( arg0 . getModifiersEx ( ) & InputEvent . BUTTON2_DOWN_MASK ) > 0 ; }
replaces swingutilities #ismiddlemousebutton due to the fact that button2_mask == event.alt _ mask concode_field_sep Key<Iterable<? extends Component>> NOT_IN_HIERARCHY_COMPONENTS concode_field_sep boolean isLeftMouseButton concode_elem_sep TreeTraverser<Component> uiTraverser concode_elem_sep boolean isRightMouseButto...
void function ( WorkflowType arg0 ) { this . workflowType = arg0 ; }
the type of the child workflow execution . concode_field_sep WorkflowExecution workflowExecution concode_elem_sep Long startedEventId concode_elem_sep WorkflowType workflowType concode_elem_sep String details concode_elem_sep Long initiatedEventId concode_field_sep ChildWorkflowExecutionCanceledEventAttributes withDeta...
void function ( ) { sendPluginResult ( new PluginResult ( PluginResult . Status . OK ) ) ; }
helper for success callbacks that just returns the status.ok by default concode_field_sep String callbackId concode_elem_sep CordovaWebView webView concode_elem_sep int changingThreads concode_elem_sep String LOG_TAG concode_elem_sep boolean finished concode_field_sep boolean isChangingThreads concode_elem_sep String g...
void function ( JobExecution arg0 ) { for ( Iterator < JobExecutionListener > loc0 = listeners . loc0 ( ) ; loc0 . hasNext ( ) ; ) { JobExecutionListener loc1 = loc0 . next ( ) ; loc1 . beforeJob ( arg0 ) ; } }
call the registered listeners in order , respecting and prioritising those that implement ordered . concode_field_sep OrderedComposite<JobExecutionListener> listeners concode_field_sep void setListeners concode_elem_sep void afterJob concode_elem_sep void register
void function ( AuthenticatedUser arg0 ) { this . authenticatedUser = arg0 ; }
replaces the authenticated user associated with this session with the given authenticated user . concode_field_sep long lastAccessedTime concode_elem_sep Map<String,GuacamoleTunnel> tunnels concode_elem_sep List<UserContext> userContexts concode_elem_sep AuthenticatedUser authenticatedUser concode_elem_sep Logger logge...
String function ( ) { return "srini_string" + this . getPt ( ) + ( this . getPl ( ) < 0 ? "srini_string" : "srini_string" ) + this . getPl ( ) + "srini_string" + this . getNi ( ) + "srini_string" + this . getD0 ( ) + "srini_string" + ( this . getConstant ( ) < 0 ? "srini_string" : "srini_string" ) + this . getConstant ...
write signal attenuation with distance formula with current parameters concode_field_sep double pt concode_elem_sep double pl concode_elem_sep double stddev concode_elem_sep double constant concode_elem_sep RandomData rndData concode_elem_sep double rms concode_elem_sep double d0 concode_elem_sep double ni concode_fiel...
IPreferenceStore function ( ) { return XmlEditorPlugin . getDefault ( ) . getPreferenceStore ( ) ; }
returns the preference store . concode_field_sep String EDITOR_TAB_WIDTH concode_elem_sep String EDITOR_BACKGROUND_COLOR concode_elem_sep String EDITOR_BOLD_SUFFIX concode_elem_sep String EDITOR_CUSTOM_BACKGROUND_SUFFIX concode_elem_sep String EDITOR_BACKGROUND_SUFFIX concode_elem_sep String EDITOR_FOREGROUND_SUFFIX co...
ReinforcementLearner function ( int arg0 ) { this . batchSize = arg0 ; return this ; }
if a batch size worth of actions need to be selected concode_field_sep Map<String,AverageValue> rewardStats concode_elem_sep List<Action> actions concode_elem_sep Action[] selActions concode_elem_sep boolean rewarded concode_elem_sep int rewardScale concode_elem_sep long totalTrialCount concode_elem_sep int minTrial co...
Pixmap function ( FileHandle arg0 ) { return CIM . read ( arg0 ) ; }
reads the pixmap from the given file , assuming the pixmap was written with the pixmapio #writecim filehandle , pixmap method . throws a gdxruntimeexception in case the file could n't be read . concode_field_sep int ZLIB_BLOCK_SIZE concode_elem_sep int BUFFER_SIZE concode_elem_sep byte[] readBuffer concode_elem_sep int...
String function ( FilePath arg0 , String arg1 ) { return arg0 . act ( new Read ( arg0 , arg1 ) ) ; }
get the content of the provided file path . concode_field_sep String file concode_elem_sep long serialVersionUID concode_elem_sep String encoding concode_field_sep Boolean call concode_elem_sep String call concode_elem_sep FilePath existsOrNull concode_elem_sep boolean isFile concode_elem_sep void checkRoles concode_el...
void function ( Class < ? > arg0 , String arg1 ) { CLASS_TO_NAME . put ( arg0 , arg1 ) ; NAME_TO_CLASS . put ( arg1 , arg0 ) ; }
set the name that a class should be known as to something other than the class name . concode_field_sep HashMap<Class<?>,String> CLASS_TO_NAME concode_elem_sep HashMap<String,Class<?>> NAME_TO_CLASS concode_field_sep Class<?> getClass concode_elem_sep String getName concode_elem_sep void addName
int function ( Stub arg0 ) { Delegate loc0 = arg0 . _get_delegate ( ) ; return loc0 == null ? 0 : loc0 . hashCode ( ) ; }
get the hash code from ior reference . concode_field_sep PlaceHolder placeHolder concode_field_sep Tie getTieFromStub concode_elem_sep void writeObject concode_elem_sep void writeObject concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep void connect concode_elem_sep void connect concode_e...
Grantee function ( ) { return grantee ; }
retrieves the grantee object for this user . concode_field_sep HsqlName initialSchema concode_elem_sep String sName concode_elem_sep Grantee grantee concode_elem_sep boolean isPublic concode_elem_sep boolean isSys concode_elem_sep String sPassword concode_field_sep void setPassword concode_elem_sep boolean isAccessible...
java . lang . String function ( ) { throw new RuntimeException ( ) ; }
returns a string representation of the nodes in this tree concode_field_sep PlaceHolder placeHolder concode_field_sep java.lang.String nodeName concode_elem_sep java.lang.String asCode concode_elem_sep org.apache.spark.sql.catalyst.trees.TreeNode<BaseType> transformChildrenUp concode_elem_sep BaseType getNodeNumbered c...
void function ( boolean arg0 ) { if ( arg0 ) { filterMask |= ENTITYREF ; } else { filterMask &= ~ ENTITYREF ; } }
set visiblity of entityref objects . concode_field_sep int PI concode_elem_sep int COMMENT concode_elem_sep int CDATA concode_elem_sep int DOCUMENT concode_elem_sep int TEXT concode_elem_sep int ENTITYREF concode_elem_sep String CVS_ID concode_elem_sep int filterMask concode_elem_sep int ELEMENT concode_field_sep int g...
void function ( boolean [ ] [ ] arg0 ) { int loc0 = arg0 . length ; int loc1 = arg0 [ 0 ] . length ; StdOut . println ( loc0 + "srini_string" + loc1 ) ; for ( int loc2 = 0 ; loc2 < loc0 ; loc2 ++ ) { for ( int loc3 = 0 ; loc3 < loc1 ; loc3 ++ ) { if ( arg0 [ loc2 ] [ loc3 ] ) StdOut . print ( "srini_string" ) ; else St...
print the m-by-n array of booleans to standard output . concode_field_sep PlaceHolder placeHolder concode_field_sep int[][] readInt2D concode_elem_sep int[] readInt1D concode_elem_sep void main concode_elem_sep double[] readDouble1D concode_elem_sep double[][] readDouble2D concode_elem_sep boolean[][] readBoolean2D con...
void function ( String arg0 ) { this . userName = arg0 ; }
the user with whom the mfa device is associated . concode_field_sep java.util.Date enableDate concode_elem_sep String serialNumber concode_elem_sep String userName concode_field_sep String getSerialNumber concode_elem_sep MFADevice withSerialNumber concode_elem_sep void setSerialNumber concode_elem_sep void setEnableDa...
String function ( Predicate arg0 ) { return ( arg0 == null ) ? null : arg0 . toJSON ( ) ; }
safely serializes the specified predicate to a json-formatted string concode_field_sep Type PARSED_TYPE concode_field_sep Predicate fromMap concode_elem_sep Map<String,Object> toMap concode_elem_sep Predicate fromJSON
String function ( ) { return category ; }
get link category concode_field_sep String summary concode_elem_sep String URI concode_elem_sep String link concode_elem_sep List<Link> links concode_elem_sep String category concode_elem_sep String title concode_elem_sep String value concode_field_sep String getLoginLink concode_elem_sep String getAccountLink concode_...
TransactionalEditingDomain function ( ) { return TransactionUtil . getEditingDomain ( getResource ( ) ) ; }
getter for the editing domain of the resource used in this refactoring . concode_field_sep RefactoringHelper helper concode_elem_sep List<T> contextObjects concode_field_sep Resource getResource concode_elem_sep boolean internalDoUndo concode_elem_sep List<?> getAffectedFiles concode_elem_sep String getCommandLabel con...
String function ( ) { StringBuffer loc0 = new StringBuffer ( "srini_string" ) ; loc0 . append ( m_Product_ID ) . append ( "srini_string" ) . append ( m_name ) . append ( "srini_string" ) . append ( m_price ) . append ( "srini_string" ) ; return loc0 . toString ( ) ; }
string representation concode_field_sep String m_description concode_elem_sep String m_documentNote concode_elem_sep String m_imageURL concode_elem_sep int m_Product_ID concode_elem_sep String m_value concode_elem_sep String NAME concode_elem_sep String m_name concode_elem_sep BigDecimal m_price concode_elem_sep String...
ObjectNode function ( T arg0 , CodecContext arg1 ) { throw new UnsupportedOperationException ( "srini_string" ) ; }
encodes the specified entity into json . concode_field_sep PlaceHolder placeHolder concode_field_sep ObjectNode get concode_elem_sep ObjectNode get concode_elem_sep T decode concode_elem_sep List<T> decode
String function ( ) { return defaultEnvironment ; }
returns the defaut environment name concode_field_sep String defaultEnvironment concode_elem_sep File configFile concode_elem_sep Document document concode_elem_sep Map<String,Element> ENV_MAP concode_field_sep void parseDocument concode_elem_sep List<Configuration> getConfigurations concode_elem_sep Map<String,Element...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getKey ( ) != null ) loc0 . append ( "srini_string" + getKey ( ) + "srini_string" ) ; if ( getValue ( ) != null ) loc0 . append ( "srini_string" + getValue ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . ...
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String value concode_elem_sep String key concode_field_sep String getKey concode_elem_sep String getValue concode_elem_sep Tag withValue concode_elem_sep int hashCode concode_elem_sep void setValue concode_elem_sep boo...
boolean function ( final K arg0 , final V arg1 ) { final List < V > loc0 = this . table . get ( arg0 ) ; if ( loc0 == null ) { return false ; } if ( ! loc0 . remove ( arg1 ) ) { return false ; } if ( loc0 . isEmpty ( ) ) { this . table . remove ( arg0 ) ; } return true ; }
removes the key/value pair from the map . if the removed entry was the last entry for this key , the key gets also removed . concode_field_sep Object[] EMPTY_ARRAY concode_elem_sep long serialVersionUID concode_elem_sep HashMap<K,List<V>> table concode_field_sep boolean add concode_elem_sep List<V> createList concode_e...
void function ( Throwable arg0 ) { this . exception = arg0 ; }
set the exception thrown by an unsuccessful invocation of the target method , if any . this setter is intended for javabean-style deserialization . use #remoteinvocationresult throwable otherwise . concode_field_sep Throwable exception concode_elem_sep long serialVersionUID concode_elem_sep Object value concode_field_s...
SubscriptionHandler function ( ) { return subscriptionHandler ; }
returns an instance of the subscription handler concode_field_sep Log log concode_elem_sep String ENVIRONMENT concode_elem_sep SubscriptionHandler subscriptionHandler concode_field_sep String createSubscription concode_elem_sep String generateRepoUrlFromTemplate
int function ( ) { return this . fieldName ; }
getter section concode_field_sep int fieldName concode_field_sep boolean canEqual concode_elem_sep int fieldName concode_elem_sep GetterSetterJavadoc4 fieldName concode_elem_sep int fieldName concode_elem_sep GetterSetterJavadoc5 fieldName concode_elem_sep void setFieldName concode_elem_sep void setFieldName concode_el...
double function ( ) { return average ; }
the current value of the moving average . concode_field_sep Logger log concode_elem_sep Callable<? extends Number> sampleTask concode_elem_sep double w concode_elem_sep String name concode_elem_sep long nsamples concode_elem_sep double average concode_elem_sep double DEFAULT_WEIGHT concode_field_sep long getSampleCount...
void function ( ) { fail ( null ) ; }
fails a test with no message . concode_field_sep PlaceHolder placeHolder concode_field_sep void assertNull concode_elem_sep void assertNull concode_elem_sep void assertTrue concode_elem_sep void assertTrue concode_elem_sep void assertNotNull concode_elem_sep void assertNotNull concode_elem_sep void failNotSame concode_...
long function ( ) { return _waitMs ; }
get the short amount of time in milliseconds that the filter would wait for the semaphore to become available before suspending a request . concode_field_sep String MAX_PRIORITY_INIT_PARAM concode_elem_sep String _suspended concode_elem_sep Semaphore _passes concode_elem_sep Queue<AsyncContext>[] _queues concode_elem_s...
HealthCheckRegistry function ( ) { return healthCheckRegistry ; }
returns the application 's healthcheckregistry . concode_field_sep LifecycleEnvironment lifecycleEnvironment concode_elem_sep AdminEnvironment adminEnvironment concode_elem_sep HealthCheckRegistry healthCheckRegistry concode_elem_sep ObjectMapper objectMapper concode_elem_sep MutableServletContextHandler servletContext...
int function ( ) { return mVolumePercent ; }
get the volume of the audio track as percentage of the volume in the original audio source file . concode_field_sep int mAspectRatio concode_elem_sep int mWidth concode_elem_sep MovieTransition mBeginTransition concode_elem_sep int mAppVolumePercent concode_elem_sep long mAppBeginBoundaryTimeMs concode_elem_sep String ...
void function ( int arg0 ) { this . port = arg0 ; }
specify the http server 's port . default is 8080 . concode_field_sep HttpServer server concode_elem_sep String hostname concode_elem_sep Log logger concode_elem_sep int backlog concode_elem_sep Executor executor concode_elem_sep int shutdownDelay concode_elem_sep Map<String,HttpHandler> contexts concode_elem_sep List<...
double function ( Point arg0 ) { return ( arg0 . x - this . x ) * ( arg0 . x - this . x ) + ( arg0 . y - this . y ) * ( arg0 . y - this . y ) + ( arg0 . z - this . z ) * ( arg0 . z - this . z ) ; }
computes the squared distance between this point and the given point . concode_field_sep double x concode_elem_sep double y concode_elem_sep double z concode_field_sep Point add concode_elem_sep Point add concode_elem_sep double distance concode_elem_sep Comparator<Point> getComparator concode_elem_sep Vector subtract ...
Vector3f function ( ) { return nextVector3f ( new Vector3f ( ) ) ; }
returns a vector3f whose components range from -1.0 inclusive to 1.0 inclusive concode_field_sep char[] ALPHANUMERIC_CHARS concode_field_sep float nextFloat concode_elem_sep float nextFloat concode_elem_sep T nextItem concode_elem_sep Vector3f nextUnitVector3f concode_elem_sep int nextInt concode_elem_sep int nextInt c...
void function ( char arg0 ) { doKeyAction ( arg0 , false ) ; }
simulate a key release . concode_field_sep PlaceHolder placeHolder concode_field_sep void symbolRelease concode_elem_sep void doSymbolAction concode_elem_sep void doKeyAction concode_elem_sep void keyPress concode_elem_sep void symbolPress
String function ( ) { return fault ; }
gets the name identifying the specific fault . the names are guaranteed not to change across api versions as long as the fault cases they identify still exist . concode_field_sep String DTRACEFLT_DIVZERO concode_elem_sep String DTRACEFLT_LIBRARY concode_elem_sep ProbeDescription probeDescription concode_elem_sep long a...
Size2D function ( BlockContainer arg0 , Graphics2D arg1 ) { List loc0 = arg0 . getBlocks ( ) ; Block loc1 = ( Block ) loc0 . get ( 0 ) ; Size2D loc2 = loc1 . arrange ( arg1 , RectangleConstraint . NONE ) ; loc1 . setBounds ( new Rectangle2D . Double ( 0.0 , 0.0 , loc2 . width , loc2 . height ) ) ; return new Size2D ( l...
arranges the blocks without any constraints . this puts all blocks into a single row . concode_field_sep long serialVersionUID concode_field_sep void add concode_elem_sep Size2D arrangeFF concode_elem_sep Size2D arrangeRR concode_elem_sep Size2D arrange concode_elem_sep Size2D arrangeFR concode_elem_sep Size2D arrangeR...
void function ( String arg0 ) { this . street = arg0 ; }
sets the value of the street property . concode_field_sep String zipCode concode_elem_sep String city concode_elem_sep String countryCd concode_elem_sep String stateProvince concode_elem_sep String accountKey concode_elem_sep String poBox concode_elem_sep String addressTypeCd concode_elem_sep String buildingNum concode...
void function ( String arg0 ) { m_author = arg0 ; }
sets the author of the list entry . concode_field_sep String m_author concode_elem_sep String m_link concode_elem_sep String m_title concode_elem_sep String m_image concode_elem_sep Date m_date concode_elem_sep String m_text concode_field_sep void setLink concode_elem_sep String getLink concode_elem_sep String getTitle...
void function ( ) { Session [ ] loc0 = getAllSessions ( ) ; for ( int loc1 = 0 ; loc1 < loc0 . length ; loc1 ++ ) { loc0 [ loc1 ] . close ( ) ; } }
closes all sessions registered with this sessionmanager . concode_field_sep int sessionIdCount concode_elem_sep IntKeyHashMap sessionMap concode_elem_sep Session sysSession concode_field_sep void removeSession concode_elem_sep boolean isUserActive concode_elem_sep void removeSchemaReference concode_elem_sep Session new...
com . liferay . lms . model . P2pActivity function ( long arg0 ) { return getService ( ) . getP2pActivity ( arg0 ) ; }
returns the p2p activity with the primary key . concode_field_sep P2pActivityLocalService _service concode_field_sep java.util.List<com.liferay.portal.model.User> getUsersToCorrectP2P concode_elem_sep java.util.List<com.liferay.lms.model.P2pActivity> getP2pActivities concode_elem_sep java.util.List<com.liferay.lms.mode...
void function ( UpdateListener arg0 ) { if ( ! listeners . contains ( arg0 ) ) { listeners . add ( arg0 ) ; } }
add the given update listener . concode_field_sep Revision latestRevision concode_elem_sep CopyOnWriteArrayList<UpdateListener> listeners concode_elem_sep String errorMessage concode_elem_sep State state concode_field_sep void setLatestAvailableRevision concode_elem_sep void setErrorMessage concode_elem_sep void handle...
void function ( ExprParser . ProgContext arg0 ) { }
the default implementation does nothing . concode_field_sep PlaceHolder placeHolder concode_field_sep void enterBlank concode_elem_sep void enterPrintExpr concode_elem_sep void exitInt concode_elem_sep void enterProg concode_elem_sep void exitAddSub concode_elem_sep void exitParens concode_elem_sep void exitMultDiv con...
SourceType function ( ) { return source ; }
gets the value of the source property . concode_field_sep ImportedFromType importedFrom concode_elem_sep SourceType source concode_elem_sep String type concode_elem_sep BigInteger key concode_field_sep void setSource concode_elem_sep BigInteger getKey concode_elem_sep String getType concode_elem_sep ImportedFromType ge...
void function ( boolean arg0 ) { this . tabbedPane2Visible = arg0 ; }
sets the tabbed pane visibility concode_field_sep String tabPlacement concode_elem_sep long selectedIndex concode_elem_sep boolean tabbedPane1Visible concode_elem_sep boolean tabbedPane2Visible concode_elem_sep boolean tabbedPane3Visible concode_field_sep String getTabPlacement concode_elem_sep void setTabbedPane3Visib...
SynchronizedCollection < T > function ( final Collection < T > arg0 ) { return new SynchronizedCollection < T > ( arg0 ) ; }
factory method to create a synchronized collection . concode_field_sep Object lock concode_elem_sep Collection<E> collection concode_elem_sep long serialVersionUID concode_field_sep boolean add concode_elem_sep boolean containsAll concode_elem_sep void clear concode_elem_sep boolean isEmpty concode_elem_sep Collection<...
void function ( URI arg0 ) { String loc0 = retrieveJID ( arg0 ) ; Presence loc1 = new Presence ( Presence . Type . subscribe ) ; loc1 . setTo ( loc0 ) ; SparkManager . getConnection ( ) . sendStanza ( loc1 ) ; }
handles the ? subscribe uri concode_field_sep String _xml concode_field_sep void handleRoster concode_elem_sep void handleUnsubscribe concode_elem_sep String retrieveJID concode_elem_sep void handleMessage concode_elem_sep String getXML concode_elem_sep void handleConference concode_elem_sep void handleRemove
Map < String , DependencyData > function ( ) { return mMainFileMap ; }
returns the map of data using the main file as key . concode_field_sep Map<String,DependencyData> mMainFileMap concode_elem_sep byte TAG_START concode_elem_sep byte TAG_2NDARY_OUTPUT concode_elem_sep byte TAG_2NDARY_FILE concode_elem_sep int CURRENT_VERSION concode_elem_sep byte[] intBuffer concode_elem_sep byte TAG_HE...
String function ( ) { return modifiedBy ; }
get report modification author . concode_field_sep Date modifiedOn concode_elem_sep String createdBy concode_elem_sep ReportParams reportParams concode_elem_sep String reportDefinitionXml concode_elem_sep String siteId concode_elem_sep String description concode_elem_sep boolean hidden concode_elem_sep String modifiedB...
MeteringRectangle [ ] function ( float arg0 , float arg1 , final Rect arg2 , int arg3 ) { return regionsForNormalizedCoord ( arg0 , arg1 , Settings3A . getGcamMeteringRegionFraction ( ) , arg2 , arg3 ) ; }
gcam mode only : return ae region s for a sensor-referenced touch coordinate . normalized coordinates are referenced to portrait preview window with 0 , 0 top left and 1 , 1 bottom right . rotation has no effect . concode_field_sep int CAMERA2_REGION_WEIGHT concode_elem_sep MeteringRectangle[] ZERO_WEIGHT_3A_REGION con...
String function ( String arg0 ) { Mapping loc0 = this . map . get ( arg0 ) ; return ( loc0 == null ? null : loc0 . getMimeType ( ) ) ; }
get a mime mapping for the given extension . concode_field_sep String extension concode_elem_sep String mimeType concode_elem_sep Map<String,Mapping> map concode_elem_sep MimeMappings DEFAULT concode_field_sep String add concode_elem_sep Iterator<Mapping> iterator concode_elem_sep Collection<Mapping> getAll concode_ele...
long function ( int arg0 ) { return ( arg0 == chunkCount - 1 ) ? lastChunkDurationUs : chunkStartTimesUs [ arg0 + 1 ] - chunkStartTimesUs [ arg0 ] ; }
gets the duration of the specified chunk . concode_field_sep int lookAheadCount concode_elem_sep int displayHeight concode_elem_sep int qualityLevels concode_elem_sep byte[] data concode_elem_sep int TYPE_TEXT concode_elem_sep String language concode_elem_sep int majorVersion concode_elem_sep int type concode_elem_sep ...
Map < String , EObject > function ( ) { return this . errorMsgs ; }
gets the error msgs . concode_field_sep boolean warnings concode_elem_sep Map<String,EObject> errorMsgs concode_elem_sep PiGraph graph concode_elem_sep boolean errors concode_elem_sep Map<String,EObject> warningMsgs concode_field_sep boolean checkGraph concode_elem_sep String getOkMsg concode_elem_sep boolean isWarning...
int function ( ) { return port ; }
retrieves the port number for this hostport object . concode_field_sep int port concode_elem_sep String host concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toString concode_elem_sep String getHost
boolean function ( int arg0 ) { return hasFlags ( arg0 , REQUEST_PROCESSING_SUCCESSFUL_CALLBACK ) ; }
test for the presence of the #request_processing_successful_callback flag . concode_field_sep int NO_FLAGS concode_elem_sep int REQUEST_PROCESSING_FAILED_CALLBACK concode_elem_sep int REQUEST_EVENT_UNREFERENCED_CALLBACK concode_elem_sep int SBB_PROCESSED_EVENT concode_elem_sep int SLEE_MAY_MARSHAL concode_elem_sep int ...
Comment function ( @ PathParam ( "srini_string" ) long arg0 , Comment arg1 ) { return commentService . addComment ( arg0 , arg1 ) ; }
use of http post method to access data this method will add a new comment for a message concode_field_sep CommentService commentService concode_field_sep String getComment concode_elem_sep List<Comment> getComment concode_elem_sep Comment updateComment concode_elem_sep Comment updateComment
String function ( String arg0 ) { return arg0 + "srini_string" + currentElapsedTime ( ) + "srini_string" ; }
retrieves prefix + '' in '' + elapsedtime + '' ms. '' concode_field_sep boolean running concode_elem_sep long total concode_elem_sep long startTime concode_elem_sep long lastStart concode_field_sep void zero concode_elem_sep long currentElapsedTime concode_elem_sep void stop concode_elem_sep void start concode_elem_sep...
ContinuousFunction function ( ) { return this . dmop2_g ; }
returns the g function that is used in the dmop2 problem . concode_field_sep int n_t concode_elem_sep long serialVersionUID concode_elem_sep int tau concode_elem_sep ContinuousFunction dmop2_f1 concode_elem_sep int tau_t concode_elem_sep FunctionOptimisationProblem dmop2_g_problem concode_elem_sep ContinuousFunction dm...
void function ( OptionStatus arg0 ) { this . status = arg0 ; }
the status of domain configuration option . concode_field_sep IndexField options concode_elem_sep OptionStatus status concode_field_sep IndexFieldStatus withStatus concode_elem_sep IndexFieldStatus withOptions concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep IndexFieldStatus clone concode_...
Builder function ( int arg0 ) { this . port = arg0 ; return this ; }
sets port . concode_field_sep int database concode_elem_sep String password concode_elem_sep int port concode_elem_sep int database concode_elem_sep String host concode_elem_sep int port concode_elem_sep int timeout concode_elem_sep int timeout concode_elem_sep String host concode_field_sep Builder setHost concode_elem...
boolean function ( ) { return metadataType == Type . VIRTUAL ; }
check whether this group is virtual concode_field_sep int LOCAL_CACHE_SIZE concode_elem_sep TableData data concode_elem_sep List<List<TempMetadataID>> keys concode_elem_sep long lastDataModification concode_elem_sep Class<?> type concode_elem_sep boolean accessed concode_elem_sep int cardinality concode_elem_sep long c...
void function ( final String arg0 , boolean arg1 ) { webView . loadUrl ( arg0 ) ; }
load the url into the webview . concode_field_sep PluginManager pluginManager concode_elem_sep CordovaInterface cordova concode_elem_sep BroadcastReceiver receiver concode_elem_sep SystemWebView webView concode_elem_sep CordovaWebView parentWebView concode_elem_sep CordovaWebViewEngine.Client client concode_elem_sep Co...
void function ( BroadcastReceiver arg0 ) { LocalBroadcastManager . getInstance ( context ) . registerReceiver ( arg0 , new IntentFilter ( RateService . INTENT_SERVICE_DONE ) ) ; }
add a broadcast receiver to listen for asynchronous rate imports . concode_field_sep RateServiceScheduler scheduler concode_elem_sep RateAvailableTime timer concode_elem_sep CurrencyRepository currencyRepository concode_elem_sep Context context concode_elem_sep RateImportPrecondition precondition concode_field_sep void...
void function ( String arg0 , Object ... arg1 ) { out . printf ( LOCALE , arg0 , arg1 ) ; out . flush ( ) ; }
prints a formatted string to this output stream , using the specified format string and arguments , and then flushes this output stream . concode_field_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep PrintWriter out concode_field_sep void println concode_elem_sep void println concode_elem_sep vo...
Set < String > function ( ) { return this . requestLocationSet ; }
returns the request locations in this context . concode_field_sep Set<String> screenLocationSet concode_elem_sep Set<String> requestLocationSet concode_elem_sep Set<String> serviceNameSet concode_elem_sep Set<String> targetLocationSet concode_elem_sep Set<String> entityNameSet concode_elem_sep Set<String> formLocationS...
void function ( int arg0 , int arg1 ) { erase ( ) ; height = arg0 ; width = arg1 ; draw ( ) ; }
change the size to the new size in pixels . size must be > = 0 . concode_field_sep int xPosition concode_elem_sep String color concode_elem_sep int yPosition concode_elem_sep int width concode_elem_sep boolean isVisible concode_elem_sep int height concode_field_sep void erase concode_elem_sep void changeColor concode_e...
int function ( ) { return state ; }
get linkset state concode_field_sep FastMap<String,Link> links concode_elem_sep String LINKSET_STATE concode_elem_sep FastMap<String,Link> loadedLinks concode_elem_sep int mode concode_elem_sep String LINKSET_NI concode_elem_sep int opc concode_elem_sep int ni concode_elem_sep String LINK concode_elem_sep String LINKSE...
byte [ ] function ( String arg0 ) { return Base16Lower . decode ( arg0 ) ; }
converts a hex-encoded data string to the original byte data . concode_field_sep PlaceHolder placeHolder concode_field_sep byte[] copyAllBytesFrom concode_elem_sep String toBase64 concode_elem_sep String toHex concode_elem_sep byte[] fromBase64 concode_elem_sep byte[] copyBytesFrom concode_elem_sep ByteArrayInputStream...
void function ( com . google . api . ads . dfp . axis . v201411 . MinuteOfHour arg0 ) { this . minute = arg0 ; }
sets the minute value for this timeofday . concode_field_sep java.lang.Integer hour concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolean __hashCodeCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep com.google.api.ads.dfp.axis.v201411.MinuteOfHour minute concode_field...
double function ( String arg0 , DistanceUnit arg1 ) { return parse ( arg0 , arg1 , this ) ; }
parses a given distance and converts it to this unit . concode_field_sep DistanceUnit unit concode_elem_sep String[] names concode_elem_sep double value concode_elem_sep DistanceUnit DEFAULT concode_elem_sep double meters concode_field_sep double getEarthCircumference concode_elem_sep double toMeters concode_elem_sep d...
ExampleOptions function ( boolean arg0 ) { this . excludeZeros = arg0 ; return this ; }
if this is true , all properties with the value 0 will be ignored . default : false concode_field_sep int START concode_elem_sep int END concode_elem_sep boolean excludeZeros concode_elem_sep int ANYWHERE concode_elem_sep Collection<String> excludeProps concode_elem_sep int likeMode concode_elem_sep boolean ignoreCase ...
String function ( ) { return ssn ; }
gets the value of the ssn property . concode_field_sep String firstName concode_elem_sep String lastName concode_elem_sep String taxID concode_elem_sep String businessName concode_elem_sep String originalAccountNumber concode_elem_sep long serialVersionUID concode_elem_sep String ssn concode_elem_sep String originalAcc...
void function ( Session arg0 ) { if ( logStatements ) { writeToLog ( arg0 , arg0 . getUser ( ) . getConnectStatement ( ) ) ; } }
records a log entry representing a new connection action on the specified session object . concode_field_sep Log log concode_elem_sep SimpleLog appLog concode_elem_sep boolean logStatements concode_elem_sep LockFile lf concode_elem_sep boolean syncFile concode_field_sep void checkpoint concode_elem_sep int getLogSize c...
String function ( int arg0 ) { SimpleDateFormat loc0 = new SimpleDateFormat ( DATE_TIME_FORMAT , Locale . ENGLISH ) ; return loc0 . format ( new Date ( arg0 * 1000L ) ) ; }
see http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_from-unixtime concode_field_sep String[] FORMAT_REPLACE concode_elem_sep String DATE_TIME_FORMAT concode_field_sep String date concode_elem_sep int unixTimestamp concode_elem_sep int unixTimestamp concode_elem_sep String convertToSimpleDat...
void function ( ) { }
this method resets the outgoing events . concode_field_sep boolean equal concode_elem_sep boolean not concode_elem_sep boolean or concode_elem_sep SCInterfaceImpl sCInterface concode_elem_sep boolean and concode_elem_sep int nextStateIndex concode_elem_sep boolean notequal concode_elem_sep boolean myBool2 concode_elem_...
ConsoleImpl function ( CommandProcessorImpl arg0 , ThreadIO arg1 , InputStream arg2 , PrintStream arg3 , PrintStream arg4 , Terminal arg5 ) { return new ConsoleImpl ( arg0 , arg1 , arg2 , arg3 , arg4 , arg5 , null , null , null , false ) ; }
allow sub classes of main to change the consoleimpl implementation used . concode_field_sep String application concode_elem_sep String user concode_field_sep String getApplication concode_elem_sep String getUser concode_elem_sep void addCommand concode_elem_sep void main concode_elem_sep void run concode_elem_sep void ...
Set < DatastreamInfo > function ( Datastream [ ] arg0 ) { Set < DatastreamInfo > loc0 = new HashSet < DatastreamInfo > ( arg0 . length ) ; for ( Datastream loc1 : arg0 ) { loc0 . add ( convertGenDatastreamDefToDatastreamInfo ( loc1 ) ) ; } return loc0 ; }
convert an array of wsdl-style datastream s into a set oflocal datastreaminfo objects . concode_field_sep PlaceHolder placeHolder concode_field_sep org.fcrepo.server.types.gen.FieldSearchQuery convertFieldSearchQueryToGenFieldSearchQuery concode_elem_sep List<RelationshipInfo> convertGenRelsTupleArrayToRelationshipInfo...
boolean function ( ) { return this . depthFirst ; }
should directory tree be traversed depth first ? concode_field_sep boolean followArgLink concode_elem_sep Configuration configuration concode_elem_sep int maxDepth concode_elem_sep CommandFactory commandFactory concode_elem_sep PrintStream err concode_elem_sep InputStream in concode_elem_sep long startTime concode_elem...
void function ( Container arg0 ) { }
sets the endwindow attribute of the jmetertreelistener object . concode_field_sep JTree tree concode_elem_sep TreePath currentPath concode_elem_sep JMeterTreeModel model concode_elem_sep Logger log concode_elem_sep ActionListener actionHandler concode_field_sep void keyPressed concode_elem_sep void valueChanged concode...
T function ( T arg0 ) { return Platform . reserialize ( arg0 ) ; }
serializes and deserializes the specified object . gwt warning : under gwt , this method simply returns its input , as proper gwt serialization tests require more setup . this no-op behavior allows test authors to intersperse serializabletester calls withother , gwt-compatible tests . note that the specified object may...
void function ( double arg0 ) { this . valueLow = arg0 ; }
sets the low value of this interval . concode_field_sep double valueLow concode_elem_sep Color color concode_elem_sep double valueHigh concode_elem_sep List<InternalMapObject> members concode_field_sep void addMember concode_elem_sep void setColor concode_elem_sep double getValueLow concode_elem_sep void setValueHigh c...
Object function ( ) { if ( object == null ) { object = Convert . thriftToJava ( data ) ; } return object ; }
return the java object that is represented by this value . concode_field_sep Value POSITIVE_INFINITY concode_elem_sep int CONSTANT_SIZE concode_elem_sep TObject data concode_elem_sep Value NEGATIVE_INFINITY concode_elem_sep Object object concode_elem_sep ByteBuffer bytes concode_field_sep int compare concode_elem_sep i...
String function ( ) { StringBuilder loc0 = new StringBuilder ( ) ; loc0 . append ( "srini_string" ) ; if ( getWorkflowId ( ) != null ) loc0 . append ( "srini_string" + getWorkflowId ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; }
returns a string representation of this object ; useful for testing and debugging . concode_field_sep String workflowId concode_field_sep WorkflowExecutionFilter withWorkflowId concode_elem_sep String getWorkflowId concode_elem_sep void setWorkflowId concode_elem_sep int hashCode concode_elem_sep boolean equals concode...
void function ( String arg0 , String arg1 ) { if ( LOG . VERBOSE >= LOGLEVEL ) Log . v ( arg0 , arg1 ) ; }
verbose log message . concode_field_sep int WARN concode_elem_sep int VERBOSE concode_elem_sep int ERROR concode_elem_sep int LOGLEVEL concode_elem_sep int DEBUG concode_elem_sep int INFO concode_field_sep boolean isLoggable concode_elem_sep void d concode_elem_sep void d concode_elem_sep void d concode_elem_sep void s...
ModuleDefinitionResource function ( @ PathVariable ( "srini_string" ) ModuleType arg0 , @ PathVariable ( "srini_string" ) String arg1 , @ RequestParam ( value = "srini_string" , defaultValue = "srini_string" ) boolean arg2 , @ RequestBody byte [ ] arg3 ) { ModuleDefinition loc0 = moduleDefinitionService . upload ( arg1...
create install a new module , by way of uploading a module archive . concode_field_sep DetailedModuleDefinitionResourceAssembler detailedAssembler concode_elem_sep ModuleDefinitionService moduleDefinitionService concode_elem_sep ModuleDefinitionResourceAssembler simpleAssembler concode_field_sep ModuleDefinitionResourc...
Layout function ( ) { return layout ; }
gets the value of the layout property . concode_field_sep Layout layout concode_elem_sep String mapping concode_elem_sep List<Address> address concode_elem_sep String styling concode_elem_sep String flavour concode_elem_sep Label label concode_elem_sep String align concode_field_sep String getMapping concode_elem_sep L...
boolean function ( ) { return false ; }
check whether a node can be compiled to bytecode . the reasoning in each node may be different but will typically involve checking whether the exit type descriptor of the node is known and any relevant child nodes are compilable . concode_field_sep SpelNodeImpl parent concode_elem_sep SpelNodeImpl[] NO_CHILDREN concode...
void function ( ) { ContourEntity loc0 = new ContourEntity ( new Rectangle2D . Double ( 1.0 , 2.0 , 3.0 , 4.0 ) , "srini_string" , "srini_string" ) ; ContourEntity loc1 = ( ContourEntity ) loc0 . clone ( ) ; assertTrue ( loc0 != loc1 ) ; assertTrue ( loc0 . getClass ( ) == loc1 . getClass ( ) ) ; assertTrue ( loc0 . eq...
confirm that cloning works . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSerialization concode_elem_sep void testEquals
void function ( BigDecimal arg0 ) { this . discRate = arg0 ; }
sets the value of the discrate property . concode_field_sep BigDecimal discValue concode_elem_sep BigDecimal wOffRate concode_elem_sep BigDecimal remValue concode_elem_sep String currCode concode_elem_sep BigDecimal wOffValue concode_elem_sep BigDecimal partMatchRate concode_elem_sep BigDecimal matchValue concode_elem_...
boolean function ( int arg0 ) { if ( arg0 % 4 != 0 ) return false ; if ( arg0 < GREGORIAN_START_YEAR ) return true ; return ( arg0 % 100 != 0 ) || ( arg0 % 400 == 0 ) ; }
tests if a year is a leap year . concode_field_sep int date concode_elem_sep int GREGORIAN_START_YEAR concode_elem_sep int[] DAYS_PER_MONTH concode_elem_sep int month concode_elem_sep int year concode_elem_sep int JULIAN_END_DAY concode_elem_sep int GREGORIAN_START_DAY concode_elem_sep int GREGORIAN_START_MONTH concode...
AlgorithmParameters function ( ) { return paramGenSpi . engineGenerateParameters ( ) ; }
generates the parameters . concode_field_sep Provider provider concode_elem_sep AlgorithmParameterGeneratorSpi paramGenSpi concode_elem_sep String algorithm concode_field_sep void init concode_elem_sep void init concode_elem_sep void init concode_elem_sep void init concode_elem_sep String getAlgorithm concode_elem_sep ...
boolean function ( ExpressionOwner arg0 , UnionPathIterator arg1 ) { return true ; }
visit a unionpath . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean visitLocationPath concode_elem_sep boolean visitVariableRef concode_elem_sep boolean visitBinaryOperation concode_elem_sep boolean visitUnaryOperation concode_elem_sep boolean visitFunction concode_elem_sep boolean visitUnionPattern...
String function ( String arg0 ) { return filter ( arg0 , null ) ; }
when no language is passed , use null and let implementation decide what to do concode_field_sep String wordSeparator concode_elem_sep boolean stripInitialArticle concode_field_sep String[] getArticleWords concode_elem_sep String extractText