This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install a custom Elasticsearch version - https://www.elastic.co/products/elasticsearch | |
ELASTICSEARCH_VERSION="7.17.6" | |
ELASTICSEARCH_PORT="9200" | |
ELASTICSEARCH_DIR="~/elasticsearch" | |
ELASTICSEARCH_WAIT_TIME="30" | |
echo "ELASTICSEARCH_VERSION = $ELASTICSEARCH_VERSION" | |
echo "ELASTICSEARCH_PORT = $ELASTICSEARCH_PORT" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install a custom Elasticsearch version - https://www.elastic.co/products/elasticsearch | |
ELASTICSEARCH_VERSION="6.3.2" | |
ELASTICSEARCH_PORT="9200" | |
ELASTICSEARCH_DIR="$SEMAPHORE_PROJECT_DIR/elasticsearch" | |
ELASTICSEARCH_WAIT_TIME="30" | |
echo "ELASTICSEARCH_VERSION = $ELASTICSEARCH_VERSION" | |
echo "ELASTICSEARCH_PORT = $ELASTICSEARCH_PORT" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
using namespace std; | |
#define NUM_OF_NODES 120 | |
#define NUM_OF_LEAVES 15 | |
#define NULL 0 | |
typedef class Node ChildNode; |