idx int64 0 41.2k | question stringlengths 83 4.15k | target stringlengths 5 715 |
|---|---|---|
6,700 | public static Long convertToInt ( RLPElement rpe ) { Long result = 0L ; byte [ ] rawBytes = rpe . getRawData ( ) ; if ( ( rawBytes != null ) ) { if ( rawBytes . length < EthereumUtil . INT_SIZE ) { byte [ ] fullBytes = new byte [ EthereumUtil . INT_SIZE ] ; int dtDiff = EthereumUtil . INT_SIZE - rawBytes . length ; for... | Converts a int in a RLPElement to int |
6,701 | public static Long convertToLong ( RLPElement rpe ) { Long result = 0L ; byte [ ] rawBytes = rpe . getRawData ( ) ; if ( ( rawBytes != null ) ) { if ( rawBytes . length < EthereumUtil . LONG_SIZE ) { byte [ ] fullBytes = new byte [ EthereumUtil . LONG_SIZE ] ; int dtDiff = EthereumUtil . LONG_SIZE - rawBytes . length ;... | Converts a long in a RLPElement to long |
6,702 | public BitcoinAuxPOWBranch parseAuxPOWBranch ( ByteBuffer rawByteBuffer ) { byte [ ] noOfLinksVarInt = BitcoinUtil . convertVarIntByteBufferToByteArray ( rawByteBuffer ) ; long currentNoOfLinks = BitcoinUtil . getVarInt ( noOfLinksVarInt ) ; ArrayList < byte [ ] > links = new ArrayList ( ( int ) currentNoOfLinks ) ; fo... | Parse an AUXPowBranch |
6,703 | public List < BitcoinTransaction > parseTransactions ( ByteBuffer rawByteBuffer , long noOfTransactions ) { ArrayList < BitcoinTransaction > resultTransactions = new ArrayList < > ( ( int ) noOfTransactions ) ; for ( int k = 0 ; k < noOfTransactions ; k ++ ) { int currentVersion = rawByteBuffer . getInt ( ) ; byte [ ] ... | Parses the Bitcoin transactions in a byte buffer . |
6,704 | public static void jobTotalNumOfTransactions ( JavaSparkContext sc , Configuration hadoopConf , String inputFile , String outputFile ) { JavaPairRDD < BytesWritable , BitcoinBlock > bitcoinBlocksRDD = sc . newAPIHadoopFile ( inputFile , BitcoinBlockFileInputFormat . class , BytesWritable . class , BitcoinBlock . class ... | a job for counting the total number of transactions |
6,705 | public static Tuple2 < String , Long > mapNoOfTransaction ( BitcoinBlock block ) { return new Tuple2 < String , Long > ( "No of transactions: " , ( long ) ( block . getTransactions ( ) . size ( ) ) ) ; } | Maps the number of transactions of a block to a tuple |
6,706 | @ Action ( name = "Invoke AWS Lambda Function" , outputs = { @ Output ( Outputs . RETURN_CODE ) , @ Output ( Outputs . RETURN_RESULT ) , @ Output ( Outputs . EXCEPTION ) } , responses = { @ Response ( text = Outputs . SUCCESS , field = Outputs . RETURN_CODE , value = Outputs . SUCCESS_RETURN_CODE , matchType = MatchTyp... | Invokes an AWS Lambda Function in sync mode using AWS Java SDK |
6,707 | @ Action ( name = "Customize Linux Guest" , outputs = { @ Output ( Outputs . RETURN_CODE ) , @ Output ( Outputs . RETURN_RESULT ) , @ Output ( Outputs . EXCEPTION ) } , responses = { @ Response ( text = Outputs . SUCCESS , field = Outputs . RETURN_CODE , value = Outputs . RETURN_CODE_SUCCESS , matchType = MatchType . C... | Connects to specified data center and customize an existing linux OS based virtual machine identified by the inputs provided . |
6,708 | @ Action ( name = "Array Size" , outputs = { @ Output ( OutputNames . RETURN_RESULT ) , @ Output ( OutputNames . RETURN_CODE ) , @ Output ( OutputNames . EXCEPTION ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = OutputNames . RETURN_CODE , value = ReturnCodes . SUCCESS , matchType = MatchType ... | This operation determines the number of elements in the given JSON array . If an element is itself another JSON array it only counts as 1 element ; in other words it will not expand and count embedded arrays . Null values are also considered to be an element . |
6,709 | public static String parseXml ( String xml , String expression ) throws ParserConfigurationException , IOException , XPathExpressionException , SAXException { DocumentBuilder builder = ResourceLoader . getDocumentBuilder ( ) ; Document document ; try { document = builder . parse ( new InputSource ( new StringReader ( x... | Parse the content of the given xml input and evaluates the given XPath expression . |
6,710 | @ Action ( name = "Validate" , outputs = { @ Output ( RETURN_CODE ) , @ Output ( RESULT_TEXT ) , @ Output ( RETURN_RESULT ) , @ Output ( ERROR_MESSAGE ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS , matchType = COMPARE_EQUAL ) , @ Response ( text = ResponseNames... | Service to validate an XML document . Input must be given for either xmlDocument or for xmlLocation . The xsdLocation input is optional but if specified then the XML document will be validated against the XSD schema . |
6,711 | @ Action ( name = "Remove" , outputs = { @ Output ( RETURN_CODE ) , @ Output ( RETURN_RESULT ) , @ Output ( RESULT_XML ) , @ Output ( ERROR_MESSAGE ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS , matchType = COMPARE_EQUAL ) , @ Response ( text = ResponseNames . ... | Removes an element or attribute from an XML document . |
6,712 | public static String loadAsString ( String resourceFileName ) throws IOException , URISyntaxException { try ( InputStream is = ResourceLoader . class . getClassLoader ( ) . getResourceAsStream ( resourceFileName ) ) { StringWriter stringWriter = new StringWriter ( ) ; IOUtils . copy ( is , stringWriter , StandardCharse... | Loads the contents of a project resource file in a string . |
6,713 | @ Action ( name = "List Item Grabber" , outputs = { @ Output ( RESULT_TEXT ) , @ Output ( RESPONSE ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = RETURN_CODE_SUCCESS , matchType = MatchType . COMPARE_EQUAL ) , @ Response ( text = F... | This operation is used to retrieve a value from a list . When the index of an element from a list is known this operation can be used to extract the element . |
6,714 | @ Action ( name = "Default if empty" , description = OPERATION_DESC , outputs = { @ Output ( value = RETURN_CODE , description = RETURN_CODE_DESC ) , @ Output ( value = RETURN_RESULT , description = RETURN_RESULT_DESC ) , @ Output ( value = EXCEPTION , description = EXCEPTION_DESC ) , } , responses = { @ Response ( tex... | This operation checks if a string is blank or empty and if it s true a default value will be assigned instead of the initial string . |
6,715 | protected void validateDelimiters ( String rowDelimiter , String columnDelimiter ) throws Exception { if ( rowDelimiter . equals ( columnDelimiter ) ) { throw new Exception ( INVALID_DELIMITERS ) ; } if ( StringUtils . contains ( columnDelimiter , rowDelimiter ) ) { throw new Exception ( INVALID_ROW_DELIMITER ) ; } } | This method checks if the delimiters are equal and if the row delimiter is a substring of the column delimiter and throws an exception with the appropriate message . |
6,716 | protected Object [ ] extractHeaderNamesAndValues ( String headersMap , String rowDelimiter , String columnDelimiter ) throws Exception { String [ ] rows = headersMap . split ( Pattern . quote ( rowDelimiter ) ) ; ArrayList < String > headerNames = new ArrayList < > ( ) ; ArrayList < String > headerValues = new ArrayLis... | This method extracts and returns an object containing two Lists . A list with the header names and a list with the header values . Values found on same position in the two lists correspond to each other . |
6,717 | protected boolean validateRow ( String row , String columnDelimiter , int rowNumber ) throws Exception { if ( row . contains ( columnDelimiter ) ) { if ( row . equals ( columnDelimiter ) ) { throw new Exception ( format ( ROW_WITH_EMPTY_HEADERS_INPUT , rowNumber + 1 ) ) ; } else { String [ ] headerNameAndValue = row . ... | This method validates a row contained in the headers input of the operation . |
6,718 | protected SMTPMessage addHeadersToSMTPMessage ( SMTPMessage message , List < String > headerNames , List < String > headerValues ) throws MessagingException { SMTPMessage msg = new SMTPMessage ( message ) ; Iterator namesIter = headerNames . iterator ( ) ; Iterator valuesIter = headerValues . iterator ( ) ; while ( nam... | The method creates a copy of the SMTPMessage object passed through the arguments list and adds the headers to the copied object then returns it . If the header is already present in the message then its values list will be updated with the given header value . |
6,719 | private static String getLowerCaseString ( final String string ) { return StringUtils . strip ( string ) . toLowerCase ( ) ; } | Given a string it lowercase it and strips the blank spaces from the ends |
6,720 | @ Action ( name = "List Contains All" , outputs = { @ Output ( RESPONSE_TEXT ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) , @ Output ( EXCEPTION ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = RETURN_CODE_SUCCESS , matchType = MatchType . COMPARE_EQUAL ) , @ Response ( text ... | This method checks to see if a list contains every element in another list . |
6,721 | public static String execQueryAllRows ( final SQLInputs sqlInputs ) throws Exception { ConnectionService connectionService = new ConnectionService ( ) ; try ( final Connection connection = connectionService . setUpConnection ( sqlInputs ) ) { connection . setReadOnly ( true ) ; Statement statement = connection . create... | todo Run a SQL query with given configuration |
6,722 | public static ObjectContent [ ] getObjectProperties ( ConnectionResources connectionResources , ManagedObjectReference mor , String [ ] properties ) throws RuntimeFaultFaultMsg , InvalidPropertyFaultMsg { if ( mor == null ) { return new ObjectContent [ 0 ] ; } PropertyFilterSpec spec = new PropertyFilterSpec ( ) ; spec... | Retrieve contents for a single object based on the property collector registered with the service . |
6,723 | private static List < ObjectContent > retrievePropertiesAllObjects ( ConnectionResources connectionResources , List < PropertyFilterSpec > propertyFilterSpecList ) throws RuntimeFaultFaultMsg , InvalidPropertyFaultMsg { VimPortType vimPort = connectionResources . getVimPortType ( ) ; ManagedObjectReference serviceInsta... | Uses the new RetrievePropertiesEx method to emulate the now deprecated RetrieveProperties method |
6,724 | public static void validateInputs ( EditXmlInputs inputs ) throws Exception { validateXmlAndFilePathInputs ( inputs . getXml ( ) , inputs . getFilePath ( ) ) ; if ( Constants . Inputs . MOVE_ACTION . equals ( inputs . getAction ( ) ) ) { validateIsNotEmpty ( inputs . getXpath2 ( ) , "xpath2 input is required for action... | Validates the operation inputs . |
6,725 | @ Action ( name = "Get shared access key token for Azure" , outputs = { @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) , @ Output ( EXCEPTION ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = ReturnCodes . SUCCESS , matchType = COMPARE_EQUAL , responseType = RESOLVED ) , @ Response ... | Generates the shared access key token for Azure API calls . |
6,726 | @ Action ( name = "List Sort" , outputs = { @ Output ( RESULT_TEXT ) , @ Output ( RESPONSE ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = RETURN_CODE_SUCCESS , matchType = MatchType . COMPARE_EQUAL ) , @ Response ( text = FAILURE ,... | This method sorts a list of strings . If the list contains only numerical strings it is sorted in numerical order . Otherwise it is sorted alphabetically . |
6,727 | @ Action ( name = "List Remover" , outputs = { @ Output ( RESPONSE ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = RETURN_CODE_SUCCESS , matchType = MatchType . COMPARE_EQUAL ) , @ Response ( text = FAILURE , field = RETURN_CODE , v... | This method removes an element from a list of strings . |
6,728 | public DataSource openPooledDataSource ( DBType aDbType , String aDbUrl , String aUsername , String aPassword ) throws SQLException { final DataSource unPooledDS = DataSources . unpooledDataSource ( aDbUrl , aUsername , aPassword ) ; final Map < String , String > props = this . getPoolingProperties ( aDbType ) ; return... | get the pooled datasource from c3p0 pool |
6,729 | private Map < String , String > getPoolingProperties ( DBType aDbType ) { Map < String , String > retMap = new HashMap < > ( ) ; String acqIncSize = this . getPropStringValue ( CONNECTION_ACQUIREINCREMENT_SIZE_NAME , CONNECTION_ACQUIREINCREMENT_SIZE_DEFAULT_VALUE ) ; retMap . put ( C3P0_ACQUIRE_INCREMENT_NAME , acqIncS... | set up the properties for c3p0 based on the properties values in databasePooling . properties . |
6,730 | public int getAllConnectionNumber ( DataSource aPooledDataSource ) throws SQLException { PooledDataSource pDs = ( PooledDataSource ) aPooledDataSource ; return pDs . getNumConnectionsAllUsers ( ) ; } | The followings are only for testing purpose |
6,731 | public static String getIPv4OrIPv6WithSquareBracketsHost ( String dbServer ) { final Address address = new Address ( dbServer ) ; return address . getURIIPV6Literal ( ) ; } | Method returning the host surrounded by square brackets if dbServer is IPv6 format . Otherwise the returned string will be the same . |
6,732 | public static String computeSessionId ( final String aString ) { final byte [ ] byteData = DigestUtils . sha256 ( aString . getBytes ( ) ) ; final StringBuilder sb = new StringBuilder ( "SQLQuery:" ) ; for ( final byte aByteData : byteData ) { final String hex = Integer . toHexString ( 0xFF & aByteData ) ; if ( hex . l... | compute session id for JDBC operations |
6,733 | public void cleanDataSources ( ) { Hashtable < String , List < String > > removedDsKeyTable = null ; Enumeration < String > allPoolKeys = dbmsPoolTable . keys ( ) ; while ( allPoolKeys . hasMoreElements ( ) ) { String dbPoolKey = allPoolKeys . nextElement ( ) ; Hashtable < String , DataSource > dsTable = dbmsPoolTable ... | clean any empty datasource and pool in the dbmsPool table . |
6,734 | public synchronized void shutdownDbmsPools ( ) { datasourceCleaner . shutdown ( ) ; datasourceCleaner = null ; cleanerThread . interrupt ( ) ; cleanerThread = null ; if ( dbmsPoolTable == null ) { return ; } Enumeration < String > allDbmsKeys = dbmsPoolTable . keys ( ) ; while ( allDbmsKeys . hasMoreElements ( ) ) { St... | force shutdown everything |
6,735 | protected boolean getPropBooleanValue ( String aPropName , String aDefaultValue ) { boolean retValue ; String temp = dbPoolingProperties . getProperty ( aPropName , aDefaultValue ) ; retValue = Boolean . valueOf ( temp ) ; return retValue ; } | get boolean value based on the property name from property file the property file is databasePooling . properties |
6,736 | protected int getPropIntValue ( String aPropName , String aDefaultValue ) { int retValue ; String temp = dbPoolingProperties . getProperty ( aPropName , aDefaultValue ) ; retValue = Integer . valueOf ( temp ) ; return retValue ; } | get int value based on the property name from property file the property file is databasePooling . properties |
6,737 | private void createCleaner ( ) { if ( cleanerThread == null ) { int interval = getPropIntValue ( DB_DATASOURCE_CLEAN_INTERNAL_NAME , DB_DATASOURCE_CLEAN_INTERNAL_DEFAULT_VALUE ) ; this . datasourceCleaner = new PooledDataSourceCleaner ( this , interval ) ; this . cleanerThread = new Thread ( datasourceCleaner ) ; this ... | create and start a pool cleaner if pooling is enabled . |
6,738 | protected DataSource createDataSource ( DBType aDbType , String aDbUrl , String aUsername , String aPassword , Hashtable < String , DataSource > aDsTable ) throws SQLException { DataSource retDatasource ; String totalMaxPoolSizeName ; switch ( aDbType ) { case ORACLE : totalMaxPoolSizeName = ORACLE_MAX_POOL_SIZE_NAME ;... | create a new pooled datasource if total max pool size for the dbms is still ok . total max pool size per user < = total max pool size specified for specific db type . for example max pool size per user = 20 total max pool size for oracle dbms is 100 . only 5 datasource can be opened . |
6,739 | private char retrieveWrappingQuoteTypeOfJsonMemberNames ( String jsonString ) { char quote = '\"' ; for ( char c : jsonString . toCharArray ( ) ) { if ( c == '\'' || c == '\"' ) { quote = c ; break ; } } return quote ; } | Returns the quote character used for specifying json member names and String values of json members |
6,740 | public Map < String , String > customizeVM ( HttpInputs httpInputs , VmInputs vmInputs , GuestInputs guestInputs , boolean isWin ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { ManagedObjectReference vmMor = new MorObjectHandler ( ) . getMor ( con... | Method used to connect to specified data center and customize the windows OS based virtual machine identified by the inputs provided . |
6,741 | public Map < String , String > mountTools ( HttpInputs httpInputs , VmInputs vmInputs ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { ManagedObjectReference vmMor = new MorObjectHandler ( ) . getMor ( connectionResources , ManagedObjectType . VIRT... | Method used to connect to specified data center and start the Install Tools process on virtual machine identified by the inputs provided . |
6,742 | public static Map < String , Object > validateAndBuildKeyValuesMap ( String listenAddresses , String port , String ssl , String sslCaFile , String sslCertFile , String sslKeyFile , String maxConnections , String sharedBuffers , String effectiveCacheSize , String autovacuum , String workMem ) { Map < String , Object > k... | Method to validate inputs and consolidate to a map . |
6,743 | public static void changeProperty ( String filename , Map < String , Object > keyValuePairs ) throws IOException { if ( keyValuePairs . size ( ) == 0 ) { return ; } final File file = new File ( filename ) ; final File tmpFile = new File ( file + ".tmp" ) ; PrintWriter pw = new PrintWriter ( tmpFile ) ; BufferedReader b... | Method to modify the Postgres config postgresql . conf based on key - value pairs |
6,744 | public static void changeProperty ( String filename , String [ ] allowedHosts , String [ ] allowedUsers ) throws IOException { if ( ( allowedHosts == null || allowedHosts . length == 0 ) && ( allowedUsers == null || allowedUsers . length == 0 ) ) { return ; } final File file = new File ( filename ) ; final File tmpFile... | Method to modify the Postgres config pg_hba . config |
6,745 | @ Action ( name = "Convert XML to Json" , outputs = { @ Output ( NAMESPACES_PREFIXES ) , @ Output ( NAMESPACES_URIS ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) , @ Output ( EXCEPTION ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS ) , @ Response ( te... | Converts a XML document to a JSON array or a JSON object . |
6,746 | @ Action ( name = "Trim List" , outputs = { @ Output ( RESULT_TEXT ) , @ Output ( RESPONSE ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = RETURN_CODE_SUCCESS , matchType = MatchType . COMPARE_EQUAL ) , @ Response ( text = FAILURE ,... | This method trims values from a list . The values trimmed are equally distributed from the high and low ends of the list . The list is sorted before trimming . The number of elements trimmed is dictated by the percentage that is passed in . If the percentage would indicate an odd number of elements the number trimmed i... |
6,747 | @ Action ( name = "Find Text in PDF" , description = FIND_TEXT_IN_PDF_OPERATION_DESC , outputs = { @ Output ( value = RETURN_CODE , description = RETURN_CODE_DESC ) , @ Output ( value = RETURN_RESULT , description = FIND_TEXT_IN_PDF_RETURN_RESULT_DESC ) , @ Output ( value = EXCEPTION , description = EXCEPTION_DESC ) , ... | This operation checks if a text input is found in a PDF file . |
6,748 | @ Action ( name = "List Prepender" , outputs = { @ Output ( RESPONSE ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = RETURN_CODE_SUCCESS , matchType = MatchType . COMPARE_EQUAL ) , @ Response ( text = FAILURE , field = RETURN_CODE ,... | This method pre - pends an element to a list of strings . |
6,749 | @ Action ( name = "Append Child" , outputs = { @ Output ( RETURN_CODE ) , @ Output ( RETURN_RESULT ) , @ Output ( RESULT_XML ) , @ Output ( ERROR_MESSAGE ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS , matchType = COMPARE_EQUAL ) , @ Response ( text = ResponseNa... | Appends a child to an XML element . |
6,750 | public static boolean saveSshSessionAndChannel ( Session session , Channel channel , GlobalSessionObject < Map < String , SSHConnection > > sessionParam , String sessionId ) { final SSHConnection sshConnection ; if ( channel != null ) { sshConnection = new SSHConnection ( session , channel ) ; } else { sshConnection = ... | Save the SSH session and the channel in the cache . |
6,751 | public static String encodeStringInBase64 ( String str , Charset charset ) { return new String ( Base64 . encodeBase64 ( str . getBytes ( charset ) ) ) ; } | Encodes a string to base64 . |
6,752 | private ClusterDasVmConfigInfo createVmOverrideConfiguration ( ManagedObjectReference vmMor , String restartPriority ) { ClusterDasVmConfigInfo clusterDasVmConfigInfo = new ClusterDasVmConfigInfo ( ) ; clusterDasVmConfigInfo . setKey ( vmMor ) ; clusterDasVmConfigInfo . setDasSettings ( createClusterDasVmSettings ( res... | Das method adds a vm override to a HA enabled Cluster . |
6,753 | private ClusterDasVmSettings createClusterDasVmSettings ( String restartPriority ) { ClusterDasVmSettings clusterDasVmSettings = new ClusterDasVmSettings ( ) ; clusterDasVmSettings . setRestartPriority ( restartPriority ) ; return clusterDasVmSettings ; } | Das method creates a cluster vm setting . |
6,754 | private ClusterConfigInfoEx getClusterConfiguration ( ConnectionResources connectionResources , ManagedObjectReference clusterMor , String clusterName ) throws RuntimeFaultFaultMsg , InvalidPropertyFaultMsg { ObjectContent [ ] objectContents = GetObjectProperties . getObjectProperties ( connectionResources , clusterMor... | Das method gets the current cluster configurations . |
6,755 | @ Action ( name = "Update Property Value" , outputs = { @ Output ( RETURN_CODE ) , @ Output ( RETURN_RESULT ) , @ Output ( EXCEPTION ) , @ Output ( STDERR ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS , matchType = MatchType . COMPARE_EQUAL , responseType = Resp... | Updates the Postgres config postgresql . conf |
6,756 | public Map < String , ManagedObjectReference > inContainerByType ( ManagedObjectReference folder , String morefType , RetrieveOptions retrieveOptions ) throws InvalidPropertyFaultMsg , RuntimeFaultFaultMsg { RetrieveResult results = containerViewByType ( folder , morefType , retrieveOptions ) ; return toMap ( results )... | Returns all the MOREFs of the specified type that are present under the container |
6,757 | private RetrieveResult containerViewByType ( final ManagedObjectReference container , final String morefType , final RetrieveOptions retrieveOptions , final String ... morefProperties ) throws RuntimeFaultFaultMsg , InvalidPropertyFaultMsg { PropertyFilterSpec [ ] propertyFilterSpecs = propertyFilterSpecs ( container ,... | Returns the raw RetrieveResult object for the provided container filtered on properties list |
6,758 | private RetrieveResult containerViewByType ( final ManagedObjectReference container , final String morefType , final RetrieveOptions retrieveOptions ) throws RuntimeFaultFaultMsg , InvalidPropertyFaultMsg { return this . containerViewByType ( container , morefType , retrieveOptions , ManagedObjectType . NAME . getValue... | Initialize the helper object on the current connection at invocation time . Do not initialize on construction since the connection may not be ready yet . |
6,759 | public static void init ( SQLInputs sqlInputs ) throws Exception { if ( sqlInputs != null ) { sqlInputs . setStrDelim ( "," ) ; sqlInputs . setStrColumns ( "" ) ; sqlInputs . setLRows ( new ArrayList < String > ( ) ) ; sqlInputs . setIUpdateCount ( 0 ) ; sqlInputs . setSqlCommand ( null ) ; sqlInputs . setDbServer ( nu... | init all the non - static variables . |
6,760 | public void run ( ) { state = STATE_CLEANER . RUNNING ; while ( state != STATE_CLEANER . SHUTDOWN ) { try { Thread . sleep ( interval * 1000 ) ; } catch ( InterruptedException e ) { break ; } this . manager . cleanDataSources ( ) ; if ( this . manager . getDbmsPoolSize ( ) == 0 ) { state = STATE_CLEANER . SHUTDOWN ; br... | wake up and clean the pools if the pool has empty connection table . |
6,761 | public static boolean arrayElementsAreNull ( String [ ] uncontainedArray ) { boolean empty = true ; for ( Object ob : uncontainedArray ) { if ( ob != null ) { empty = false ; break ; } } return empty ; } | This method check if all elements of an array are null . |
6,762 | public String getSignedHeadersString ( Map < String , String > headers ) { List < String > sortedList = new ArrayList < > ( headers . keySet ( ) ) ; Collections . sort ( sortedList , String . CASE_INSENSITIVE_ORDER ) ; StringBuilder signedHeaderString = new StringBuilder ( ) ; for ( String header : sortedList ) { if ( ... | Creates a comma separated list of headers . |
6,763 | public static String encryptPassword ( final String aPlainPass ) throws Exception { byte [ ] encBytes = encryptString ( aPlainPass . getBytes ( DEFAULT_CODEPAGE ) ) ; return Base64 . encodeBase64String ( encBytes ) ; } | encrypt a plain password |
6,764 | public static String documentToString ( Document xmlDocument ) throws IOException { String encoding = ( xmlDocument . getXmlEncoding ( ) == null ) ? "UTF-8" : xmlDocument . getXmlEncoding ( ) ; OutputFormat format = new OutputFormat ( xmlDocument ) ; format . setLineWidth ( 65 ) ; format . setIndenting ( true ) ; forma... | Returns a String representation for the XML Document . |
6,765 | private Source readSource ( String xmlDocument , String features ) throws Exception { if ( xmlDocument . startsWith ( Constants . Inputs . HTTP_PREFIX_STRING ) || xmlDocument . startsWith ( Constants . Inputs . HTTPS_PREFIX_STRING ) ) { URL xmlUrl = new URL ( xmlDocument ) ; InputStream xmlStream = xmlUrl . openStream ... | Reads the xml content from a file URL or string . |
6,766 | public static boolean isDateValid ( String date , Locale locale ) { try { DateFormat format = DateFormat . getDateTimeInstance ( DateFormat . DEFAULT , DateFormat . DEFAULT , locale ) ; format . parse ( date ) ; return true ; } catch ( ParseException e ) { return false ; } } | Because the date passed as argument can be in java format and because not all formats are compatible with joda - time this method checks if the date string is valid with java . In this way we can use the proper DateTime without changing the output . |
6,767 | public static Locale getLocaleByCountry ( String lang , String country ) { return StringUtils . isNotBlank ( country ) ? new Locale ( lang , country ) : new Locale ( lang ) ; } | Generates the locale |
6,768 | public static DateTime getJodaOrJavaDate ( final DateTimeFormatter dateFormatter , final String date ) throws Exception { if ( DateTimeUtils . isDateValid ( date , dateFormatter . getLocale ( ) ) ) { DateFormat dateFormat = DateFormat . getDateTimeInstance ( DateFormat . DEFAULT , DateFormat . DEFAULT , dateFormatter .... | Returns a LocalDateTime depending on how the date passes as argument is formatted . |
6,769 | public static DateTimeFormatter getDateFormatter ( String format , String lang , String country ) { if ( StringUtils . isNotBlank ( format ) ) { DateTimeFormatter dateFormat = DateTimeFormat . forPattern ( format ) ; if ( StringUtils . isNotBlank ( lang ) ) { return dateFormat . withLocale ( DateTimeUtils . getLocaleBy... | Generates a DateTimeFormatter using a custom pattern with the default locale or a new one according to what language and country are provided as params . |
6,770 | public static DateTimeFormatter formatWithDefault ( String lang , String country ) { return ( StringUtils . isNotBlank ( lang ) ) ? DateTimeFormat . longDateTime ( ) . withLocale ( DateTimeUtils . getLocaleByCountry ( lang , country ) ) : DateTimeFormat . longDateTime ( ) . withLocale ( Locale . getDefault ( ) ) ; } | Generates a DateTimeFormatter using full date pattern with the default locale or a new one according to what language and country are provided as params . |
6,771 | public static String execSqlQueryTabular ( final SQLInputs sqlInputs ) throws Exception { ConnectionService connectionService = new ConnectionService ( ) ; try ( final Connection connection = connectionService . setUpConnection ( sqlInputs ) ) { connection . setReadOnly ( true ) ; final Statement statement = connection... | Run a SQL query with given configuration |
6,772 | @ Action ( name = "XpathQuery" , outputs = { @ Output ( RETURN_CODE ) , @ Output ( RETURN_RESULT ) , @ Output ( SELECTED_VALUE ) , @ Output ( ERROR_MESSAGE ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS , matchType = COMPARE_EQUAL ) , @ Response ( text = Response... | Selects from an XML document using an XPATH query . |
6,773 | @ Action ( name = "Convert JSON to XML" , outputs = { @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS ) , @ Response ( text = ResponseNames . FAILURE , field = RETURN_CODE , value = FAILURE ) } ) public Map < Str... | Converts a JSON array or a JSON object to a XML document . |
6,774 | @ Action ( name = "Update pg_hba.config" , outputs = { @ Output ( RETURN_CODE ) , @ Output ( RETURN_RESULT ) , @ Output ( EXCEPTION ) , @ Output ( STDERR ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = RETURN_CODE , value = SUCCESS , matchType = MatchType . COMPARE_EQUAL , responseType = Respo... | Updates the Postgres config pg_hba . config |
6,775 | @ Action ( name = "Extract text from image" , description = EXTRACT_TEXT_FROM_IMAGE_DESC , outputs = { @ Output ( value = RETURN_CODE , description = RETURN_CODE_DESC ) , @ Output ( value = RETURN_RESULT , description = RETURN_RESULT_DESC ) , @ Output ( value = TEXT_STRING , description = TEXT_STRING_DESC ) , @ Output ... | This operation extracts the text from a specified file given as input using Tesseract s OCR library . |
6,776 | public static boolean isUUID ( String string ) { try { if ( string != null ) { UUID . fromString ( string ) ; return true ; } else { return false ; } } catch ( IllegalArgumentException ex ) { return false ; } } | Checks if a string is a valid UUID or not . |
6,777 | public static void validateUUID ( String uuid , String uuidValueOf ) throws RuntimeException { if ( ! WSManUtils . isUUID ( uuid ) ) { throw new RuntimeException ( "The returned " + uuidValueOf + " is not a valid UUID value! " + uuidValueOf + ": " + uuid ) ; } } | Validates a UUID value and throws a specific exception if UUID is invalid . |
6,778 | public static void verifyScriptExecutionStatus ( final Map < String , String > resultMap ) { if ( ZERO_SCRIPT_EXIT_CODE . equals ( resultMap . get ( SCRIPT_EXIT_CODE ) ) ) { resultMap . put ( RETURN_CODE , RETURN_CODE_SUCCESS ) ; } else { resultMap . put ( RETURN_CODE , RETURN_CODE_FAILURE ) ; } } | Checks the scriptExitCode value of the script execution and fails the operation if exit code is different than zero . |
6,779 | @ Action ( name = "Offset Time By" , description = "Changes the time represented by a date by the specified number of seconds" , outputs = { @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) , @ Output ( EXCEPTION ) } , responses = { @ Response ( text = SUCCESS , field = RETURN_CODE , value = ReturnCodes . SUCCESS ... | Changes the time represented by a date by the specified number of seconds . If locale is specified it will return the date and time string based on the locale . Otherwise default locale will be used . |
6,780 | @ Action ( name = "List AWS Cloud Formation stacks" , outputs = { @ Output ( Outputs . RETURN_CODE ) , @ Output ( Outputs . RETURN_RESULT ) , @ Output ( Outputs . EXCEPTION ) } , responses = { @ Response ( text = Outputs . SUCCESS , field = Outputs . RETURN_CODE , value = Outputs . SUCCESS_RETURN_CODE , matchType = Mat... | List AWS Cloud Formation Stacks |
6,781 | @ Action ( name = "List Size" , outputs = { @ Output ( RESULT_TEXT ) , @ Output ( RESPONSE ) , @ Output ( RETURN_RESULT ) , @ Output ( RETURN_CODE ) } , responses = { @ Response ( text = Constants . ResponseNames . SUCCESS , field = RETURN_CODE , value = RETURN_CODE_SUCCESS , matchType = MatchType . COMPARE_EQUAL ) , @... | This method returns the length of a list of strings . |
6,782 | protected String getPropStringValue ( String aPropName , String aDefaultValue ) { return dbPoolingProperties . getProperty ( aPropName , aDefaultValue ) ; } | get string value based on the property name from property file the property file is databasePooling . properties |
6,783 | public String getStringToSign ( String requestDate , String credentialScope , String canonicalRequest ) throws SignatureException { try { return AWS4_SIGNING_ALGORITHM + LINE_SEPARATOR + requestDate + LINE_SEPARATOR + credentialScope + LINE_SEPARATOR + new String ( Hex . encode ( calculateHash ( canonicalRequest ) ) , ... | Combines the inputs into a string with a fixed structure and calculates the canonical request digest . This string can be used with the derived signing key to create an AWS signature . |
6,784 | public byte [ ] getDerivedSigningKey ( String secretAccessKey , String dateStamp , String region , String amazonApi ) throws SignatureException { try { byte [ ] kSecret = ( AWS_SIGNATURE_VERSION + secretAccessKey ) . getBytes ( ENCODING ) ; byte [ ] kDate = calculateHmacSHA256 ( dateStamp , kSecret ) ; byte [ ] kRegion... | Derives a signing key from the AWS secret access key . |
6,785 | private byte [ ] calculateHmacSHA256 ( String data , byte [ ] key ) throws NoSuchAlgorithmException , InvalidKeyException , UnsupportedEncodingException { Mac mac = Mac . getInstance ( HMAC_ALGORITHM ) ; mac . init ( new SecretKeySpec ( key , HMAC_ALGORITHM ) ) ; return mac . doFinal ( data . getBytes ( ENCODING ) ) ; ... | Calculates the keyed - hash message authentication code for the data string . |
6,786 | public Map < String , String > getOsDescriptors ( HttpInputs httpInputs , VmInputs vmInputs , String delimiter ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { ManagedObjectReference environmentBrowserMor = new MorObjectHandler ( ) . getEnvironment... | Method used to connect to data center to retrieve a list with all the guest operating system descriptors supported by the host system . |
6,787 | public Map < String , String > createVM ( HttpInputs httpInputs , VmInputs vmInputs ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { VmUtils utils = new VmUtils ( ) ; ManagedObjectReference vmFolderMor = utils . getMorFolder ( vmInputs . getFolderN... | Method used to connect to specified data center and create a virtual machine using the inputs provided . |
6,788 | public Map < String , String > deleteVM ( HttpInputs httpInputs , VmInputs vmInputs ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { ManagedObjectReference vmMor = new MorObjectHandler ( ) . getMor ( connectionResources , ManagedObjectType . VIRTUA... | Method used to connect to specified data center and delete the virtual machine identified by the inputs provided . |
6,789 | public Map < String , String > listVMsAndTemplates ( HttpInputs httpInputs , VmInputs vmInputs , String delimiter ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { Map < String , ManagedObjectReference > virtualMachinesMorMap = new MorObjectHandler ... | Method used to connect to data center to retrieve a list with all the virtual machines and templates within . |
6,790 | public Map < String , String > getVMDetails ( HttpInputs httpInputs , VmInputs vmInputs ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { ManagedObjectReference vmMor = new MorObjectHandler ( ) . getMor ( connectionResources , ManagedObjectType . VI... | Method used to connect to data center to retrieve details of a virtual machine identified by the inputs provided . |
6,791 | public Map < String , String > updateVM ( HttpInputs httpInputs , VmInputs vmInputs ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { ManagedObjectReference vmMor = new MorObjectHandler ( ) . getMor ( connectionResources , ManagedObjectType . VIRTUA... | Method used to connect to data center to update existing devices of a virtual machine identified by the inputs provided . |
6,792 | public Map < String , String > cloneVM ( HttpInputs httpInputs , VmInputs vmInputs ) throws Exception { ConnectionResources connectionResources = new ConnectionResources ( httpInputs , vmInputs ) ; try { ManagedObjectReference vmMor = new MorObjectHandler ( ) . getMor ( connectionResources , ManagedObjectType . VIRTUAL... | Method used to connect to data center and clone a virtual machine identified by the inputs provided . |
6,793 | @ Action ( name = "Merge Arrays" , outputs = { @ Output ( OutputNames . RETURN_RESULT ) , @ Output ( OutputNames . RETURN_CODE ) , @ Output ( OutputNames . EXCEPTION ) } , responses = { @ Response ( text = ResponseNames . SUCCESS , field = OutputNames . RETURN_CODE , value = ReturnCodes . SUCCESS , matchType = MatchTyp... | This operation merge the contents of two JSON arrays . This operation does not modify either of the input arrays . The result is the contents or array1 and array2 merged into a single array . The merge operation add into the result the first array and then the second array . |
6,794 | public Map < String , String > runCommand ( WSManRequestInputs wsManRequestInputs ) throws RuntimeException , IOException , InterruptedException , ParserConfigurationException , TransformerException , XPathExpressionException , TimeoutException , URISyntaxException , SAXException { HttpClientService csHttpClient = new ... | Executes a command on a remote shell by communicating with the WinRM server from the remote host . Method creates a shell runs a command on the shell waits for the command execution to finnish retrieves the result then deletes the shell . |
6,795 | private static HttpClientInputs setCommonHttpInputs ( HttpClientInputs httpClientInputs , URL url , WSManRequestInputs wsManRequestInputs ) throws MalformedURLException { httpClientInputs . setUrl ( url . toString ( ) ) ; httpClientInputs . setUsername ( wsManRequestInputs . getUsername ( ) ) ; httpClientInputs . setPa... | Configures the HttpClientInputs object with the most common http parameters . |
6,796 | private Map < String , String > executeRequestWithBody ( HttpClientService csHttpClient , HttpClientInputs httpClientInputs , String body ) { httpClientInputs . setBody ( body ) ; Map < String , String > requestResponse = csHttpClient . execute ( httpClientInputs ) ; if ( UNAUTHORIZED_STATUS_CODE . equals ( requestResp... | This method executes a request with the given CSHttpClient HttpClientInputs and body . |
6,797 | private String createShell ( HttpClientService csHttpClient , HttpClientInputs httpClientInputs , WSManRequestInputs wsManRequestInputs ) throws RuntimeException , IOException , URISyntaxException , XPathExpressionException , SAXException , ParserConfigurationException { String document = ResourceLoader . loadAsString ... | Creates a shell on the remote server and returns the shell id . |
6,798 | private String executeCommand ( HttpClientService csHttpClient , HttpClientInputs httpClientInputs , String shellId , WSManRequestInputs wsManRequestInputs , String command ) throws RuntimeException , IOException , URISyntaxException , TransformerException , XPathExpressionException , SAXException , ParserConfiguration... | Executes a command on the given shell . |
6,799 | private Map < String , String > receiveCommandResult ( HttpClientService csHttpClient , HttpClientInputs httpClientInputs , String shellId , String commandId , WSManRequestInputs wsManRequestInputs ) throws RuntimeException , IOException , URISyntaxException , TransformerException , TimeoutException , XPathExpressionEx... | Waits for a specific command that is running on a remote shell to finnish it s execution . |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.