Code_Function
stringlengths
13
13.9k
Message
stringlengths
10
1.46k
public synchronized void addDataStatusListener ( DataStatusListener l ) { m_mTab . addDataStatusListener ( l ) ; }
Add Data Status Listener - pass on to MTab
protected void addField ( DurationFieldType field , int value ) { addFieldInto ( iValues , field , value ) ; }
Adds the value of a field in this period .
@ Override public int perimeter ( int size ) { size = size / 2 ; int retval = sw . perimeter ( size ) ; retval += se . perimeter ( size ) ; retval += ne . perimeter ( size ) ; retval += nw . perimeter ( size ) ; return retval ; }
Compute the perimeter for a grey node using Samet 's algorithm .
public BigdataStatementIterator addedIterator ( ) { final IChunkedOrderedIterator < ISPO > src = new ChunkedWrappedIterator < ISPO > ( added . iterator ( ) ) ; return new BigdataStatementIteratorImpl ( kb , src ) . start ( kb . getExecutorService ( ) ) ; }
Return iterator visiting the inferences that were added to the KB .
public < V extends Object , C extends RTSpan < V > > void applyEffect ( Effect < V , C > effect , V value ) { if ( mUseRTFormatting && ! mIsSelectionChanging && ! mIsSaving ) { Spannable oldSpannable = mIgnoreTextChanges ? null : cloneSpannable ( ) ; effect . applyToSelection ( this , value ) ; synchronized ( this ) { if ( mListener != null && ! mIgnoreTextChanges ) { Spannable newSpannable = cloneSpannable ( ) ; mListener . onTextChanged ( this , oldSpannable , newSpannable , getSelectionStart ( ) , getSelectionEnd ( ) , getSelectionStart ( ) , getSelectionEnd ( ) ) ; } mLayoutChanged = true ; } } }
Call this to have an effect applied to the current selection . You get the Effect object via the static data members ( e.g. , RTEditText.BOLD ) . The value for most effects is a Boolean , indicating whether to add or remove the effect .
public DefaultLmlParser ( final LmlData data , final LmlSyntax syntax , final LmlTemplateReader templateReader , final boolean strict ) { super ( data , syntax , templateReader , new DefaultLmlStyleSheet ( ) , strict ) ; }
Creates a new parser with custom syntax , reader and strict setting .
private static void populateFancy ( SQLiteDatabase writableDb ) { long startOfToday = DateUtil . parse ( DateUtil . format ( System . currentTimeMillis ( ) ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Clothes" , "New jeans" , 10000 , startOfToday , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Flat / House" , "Monthly rent" , 35000 , startOfToday , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Grocery" , "Fruits & vegetables" , 3567 , DateUtil . parse ( "19/08/2015" ) , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Fuel" , "Full gas tank" , 7590 , DateUtil . parse ( "14/08/2015" ) , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Clothes" , "New shirt" , 3599 , DateUtil . parse ( "11/08/2015" ) , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Restaurant" , "Family get together" , 3691 , DateUtil . parse ( "05/08/2015" ) , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_INCOME , "Salary" , "" , 90000 , DateUtil . parse ( "31/07/2015" ) , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Personal care" , "New perfume" , 3865 , DateUtil . parse ( "29/07/2015" ) , Item . NO_ID ) ) ; ItemDao . saveItem ( writableDb , new Item ( Item . TYPE_EXPENSE , "Grocery" , "Bottle of milk" , 345 , DateUtil . parse ( "26/07/2015" ) , Item . NO_ID ) ) ; }
Generates reasonable amount of good-looking income / expense items .
public TestEntity ( int index , String text , String value , double minConfidence ) { super ( index , text ) ; this . value = value ; this . minConfidence = minConfidence ; }
New instance , with a value .
public boolean contains ( JComponent a , int b , int c ) { boolean returnValue = ( ( ComponentUI ) ( uis . elementAt ( 0 ) ) ) . contains ( a , b , c ) ; for ( int i = 1 ; i < uis . size ( ) ; i ++ ) { ( ( ComponentUI ) ( uis . elementAt ( i ) ) ) . contains ( a , b , c ) ; } return returnValue ; }
Invokes the < code > contains < /code > method on each UI handled by this object .
public boolean isClosed ( ) { return closed ; }
Returns true if this contour path is closed ( loops back on itself ) or false if it is not .
public void store ( float val , Offset offset ) { this . plus ( offset ) . store ( val ) ; }
Stores the float value in the memory location pointed to by the current instance .
public List < IvrZone > showIvrZones ( boolean active ) throws NetworkDeviceControllerException { List < IvrZone > zones = new ArrayList < IvrZone > ( ) ; SSHPrompt [ ] prompts = { SSHPrompt . POUND , SSHPrompt . GREATER_THAN } ; StringBuilder buf = new StringBuilder ( ) ; String cmdKey = active ? "MDSDialog.ivr.show.zone.active.cmd" : "MDSDialog.ivr.show.zone.cmd" ; sendWaitFor ( MDSDialogProperties . getString ( cmdKey ) , defaultTimeout , prompts , buf ) ; String [ ] lines = getLines ( buf ) ; IvrZone zone = null ; IvrZoneMember member = null ; String [ ] regex = { MDSDialogProperties . getString ( "MDSDialog.ivr.showZoneset.zone.name.match" ) , MDSDialogProperties . getString ( "MDSDialog.ivr.showZoneset.zone.member.match" ) } ; String [ ] groups = new String [ 10 ] ; for ( String line : lines ) { int index = match ( line , regex , groups ) ; switch ( index ) { case 0 : zone = new IvrZone ( groups [ 0 ] ) ; zones . add ( zone ) ; break ; case 1 : member = new IvrZoneMember ( groups [ 0 ] , Integer . valueOf ( groups [ 3 ] ) ) ; zone . getMembers ( ) . add ( member ) ; break ; } } return zones ; }
Get switch ivr zones
public static void append ( File file , Reader reader , String charset ) throws IOException { append ( file , reader , charset , false ) ; }
Append the text supplied by the Reader at the end of the File without writing a BOM , using a specified encoding .
public static LifetimeAttribute createLifetimeAttribute ( int lifetime ) { LifetimeAttribute attribute = new LifetimeAttribute ( ) ; attribute . setLifetime ( lifetime ) ; return attribute ; }
Create a LifetimeAttribute .
public void testFilePrimary ( ) throws Exception { start ( ) ; igfsPrimary . create ( FILE , true ) . close ( ) ; checkEvictionPolicy ( 0 , 0 ) ; int blockSize = igfsPrimary . info ( FILE ) . blockSize ( ) ; append ( FILE , blockSize ) ; checkEvictionPolicy ( 0 , 0 ) ; read ( FILE , 0 , blockSize ) ; checkEvictionPolicy ( 0 , 0 ) ; }
Test how evictions are handled for a file working in PRIMARY mode .
public static String createTestPtStationCSVFile ( File file ) { try ( BufferedWriter bw = new BufferedWriter ( new FileWriter ( file ) ) ) { bw . write ( "id,x,y" ) ; bw . newLine ( ) ; bw . write ( "1,10,10" ) ; bw . newLine ( ) ; bw . write ( "2,10, 190" ) ; bw . newLine ( ) ; bw . write ( "3,190,190" ) ; bw . newLine ( ) ; bw . write ( "4,190,10" ) ; bw . newLine ( ) ; return file . getCanonicalPath ( ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } }
This method creates 4 pt stops for the test network from createTestNetwork ( ) . The information about the coordinates will be written to a csv file . The 4 pt stops are located as a square in the coordinate plane with a side length of 180 meter ( see the sketch below ) .
@ Override public int hashCode ( ) { int result = super . hashCode ( ) ; return result ; }
Returns a hash code for the renderer .
@ Override public void eUnset ( int featureID ) { switch ( featureID ) { case SGenPackage . FEATURE_TYPE__DEPRECATED : setDeprecated ( DEPRECATED_EDEFAULT ) ; return ; case SGenPackage . FEATURE_TYPE__COMMENT : setComment ( COMMENT_EDEFAULT ) ; return ; case SGenPackage . FEATURE_TYPE__PARAMETERS : getParameters ( ) . clear ( ) ; return ; case SGenPackage . FEATURE_TYPE__OPTIONAL : setOptional ( OPTIONAL_EDEFAULT ) ; return ; } super . eUnset ( featureID ) ; }
< ! -- begin-user-doc -- > < ! -- end-user-doc -- >
public boolean isVMAX3VolumeCompressionEnabled ( URI blockObjectURI ) { VirtualPool virtualPool = null ; Volume volume = null ; if ( URIUtil . isType ( blockObjectURI , Volume . class ) ) { volume = _dbClient . queryObject ( Volume . class , blockObjectURI ) ; } else if ( URIUtil . isType ( blockObjectURI , BlockSnapshot . class ) ) { BlockSnapshot snapshot = _dbClient . queryObject ( BlockSnapshot . class , blockObjectURI ) ; volume = _dbClient . queryObject ( Volume . class , snapshot . getParent ( ) ) ; } else if ( URIUtil . isType ( blockObjectURI , BlockMirror . class ) ) { BlockMirror mirror = _dbClient . queryObject ( BlockMirror . class , blockObjectURI ) ; virtualPool = _dbClient . queryObject ( VirtualPool . class , mirror . getVirtualPool ( ) ) ; } if ( volume != null ) { virtualPool = _dbClient . queryObject ( VirtualPool . class , volume . getVirtualPool ( ) ) ; } return ( ( virtualPool != null ) && virtualPool . getCompressionEnabled ( ) ) ; }
This method is will check if the volume associated with virtual Pool has compression enabled .
public void releaseConnection ( Database conn ) { if ( conn != null ) conn . close ( ) ; }
Releases a connection .
public final void testRemoveHelperTextId ( ) { PasswordEditText passwordEditText = new PasswordEditText ( getContext ( ) ) ; passwordEditText . addHelperTextId ( android . R . string . cancel ) ; passwordEditText . addHelperTextId ( android . R . string . copy ) ; passwordEditText . removeHelperTextId ( android . R . string . cancel ) ; passwordEditText . removeHelperTextId ( android . R . string . cancel ) ; assertEquals ( 1 , passwordEditText . getHelperTexts ( ) . size ( ) ) ; assertEquals ( getContext ( ) . getText ( android . R . string . copy ) , passwordEditText . getHelperTexts ( ) . iterator ( ) . next ( ) ) ; }
Tests the functionality of the method , which allows to remove a helper text by its id .
private void logMessage ( String msg , Object [ ] obj ) { if ( getMonitoringPropertiesLoader ( ) . isToLogIndications ( ) ) { _logger . debug ( msg , obj ) ; } }
Log the messages . This method eliminates the logging condition check every time when we need to log a message .
public static Float toRef ( float f ) { return new Float ( f ) ; }
cast a float value to his ( CFML ) reference type Float
@ Override protected boolean shouldComposeCreationImage ( ) { return true ; }
< ! -- begin-user-doc -- > < ! -- end-user-doc -- >
public synchronized void promote ( Tile tile ) { if ( tileQueue . contains ( tile ) ) { try { tileQueue . remove ( tile ) ; tile . setPriority ( Tile . Priority . High ) ; tileQueue . put ( tile ) ; } catch ( Exception ex ) { ex . printStackTrace ( ) ; } } }
Increase the priority of this tile so it will be loaded sooner .
public void exitApp ( ) { this . webView . getPluginManager ( ) . postMessage ( "exit" , null ) ; }
Exit the Android application .
public void test_getInnerCause01_reject_otherType ( ) { Throwable t = new Throwable ( ) ; assertNull ( getInnerCause ( t , Exception . class ) ) ; }
Does not find cause when it is on top of the stack trace and not either the desired type or a subclass of the desired type .
public Handshake handshake ( ) { return handshake ; }
Returns the TLS handshake of the connection that carried this response , or null if the response was received without TLS .
private Coordinate averagePoint ( CoordinateSequence seq ) { Coordinate a = new Coordinate ( 0 , 0 , 0 ) ; int n = seq . size ( ) ; for ( int i = 0 ; i < n ; i ++ ) { a . x += seq . getOrdinate ( i , CoordinateSequence . X ) ; a . y += seq . getOrdinate ( i , CoordinateSequence . Y ) ; a . z += seq . getOrdinate ( i , CoordinateSequence . Z ) ; } a . x /= n ; a . y /= n ; a . z /= n ; return a ; }
Computes a point which is the average of all coordinates in a sequence . If the sequence lies in a single plane , the computed point also lies in the plane .
public static void invokeWebserviceASync ( WSDefinition def , SuccessCallback scall , FailureCallback fcall , Object ... arguments ) { WSConnection cr = new WSConnection ( def , scall , fcall , arguments ) ; NetworkManager . getInstance ( ) . addToQueue ( cr ) ; }
Invokes a web asynchronously and calls the callback on completion
public PutResponseMessage ( PutResponseMessage other ) { if ( other . isSetHeader ( ) ) { this . header = new AsyncMessageHeader ( other . header ) ; } }
Performs a deep copy on < i > other < /i > .
private boolean isSynthetic ( Method m ) { if ( ( m . getAccessFlags ( ) & Constants . ACC_SYNTHETIC ) != 0 ) { return true ; } Attribute [ ] attrs = m . getAttributes ( ) ; for ( Attribute attr : attrs ) { if ( attr instanceof Synthetic ) { return true ; } } return false ; }
Methods marked with the `` Synthetic '' attribute do not appear in the source code
public boolean isTagline ( ) { return tagline ; }
Checks if is tagline .
protected LocaTable ( TrueTypeFont ttf ) { super ( TrueTypeTable . LOCA_TABLE ) ; MaxpTable maxp = ( MaxpTable ) ttf . getTable ( "maxp" ) ; int numGlyphs = maxp . getNumGlyphs ( ) ; HeadTable head = ( HeadTable ) ttf . getTable ( "head" ) ; short format = head . getIndexToLocFormat ( ) ; isLong = ( format == 1 ) ; offsets = new int [ numGlyphs + 1 ] ; }
Creates a new instance of HmtxTable
public static < T > T create ( Class < T > theQueryClass ) { return AgentClass . createAgent ( theQueryClass ) ; }
Create a database query dynamically
@ DSComment ( "From safe class list" ) @ DSSafe ( DSCat . SAFE_LIST ) @ DSGenerator ( tool_name = "Doppelganger" , tool_version = "2.0" , generated_on = "2013-12-30 13:02:44.163 -0500" , hash_original_method = "CE28B7D5A93F674A0286463AAF68C789" , hash_generated_method = "4C5D61097E13A407D793E43190510D41" ) public synchronized void addFailure ( Test test , AssertionFailedError t ) { fFailures . addElement ( new TestFailure ( test , t ) ) ; for ( Enumeration e = cloneListeners ( ) . elements ( ) ; e . hasMoreElements ( ) ; ) { ( ( TestListener ) e . nextElement ( ) ) . addFailure ( test , t ) ; } }
Adds a failure to the list of failures . The passed in exception caused the failure .
public ExtendedKeyUsage ( byte [ ] encoding ) { super ( encoding ) ; }
Creates the extension object on the base of its encoded form .
public Iterator < E > subsetIterator ( E from , E to ) { return new BinarySearchTreeIterator < E > ( this . root , from , to ) ; }
Returns the in-order ( ascending ) iterator .
public int valueForXPosition ( int xPos ) { int value ; int minValue = slider . getMinimum ( ) ; int maxValue = slider . getMaximum ( ) ; int trackLeft = trackRect . x + thumbRect . width / 2 + trackBorder ; int trackRight = trackRect . x + trackRect . width - thumbRect . width / 2 - trackBorder ; int trackLength = trackRight - trackLeft ; if ( xPos <= trackLeft ) { value = drawInverted ( ) ? maxValue : minValue ; } else if ( xPos >= trackRight ) { value = drawInverted ( ) ? minValue : maxValue ; } else { int distanceFromTrackLeft = xPos - trackLeft ; double valueRange = ( double ) maxValue - ( double ) minValue ; double valuePerPixel = valueRange / ( double ) trackLength ; int valueFromTrackLeft = ( int ) Math . round ( distanceFromTrackLeft * valuePerPixel ) ; value = drawInverted ( ) ? maxValue - valueFromTrackLeft : minValue + valueFromTrackLeft ; } return value ; }
Returns a value give an x position . If xPos is past the track at the left or the right it will set the value to the min or max of the slider , depending if the slider is inverted or not .
@ Override protected EClass eStaticClass ( ) { return SRuntimePackage . Literals . COMPOSITE_SLOT ; }
< ! -- begin-user-doc -- > < ! -- end-user-doc -- >
public static void main ( final String [ ] args ) { DOMTestCase . doMain ( documentcreateattributeNS03 . class , args ) ; }
Runs this test from the command line .
public ListIterator < AbstractInsnNode > iterator ( ) { return iterator ( 0 ) ; }
Returns an iterator over the instructions in this list .
public static String escapeXml ( String str ) { if ( str == null ) { return null ; } return EntitiesUtils . XML . escape ( str ) ; }
< p > Escapes the characters in a < code > String < /code > using XML entities. < /p > < p > For example : < tt > '' bread '' & `` butter '' < /tt > = > < tt > & amp ; quot ; bread & amp ; quot ; & amp ; amp ; & amp ; quot ; butter & amp ; quot ; < /tt > . < /p > < p > Supports only the five basic XML entities ( gt , lt , quot , amp , apos ) . Does not support DTDs or external entities. < /p > < p > Note that unicode characters greater than 0x7f are currently escaped to their numerical \\u equivalent . This may change in future releases . < /p >
public boolean isProcessed ( ) { Object oo = get_Value ( COLUMNNAME_Processed ) ; if ( oo != null ) { if ( oo instanceof Boolean ) return ( ( Boolean ) oo ) . booleanValue ( ) ; return "Y" . equals ( oo ) ; } return false ; }
Get Processed .
public void processResponse ( SIPResponse response , MessageChannel incomingMessageChannel , SIPDialog dialog ) { if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logDebug ( "PROCESSING INCOMING RESPONSE" + response . encodeMessage ( ) ) ; } if ( listeningPoint == null ) { if ( sipStack . isLoggingEnabled ( ) ) sipStack . getStackLogger ( ) . logError ( "Dropping message: No listening point" + " registered!" ) ; return ; } if ( sipStack . checkBranchId ( ) && ! Utils . getInstance ( ) . responseBelongsToUs ( response ) ) { if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logError ( "Dropping response - topmost VIA header does not originate from this stack" ) ; } return ; } SipProviderImpl sipProvider = listeningPoint . getProvider ( ) ; if ( sipProvider == null ) { if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logError ( "Dropping message: no provider" ) ; } return ; } if ( sipProvider . getSipListener ( ) == null ) { if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logError ( "No listener -- dropping response!" ) ; } return ; } SIPClientTransaction transaction = ( SIPClientTransaction ) this . transactionChannel ; SipStackImpl sipStackImpl = sipProvider . sipStack ; if ( sipStack . isLoggingEnabled ( ) ) { sipStackImpl . getStackLogger ( ) . logDebug ( "Transaction = " + transaction ) ; } if ( transaction == null ) { if ( dialog != null ) { if ( response . getStatusCode ( ) / 100 != 2 ) { if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logDebug ( "Response is not a final response and dialog is found for response -- dropping response!" ) ; } return ; } else if ( dialog . getState ( ) == DialogState . TERMINATED ) { if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logDebug ( "Dialog is terminated -- dropping response!" ) ; } return ; } else { boolean ackAlreadySent = false ; if ( dialog . isAckSeen ( ) && dialog . getLastAckSent ( ) != null ) { if ( dialog . getLastAckSent ( ) . getCSeq ( ) . getSeqNumber ( ) == response . getCSeq ( ) . getSeqNumber ( ) ) { ackAlreadySent = true ; } } if ( ackAlreadySent && response . getCSeq ( ) . getMethod ( ) . equals ( dialog . getMethod ( ) ) ) { try { if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logDebug ( "Retransmission of OK detected: Resending last ACK" ) ; } dialog . resendAck ( ) ; return ; } catch ( SipException ex ) { if ( sipStack . isLoggingEnabled ( ) ) sipStack . getStackLogger ( ) . logError ( "could not resend ack" , ex ) ; } } } } if ( sipStack . isLoggingEnabled ( ) ) { sipStack . getStackLogger ( ) . logDebug ( "could not find tx, handling statelessly Dialog = " + dialog ) ; } ResponseEventExt sipEvent = new ResponseEventExt ( sipProvider , transaction , dialog , ( Response ) response ) ; if ( response . getCSeqHeader ( ) . getMethod ( ) . equals ( Request . INVITE ) ) { SIPClientTransaction forked = this . sipStack . getForkedTransaction ( response . getTransactionId ( ) ) ; sipEvent . setOriginalTransaction ( forked ) ; } sipProvider . handleEvent ( sipEvent , transaction ) ; return ; } ResponseEventExt responseEvent = null ; responseEvent = new ResponseEventExt ( sipProvider , ( ClientTransactionExt ) transaction , dialog , ( Response ) response ) ; if ( response . getCSeqHeader ( ) . getMethod ( ) . equals ( Request . INVITE ) ) { SIPClientTransaction forked = this . sipStack . getForkedTransaction ( response . getTransactionId ( ) ) ; responseEvent . setOriginalTransaction ( forked ) ; } if ( dialog != null && response . getStatusCode ( ) != 100 ) { dialog . setLastResponse ( transaction , response ) ; transaction . setDialog ( dialog , dialog . getDialogId ( ) ) ; } sipProvider . handleEvent ( responseEvent , transaction ) ; }
Process the response .
public AnnotationAtttributeProposalInfo ( IJavaProject project , CompletionProposal proposal ) { super ( project , proposal ) ; }
Creates a new proposal info .
public static void restoreReminderPreference ( Context context ) { int hour = MehPreferencesManager . getNotificationPreferenceHour ( context ) ; int minute = MehPreferencesManager . getNotificationPreferenceMinute ( context ) ; scheduleDailyReminder ( context , hour , minute ) ; }
Restore the daily reminder , with the times already in preferences . Useful for device reboot or switched on from the settings screen
@ Override public boolean isActive ( ) { return amIActive ; }
Used by the Whitebox GUI to tell if this plugin is still running .
BarChart ( ) { }
Instantiates a new bar chart .
public boolean isTransactionRelevant ( Transaction tx ) throws ScriptException { lock . lock ( ) ; try { return tx . getValueSentFromMe ( this ) . signum ( ) > 0 || tx . getValueSentToMe ( this ) . signum ( ) > 0 || ! findDoubleSpendsAgainst ( tx , transactions ) . isEmpty ( ) ; } finally { lock . unlock ( ) ; } }
< p > Returns true if the given transaction sends coins to any of our keys , or has inputs spending any of our outputs , and also returns true if tx has inputs that are spending outputs which are not ours but which are spent by pending transactions. < /p > < p > Note that if the tx has inputs containing one of our keys , but the connected transaction is not in the wallet , it will not be considered relevant. < /p >
public void free ( GL2 gl ) { if ( vbos [ 0 ] >= 0 ) { gl . glDeleteBuffers ( 1 , vbos , 0 ) ; } vbos [ 0 ] = - 1 ; }
Free all memory allocations .
public Vector3 ( float x , float y , float z ) { this . set ( x , y , z ) ; }
Creates a vector with the given components
protected S_ActionImpl ( ) { super ( ) ; }
< ! -- begin-user-doc -- > < ! -- end-user-doc -- >
public void clear ( int maximumCapacity ) { if ( capacity <= maximumCapacity ) { clear ( ) ; return ; } zeroValue = null ; hasZeroValue = false ; size = 0 ; resize ( maximumCapacity ) ; }
Clears the map and reduces the size of the backing arrays to be the specified capacity if they are larger .
public void bulkLoad ( DBIDs ids ) { if ( ids . size ( ) == 0 ) { return ; } assert ( root == null ) : "Tree already initialized." ; DBIDIter it = ids . iter ( ) ; DBID first = DBIDUtil . deref ( it ) ; ModifiableDoubleDBIDList candidates = DBIDUtil . newDistanceDBIDList ( ids . size ( ) - 1 ) ; for ( it . advance ( ) ; it . valid ( ) ; it . advance ( ) ) { candidates . add ( distance ( first , it ) , it ) ; } root = bulkConstruct ( first , Integer . MAX_VALUE , candidates ) ; }
Bulk-load the index .
protected ExtendedSolrQueryParser createEdismaxQueryParser ( QParser qParser , String field ) { return new ExtendedSolrQueryParser ( qParser , field ) ; }
Creates an instance of ExtendedSolrQueryParser , the query parser that 's going to be used to parse the query .
protected void appendSummary ( StringBuffer buffer , String fieldName , long [ ] array ) { appendSummarySize ( buffer , fieldName , array . length ) ; }
< p > Append to the < code > toString < /code > a summary of a < code > long < /code > array. < /p >
protected UndoableEdit editToBeRedone ( ) { int count = edits . size ( ) ; int i = indexOfNextAdd ; while ( i < count ) { UndoableEdit edit = edits . elementAt ( i ++ ) ; if ( edit . isSignificant ( ) ) { return edit ; } } return null ; }
Returns the the next significant edit to be redone if < code > redo < /code > is invoked . This returns < code > null < /code > if there are no edits to be redone .
public void actionPerformed ( ActionEvent e ) { Box b1 = Box . createVerticalBox ( ) ; Version currentVersion = Version . currentViewableVersion ( ) ; String copyright = LicenseUtils . copyright ( ) ; copyright = copyright . replaceAll ( "\n" , "<br>" ) ; String latestVersion = LatestClient . getInstance ( ) . getLatestResult ( 60 ) ; latestVersion = latestVersion . replaceAll ( "\n" , "<br>" ) ; JLabel label = new JLabel ( ) ; label . setText ( "<html>" + "<b>Tetrad " + currentVersion + "</b>" + "<br>" + "<br>Laboratory for Symbolic and Educational Computing" + "<br>Department of Philosophy" + "<br>Carnegie Mellon University" + "<br>" + "<br>Project Direction: Clark Glymour, Richard Scheines, Peter Spirtes" + "<br>Lead Developer: Joseph Ramsey" + "<br>" + copyright + "<br>" + latestVersion + "</html>" ) ; label . setBackground ( Color . LIGHT_GRAY ) ; label . setFont ( new Font ( "Dialog" , Font . PLAIN , 12 ) ) ; label . setBorder ( new CompoundBorder ( new LineBorder ( Color . DARK_GRAY ) , new EmptyBorder ( 10 , 10 , 10 , 10 ) ) ) ; b1 . add ( label ) ; JOptionPane . showMessageDialog ( JOptionUtils . centeringComp ( ) , b1 , "About Tetrad..." , JOptionPane . PLAIN_MESSAGE ) ; }
Closes the frontmost session of this action 's desktop .
private void redrawMarkers ( ) { UI . execute ( null ) ; }
Redraw all markers and set them straight to their current locations without animations .
public void addToolTipSeries ( List toolTips ) { this . toolTipSeries . add ( toolTips ) ; }
Adds a list of tooltips for a series .
static private String [ ] alphaMixedNumeric ( ) { return StringFunctions . combineStringArrays ( StringFunctions . alphaMixed ( ) , StringFunctions . numeric ) ; }
Combine the alpha mixed and numeric collections into one
long incrementInMsgs ( ) { return inMsgs . incrementAndGet ( ) ; }
Increments the number of messages received on this connection .
public final void yyreset ( java . io . Reader reader ) { zzBuffer = s . array ; zzStartRead = s . offset ; zzEndRead = zzStartRead + s . count - 1 ; zzCurrentPos = zzMarkedPos = s . offset ; zzLexicalState = YYINITIAL ; zzReader = reader ; zzAtEOF = false ; }
Resets the scanner to read from a new input stream . Does not close the old reader . All internal variables are reset , the old input stream < b > can not < /b > be reused ( internal buffer is discarded and lost ) . Lexical state is set to < tt > YY_INITIAL < /tt > .
public IntArraySpliterator ( int [ ] array , int origin , int fence , int additionalCharacteristics ) { this . array = array ; this . index = origin ; this . fence = fence ; this . characteristics = additionalCharacteristics | Spliterator . SIZED | Spliterator . SUBSIZED ; }
Creates a spliterator covering the given array and range
@ Override public void populateDAG ( DAG dag , Configuration conf ) { TweetsInput input = new TweetsInput ( ) ; Collector collector = new Collector ( ) ; WindowOption windowOption = new WindowOption . GlobalWindow ( ) ; ApexStream < String > tags = StreamFactory . fromInput ( input , input . output , name ( "tweetSampler" ) ) . flatMap ( new ExtractHashtags ( ) ) ; tags . window ( windowOption , new TriggerOption ( ) . accumulatingFiredPanes ( ) . withEarlyFiringsAtEvery ( 1 ) ) . addCompositeStreams ( ComputeTopCompletions . top ( 10 , true ) ) . print ( name ( "console" ) ) . endWith ( collector , collector . input , name ( "collector" ) ) . populateDag ( dag ) ; }
Populate the dag with High-Level API .
public void testBug21947042 ( ) throws Exception { Connection sslConn = null ; Properties props = new Properties ( ) ; props . setProperty ( "logger" , "StandardLogger" ) ; StandardLogger . startLoggingToBuffer ( ) ; try { int searchFrom = 0 ; int found = 0 ; sslConn = getConnectionWithProps ( props ) ; if ( versionMeetsMinimum ( 5 , 7 ) ) { assertTrue ( ( ( MySQLConnection ) sslConn ) . getUseSSL ( ) ) ; assertFalse ( ( ( MySQLConnection ) sslConn ) . getVerifyServerCertificate ( ) ) ; assertTrue ( ( ( MySQLConnection ) sslConn ) . getIO ( ) . isSSLEstablished ( ) ) ; } else { assertFalse ( ( ( MySQLConnection ) sslConn ) . getUseSSL ( ) ) ; assertTrue ( ( ( MySQLConnection ) sslConn ) . getVerifyServerCertificate ( ) ) ; assertFalse ( ( ( MySQLConnection ) sslConn ) . getIO ( ) . isSSLEstablished ( ) ) ; } ResultSet rset = sslConn . createStatement ( ) . executeQuery ( "SHOW STATUS LIKE 'ssl_cipher'" ) ; assertTrue ( rset . next ( ) ) ; String cipher = rset . getString ( 2 ) ; System . out . println ( "ssl_cipher=" + cipher ) ; rset = sslConn . createStatement ( ) . executeQuery ( "SHOW STATUS LIKE 'ssl_version'" ) ; assertTrue ( rset . next ( ) ) ; cipher = rset . getString ( 2 ) ; System . out . println ( "ssl_version=" + cipher ) ; sslConn . close ( ) ; String log = StandardLogger . getBuffer ( ) . toString ( ) ; found = log . indexOf ( Messages . getString ( "MysqlIO.SSLWarning" ) , searchFrom ) ; searchFrom = found + 1 ; if ( versionMeetsMinimum ( 5 , 7 ) ) { assertTrue ( found != - 1 ) ; } props . setProperty ( "useSSL" , "false" ) ; sslConn = getConnectionWithProps ( props ) ; assertFalse ( ( ( MySQLConnection ) sslConn ) . getUseSSL ( ) ) ; assertTrue ( ( ( MySQLConnection ) sslConn ) . getVerifyServerCertificate ( ) ) ; assertFalse ( ( ( MySQLConnection ) sslConn ) . getIO ( ) . isSSLEstablished ( ) ) ; rset = sslConn . createStatement ( ) . executeQuery ( "SHOW STATUS LIKE 'ssl_cipher'" ) ; assertTrue ( rset . next ( ) ) ; cipher = rset . getString ( 2 ) ; System . out . println ( "ssl_cipher=" + cipher ) ; rset = sslConn . createStatement ( ) . executeQuery ( "SHOW STATUS LIKE 'ssl_version'" ) ; assertTrue ( rset . next ( ) ) ; cipher = rset . getString ( 2 ) ; System . out . println ( "ssl_version=" + cipher ) ; sslConn . close ( ) ; log = StandardLogger . getBuffer ( ) . toString ( ) ; found = log . indexOf ( Messages . getString ( "MysqlIO.SSLWarning" ) , searchFrom ) ; if ( found != - 1 ) { searchFrom = found + 1 ; fail ( "Warning is not expected when useSSL is explicitly set to 'false'." ) ; } props . setProperty ( "useSSL" , "true" ) ; props . setProperty ( "trustCertificateKeyStoreUrl" , "file:src/testsuite/ssl-test-certs/test-cert-store" ) ; props . setProperty ( "trustCertificateKeyStoreType" , "JKS" ) ; props . setProperty ( "trustCertificateKeyStorePassword" , "password" ) ; sslConn = getConnectionWithProps ( props ) ; assertTrue ( ( ( MySQLConnection ) sslConn ) . getUseSSL ( ) ) ; assertTrue ( ( ( MySQLConnection ) sslConn ) . getVerifyServerCertificate ( ) ) ; assertTrue ( ( ( MySQLConnection ) sslConn ) . getIO ( ) . isSSLEstablished ( ) ) ; rset = sslConn . createStatement ( ) . executeQuery ( "SHOW STATUS LIKE 'ssl_cipher'" ) ; assertTrue ( rset . next ( ) ) ; cipher = rset . getString ( 2 ) ; System . out . println ( "ssl_cipher=" + cipher ) ; rset = sslConn . createStatement ( ) . executeQuery ( "SHOW STATUS LIKE 'ssl_version'" ) ; assertTrue ( rset . next ( ) ) ; cipher = rset . getString ( 2 ) ; System . out . println ( "ssl_version=" + cipher ) ; sslConn . close ( ) ; log = StandardLogger . getBuffer ( ) . toString ( ) ; found = log . indexOf ( Messages . getString ( "MysqlIO.SSLWarning" ) , searchFrom ) ; if ( found != - 1 ) { searchFrom = found + 1 ; fail ( "Warning is not expected when useSSL is explicitly set to 'false'." ) ; } } finally { StandardLogger . dropBuffer ( ) ; } }
Tests fix for BUG # 21947042 , PREFER TLS WHERE SUPPORTED BY MYSQL SERVER . Requires test certificates from testsuite/ssl-test-certs to be installed on the server being tested .
public JComponent createEmbeddedPropertyGUI ( String prefix , Properties props , Properties info ) { if ( Debug . debugging ( "inspectordetail" ) ) { Debug . output ( "Inspector creating GUI for " + prefix + "\nPROPERTIES " + props + "\nPROP INFO " + info ) ; } String propertyList = info . getProperty ( PropertyConsumer . initPropertiesProperty ) ; Vector < String > sortedKeys ; if ( propertyList != null ) { Vector < String > propertiesToShow = PropUtils . parseSpacedMarkers ( propertyList ) ; for ( int i = 0 ; i < propertiesToShow . size ( ) ; i ++ ) { propertiesToShow . set ( i , prefix + "." + propertiesToShow . get ( i ) ) ; } sortedKeys = propertiesToShow ; } else { sortedKeys = sortKeys ( props . keySet ( ) ) ; } editors = new Hashtable < String , PropertyEditor > ( sortedKeys . size ( ) ) ; JPanel component = new JPanel ( ) ; component . setLayout ( new BorderLayout ( ) ) ; JPanel propertyPanel = new JPanel ( ) ; GridBagLayout gridbag = new GridBagLayout ( ) ; GridBagConstraints c = new GridBagConstraints ( ) ; c . insets = new Insets ( 2 , 10 , 2 , 10 ) ; propertyPanel . setLayout ( gridbag ) ; int i = 0 ; for ( String prop : sortedKeys ) { String marker = prop ; if ( prefix != null && prop . startsWith ( prefix ) ) { marker = prop . substring ( prefix . length ( ) + 1 ) ; } if ( marker . startsWith ( "." ) ) { marker = marker . substring ( 1 ) ; } String editorMarker = marker + PropertyConsumer . ScopedEditorProperty ; String editorClass = info . getProperty ( editorMarker ) ; if ( editorClass == null ) { editorClass = defaultEditorClass ; } Class < ? > propertyEditorClass = null ; PropertyEditor editor = null ; try { propertyEditorClass = Class . forName ( editorClass ) ; editor = ( PropertyEditor ) propertyEditorClass . newInstance ( ) ; if ( editor instanceof PropertyConsumer ) { ( ( PropertyConsumer ) editor ) . setProperties ( marker , info ) ; } editors . put ( prop , editor ) ; } catch ( Exception e ) { e . printStackTrace ( ) ; editorClass = null ; } Component editorFace = null ; if ( editor != null && editor . supportsCustomEditor ( ) ) { editorFace = editor . getCustomEditor ( ) ; } else { editorFace = new JLabel ( i18n . get ( Inspector . class , "Does_not_support_custom_editor" , "Does not support custom editor" ) ) ; } if ( editor != null ) { Object propVal = props . get ( prop ) ; if ( Debug . debugging ( "inspector" ) ) { Debug . output ( "Inspector loading " + prop + "(" + propVal + ")" ) ; } editor . setValue ( propVal ) ; } String labelMarker = marker + PropertyConsumer . LabelEditorProperty ; String labelText = info . getProperty ( labelMarker ) ; if ( labelText == null ) { labelText = marker ; } JLabel label = new JLabel ( labelText + ":" ) ; label . setHorizontalAlignment ( SwingConstants . RIGHT ) ; c . gridx = 0 ; c . gridy = i ++ ; c . weightx = 0 ; c . fill = GridBagConstraints . NONE ; c . anchor = GridBagConstraints . EAST ; gridbag . setConstraints ( label , c ) ; propertyPanel . add ( label ) ; c . gridx = 1 ; c . anchor = GridBagConstraints . WEST ; c . fill = GridBagConstraints . HORIZONTAL ; c . weightx = 1f ; gridbag . setConstraints ( editorFace , c ) ; propertyPanel . add ( editorFace ) ; String toolTip = ( String ) info . get ( marker ) ; label . setToolTipText ( toolTip == null ? i18n . get ( Inspector . class , "No_further_information_available" , "No further information available." ) : toolTip ) ; } JScrollPane scrollPane = new JScrollPane ( propertyPanel , ScrollPaneConstants . VERTICAL_SCROLLBAR_AS_NEEDED , ScrollPaneConstants . HORIZONTAL_SCROLLBAR_NEVER ) ; scrollPane . setBorder ( null ) ; scrollPane . setAlignmentY ( Component . TOP_ALIGNMENT ) ; component . add ( scrollPane , BorderLayout . CENTER ) ; return component ; }
Creates a JComponent with the properties to be changed . This component is suitable for inclusion into a GUI . Do n't use this method directly ! Use the createPropertyGUI ( PropertyConsumer ) instead . You will get a NullPointerException if you use this method without setting the PropertyConsumer in the Inspector .
public void onScanImageClick ( View v ) { Intent intent = new Intent ( this , ScanImageActivity . class ) ; intent . putExtra ( ExtrasKeys . EXTRAS_LICENSE_KEY , LICENSE_KEY ) ; intent . putExtra ( ExtrasKeys . EXTRAS_RECOGNITION_SETTINGS , mRecognitionSettings ) ; startActivityForResult ( intent , MY_REQUEST_CODE ) ; }
Handler for `` Scan Image '' button
public boolean isReadOnly ( ) { Object oo = get_Value ( COLUMNNAME_IsReadOnly ) ; if ( oo != null ) { if ( oo instanceof Boolean ) return ( ( Boolean ) oo ) . booleanValue ( ) ; return "Y" . equals ( oo ) ; } return false ; }
Get Read Only .
public static < K , V > Map < K , V > asSynchronized ( Map < K , V > self ) { return Collections . synchronizedMap ( self ) ; }
A convenience method for creating a synchronized Map .
private boolean isRecursive ( Nonterminal nonterm ) { return comp . getNodes ( ) . contains ( nonterm ) ; }
Return true if the nonterminal is recursive .
private void initInfo ( int record_id , String value ) { if ( ! ( record_id == 0 ) && value != null && value . length ( ) > 0 ) { log . severe ( "Received both a record_id and a value: " + record_id + " - " + value ) ; } if ( ! ( record_id == 0 ) ) { fieldID = record_id ; } else { if ( value != null && value . length ( ) > 0 ) { fDocumentNo . setValue ( value ) ; } else { String id ; id = Env . getContext ( Env . getCtx ( ) , p_WindowNo , p_TabNo , "M_InOut_ID" , true ) ; if ( id != null && id . length ( ) != 0 && ( new Integer ( id ) . intValue ( ) > 0 ) ) { fieldID = new Integer ( id ) . intValue ( ) ; } id = Env . getContext ( Env . getCtx ( ) , p_WindowNo , p_TabNo , "C_BPartner_ID" , true ) ; if ( id != null && id . length ( ) != 0 && ( new Integer ( id ) . intValue ( ) > 0 ) ) fBPartner_ID . setValue ( new Integer ( id ) ) ; id = Env . getContext ( Env . getCtx ( ) , p_WindowNo , p_TabNo , "M_Shipper_ID" , true ) ; if ( id != null && id . length ( ) != 0 && ( new Integer ( id ) . intValue ( ) > 0 ) ) { fShipper_ID . setValue ( new Integer ( id ) . intValue ( ) ) ; } } } }
General Init
public IssueMatcher add ( ) { IssueMatcher issueMatcher = new IssueMatcher ( ) ; issueMatchers . add ( issueMatcher ) ; return issueMatcher ; }
Creates a new issue matcher and adds it to this matcher .
protected ParameterizedPropertyAccessExpression_IMImpl ( ) { super ( ) ; }
< ! -- begin-user-doc -- > < ! -- end-user-doc -- >
private void loadFinishScreen ( ) { CoordinatorLayout . LayoutParams lp = new CoordinatorLayout . LayoutParams ( CoordinatorLayout . LayoutParams . WRAP_CONTENT , CoordinatorLayout . LayoutParams . WRAP_CONTENT ) ; mFloatingActionButton . setLayoutParams ( lp ) ; mFloatingActionButton . setVisibility ( View . INVISIBLE ) ; NestedScrollView contentLayout = ( NestedScrollView ) findViewById ( R . id . challenge_rootcontainer ) ; if ( contentLayout != null ) { contentLayout . removeAllViews ( ) ; View view = getLayoutInflater ( ) . inflate ( R . layout . fragment_finish_challenge , contentLayout , false ) ; contentLayout . addView ( view ) ; } }
Loads the finish screen and unloads all other screens
private void compactSegment ( Segment segment , OffsetPredicate predicate , Segment compactSegment ) { for ( long i = segment . firstIndex ( ) ; i <= segment . lastIndex ( ) ; i ++ ) { checkEntry ( i , segment , predicate , compactSegment ) ; } }
Compacts the given segment .
public static Class < ? > forName ( String name , ClassLoader classLoader ) throws ClassNotFoundException , LinkageError { Assert . notNull ( name , "Name must not be null" ) ; Class < ? > clazz = resolvePrimitiveClassName ( name ) ; if ( clazz == null ) { clazz = commonClassCache . get ( name ) ; } if ( clazz != null ) { return clazz ; } if ( name . endsWith ( ARRAY_SUFFIX ) ) { String elementClassName = name . substring ( 0 , name . length ( ) - ARRAY_SUFFIX . length ( ) ) ; Class < ? > elementClass = forName ( elementClassName , classLoader ) ; return Array . newInstance ( elementClass , 0 ) . getClass ( ) ; } if ( name . startsWith ( NON_PRIMITIVE_ARRAY_PREFIX ) && name . endsWith ( ";" ) ) { String elementName = name . substring ( NON_PRIMITIVE_ARRAY_PREFIX . length ( ) , name . length ( ) - 1 ) ; Class < ? > elementClass = forName ( elementName , classLoader ) ; return Array . newInstance ( elementClass , 0 ) . getClass ( ) ; } if ( name . startsWith ( INTERNAL_ARRAY_PREFIX ) ) { String elementName = name . substring ( INTERNAL_ARRAY_PREFIX . length ( ) ) ; Class < ? > elementClass = forName ( elementName , classLoader ) ; return Array . newInstance ( elementClass , 0 ) . getClass ( ) ; } ClassLoader classLoaderToUse = classLoader ; if ( classLoaderToUse == null ) { classLoaderToUse = getDefaultClassLoader ( ) ; } try { return classLoaderToUse . loadClass ( name ) ; } catch ( ClassNotFoundException ex ) { int lastDotIndex = name . lastIndexOf ( '.' ) ; if ( lastDotIndex != - 1 ) { String innerClassName = name . substring ( 0 , lastDotIndex ) + '$' + name . substring ( lastDotIndex + 1 ) ; try { return classLoaderToUse . loadClass ( innerClassName ) ; } catch ( ClassNotFoundException ex2 ) { } } throw ex ; } }
Replacement for < code > Class.forName ( ) < /code > that also returns Class instances for primitives ( e.g . `` int '' ) and array class names ( e.g . `` String [ ] '' ) . Furthermore , it is also capable of resolving inner class names in Java source style ( e.g . `` java.lang.Thread.State '' instead of `` java.lang.Thread $ State '' ) .
public String toString ( int indentFactor ) throws JSONException { return toString ( indentFactor , 0 ) ; }
Make a prettyprinted JSON text of this JSONObject . < p > Warning : This method assumes that the data structure is acyclical .
@ SuppressWarnings ( "MethodWithMultipleReturnPoints" ) public static boolean checkSu ( ) { if ( ! new File ( "/system/bin/su" ) . exists ( ) && ! new File ( "/system/xbin/su" ) . exists ( ) ) { Log . e ( TAG , "su binary does not exist!!!" ) ; return false ; } try { if ( runSuCommand ( "ls /data/app-private" ) . success ( ) ) { Log . i ( TAG , " SU exists and we have permission" ) ; return true ; } else { Log . i ( TAG , " SU exists but we don't have permission" ) ; return false ; } } catch ( NullPointerException e ) { Log . e ( TAG , "NullPointer throw while looking for su binary" , e ) ; return false ; } }
Checks device for SuperUser permission
public String toString ( int indentFactor ) throws JSONException { StringWriter sw = new StringWriter ( ) ; synchronized ( sw . getBuffer ( ) ) { return this . write ( sw , indentFactor , 0 ) . toString ( ) ; } }
Make a prettyprinted JSON text of this JSONArray . Warning : This method assumes that the data structure is acyclical .
public Boolean isHttpSupportInformation ( ) { return httpSupportInformation ; }
Ruft den Wert der httpSupportInformation-Eigenschaft ab .
public static URLConnection createConnectionToURL ( final String url , final Map < String , String > requestHeaders ) throws IOException { final URL connectionURL = URLUtility . stringToUrl ( url ) ; if ( connectionURL == null ) { throw new IOException ( "Invalid url format: " + url ) ; } final URLConnection urlConnection = connectionURL . openConnection ( ) ; urlConnection . setConnectTimeout ( CONNECTION_TIMEOUT ) ; urlConnection . setReadTimeout ( READ_TIMEOUT ) ; if ( requestHeaders != null ) { for ( final Map . Entry < String , String > entry : requestHeaders . entrySet ( ) ) { urlConnection . setRequestProperty ( entry . getKey ( ) , entry . getValue ( ) ) ; } } return urlConnection ; }
Create URLConnection instance .
public ASN1Primitive toASN1Primitive ( ) { try { if ( certificateType == profileType ) { return profileToASN1Object ( ) ; } if ( certificateType == requestType ) { return requestToASN1Object ( ) ; } } catch ( IOException e ) { return null ; } return null ; }
create a `` request '' or `` profile '' type Iso7816CertificateBody according to the variables sets .
public Builder mapper ( final Mapper < ObjectMapper > mapper ) { this . mapper = mapper ; return this ; }
Override all of the builder options with this mapper . If this value is set to something other than null then that value will be used to construct the writer .
private int [ ] [ ] div ( int [ ] a , int [ ] f ) { int df = computeDegree ( f ) ; int da = computeDegree ( a ) + 1 ; if ( df == - 1 ) { throw new ArithmeticException ( "Division by zero." ) ; } int [ ] [ ] result = new int [ 2 ] [ ] ; result [ 0 ] = new int [ 1 ] ; result [ 1 ] = new int [ da ] ; int hc = headCoefficient ( f ) ; hc = field . inverse ( hc ) ; result [ 0 ] [ 0 ] = 0 ; System . arraycopy ( a , 0 , result [ 1 ] , 0 , result [ 1 ] . length ) ; while ( df <= computeDegree ( result [ 1 ] ) ) { int [ ] q ; int [ ] coeff = new int [ 1 ] ; coeff [ 0 ] = field . mult ( headCoefficient ( result [ 1 ] ) , hc ) ; q = multWithElement ( f , coeff [ 0 ] ) ; int n = computeDegree ( result [ 1 ] ) - df ; q = multWithMonomial ( q , n ) ; coeff = multWithMonomial ( coeff , n ) ; result [ 0 ] = add ( coeff , result [ 0 ] ) ; result [ 1 ] = add ( q , result [ 1 ] ) ; } return result ; }
Compute the result of the division of two polynomials over the field < tt > GF ( 2^m ) < /tt > .
public static short toShort ( byte [ ] bytes , int start ) { return toShort ( bytes [ start ] , bytes [ start + 1 ] ) ; }
Returns short from given array of bytes . < br > Array must have at least start + 2 elements in it .
public void addAttribute ( AttributedCharacterIterator . Attribute attribute , Object value , int start , int end ) { if ( attribute == null ) { throw new NullPointerException ( "attribute == null" ) ; } if ( start < 0 || end > text . length ( ) || start >= end ) { throw new IllegalArgumentException ( ) ; } if ( value == null ) { return ; } List < Range > ranges = attributeMap . get ( attribute ) ; if ( ranges == null ) { ranges = new ArrayList < Range > ( 1 ) ; ranges . add ( new Range ( start , end , value ) ) ; attributeMap . put ( attribute , ranges ) ; return ; } ListIterator < Range > it = ranges . listIterator ( ) ; while ( it . hasNext ( ) ) { Range range = it . next ( ) ; if ( end <= range . start ) { it . previous ( ) ; break ; } else if ( start < range . end || ( start == range . end && value . equals ( range . value ) ) ) { Range r1 = null , r3 ; it . remove ( ) ; r1 = new Range ( range . start , start , range . value ) ; r3 = new Range ( end , range . end , range . value ) ; while ( end > range . end && it . hasNext ( ) ) { range = it . next ( ) ; if ( end <= range . end ) { if ( end > range . start || ( end == range . start && value . equals ( range . value ) ) ) { it . remove ( ) ; r3 = new Range ( end , range . end , range . value ) ; break ; } } else { it . remove ( ) ; } } if ( value . equals ( r1 . value ) ) { if ( value . equals ( r3 . value ) ) { it . add ( new Range ( r1 . start < start ? r1 . start : start , r3 . end > end ? r3 . end : end , r1 . value ) ) ; } else { it . add ( new Range ( r1 . start < start ? r1 . start : start , end , r1 . value ) ) ; if ( r3 . start < r3 . end ) { it . add ( r3 ) ; } } } else { if ( value . equals ( r3 . value ) ) { if ( r1 . start < r1 . end ) { it . add ( r1 ) ; } it . add ( new Range ( start , r3 . end > end ? r3 . end : end , r3 . value ) ) ; } else { if ( r1 . start < r1 . end ) { it . add ( r1 ) ; } it . add ( new Range ( start , end , value ) ) ; if ( r3 . start < r3 . end ) { it . add ( r3 ) ; } } } return ; } } it . add ( new Range ( start , end , value ) ) ; }
Applies a given attribute to the given range of this string .
@ Override public Double hincrByFloat ( final String key , final String field , final double value ) { checkIsInMultiOrPipeline ( ) ; client . hincrByFloat ( key , field , value ) ; final String dval = client . getBulkReply ( ) ; return ( dval != null ? new Double ( dval ) : null ) ; }
Increment the number stored at field in the hash at key by a double precision floating point value . If key does not exist , a new key holding a hash is created . If field does not exist or holds a string , the value is set to 0 before applying the operation . Since the value argument is signed you can use this command to perform both increments and decrements . < p > The range of values supported by HINCRBYFLOAT is limited to double precision floating point values . < p > < b > Time complexity : < /b > O ( 1 )
public DrawerBuilder withFooter ( @ NonNull View footerView ) { this . mFooterView = footerView ; return this ; }
Add a footer to the DrawerBuilder ListView . This can be any view
@ Override public int compareTo ( final Object obj ) throws ClassCastException { final URI another = ( URI ) obj ; if ( ! equals ( _authority , another . getRawAuthority ( ) ) ) { return - 1 ; } return toString ( ) . compareTo ( another . toString ( ) ) ; }
Compare this URI to another object .
public boolean isNavigationAtBottom ( ) { return ( mSmallestWidthDp >= 600 || mInPortrait ) ; }
Should a navigation bar appear at the bottom of the screen in the current device configuration ? A navigation bar may appear on the right side of the screen in certain configurations .
@ Override public void execute ( String filePath ) { final CurrentProject currentProject = appContext . getCurrentProject ( ) ; if ( filePath != null && ! filePath . startsWith ( "/" ) ) { filePath = "/" . concat ( filePath ) ; } if ( currentProject != null ) { String fullPath = currentProject . getRootProject ( ) . getPath ( ) + filePath ; log . debug ( "Open file {0}" , fullPath ) ; currentProject . getCurrentTree ( ) . getNodeByPath ( fullPath , new TreeNodeAsyncCallback ( ) ) ; } }
Open a file for the current given path .
public void executionDetailsEnd ( final ConcurrentHashMap < Integer , TradeOrder > tradeOrders ) { try { Tradingday todayTradingday = m_tradingdays . getTradingday ( TradingCalendar . getTradingDayStart ( TradingCalendar . getDateTimeNowMarketTimeZone ( ) ) , TradingCalendar . getTradingDayEnd ( TradingCalendar . getDateTimeNowMarketTimeZone ( ) ) ) ; if ( null == todayTradingday ) { return ; } tradingdayPanel . doRefresh ( todayTradingday ) ; tradingdayPanel . doRefreshTradingdayTable ( todayTradingday ) ; } catch ( Exception ex ) { this . setErrorMessage ( "Error starting PositionManagerRule." , ex . getMessage ( ) , ex ) ; } }
This method is fired when the Brokermodel has completed the request for Execution Details see doFetchExecution or connectionOpened i.e from a BrokerModel event all executions for the filter have now been received . Check to see if we need to close any trades for these order fills .
public void successfullyCreated ( ) { if ( notification != null ) { notification . setStatus ( SUCCESS ) ; notification . setTitle ( locale . createSnapshotSuccess ( ) ) ; } }
Changes notification state to successfully finished .
public HybridTimestampFactory ( int counterBits ) { if ( counterBits < 0 || counterBits > 31 ) { throw new IllegalArgumentException ( "counterBits must be in [0:31]" ) ; } lastTimestamp = 0L ; this . counterBits = counterBits ; maxCounter = BigInteger . valueOf ( 2 ) . pow ( counterBits ) . intValue ( ) - 1 ; log . warn ( "#counterBits=" + counterBits + ", maxCounter=" + maxCounter ) ; }
Allows up to < code > 2^counterBits < /code > distinct timestamps per millisecond .
@ Override public void clear ( ) { this . _map . clear ( ) ; }
Empties the map .
public boolean removeElement ( int s ) { if ( null == m_map ) return false ; for ( int i = 0 ; i < m_firstFree ; i ++ ) { int node = m_map [ i ] ; if ( node == s ) { if ( i > m_firstFree ) System . arraycopy ( m_map , i + 1 , m_map , i - 1 , m_firstFree - i ) ; else m_map [ i ] = DTM . NULL ; m_firstFree -- ; return true ; } } return false ; }
Removes the first occurrence of the argument from this vector . If the object is found in this vector , each component in the vector with an index greater or equal to the object 's index is shifted downward to have an index one smaller than the value it had previously .
private void addSingleton ( TempCluster clus , DBIDRef id , double dist , boolean asCluster ) { if ( asCluster ) { clus . addChild ( makeSingletonCluster ( id , dist ) ) ; } else { clus . add ( id ) ; } clus . depth = dist ; }
Add a singleton object , as point or cluster .
public int size ( ) { return values . length ; }
Returns the number of values in this kernel .