idx int64 0 165k | question stringlengths 73 4.15k | target stringlengths 5 918 | len_question int64 21 890 | len_target int64 3 255 |
|---|---|---|---|---|
162,100 | private Number readNumber ( ) throws IOException { StringBuffer sb = new StringBuffer ( ) ; int l = lineNo ; int c = colNo ; while ( isDigitChar ( lastChar ) ) { sb . append ( ( char ) lastChar ) ; readChar ( ) ; } // convert it! String string = sb . toString ( ) ; try { if ( - 1 != string . indexOf ( ' ' ) ) { return ... | Method to read a number from the JSON string . | 371 | 10 |
162,101 | private String readIdentifier ( ) throws IOException { StringBuffer sb = new StringBuffer ( ) ; while ( ( - 1 != lastChar ) && Character . isLetter ( ( char ) lastChar ) ) { sb . append ( ( char ) lastChar ) ; readChar ( ) ; } return sb . toString ( ) ; } | Method to read a partular character string . only really need to handle null true and false | 73 | 18 |
162,102 | public static AuthenticationData createAuthenticationData ( String userName , UserRegistry userRegistry ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "createAuthenticationData" , userName ) ; } AuthenticationData authData = new WSAuthenticationData ( ... | Create the AuthenticationData from the UserName | 190 | 8 |
162,103 | public static AuthenticationData createAuthenticationData ( byte [ ] token ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "createAuthenticationData" , token ) ; } AuthenticationData authData = new WSAuthenticationData ( ) ; authData . set ( Authenticat... | Create AuthenticationData object from the Token passed | 140 | 8 |
162,104 | public static AuthenticationData createAuthenticationData ( String userName , String password ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "createAuthenticationData" , new Object [ ] { userName , "Password Not Traced" } ) ; } AuthenticationData authD... | Create AuthenticationData Object from the UserName and Password passed | 207 | 11 |
162,105 | public static AuthenticationData createAuthenticationData ( Certificate [ ] certs , UserRegistry userRegistry ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "createAuthenticationData" , certs ) ; } AuthenticationData authData = new WSAuthenticationData... | Create AuthenticationData object from the Certificate | 260 | 7 |
162,106 | private static String getDefaultRealm ( UserRegistry _userRegistry ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "getDefaultRealm" ) ; } String realm = DEFAULT_REALM ; if ( _userRegistry != null ) { realm = _userRegistry . getRealm ( ) ; } if ( TraceC... | Get the Default Realm | 143 | 4 |
162,107 | public static String getUniqueUserName ( Subject subject ) throws MessagingSecurityException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "getUniqueUserName" , subject ) ; } if ( subject == null ) { return null ; } WSCredential cred = subjectHelper . g... | This method returns the unique name of the user that was being authenticated . This is a best can do process and a user name may not be available in which case null should be returned . This method should not return an empty string . | 212 | 46 |
162,108 | public static boolean isUnauthenticated ( Subject subject ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "isUnauthenticated" , subject ) ; } boolean result = subjectHelper . isUnauthenticated ( subject ) ; if ( TraceComponent . isAnyTracingEnabled ( ) ... | Check if the Subject is Authenticated | 120 | 7 |
162,109 | public E pop ( ) throws EmptyStackException { E answer = peek ( ) ; // Throws EmptyStackException if there's nothing there _elements . get ( ) . remove ( _elements . get ( ) . size ( ) - 1 ) ; return answer ; } | Pop and return the top element of the stack for this thread | 57 | 12 |
162,110 | public ThreadContextDescriptor deserializeThreadContext ( Map < String , String > execProps ) throws IOException , ClassNotFoundException { return threadContextBytes == null ? null : ThreadContextDeserializer . deserialize ( threadContextBytes , execProps ) ; } | Returns the thread context that was captured at the point when the task was submitted . | 60 | 16 |
162,111 | public static HandlerChainInfo buildHandlerChainInfoFromXML ( HandlerChain hChain ) { HandlerChainInfo hcInfo = new HandlerChainInfo ( ) ; // set Service QName if ( hChain . getServiceNamePattern ( ) != null ) { hcInfo . setServiceNamePattern ( new QName ( hChain . getServiceNamePattern ( ) . getNamespaceURI ( ) , hCha... | Build the handlerChain info from web . xml | 301 | 9 |
162,112 | public static HandlerInfo buildHandlerInfoFromXML ( com . ibm . ws . javaee . dd . common . wsclient . Handler handler ) { HandlerInfo hInfo = new HandlerInfo ( ) ; hInfo . setHandlerClass ( handler . getHandlerClassName ( ) ) ; hInfo . setHandlerName ( handler . getHandlerName ( ) ) ; for ( ParamValue pv : handler . g... | Build the handler info from web . xml | 235 | 8 |
162,113 | protected URL resolveHandlerChainFileName ( String clzName , String fileName ) { URL handlerFile = null ; InputStream in = null ; String handlerChainFileName = fileName ; URL baseUrl = classLoader . getResource ( getClassResourceName ( clzName ) ) ; try { //if the filename start with '/', then find and return the resou... | Resolve handler chain configuration file associated with the given class | 209 | 11 |
162,114 | @ SuppressWarnings ( "rawtypes" ) public static List < Handler > sortHandlers ( List < Handler > handlers ) { List < LogicalHandler < ? > > logicalHandlers = new ArrayList < LogicalHandler < ? > > ( ) ; List < Handler < ? > > protocolHandlers = new ArrayList < Handler < ? > > ( ) ; for ( Handler < ? > handler : handler... | sorts the handlers into correct order . All of the logical handlers first followed by the protocol handlers | 193 | 19 |
162,115 | private Dictionary < String , Object > buildServicePropsAndFilterTargets ( String pid , Dictionary < String , Object > config ) throws IOException , InvalidSyntaxException { Dictionary < String , Object > result = new Hashtable < String , Object > ( ) ; // we will use this later to discover the properties configured in... | Add the properties for this new service to allow other components locate this service | 585 | 14 |
162,116 | private String buildTargetString ( List < String > privateLibraries ) { StringBuilder filter = new StringBuilder ( ) ; filter . append ( "(&" ) ; for ( String lib : privateLibraries ) filter . append ( String . format ( "(|(%s=%s)(%s=%s))" , LibraryStatusService . LIBRARY_IDS , lib , LibraryStatusService . LIBRARY_PIDS... | This filter will cause the new application classloading service to block until these libraries are active Each library is added twice as it may be an automatic librari in which case its pid will not yet be known so we use the id . | 132 | 47 |
162,117 | @ SuppressWarnings ( "unchecked" ) public Class < Object > matchCaller ( String className ) { // Walk the stack backwards to find the calling class: don't // want to use Class.forName, because we want the class as loaded // by it's original classloader Class < Object > stack [ ] = ( Class < Object > [ ] ) this . getCla... | Return the class if the given classname is found on the stack . | 135 | 14 |
162,118 | protected int getAllowCachedTimerData ( J2EEName j2eeName ) { Integer allowCachedTimerData = null ; Map < String , Integer > localAllowCachedTimerDataMap = allowCachedTimerDataMap ; if ( localAllowCachedTimerDataMap != null ) { allowCachedTimerData = localAllowCachedTimerDataMap . get ( j2eeName . toString ( ) ) ; if (... | Return the allowed cached timer data setting for the specified bean . | 142 | 12 |
162,119 | public void batchUpdate ( HashMap invalidateIdEvents , HashMap invalidateTemplateEvents , ArrayList pushEntryEvents , ArrayList aliasEntryEvents , CacheUnit cacheUnit ) { //CCC // nothing to do for NullNotification } | This applies a set of invalidations and new entries to this CacheUnit including the local internal cache and external caches registered with this CacheUnit . | 48 | 28 |
162,120 | public static JCATranWrapper getTxWrapper ( Xid xid , boolean addAssociation ) throws XAException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "getTxWrapper" , new Object [ ] { xid , addAssociation } ) ; final ByteArray key = new ByteArray ( xid . getGlobalTransactionId ( ) ) ; final JCATranWrapper txWrapper ; sy... | Given an Xid returns the corresponding JCATranWrapper from the table of imported transactions or null if no entry exists . | 307 | 25 |
162,121 | protected JCATranWrapper findTxWrapper ( int timeout , Xid xid , String providerId ) throws WorkCompletedException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "findTxWrapper" , new Object [ ] { timeout , xid , providerId } ) ; final JCATranWrapper txWrapper ; final ByteArray key = new ByteArray ( xid . getGlobal... | Retrieve a JCATranWrapper from the table . Insert it first if it wasn t already there . Returns null if association already existed or if transaction has been prepared . | 680 | 35 |
162,122 | protected JCATranWrapper createWrapper ( int timeout , Xid xid , JCARecoveryData jcard ) throws WorkCompletedException /* @512190C*/ { return new JCATranWrapperImpl ( timeout , xid , jcard ) ; // @D240298C } | Overridden in WAS | 62 | 4 |
162,123 | public static void addTxn ( TransactionImpl txn ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "addTxn" , txn ) ; final ByteArray key = new ByteArray ( txn . getXid ( ) . getGlobalTransactionId ( ) ) ; synchronized ( txnTable ) { if ( ! txnTable . containsKey ( key ) ) { txnTable . put ( key , new JCATranWrapperI... | To be called by recovery manager | 145 | 6 |
162,124 | @ SuppressWarnings ( "unchecked" ) public K getKey ( int index ) { if ( ( index < 0 ) || ( index >= size ( ) ) ) { throw new IndexOutOfBoundsException ( ) ; } return ( K ) _array [ index * 2 ] ; } | Returns the key at a specific index in the map . | 63 | 11 |
162,125 | @ SuppressWarnings ( "unchecked" ) public V getValue ( int index ) { if ( ( index < 0 ) || ( index >= size ( ) ) ) { throw new IndexOutOfBoundsException ( ) ; } return ( V ) _array [ index * 2 + 1 ] ; } | Returns the value at a specific index in the map . | 65 | 11 |
162,126 | static public Object get ( Object [ ] array , Object key ) { Object o = getByIdentity ( array , key ) ; if ( o != null ) { return o ; } return getByEquality ( array , key ) ; } | Gets the object stored with the given key . Scans first by object identity then by object equality . | 49 | 21 |
162,127 | static public Object getByIdentity ( Object [ ] array , Object key ) { if ( array != null ) { int length = array . length ; for ( int i = 0 ; i < length ; i += 2 ) { if ( array [ i ] == key ) { return array [ i + 1 ] ; } } } return null ; } | Gets the object stored with the given key using only object identity . | 71 | 14 |
162,128 | static public Object getByEquality ( Object [ ] array , Object key ) { if ( array != null ) { int length = array . length ; for ( int i = 0 ; i < length ; i += 2 ) { Object targetKey = array [ i ] ; if ( targetKey == null ) { return null ; } else if ( targetKey . equals ( key ) ) { return array [ i + 1 ] ; } } } return... | Gets the object stored with the given key using only object equality . | 95 | 14 |
162,129 | @ SuppressWarnings ( "unchecked" ) public Iterator < K > keys ( ) { int size = _size ; if ( size == 0 ) { return null ; } ArrayList < K > keyList = new ArrayList < K > ( ) ; int i = ( size - 1 ) * 2 ; while ( i >= 0 ) { keyList . add ( ( K ) _array [ i ] ) ; i = i - 2 ; } return keyList . iterator ( ) ; } | Returns an enumeration of the keys in this map . the Iterator methods on the returned object to fetch the elements sequentially . | 105 | 26 |
162,130 | public static Iterator < Object > getKeys ( Object [ ] array ) { if ( array == null ) { return null ; } ArrayList < Object > keyList = new ArrayList < Object > ( ) ; int i = array . length - 2 ; while ( i >= 0 ) { keyList . add ( array [ i ] ) ; i = i - 2 ; } return keyList . iterator ( ) ; } | Returns an Iterator of keys in the array . | 87 | 10 |
162,131 | public static Iterator < Object > getValues ( Object [ ] array ) { if ( array == null ) { return null ; } ArrayList < Object > valueList = new ArrayList < Object > ( ) ; int i = array . length - 1 ; while ( i >= 0 ) { valueList . add ( array [ i ] ) ; i = i - 2 ; } return valueList . iterator ( ) ; } | Returns an Iterator of values in the array . | 87 | 10 |
162,132 | @ Override public void clear ( ) { int size = _size ; if ( size > 0 ) { size = size * 2 ; for ( int i = 0 ; i < size ; i ++ ) { _array [ i ] = null ; } _size = 0 ; } } | Removes all elements from the ArrayMap . | 59 | 9 |
162,133 | private void sendErrorJSON ( HttpServletResponse response , int statusCode , String errorCode , String errorDescription ) { final String error = "error" ; final String error_description = "error_description" ; try { if ( errorCode != null ) { response . setStatus ( statusCode ) ; response . setHeader ( ClientConstants ... | refactored from Oauth SendErrorJson . Only usable for sending an http400 . | 294 | 19 |
162,134 | public boolean first ( ) throws SQLException { try { if ( dsConfig . get ( ) . beginTranForResultSetScrollingAPIs ) getConnectionWrapper ( ) . beginTransactionIfNecessary ( ) ; return rsetImpl . first ( ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.fir... | Moves the cursor to the first row in the result set . | 165 | 13 |
162,135 | public Array getArray ( int arg0 ) throws SQLException { try { Array ra = rsetImpl . getArray ( arg0 ) ; if ( ra != null && freeResourcesOnClose ) arrays . add ( ra ) ; return ra ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.getArray" , "438" , this ) ; ... | Gets an SQL ARRAY value from the current row of this ResultSet object . | 158 | 17 |
162,136 | public Blob getBlob ( int arg0 ) throws SQLException { try { Blob blob = rsetImpl . getBlob ( arg0 ) ; if ( blob != null && freeResourcesOnClose ) blobs . add ( blob ) ; return blob ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.getBlob" , "754" , this ) ... | Gets a BLOB value in the current row of this ResultSet object . | 164 | 16 |
162,137 | public Reader getCharacterStream ( int arg0 ) throws SQLException { try { Reader reader = rsetImpl . getCharacterStream ( arg0 ) ; if ( reader != null && freeResourcesOnClose ) resources . add ( reader ) ; return reader ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJd... | Gets the value of a column in the current row as a java . io . Reader . | 162 | 19 |
162,138 | public Clob getClob ( int arg0 ) throws SQLException { try { Clob clob = rsetImpl . getClob ( arg0 ) ; if ( clob != null && freeResourcesOnClose ) clobs . add ( clob ) ; return clob ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.getClob" , "1037" , this )... | Gets a CLOB value in the current row of this ResultSet object . | 169 | 16 |
162,139 | public String getCursorName ( ) throws SQLException { try { return rsetImpl . getCursorName ( ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.getCursorName" , "1129" , this ) ; throw WSJdbcUtil . mapException ( this , ex ) ; } catch ( NullPointerExceptio... | Gets the name of the SQL cursor used by this ResultSet . | 137 | 14 |
162,140 | public int getFetchDirection ( ) throws SQLException { try { return rsetImpl . getFetchDirection ( ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.getFetchDirection" , "1336" , this ) ; throw WSJdbcUtil . mapException ( this , ex ) ; } catch ( NullPointe... | Returns the fetch direction for this result set . | 140 | 9 |
162,141 | public ResultSetMetaData getMetaData ( ) throws SQLException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "getMetaData" ) ; // First, check if a ResultSetMetaData wrapper for this ResultSet already exists. ResultSetMetaData rsetMData = null ; try // get a meta data { rsetMData = rsetImpl . getMetaData ( ) ... | Retrieves the number types and properties of a ResultSet s columns . | 294 | 15 |
162,142 | public Object getObject ( String arg0 ) throws SQLException { try { Object result = rsetImpl . getObject ( arg0 ) ; addFreedResources ( result ) ; return result ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.getObject" , "1684" , this ) ; throw WSJdbcUtil... | Gets the value of a column in the current row as a Java object . | 149 | 16 |
162,143 | public Statement getStatement ( ) throws SQLException { // The parent of a ResultSet may be a Statement or a MetaData. // For ResultSets created by MetaDatas, the getStatement method should return null, // unless the result set is closed. if ( state == State . CLOSED || parentWrapper == null ) throw createClosedExcepti... | Returns the Statement that produced this ResultSet object . If the result set was generated some other way such as by a DatabaseMetaData method this method returns null . | 109 | 32 |
162,144 | public SQLWarning getWarnings ( ) throws SQLException { try { return rsetImpl . getWarnings ( ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.getWarnings" , "2345" , this ) ; throw WSJdbcUtil . mapException ( this , ex ) ; } catch ( NullPointerException ... | The first warning reported by calls on this ResultSet is returned . Subsequent ResultSet warnings will be chained to this SQLWarning . | 138 | 26 |
162,145 | public void setFetchDirection ( int direction ) throws SQLException { if ( tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "setFetchDirection" , AdapterUtil . getFetchDirectionString ( direction ) ) ; try { rsetImpl . setFetchDirection ( direction ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex ... | Gives a hint as to the direction in which the rows in this result set will be processed . The initial value is determined by the statement that produced the result set . The fetch direction may be changed at any time . | 183 | 44 |
162,146 | public void setFetchSize ( int rows ) throws SQLException { if ( tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "setFetchSize" , rows ) ; try { rsetImpl . setFetchSize ( rows ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.setFetchSize" , "2891" , th... | Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this result set . If the fetch size specified is zero the JDBC driver ignores the value and is free to make its own best guess as to what the fetch size should be . The default value is set by th... | 167 | 88 |
162,147 | public void updateBinaryStream ( String arg0 , InputStream arg1 , int arg2 ) throws SQLException { try { rsetImpl . updateBinaryStream ( arg0 , arg1 , arg2 ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.updateBinaryStream" , "3075" , this ) ; throw WSJd... | Updates a column with a binary stream value . The updateXXX methods are used to update column values in the current row or the insert row . The updateXXX methods do not update the underlying database ; instead the updateRow or insertRow methods are called to update the database . | 156 | 55 |
162,148 | public void updateCharacterStream ( String arg0 , Reader arg1 , int arg2 ) throws SQLException { try { rsetImpl . updateCharacterStream ( arg0 , arg1 , arg2 ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.updateCharacterStream" , "3317" , this ) ; throw ... | Updates a column with a character stream value . The updateXXX methods are used to update column values in the current row or the insert row . The updateXXX methods do not update the underlying database ; instead the updateRow or insertRow methods are called to update the database . | 152 | 55 |
162,149 | public void updateObject ( int arg0 , Object arg1 , int arg2 ) throws SQLException { try { rsetImpl . updateObject ( arg0 , arg1 , arg2 ) ; } catch ( SQLException ex ) { FFDCFilter . processException ( ex , "com.ibm.ws.rsadapter.jdbc.WSJdbcResultSet.updateObject" , "3737" , this ) ; throw WSJdbcUtil . mapException ( th... | Updates a column with an Object value . The updateXXX methods are used to update column values in the current row or the insert row . The updateXXX methods do not update the underlying database ; instead the updateRow or insertRow methods are called to update the database . | 149 | 54 |
162,150 | @ Override public void afterCompletion ( int status ) { logger . log ( Level . FINE , "The status of the transaction commit is: " + status ) ; if ( status == Status . STATUS_COMMITTED ) { //Save the metrics object after a successful commit runtimeStepExecution . setCommittedMetrics ( ) ; } else { //status = 4 = STATUS_... | Upon successful transaction commit status store the value of the committed metrics . Upon any other status value roll back the metrics to the last committed value . | 103 | 28 |
162,151 | public final Object invokeInterceptor ( Object bean , InvocationContext inv , Object [ ] interceptors ) throws Exception { // Interceptor instance is the bean instance itself if the // interceptor index is < 0. Object interceptorInstance = ( ivBeanInterceptor ) ? bean : interceptors [ ivInterceptorIndex ] ; if ( TraceC... | Invoke the interceptor method associated with the interceptor index that was passed as the interceptorIndex parameter of the constructor method of this class . | 366 | 29 |
162,152 | @ Override public Object invoke ( Object proxy , Method method , Object [ ] args ) throws Throwable { String methodName = method . getName ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , methodName , args ) ; Object r = null ; try { if ( args == null || args . l... | Invokes our implementation for methods of org . hibernate . engine . transaction . jta . platform . spi . JtaPlatform | 455 | 28 |
162,153 | protected String getMFMainClass ( Container appEntryContainer , String entryPath , boolean required ) { String mfMainClass = null ; try { String entry = "/META-INF/MANIFEST.MF" ; Entry manifestEntry = appEntryContainer . getEntry ( entry ) ; if ( manifestEntry != null ) { InputStream is = null ; try { is = manifestEntr... | Return the Main - Class from the MANIFEST . MF . | 350 | 13 |
162,154 | protected int insert ( SpdData elt ) { if ( members . isEmpty ( ) ) { members . add ( elt ) ; return 0 ; } int first = 0 ; SpdData firstElt = ( SpdData ) members . get ( first ) ; int last = members . size ( ) - 1 ; SpdData lastElt = ( SpdData ) members . get ( last ) ; if ( elt . compareTo ( firstElt ) < 0 ) { members... | Insert the element into the members vector in sorted lexicographical order | 293 | 13 |
162,155 | public synchronized boolean addSorted ( SpdData data ) { if ( data == null ) { return false ; } else if ( members . contains ( data ) ) { return false ; } else { return ( insert ( data ) != - 1 ) ; } } | add a data in a sorted order | 54 | 7 |
162,156 | public synchronized boolean add ( SpdData data ) { if ( data == null ) { return false ; } else if ( members . contains ( data ) ) { return false ; } else { return members . add ( data ) ; } } | append a data to the members list - not sorted | 49 | 10 |
162,157 | private void collectFeatureInfos ( Map < String , ProductInfo > productInfos , Map < String , FeatureInfo > featuresBySymbolicName ) { ManifestFileProcessor manifestFileProcessor = new ManifestFileProcessor ( ) ; for ( Map . Entry < String , Map < String , ProvisioningFeatureDefinition > > productEntry : manifestFilePr... | Collect information about all installed products and their features . | 393 | 10 |
162,158 | private FeatureInfo getFeatureInfo ( String name , Map < String , ProductInfo > productInfos , Map < String , FeatureInfo > featuresBySymbolicName ) { String productName , featureName ; int index = name . indexOf ( ' ' ) ; if ( index == - 1 ) { FeatureInfo featureInfo = featuresBySymbolicName . get ( name ) ; if ( feat... | Gets a feature by its name using the server . xml featureManager algorithm . | 179 | 16 |
162,159 | private void collectAPIJars ( FeatureInfo featureInfo , Map < String , FeatureInfo > allowedFeatures , Set < File > apiJars ) { for ( SubsystemContentType contentType : JAR_CONTENT_TYPES ) { for ( FeatureResource resource : featureInfo . feature . getConstituents ( contentType ) ) { if ( APIType . getAPIType ( resource... | Collect API JARs from a feature and its recursive dependencies . | 257 | 13 |
162,160 | private void createClasspathJar ( File outputFile , String classpath ) throws IOException { FileOutputStream out = new FileOutputStream ( outputFile ) ; try { Manifest manifest = new Manifest ( ) ; Attributes attrs = manifest . getMainAttributes ( ) ; attrs . put ( Attributes . Name . MANIFEST_VERSION , "1.0" ) ; attrs... | Writes a JAR with a MANIFEST . MF containing the Class - Path string . | 119 | 19 |
162,161 | public void setupDiscProcess ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "setupDiscProcess" ) ; } ChannelData list [ ] = chainData . getChannelList ( ) ; Class < ? > discriminatoryType = null ; DiscriminationProcessImpl dp = null ; if ( TraceComponent . isAnyTrac... | This method is called from the channel framework right before the start method is called . In between it starts up the channels in the chain . | 552 | 27 |
162,162 | public void startDiscProcessBetweenChannels ( InboundChannel appChannel , InboundChannel devChannel , int discWeight ) throws ChainException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "startDiscProcessBetweenChannels" ) ; } // Get the discriminator for the app chann... | This method is called from ChannelFrameworkImpl during chain startup to start up the discrimination process between each set of adjacent channels in the chain . | 795 | 28 |
162,163 | public void disableChannel ( Channel inputChannel ) throws InvalidChannelNameException , DiscriminationProcessException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "disableChannel: " + inputChannel . getName ( ) ) ; } synchronized ( state ) { if ( RuntimeState . STAR... | Disable the input channel . | 624 | 5 |
162,164 | @ Override public void writeSilence ( MessageItem m ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "writeSilence" , new Object [ ] { m } ) ; JsMessage jsMsg = m . getMessage ( ) ; // There may be Completed ticks after the Value, if so then // write these into ... | This method uses a Value message to write Silence into the stream because a message has been filtered out | 588 | 19 |
162,165 | private void handleNewGap ( long startstamp , long endstamp ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "handleNewGap" , new Object [ ] { Long . valueOf ( startstamp ) , Long . valueOf ( endstamp ) } ) ; TickRange tr = new TickRange ( TickRange . Requested , start... | all methods calling this are already synchronized | 276 | 7 |
162,166 | protected static void addAlarm ( Object key , Object alarmObject ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "addAlarm" , new Object [ ] { key , alarmObject } ) ; synchronized ( pendingAlarms ) { Set alarms = null ; if ( pendingAlarms . containsKey ( key ) ) alarm... | Utility method for adding an alarm which needs to be expired if a flush occurs . | 168 | 17 |
162,167 | protected static void removeAlarm ( Object key , Object alarmObject ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "removeAlarm" , new Object [ ] { key , alarmObject } ) ; synchronized ( pendingAlarms ) { if ( pendingAlarms . containsKey ( key ) ) ( ( Set ) pendingAl... | Utility method for removing an alarm from the alarm set . Has no effect if either no alarms are associated with the given key or the given alarm object does not exist . | 139 | 34 |
162,168 | protected static Iterator getAlarms ( Object key ) { synchronized ( pendingAlarms ) { if ( pendingAlarms . containsKey ( key ) ) return ( ( Set ) pendingAlarms . get ( key ) ) . iterator ( ) ; return new GTSIterator ( ) ; } } | Utility method for getting the list of all alarms associated with a particular key . Returns an empty Iterator if the given key has no alarms . | 60 | 29 |
162,169 | private boolean isStreamBlocked ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( this , tc , "isStreamBlocked" ) ; SibTr . exit ( tc , "isStreamBlocked" , new Object [ ] { Boolean . valueOf ( isStreamBlocked ) , Long . valueOf ( linkBlockingTick ) } ) ; } return this . ... | Is the stream marked as blocked . | 104 | 7 |
162,170 | private boolean isStreamBlockedUnexpectedly ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( this , tc , "isStreamBlockedUnexpectedly" ) ; SibTr . exit ( tc , "isStreamBlockedUnexpectedly" , Boolean . valueOf ( unexpectedBlock ) ) ; } return unexpectedBlock ; } | Is the stream marked as blocked unexpectedly | 89 | 7 |
162,171 | private boolean streamCanAcceptNewMessage ( MessageItem msgItem , long valueTick ) throws SIException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "streamCanAcceptNewMessage" , new Object [ ] { msgItem , Long . valueOf ( valueTick ) } ) ; boolean allowSend = f... | Check to see if the stream is able to accept a new message . If it cannot then the message is only allowed through if it has the possibility of filling in a gap . See defects 244425 and 464463 . | 474 | 45 |
162,172 | public static UOWManager getUOWManager ( ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "getUOWManager" ) ; final UOWManager uowm = com . ibm . ws . uow . embeddable . UOWManagerFactory . getUOWManager ( ) ; if ( tc . isEntryEnabled ( ) ) Tr . exit ( tc , "getUOWManager" , uowm ) ; return uowm ; } | Returns a stateless thread - safe UOWManager instance . | 105 | 12 |
162,173 | String getProcErrorOutput ( Process proc ) throws IOException { StringBuffer output = new StringBuffer ( ) ; InputStream procIn = proc . getInputStream ( ) ; int read ; // Dump the data printed by the process do { byte [ ] buffer = new byte [ BUFFER_SIZE ] ; read = procIn . read ( buffer ) ; String s = new String ( buf... | Grabs the error message generated by executing the process . | 111 | 11 |
162,174 | public void init ( boolean useDirect , int outSize , int inSize , int cacheSize ) { super . init ( useDirect , outSize , inSize , cacheSize ) ; } | Initialize this trailer header storage object with certain configuration information . | 39 | 12 |
162,175 | public void setDeferredTrailer ( HeaderKeys hdr , HttpTrailerGenerator htg ) { if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "setDeferredTrailer(HeaderKeys): " + hdr ) ; } if ( null == hdr ) { throw new IllegalArgumentException ( "Null header name" ) ; } if ( null == htg ) { throw new IllegalArgumentException ( "N... | Set a trailer based upon a not - yet established value . | 119 | 12 |
162,176 | public void computeRemainingTrailers ( ) { if ( tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "computeRemainingTrailers" ) ; } Iterator < HeaderKeys > knowns = this . knownTGs . keySet ( ) . iterator ( ) ; while ( knowns . hasNext ( ) ) { HeaderKeys key = knowns . next ( ) ; setHeader ( key , this . knownTGs . get ( ke... | Compute all deferred headers . | 141 | 6 |
162,177 | public void destroy ( ) { if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Destroy trailers: " + this ) ; } super . destroy ( ) ; if ( null != this . myFactory ) { this . myFactory . releaseTrailers ( this ) ; this . myFactory = null ; } } | Destroy this object . | 70 | 4 |
162,178 | public HttpTrailersImpl duplicate ( ) { if ( null == this . myFactory ) { if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Null factory, unable to duplicate: " + this ) ; } return null ; } if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Duplicating the trailer headers: " + this ) ; } computeRemainingTrailers ( )... | Create a duplicate version of these trailer headers . | 123 | 9 |
162,179 | public static boolean isPathContained ( List < String > allowedPaths , String targetPath ) { if ( allowedPaths == null || allowedPaths . isEmpty ( ) || targetPath == null ) { return false ; } //Remove trailing slashes, if applicable if ( ! targetPath . isEmpty ( ) && targetPath . charAt ( targetPath . length ( ) - 1 ) ... | Returns true if the targetPath is contained within one of the allowedPaths . | 489 | 16 |
162,180 | public StatisticImpl getStatistic ( ) { if ( enabled ) { long curTime = stat . updateIntegral ( ) ; stat . setLastSampleTime ( curTime ) ; return stat ; } else { return stat ; } } | to time . | 49 | 3 |
162,181 | public void combine ( SpdLoad other ) { if ( other == null ) return ; if ( stat . isEnabled ( ) && other . isEnabled ( ) ) //stat.combine((BoundedRangeStatisticImpl)other.getStatistic()); stat . combine ( other . getStatistic ( ) ) ; } | Combine this data and other SpdLoad data | 65 | 10 |
162,182 | private String getProperty ( String variable , EvaluationContext context , boolean ignoreWarnings , boolean useEnvironment ) throws ConfigEvaluatorException { return stringUtils . convertToString ( getPropertyObject ( variable , context , ignoreWarnings , useEnvironment ) ) ; } | Returns the value of the variable as a string or null if the property does not exist . | 58 | 18 |
162,183 | Object processVariableLists ( Object rawValue , ExtendedAttributeDefinition attributeDef , EvaluationContext context , boolean ignoreWarnings ) throws ConfigEvaluatorException { if ( attributeDef != null && ! attributeDef . resolveVariables ( ) ) return rawValue ; if ( rawValue instanceof List ) { List < Object > retur... | Replaces list variable expressions in raw string values | 288 | 9 |
162,184 | ContentMatcher nextMatcher ( Conjunction selector , ContentMatcher oldMatcher ) { return Factory . createMatcher ( ordinalPosition , selector , oldMatcher ) ; } | Determine the next matcher to which a put operation should be delegated . Except when cacheing is active this method delegates to Factory . createMatcher . It is overridden in EqualityMatcher to wrap newly created Matchers in a CacheingMatcher when appropriate | 38 | 54 |
162,185 | private void syncToOSThread ( WebSecurityContext webSecurityContext ) throws SecurityViolationException { try { Object token = ThreadIdentityManager . setAppThreadIdentity ( subjectManager . getInvocationSubject ( ) ) ; webSecurityContext . setSyncToOSThreadToken ( token ) ; } catch ( ThreadIdentityException tie ) { Se... | Sync the invocation Subject s identity to the thread if request by the application . | 121 | 15 |
162,186 | private void resetSyncToOSThread ( WebSecurityContext webSecurityContext ) throws ThreadIdentityException { Object token = webSecurityContext . getSyncToOSThreadToken ( ) ; if ( token != null ) { ThreadIdentityManager . resetChecked ( token ) ; } } | Remove the invocation Subject s identity from the thread if it was previously sync ed . | 58 | 16 |
162,187 | public AuthenticationResult authenticateRequest ( WebRequest webRequest ) { WebAuthenticator authenticator = getWebAuthenticatorProxy ( ) ; return authenticator . authenticate ( webRequest ) ; } | The main method called by the preInvoke . The return value of this method tells us if access to the requested resource is allowed or not . Delegates to the authenticator proxy to handle the authentication . | 39 | 41 |
162,188 | public boolean authorize ( AuthenticationResult authResult , String appName , String uriName , Subject previousCaller , List < String > requiredRoles ) { // Set the authorized subject on the thread subjectManager . setCallerSubject ( authResult . getSubject ( ) ) ; boolean isAuthorized = authorize ( authResult , appNam... | Call the authorization service to determine if the subject is authorized to the given roles | 145 | 15 |
162,189 | public WebReply performInitialChecks ( WebRequest webRequest , String uriName ) { WebReply webReply = null ; HttpServletRequest req = webRequest . getHttpServletRequest ( ) ; String methodName = req . getMethod ( ) ; if ( uriName == null || uriName . length ( ) == 0 ) { return new DenyReply ( "Invalid URI passed to Sec... | Perform the preliminary checks to see if we should proceed to authentication and authorization . | 244 | 16 |
162,190 | private WebReply unprotectedSpecialURI ( WebRequest webRequest , String uriName , String methodName ) { LoginConfiguration loginConfig = webRequest . getLoginConfig ( ) ; if ( loginConfig == null ) return null ; String authenticationMethod = loginConfig . getAuthenticationMethod ( ) ; FormLoginConfiguration formLoginCo... | Determines if the URI requested is special and should always be treated as unprotected such as the form login page . | 568 | 23 |
162,191 | private boolean isServletSpec31 ( ) { if ( com . ibm . ws . webcontainer . osgi . WebContainer . getServletContainerSpecLevel ( ) >= 31 ) return true ; return false ; } | Check to see if running under servlet spec 3 . 1 | 47 | 12 |
162,192 | private void notifyWebAppSecurityConfigChangeListeners ( List < String > delta ) { WebAppSecurityConfigChangeEvent event = new WebAppSecurityConfigChangeEventImpl ( delta ) ; for ( WebAppSecurityConfigChangeListener listener : webAppSecurityConfigchangeListenerRef . services ( ) ) { listener . notifyWebAppSecurityConfi... | Notify the registered listeners of the change to the UserRegistry configuration . | 75 | 15 |
162,193 | private String toStringFormChangedPropertiesMap ( Map < String , String > delta ) { if ( delta == null || delta . isEmpty ( ) ) { return "" ; } StringBuffer sb = new StringBuffer ( ) ; for ( Map . Entry < String , String > entry : delta . entrySet ( ) ) { if ( sb . length ( ) > 0 ) { sb . append ( "," ) ; } sb . append... | Format the map of config change attributes for the audit function . The output format would be the same as original WebAppSecurityConfig . getChangedProperties method . | 130 | 32 |
162,194 | private void logAuditEntriesBeforeAuthn ( WebReply webReply , Subject receivedSubject , String uriName , WebRequest webRequest ) { AuthenticationResult authResult ; if ( webReply instanceof PermitReply ) { authResult = new AuthenticationResult ( AuthResult . SUCCESS , receivedSubject , null , null , AuditEvent . OUTCOM... | no null check for webReply object so make sure it is not null upon calling this method . | 199 | 19 |
162,195 | private void postRoutedNotificationListenerRegistrationEvent ( String operation , NotificationTargetInformation nti ) { Map < String , Object > props = createListenerRegistrationEvent ( operation , nti ) ; safePostEvent ( new Event ( REGISTER_JMX_NOTIFICATION_LISTENER_TOPIC , props ) ) ; } | Post an event to EventAdmin instructing the Target - Client Manager to register or unregister a listener for a given target . | 69 | 25 |
162,196 | private void postRoutedServerNotificationListenerRegistrationEvent ( String operation , NotificationTargetInformation nti , ObjectName listener , NotificationFilter filter , Object handback ) { Map < String , Object > props = createServerListenerRegistrationEvent ( operation , nti , listener , filter , handback ) ; saf... | Post an event to EventAdmin instructing the Target - Client Manager to register or unregister a listener MBean on a given target . | 90 | 28 |
162,197 | private void safePostEvent ( Event event ) { EventAdmin ea = eventAdminRef . getService ( ) ; if ( ea != null ) { ea . postEvent ( event ) ; } else if ( tc . isEventEnabled ( ) ) { Tr . event ( tc , "The EventAdmin service is unavailable. Unable to post the Event: " + event ) ; } } | Null - safe event posting to eventAdminRef . | 81 | 10 |
162,198 | public void enableDestinationCreation ( SICoreConnectionFactory siccf ) { if ( tcInt . isEntryEnabled ( ) ) SibTr . entry ( tcInt , "enableDestinationCreation" ) ; try { if ( admin == null ) { if ( tcInt . isDebugEnabled ( ) ) SibTr . debug ( tcInt , "Setting up destination definition objects." ) ; // The same object i... | This method sets up the destination definitions . It is called | 221 | 11 |
162,199 | private void createDestination ( String name , com . ibm . wsspi . sib . core . DestinationType destType , Reliability defaultReliability ) throws JMSException { if ( tcInt . isEntryEnabled ( ) ) SibTr . entry ( tcInt , "createDestination(String, DestinationType)" ) ; if ( tcInt . isDebugEnabled ( ) ) { SibTr . debug (... | Internal method to do the creation given a name a ddf . | 737 | 13 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.