idx int64 0 165k | question stringlengths 73 4.15k | target stringlengths 5 918 | len_question int64 21 890 | len_target int64 3 255 |
|---|---|---|---|---|
161,800 | @ Trivial private static String toKey ( String name , String filter , SearchControls cons ) { int length = name . length ( ) + filter . length ( ) + 100 ; StringBuffer key = new StringBuffer ( length ) ; key . append ( name ) ; key . append ( "|" ) ; key . append ( filter ) ; key . append ( "|" ) ; key . append ( cons ... | Returns a hash key for the name|filter|cons tuple used in the search query - results cache . | 219 | 21 |
161,801 | @ Trivial private static String toKey ( String name , String filterExpr , Object [ ] filterArgs , SearchControls cons ) { int length = name . length ( ) + filterExpr . length ( ) + filterArgs . length + 200 ; StringBuffer key = new StringBuffer ( length ) ; key . append ( name ) ; key . append ( "|" ) ; key . append ( ... | Returns a hash key for the name|filterExpr|filterArgs|cons tuple used in the search query - results cache . | 209 | 26 |
161,802 | public NameParser getNameParser ( ) throws WIMException { if ( iNameParser == null ) { TimedDirContext ctx = iContextManager . getDirContext ( ) ; try { try { iNameParser = ctx . getNameParser ( "" ) ; } catch ( NamingException e ) { if ( ! ContextManager . isConnectionException ( e ) ) { throw e ; } ctx = iContextMana... | Retrieves the parser associated with the root context . | 224 | 11 |
161,803 | private void createSearchResultsCache ( ) { final String METHODNAME = "createSearchResultsCache" ; if ( iSearchResultsCacheEnabled ) { if ( FactoryManager . getCacheUtil ( ) . isCacheAvailable ( ) ) { iSearchResultsCache = FactoryManager . getCacheUtil ( ) . initialize ( "SearchResultsCache" , iSearchResultsCacheSize ,... | Method to create the search results cache if configured . | 280 | 10 |
161,804 | private void createAttributesCache ( ) { final String METHODNAME = "createAttributesCache" ; if ( iAttrsCacheEnabled ) { if ( FactoryManager . getCacheUtil ( ) . isCacheAvailable ( ) ) { iAttrsCache = FactoryManager . getCacheUtil ( ) . initialize ( "AttributesCache" , iAttrsCacheSize , iAttrsCacheSize , iAttrsCacheTim... | Method to create the attributes cache if configured . | 275 | 9 |
161,805 | public void invalidateAttributes ( String DN , String extId , String uniqueName ) { final String METHODNAME = "invalidateAttributes(String, String, String)" ; if ( getAttributesCache ( ) != null ) { if ( DN != null ) { getAttributesCache ( ) . invalidate ( toKey ( DN ) ) ; } if ( extId != null ) { getAttributesCache ( ... | Method to invalidate the specified entry from the attributes cache . One or all parameters can be set in a single call . If all parameters are null then this operation no - ops . | 169 | 36 |
161,806 | public LdapEntry getEntityByIdentifier ( IdentifierType id , List < String > inEntityTypes , List < String > propNames , boolean getMbrshipAttr , boolean getMbrAttr ) throws WIMException { return getEntityByIdentifier ( id . getExternalName ( ) , id . getExternalId ( ) , id . getUniqueName ( ) , inEntityTypes , propNam... | Get an LDAP entity by an identifier . | 104 | 9 |
161,807 | public LdapEntry getEntityByIdentifier ( String dn , String extId , String uniqueName , List < String > inEntityTypes , List < String > propNames , boolean getMbrshipAttr , boolean getMbrAttr ) throws WIMException { String [ ] attrIds = iLdapConfigMgr . getAttributeNames ( inEntityTypes , propNames , getMbrshipAttr , g... | Get an LDAP entity by an identifier . One of dn extId or uniqueName must be non - null . | 661 | 24 |
161,808 | private String getUniqueName ( String dn , String entityType , Attributes attrs ) throws WIMException { final String METHODNAME = "getUniqueName" ; String uniqueName = null ; dn = iLdapConfigMgr . switchToNode ( dn ) ; if ( iLdapConfigMgr . needTranslateRDN ( ) && iLdapConfigMgr . needTranslateRDN ( entityType ) ) { tr... | Get the unique name for the specified distinguished name . | 782 | 10 |
161,809 | @ FFDCIgnore ( { NamingException . class , NameNotFoundException . class } ) private Attributes getAttributes ( String name , String [ ] attrIds ) throws WIMException { Attributes attributes = null ; if ( iLdapConfigMgr . getUseEncodingInSearchExpression ( ) != null ) name = LdapHelper . encodeAttribute ( name , iLdapC... | Get the specified attributes for the distinguished name . | 480 | 9 |
161,810 | public Attributes checkAttributesCache ( String name , String [ ] attrIds ) throws WIMException { final String METHODNAME = "checkAttributesCache" ; Attributes attributes = null ; // If attribute cache is available, look up cache first if ( getAttributesCache ( ) != null ) { String key = toKey ( name ) ; Object cached ... | Check the attributes cache for the attributes on the distinguished name . If any of the attributes are missing a call to the LDAP server will be made to retrieve them . | 561 | 33 |
161,811 | private void updateAttributesCache ( String uniqueNameKey , String dn , Attributes newAttrs , String [ ] attrIds ) { final String METHODNAME = "updateAttributesCache(key,dn,newAttrs)" ; /* * Add uniqueName to DN mapping to cache */ getAttributesCache ( ) . put ( uniqueNameKey , dn , 1 , iAttrsCacheTimeOut , 0 , null ) ... | Update the attributes cache by adding a mapping of the unique name to distinguished name and mapping the distinguished name to the updated attributes . | 246 | 25 |
161,812 | private void updateAttributesCache ( String key , Attributes missAttrs , Attributes cachedAttrs , String [ ] missAttrIds ) { final String METHODNAME = "updateAttributesCache(key,missAttrs,cachedAttrs,missAttrIds)" ; if ( missAttrIds != null ) { boolean newattr = false ; // differentiate between a new entry and an entry... | Update the cached attributes for the specified key . Only attribute IDs that are in the missAttrIds array will be added into the cached attributes . | 660 | 30 |
161,813 | private void updateAttributesCache ( String key , Attributes missAttrs , Attributes cachedAttrs ) { final String METHODNAME = "updateAttributeCache(key,missAttrs,cachedAttrs)" ; if ( missAttrs . size ( ) > 0 ) { boolean newAttr = false ; // differentiate between a new entry and an entry we'll update so we change the ca... | Update the attributes cache for the specified key . | 391 | 9 |
161,814 | private NamingEnumeration < SearchResult > checkSearchCache ( String name , String filterExpr , Object [ ] filterArgs , SearchControls cons ) throws WIMException { final String METHODNAME = "checkSearchCache" ; NamingEnumeration < SearchResult > neu = null ; if ( getSearchResultsCache ( ) != null ) { String key = null ... | Check the search cache for previously performed searches . If the result is not cached query the LDAP server . | 331 | 21 |
161,815 | @ FFDCIgnore ( NamingException . class ) private NamingEnumeration < SearchResult > updateSearchCache ( String searchBase , String key , NamingEnumeration < SearchResult > neu , String [ ] reqAttrIds ) throws WIMSystemException { final String METHODNAME = "updateSearchCache" ; CachedNamingEnumeration clone1 = new Cache... | Update the search cache with search results . | 487 | 8 |
161,816 | public Map < String , LdapEntry > getDynamicGroups ( String bases [ ] , List < String > propNames , boolean getMbrshipAttr ) throws WIMException { Map < String , LdapEntry > dynaGrps = new HashMap < String , LdapEntry > ( ) ; String [ ] attrIds = iLdapConfigMgr . getAttributeNames ( iLdapConfigMgr . getGroupTypes ( ) ,... | Get dynamic groups . | 569 | 4 |
161,817 | public boolean isMemberInURLQuery ( LdapURL [ ] urls , String dn ) throws WIMException { boolean result = false ; String [ ] attrIds = { } ; String rdn = LdapHelper . getRDN ( dn ) ; if ( urls != null ) { for ( int i = 0 ; i < urls . length ; i ++ ) { LdapURL ldapURL = urls [ i ] ; if ( ldapURL . parsedOK ( ) ) { Strin... | Determine whether the distinguished name is in the LDAP URL query . | 454 | 15 |
161,818 | public SearchResult searchByOperationalAttribute ( String dn , String filter , List < String > inEntityTypes , List < String > propNames , String oprAttribute ) throws WIMException { String inEntityType = null ; List < String > supportedProps = propNames ; if ( inEntityTypes != null && inEntityTypes . size ( ) > 0 ) { ... | Search using operational attribute specified in the parameter . | 356 | 9 |
161,819 | private String getBinaryAttributes ( ) { // Add binary settings for all octet string attributes. StringBuffer binaryAttrNamesBuffer = new StringBuffer ( ) ; // Check the ldap data type of the extId attribute. Map < String , LdapAttribute > attrMap = iLdapConfigMgr . getAttributes ( ) ; for ( String attrName : attrMap .... | Get the list of configure binary attributes . | 192 | 8 |
161,820 | public void modifyAttributes ( String name , ModificationItem [ ] mods ) throws NamingException , WIMException { TimedDirContext ctx = iContextManager . getDirContext ( ) ; // checkWritePermission(ctx); TODO Why are we not checking for permission here? try { try { ctx . modifyAttributes ( new LdapName ( name ) , mods )... | Modify the given LDAP name according to the specified modification items . | 258 | 14 |
161,821 | public void modifyAttributes ( String dn , int mod_op , Attributes attrs ) throws NamingException , WIMException { TimedDirContext ctx = iContextManager . getDirContext ( ) ; iContextManager . checkWritePermission ( ctx ) ; try { try { ctx . modifyAttributes ( new LdapName ( dn ) , mod_op , attrs ) ; } catch ( NamingEx... | Modify the attributes for the specified distinguished name . | 267 | 10 |
161,822 | public void rename ( String dn , String newDn ) throws WIMException { TimedDirContext ctx = iContextManager . getDirContext ( ) ; iContextManager . checkWritePermission ( ctx ) ; try { try { ctx . rename ( dn , newDn ) ; } catch ( NamingException e ) { if ( ! ContextManager . isConnectionException ( e ) ) { throw e ; }... | Rename an entity . | 223 | 5 |
161,823 | protected final void addConverter ( String name , String converterId ) { _factories . put ( name , new ConverterHandlerFactory ( converterId ) ) ; } | Add a ConvertHandler for the specified converterId | 36 | 9 |
161,824 | protected final void addConverter ( String name , String converterId , Class < ? extends TagHandler > type ) { _factories . put ( name , new UserConverterHandlerFactory ( converterId , type ) ) ; } | Add a ConvertHandler for the specified converterId of a TagHandler type | 49 | 14 |
161,825 | protected final void addTagHandler ( String name , Class < ? extends TagHandler > handlerType ) { _factories . put ( name , new HandlerFactory ( handlerType ) ) ; } | Use the specified HandlerType in compiling Facelets . HandlerType must extend TagHandler . | 39 | 17 |
161,826 | protected final void addUserTag ( String name , URL source ) { if ( _strictJsf2FaceletsCompatibility == null ) { MyfacesConfig config = MyfacesConfig . getCurrentInstance ( FacesContext . getCurrentInstance ( ) . getExternalContext ( ) ) ; _strictJsf2FaceletsCompatibility = config . isStrictJsf2FaceletsCompatibility ( ... | Add a UserTagHandler specified a the URL source . | 147 | 11 |
161,827 | @ Reference ( policy = ReferencePolicy . DYNAMIC , cardinality = ReferenceCardinality . MULTIPLE , target = "(!(com.ibm.ws.security.registry.type=QuickStartSecurityRegistry))" ) protected synchronized void setUserRegistry ( ServiceReference < UserRegistry > ref ) { urs . add ( ref ) ; unregisterQuickStartSecurityRegist... | This method will only be called for UserRegistryConfigurations that are not the one we have defined here . | 102 | 22 |
161,828 | @ Reference ( policy = ReferencePolicy . DYNAMIC , cardinality = ReferenceCardinality . MULTIPLE , target = "(!(com.ibm.ws.management.security.role.name=QuickStartSecurityAdministratorRole))" ) protected synchronized void setManagementRole ( ServiceReference < ManagementRole > ref ) { managementRoles . add ( ref ) ; un... | This method will only be called for ManagementRoles that are not the one we have defined here . | 103 | 20 |
161,829 | @ Modified protected synchronized void modify ( QuickStartSecurityConfig config ) { this . config = config ; validateConfigurationProperties ( ) ; if ( urConfigReg == null ) { registerQuickStartSecurityRegistryConfiguration ( ) ; } else { updateQuickStartSecurityRegistryConfiguration ( ) ; } unregisterQuickStartSecurit... | Push the new user and password into the registry s configuration . | 82 | 12 |
161,830 | @ Trivial private boolean isStringValueUndefined ( Object str ) { if ( str instanceof SerializableProtectedString ) { // Avoid constructing a String from a ProtectedString char [ ] contents = ( ( SerializableProtectedString ) str ) . getChars ( ) ; for ( char ch : contents ) if ( ch > ' ' ) return false ; // See the de... | Check if the value is non - null not empty and not all white - space . | 118 | 17 |
161,831 | private Dictionary < String , Object > buildUserRegistryConfigProps ( ) { Hashtable < String , Object > properties = new Hashtable < String , Object > ( ) ; properties . put ( "config.id" , QUICK_START_SECURITY_REGISTRY_ID ) ; properties . put ( "id" , QUICK_START_SECURITY_REGISTRY_ID ) ; properties . put ( UserRegistr... | Build the UserRegistryConfiguration properties based on the current user and password . | 161 | 15 |
161,832 | private void registerQuickStartSecurityRegistryConfiguration ( ) { if ( bc == null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "BundleContext is null, we must be deactivated." ) ; } return ; } if ( urConfigReg != null ) { if ( TraceComponent . isAnyTracingEnabled (... | Create register and return the ServiceRegistration for the quick start security UserRegistryConfiguration . | 425 | 17 |
161,833 | private void unregisterQuickStartSecurityRegistryConfiguration ( ) { if ( urConfigReg != null ) { urConfigReg . unregister ( ) ; urConfigReg = null ; quickStartRegistry = null ; } else { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "QuickStartSecurityRegistry configurat... | Unregister the quick start security security UserRegistryConfiguration . | 91 | 12 |
161,834 | private void registerQuickStartSecurityAdministratorRole ( ) { if ( bc == null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "BundleContext is null, we must be deactivated." ) ; } return ; } if ( managementRoleReg != null ) { if ( TraceComponent . isAnyTracingEnabled... | Register the quick start security management role . | 428 | 8 |
161,835 | static long roundUpDelay ( long delay , TimeUnit unit , long now ) { if ( delay < 0 ) { // Negative is treated as 0. delay = 0 ; } long target = now + unit . toMillis ( delay ) ; if ( target < now ) { // We can't add the delay to the current time without overflow. // Return the delay unaltered. return delay ; } long re... | Round up delays so that all tasks fire at approximately with approximately the same 15s period . | 189 | 18 |
161,836 | public static void copyStream ( InputStream from , OutputStream to ) throws IOException { byte buffer [ ] = new byte [ 2048 ] ; int bytesRead ; while ( ( bytesRead = from . read ( buffer ) ) != - 1 ) { to . write ( buffer , 0 , bytesRead ) ; } from . close ( ) ; } | Copy the given InputStream to the given OutputStream . | 71 | 11 |
161,837 | public static void copyReader ( Reader from , Writer to ) throws IOException { char buffer [ ] = new char [ 2048 ] ; int charsRead ; while ( ( charsRead = from . read ( buffer ) ) != - 1 ) { to . write ( buffer , 0 , charsRead ) ; } from . close ( ) ; to . flush ( ) ; } | Copy the given Reader to the given Writer . | 75 | 9 |
161,838 | public void activate ( ) { // if no handlers are currently running, start one now if ( this . numHandlersInFlight . getInt ( ) == 0 ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Activating result handler: " + this . completionPort ) ; } startHandler ( ) ; } } | Activate the result handler when the channel starts . | 85 | 10 |
161,839 | public static void setConnectionHandle ( VirtualConnection vc , ConnectionHandle handle ) { if ( vc == null || handle == null ) { return ; } Map < Object , Object > map = vc . getStateMap ( ) ; // set connection handle into VC Object vcLock = vc . getLockObject ( ) ; synchronized ( vcLock ) { Object tmpHandle = map . g... | Set the connection handle on the virtual connection . | 167 | 9 |
161,840 | protected void setConnectionType ( VirtualConnection vc ) { if ( this . myType == 0 || vc == null ) { ConnectionType newType = ConnectionType . getVCConnectionType ( vc ) ; this . myType = ( newType == null ) ? 0 : newType . export ( ) ; } } | Set ConnectionType based on the input virtual connection . | 67 | 10 |
161,841 | public static void processException ( Throwable th , String sourceId , String probeId , Object callerThis ) { FFDCConfigurator . getDelegate ( ) . processException ( th , sourceId , probeId , callerThis ) ; } | Write a first failure data capture record for the provided throwable | 51 | 12 |
161,842 | void close ( ) { if ( logger . isLoggable ( Level . FINER ) ) { logger . logp ( Level . FINER , logger . getName ( ) , "close" , "Close called for " + RESTClientMessagesUtil . getObjID ( this ) + " within connection: " + connector . getConnectionId ( ) ) ; } closePollingThread ( ) ; if ( notificationRegistry != null ) ... | do the proper cleaning procedures . | 182 | 6 |
161,843 | @ Trivial private File getArchiveFile ( ) { String methodName = "getArchiveFile" ; if ( archiveFileLock != null ) { synchronized ( archiveFileLock ) { if ( ( archiveFile == null ) && ! archiveFileFailed ) { try { archiveFile = extractEntry ( entryInEnclosingContainer , getCacheDir ( ) ) ; // 'extractEntry' throws IOExc... | Answer the archive file . Extract it if necessary . Answer null if extraction fails . | 242 | 16 |
161,844 | private String getArchiveFilePath ( ) { if ( archiveFileLock == null ) { return archiveFilePath ; } else { synchronized ( archiveFileLock ) { @ SuppressWarnings ( "unused" ) File useArchiveFile = getArchiveFile ( ) ; return archiveFilePath ; } } } | Answer the absolute path to the archive file . Do an extraction if this is a nested archive and the file is not yet extracted . Answer null if extraction fails . | 67 | 32 |
161,845 | ZipFileHandle getZipFileHandle ( ) throws IOException { synchronized ( zipFileHandleLock ) { if ( zipFileHandleFailed ) { return null ; } else if ( zipFileHandle != null ) { return zipFileHandle ; } File useArchiveFile = getArchiveFile ( ) ; if ( useArchiveFile == null ) { zipFileHandleFailed = true ; throw new FileNot... | Answer the handle to the archive file of this container . | 174 | 11 |
161,846 | @ Trivial protected ZipFileEntry createEntry ( String entryName , String a_entryPath ) { ZipEntryData [ ] useZipEntries = getZipEntryData ( ) ; if ( useZipEntries . length == 0 ) { return null ; } String r_entryPath = a_entryPath . substring ( 1 ) ; int location = locatePath ( r_entryPath ) ; ZipEntryData entryData ; i... | Answer the zip entry for the zip file entry at the specified path . The zip file entry may be virtual . | 149 | 22 |
161,847 | URI createEntryUri ( String r_entryPath , File useArchiveFile ) { URI archiveUri = getURI ( useArchiveFile ) ; if ( archiveUri == null ) { return null ; } if ( r_entryPath . isEmpty ( ) ) { return null ; } // URLs for jar/zip data now use wsjar to avoid locking issues via jar protocol. // // The single string construct... | Create and return a URI for an entry of an archive . | 243 | 12 |
161,848 | @ Trivial private static URI getURI ( final File file ) { return AccessController . doPrivileged ( new PrivilegedAction < URI > ( ) { @ Override public URI run ( ) { return file . toURI ( ) ; } } ) ; } | File utility ... | 55 | 3 |
161,849 | private ExtractionGuard placeExtractionGuard ( String path ) { boolean isPrimary ; CountDownLatch completionLatch ; synchronized ( extractionsLock ) { completionLatch = extractionLocks . get ( path ) ; if ( completionLatch != null ) { isPrimary = false ; } else { isPrimary = true ; completionLatch = new CountDownLatch ... | Make sure a completion latch exists for a specified path . | 112 | 11 |
161,850 | private void releaseExtractionGuard ( ExtractionGuard extractionLatch ) { synchronized ( extractionsLock ) { extractionLocks . remove ( extractionLatch . path ) ; } extractionLatch . completionLatch . countDown ( ) ; } | unblocking secondary extractions . | 50 | 6 |
161,851 | private boolean isModified ( ArtifactEntry entry , File file ) { long fileLastModified = FileUtils . fileLastModified ( file ) ; long entryLastModified = entry . getLastModified ( ) ; // File 100K entry 10K delta 90k true (entry is much older than the file) // File 10k entry 100k delta 90k true (file is much older than... | Tell if an entry is modified relative to a file . That is if the last modified times are different . | 171 | 21 |
161,852 | @ Trivial private boolean deleteAll ( File rootFile ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Delete [ " + rootFile . getAbsolutePath ( ) + " ]" ) ; } if ( FileUtils . fileIsFile ( rootFile ) ) { boolean didDelete = FileUtils . fileDelete ( rootFile ) ; if ( ! d... | a single consolidated wrapper . | 430 | 5 |
161,853 | public void startRecovery ( RecoveryLogFactory fac ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "startRecovery" , fac ) ; // This is a stand alone server. HA can never effect this server so direct local recovery now. RecoveryDirector director = null ; try { director = RecoveryDirectorFactory . recoveryDirector ... | Driven by the runtime during server startup . This hook is used to perform recovery log service initialization . | 528 | 20 |
161,854 | private boolean checkPeersAtStartup ( ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "checkPeersAtStartup" ) ; boolean checkAtStartup ; try { checkAtStartup = AccessController . doPrivileged ( new PrivilegedExceptionAction < Boolean > ( ) { @ Override public Boolean run ( ) { return Boolean . getBoolean ( "com.ib... | This method retrieves a system property named com . ibm . ws . recoverylog . spi . CheckPeersAtStartup which allows the check to see if peer servers are stale to be bypassed at server startup . The checks will subsequently be performed through the spun - off timer thread . | 197 | 61 |
161,855 | public synchronized void writeHeader ( long timestamp ) throws IOException { if ( writer == null && headerBytes != null ) { writer = createNewWriter ( manager . startNewFile ( timestamp ) ) ; writer . write ( headerBytes ) ; manager . notifyOfFileAction ( LogEventListener . EVENTTYPEROLL ) ; } } | Publishes header if it wasn t done yet . | 69 | 10 |
161,856 | public synchronized void stop ( ) { if ( writer != null ) { try { writer . close ( headerBytes ) ; writer = null ; } catch ( IOException ex ) { // No need to crash on this error even if the tail won't be written // since reading logic can take care of that. } } // Ensure that timer is stopped as well. disableFileSwitch... | Stops this writer and close its output stream . | 107 | 10 |
161,857 | public void enableFileSwitch ( int switchHour ) { if ( fileSwitchTimer == null ) { fileSwitchTimer = AccessHelper . createTimer ( ) ; } //set calendar instance to the specified configuration hour for cutting //default to midnight when the passed in value is invalid, or midnight is specified (to avoid negative value whe... | Enables file switching for the writer by configuring the timer to set a trigger based on the switchHour parm | 498 | 23 |
161,858 | private X509TrustManager createPromptingTrustManager ( ) { TrustManager [ ] trustManagers = null ; try { String defaultAlg = TrustManagerFactory . getDefaultAlgorithm ( ) ; TrustManagerFactory tmf = TrustManagerFactory . getInstance ( defaultAlg ) ; tmf . init ( ( KeyStore ) null ) ; trustManagers = tmf . getTrustManag... | Create a custom trust manager which will prompt for trust acceptance . | 214 | 12 |
161,859 | private SSLSocketFactory setUpSSLContext ( ) throws NoSuchAlgorithmException , KeyManagementException { SSLContext ctx = SSLContext . getInstance ( "SSL" ) ; ctx . init ( null , new TrustManager [ ] { createPromptingTrustManager ( ) } , null ) ; return ctx . getSocketFactory ( ) ; } | Set up the common SSL context for the outbound connection . | 75 | 12 |
161,860 | private HashMap < String , Object > createJMXEnvironment ( final String user , final String password , final SSLSocketFactory sslSF ) { HashMap < String , Object > environment = new HashMap < String , Object > ( ) ; environment . put ( "jmx.remote.protocol.provider.pkgs" , "com.ibm.ws.jmx.connector.client" ) ; environm... | Creates the common JMX environment used to connect to the controller . | 202 | 14 |
161,861 | private JMXConnector getMBeanServerConnection ( String controllerHost , int controllerPort , HashMap < String , Object > environment ) throws MalformedURLException , IOException { JMXServiceURL serviceURL = new JMXServiceURL ( "REST" , controllerHost , controllerPort , "/IBMJMXConnectorREST" ) ; return new ClientProvid... | Get the MBeanServerConnection for the target controller host and port . | 92 | 15 |
161,862 | public JMXConnector getJMXConnector ( String controllerHost , int controllerPort , String user , String password ) throws NoSuchAlgorithmException , KeyManagementException , MalformedURLException , IOException { HashMap < String , Object > environment = createJMXEnvironment ( user , password , setUpSSLContext ( ) ) ; J... | Returns a connected JMXConnector . | 101 | 7 |
161,863 | public synchronized void commit ( ) throws SIIncorrectCallException , SIRollbackException , SIResourceException , SIConnectionLostException , SIErrorException { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "commit" ) ; if ( ! valid ) { throw new SIIncorrectCallException ( nls . getFormattedMessage ( "TRAN... | Commits this transaction by flowing the commit to the server and marking this transaction as invalid . | 442 | 18 |
161,864 | public synchronized void rollback ( ) throws SIIncorrectCallException , SIResourceException , SIConnectionLostException , SIErrorException { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "rollback" ) ; if ( ! valid ) { throw new SIIncorrectCallException ( nls . getFormattedMessage ( "TRANSACTION_COMPLETE_S... | Rolls back this transaction by flowing the rollback to the server and marking this transaction as invalid . | 522 | 20 |
161,865 | public synchronized boolean isValid ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "isValid" ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "isValid" , "" + valid ) ; return valid ; } | This method will return true if the transaction has not been committed or rolled back . | 68 | 16 |
161,866 | public short getLowestMessagePriority ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getLowestMessagePriority" ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "getLowestMessagePriority" , "" + lowestPriority ) ; return lowestPriority ; } | This method gets the lowest message priority being used in this transaction and as such is the JFAP priority that commit and rollback will be sent as . | 83 | 31 |
161,867 | public void updateLowestMessagePriority ( short messagePriority ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "updateLowestMessagePriority" , new Object [ ] { "" + messagePriority } ) ; // Only update if the message priority is lower than another message if ( messagePriority < this . lowestPriority ) {... | This method is used to update the lowest message priority that has been sent on this transaction . The value passed in is stored if it is lower than a previous value . Otherwise it is ignored . The stored value is then used on the exchanges sent when we commit or rollback . | 152 | 55 |
161,868 | public void associateConsumer ( ConsumerSessionProxy consumer ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "associateConsumer" , new Object [ ] { consumer , Boolean . valueOf ( strictRedeliveryOrdering ) } ) ; // This is a no-op if strict redelivery ordering... | Called each time a recoverable message is deleted from a consumer using a proxy queue under this transaction to allow the transaction to callback inform the proxy queue it should purge any read - ahead messages if required . | 157 | 41 |
161,869 | public void informConsumersOfRollback ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "informConsumersOfRollback" , new Object [ ] { Boolean . valueOf ( strictRedeliveryOrdering ) } ) ; if ( strictRedeliveryOrdering ) { // Take a copy of the set of consumers,... | Inform all associated consumers that a rollback has occurred . | 449 | 12 |
161,870 | static void unboundSfsbFromExtendedPC ( JPAExPcBindingContext bindingContext ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "unboundSfsbFromExtendedPC : " + bindingContext ) ; JPAPuId puIds [ ] = bindingContext . getExPcPuIds ( ) ; long bindId = bindingContext . getBind... | When SFSB instances are removed or discard this method is called to unbind the SFSB from the associated persistence context . When the last SFSB is removed from the bound collection the associated EntityManager is closed . | 449 | 45 |
161,871 | private static final boolean parentHasSameExPc ( JPAPuId parentPuIds [ ] , JPAPuId puId ) { for ( JPAPuId parentPuId : parentPuIds ) { if ( parentPuId . equals ( puId ) ) { return true ; } } return false ; } | Returns true if the caller and callee have declared the same | 72 | 12 |
161,872 | public void queue ( JFapByteBuffer bufferData , int segmentType , int requestNumber , int priority , SendListener sendListener , Conversation conversation , Connection connection , int conversationId , boolean pooledBuffers , boolean partOfExchange , long size , boolean terminal , ThrottlingPolicy throttlingPolicy ) { ... | Queues the specified request into the priority table . | 247 | 10 |
161,873 | public TransmissionData dequeue ( ) throws SIConnectionDroppedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "dequeue" ) ; TransmissionData retValue = null ; Queue queue = null ; synchronized ( queueMonitor ) { if ( state == CLOSED ) { throw new SIConn... | De - queues the highest priority entry from the table | 796 | 10 |
161,874 | public boolean hasCapacity ( int priority ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "hasCapacity" , "" + priority ) ; boolean result ; synchronized ( queueMonitor ) { result = priority >= lowestPriorityWithCapacity ; } if ( TraceComponent . isAnyTracingEn... | Checks to see if a given priority level has the capacity to accept another message to be queued . | 119 | 21 |
161,875 | public void close ( boolean immediate ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "close" , "" + immediate ) ; synchronized ( queueMonitor ) { if ( immediate || ( totalQueueDepth == 0 ) ) { state = CLOSED ; closeWaitersMonitor . setActive ( false ) ; } else... | Closes the priority queue . This causes all new queue requests to be ignored . Any existing data that has been queued may be dequeued unless the immediate flag has been set in which case we consider ourselves closed . | 129 | 44 |
161,876 | public void purge ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "purge" ) ; synchronized ( queueMonitor ) { state = CLOSED ; for ( int i = 0 ; i < JFapChannelConstants . MAX_PRIORITY_LEVELS - 1 ; ++ i ) { queueArray [ i ] . monitor . setActive ( false ) ; }... | Purges the content of the priority queue . This closes the queue and wakes up any blocked threads | 151 | 19 |
161,877 | public void waitForCloseToComplete ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "waitForCloseToComplete" ) ; closeWaitersMonitor . waitOn ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "waitForCl... | Blocks until a close operation has completed . I . e . the priority queue has been drained . If the queue is already closed this method returns immeidately . | 101 | 33 |
161,878 | public boolean isEmpty ( ) throws SIConnectionDroppedException { synchronized ( queueMonitor ) { if ( state == CLOSED ) throw new SIConnectionDroppedException ( TraceNLS . getFormattedMessage ( JFapChannelConstants . MSG_BUNDLE , "PRIORITY_QUEUE_PURGED_SICJ0077" , null , "PRIORITY_QUEUE_PURGED_SICJ0077" ) ) ; return to... | Returns true iff this priority queue is empty . | 118 | 10 |
161,879 | private static boolean isGABuild ( ) { boolean result = true ; final Properties props = new Properties ( ) ; AccessController . doPrivileged ( new PrivilegedAction < Object > ( ) { @ Override public Object run ( ) { try { final File version = new File ( getInstallDir ( ) , "lib/versions/WebSphereApplicationServer.prope... | Work out whether we should generate the schema for a GA build or not . | 259 | 15 |
161,880 | public void setFfdcAlready ( boolean ffdcAlready ) { this . ffdcAlready = ffdcAlready ; if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "ffdc already handled? " + ffdcAlready ) ; } } | set to true if FFDC already handle this exception | 60 | 10 |
161,881 | private static String getResource ( Bundle myBundle , String resourcePath ) { if ( myBundle == null ) return null ; String bundleShortDescription = getBundleDescription ( myBundle ) ; StringBuilder responseString = new StringBuilder ( ) ; URL bundleResource = myBundle . getResource ( resourcePath ) ; if ( bundleResourc... | Return as a string the contents of a file in the bundle . | 261 | 13 |
161,882 | private static void harvestPackageList ( BundlePackages packages , Bundle bundle ) { // Double check that the bundle is (still) installed: if ( bundle . getLocation ( ) != null && bundle . getState ( ) != Bundle . UNINSTALLED ) { BundleManifest manifest = new BundleManifest ( bundle ) ; /* * Only bundles with a bundle ... | This method is static to avoid concurrent access issues . | 218 | 10 |
161,883 | public static String extractPackageFromStackTraceElement ( StackTraceElement element ) { String className = element . getClassName ( ) ; int lastDotIndex = className . lastIndexOf ( "." ) ; String packageName ; if ( lastDotIndex > 0 ) { packageName = className . substring ( 0 , lastDotIndex ) ; } else { packageName = c... | Work out the package name from a StackTraceElement . This is easier than a stack trace line because we already know the class name . | 93 | 28 |
161,884 | public boolean isSpecOrThirdPartyOrBootDelegationPackage ( String packageName ) { SharedPackageInspector inspector = st . getService ( ) ; if ( inspector != null ) { PackageType type = inspector . getExportedPackageType ( packageName ) ; if ( type != null && type . isSpecApi ( ) ) { return true ; } } boolean isBundlePa... | Returns true is this package is distributed as part of the Liberty server but is external to IBM and available to user applications - that is if its exposed as a boot delegation package or a spec package or a third party API . | 166 | 44 |
161,885 | public static Properties jslPropertiesToJavaProperties ( final JSLProperties xmlProperties ) { final Properties props = new Properties ( ) ; for ( final Property prop : xmlProperties . getPropertyList ( ) ) { props . setProperty ( prop . getName ( ) , prop . getValue ( ) ) ; } return props ; } | Creates a java . util . Properties map from a com . ibm . jbatch . jsl . model . Properties object . | 73 | 27 |
161,886 | public static JSLProperties javaPropsTojslProperties ( final Properties javaProps ) { JSLProperties newJSLProps = jslFactory . createJSLProperties ( ) ; Enumeration < ? > keySet = javaProps . propertyNames ( ) ; while ( keySet . hasMoreElements ( ) ) { String key = ( String ) keySet . nextElement ( ) ; String value = j... | Creates a new JSLProperties list from a java . util . Properties object . | 160 | 18 |
161,887 | @ Override public Logger getLogger ( String name ) { // get the logger from the super impl Logger logger = super . getLogger ( name ) ; // At this point we don't know which concrete class to use until the // ras/logging provider is initialized enough to provide a // wsLogger class if ( wsLogger == null ) { return logge... | Returns an instance of WsLogger with specified name . If an instance with specified name does not exist it will be created . | 869 | 26 |
161,888 | public ServiceRegistration < KeyringMonitor > monitorKeyRings ( String ID , String trigger , String keyStoreLocation ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) { Tr . event ( this , tc , "monitorKeyRing registration for" , ID ) ; } BundleContext bundleContext = actionable . getBundle... | Registers this KeyringMonitor to start monitoring the specified keyrings by mbean notification . | 233 | 18 |
161,889 | public void start ( ) throws SIResourceException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "start" ) ; synchronized ( this ) { active = true ; // start the liveness timer for sending ControlRequestHighestGeneratedTick, if needed if ( ! completedTicksInitialized ) ... | Start the stream i . e . start sending data and control messages | 318 | 13 |
161,890 | public void stop ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "stop" ) ; synchronized ( this ) { active = false ; // stop the liveness timer for sending ControlRequestHighestGeneratedTick, if needed //NOTE: the requestHighestGeneratedTickTimer will stop of its ow... | Stop the stream i . e . stop sending data and control messages | 234 | 13 |
161,891 | public void processTimedoutEntries ( List timedout ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "processTimedoutEntries" , new Object [ ] { this , timedout } ) ; boolean sendMsg = false ; synchronized ( this ) { if ( active && completedTicksInitialized && ! timedou... | Called when the DecisionExpected timeout occurs | 172 | 9 |
161,892 | public final void expiredRequest ( long tick ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "expiredRequest" , Long . valueOf ( tick ) ) ; expiredRequest ( tick , false ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc ,... | Callback from JSRemoteConsumerPoint that the given tick in the stream should be changed to the completed state . | 99 | 21 |
161,893 | public final void removeConsumerKey ( String selector , JSRemoteConsumerPoint aock ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "removeConsumerKey" , new Object [ ] { selector , aock } ) ; synchronized ( this ) { JSRemoteConsumerPoint aock2 = ( JSRemoteConsumerPoin... | Method to remove the given JSRemoteConsumerPoint from the consumerKeyTable | 159 | 14 |
161,894 | public synchronized long getNumberOfRequestsInState ( int requiredState ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getNumberOfRequestsInState" , Integer . valueOf ( requiredState ) ) ; //Count the number of tick range objects that are in the //specified state lo... | Counts the number of requests that have been completed since reboot | 252 | 12 |
161,895 | public final void unlockRejectedTick ( TransactionCommon t , AOValue storedTick ) throws MessageStoreException , SIResourceException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "unlockRejectedTick" ) ; try { SIMPMessage msg = consumerDispatcher . getMessageByValue (... | Helper method called by the AOStream when a persistent tick representing a persistently locked message should be removed since the message has been rejected . This method will also unlock the message | 600 | 35 |
161,896 | public final void consumeAcceptedTick ( TransactionCommon t , AOValue storedTick ) throws Exception { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "consumeAcceptedTick" , storedTick ) ; try { SIMPMessage msg = consumerDispatcher . getMessageByValue ( storedTick ) ; Tra... | Helper method called by the AOStream when a persistent tick representing a persistently locked message should be removed since the message has been accepted . This method will also consume the message | 301 | 35 |
161,897 | public FileChannel getFileChannel ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "getFileChannel(): " + fc ) ; } return this . fc ; } | Return the FileChannel object that is representing this WsByteBufferImpl . | 56 | 15 |
161,898 | private void convertBufferIfNeeded ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "convertBufferIfNeeded status: " + status ) ; } if ( isFCEnabled ( ) ) { // TRANSFER_TO status is currently on, so turn if OFF status = status & ( ~ WsByteBuffer . STATUS_TRANSFER_TO )... | If the buffer has not already been converted from a TRANSFER_TO buffer back to the more common base BUFFER then do so now . | 583 | 28 |
161,899 | public void checkType ( JSField elem , int indir ) throws JMFSchemaViolationException { if ( ! equivFields ( element , elem ) || indir != indirect ) throw new JMFSchemaViolationException ( "Incorrect list element types" ) ; } | SchemaViolationException if not | 62 | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.