This file contains 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
FROM docker-registry-remote.artifactory-espoo1.int.net.nokia.com/rust:1.66-alpine as chef | |
RUN apk add --no-cache musl-dev | |
RUN cargo --version | |
RUN cargo install cargo-chef | |
WORKDIR /app | |
FROM chef as planner | |
COPY Cargo.toml Cargo.lock ./ | |
RUN cargo chef prepare --recipe-path recipe.json |
This file contains 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
#!/usr/bin/env bash | |
function cecho(){ | |
RED="\033[0;31m" | |
GREEN="\033[0;32m" # <-- [0 means not bold | |
YELLOW="\033[1;33m" # <-- [1 means bold | |
CYAN="\033[1;36m" | |
# ... Add more colors if you like | |
NC="\033[0m" # No Color |
This file contains 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
*********************************( LOCAL_2_CELL_RES_MAP_TO_ANTENNAS_REQ_MSG )********************************* | |
API header: to board : 0x13 | |
API header: to CPU : 0x52 | |
API header: to task : 0x1080 | |
typeOfAntennaBus :0x1 | |
rocModeOn :0 | |
numOfLocalCells :0x1 |
This file contains 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
cmake_minimum_required(VERSION 2.6) | |
set(Boost_DEBUG 1) | |
set(Boost_ADDITIONAL_VERSIONS "1.54" "1.54.0") | |
find_package( Boost 1.45.0 COMPONENTS | |
date_time | |
filesystem | |
regex | |
thread | |
system) |
This file contains 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
Program terminated with signal 11, Segmentation fault. | |
#0 0x0000000000601ad0 in strlen@@GLIBC_2.2.5 () | |
(gdb) bt | |
#0 0x0000000000601ad0 in strlen@@GLIBC_2.2.5 () | |
#1 0x00000000004012b9 in std::char_traits<char>::length (__s=0x401498 "\"http:\\\\/\\\\/localhostr.com\\\\/files\\\\/.+?\"") | |
at /opt/gcc/linux64/ix86/gcc_4.3.2-7p3/lib/gcc/x86_64-redhat-linux/4.3.2/../../../../include/c++/4.3.2/bits/char_traits.h:262 | |
#2 0x00000000004012d0 in boost::cpp_regex_traits<char>::length (p=0x401498 "\"http:\\\\/\\\\/localhostr.com\\\\/files\\\\/.+?\"") | |
at /var/fpwork/boost/include/boost/regex/v4/cpp_regex_traits.hpp:876 | |
#3 0x000000000040131c in boost::basic_regex<char, boost::regex_traits<char, boost::cpp_regex_traits<char> > >::assign (this=0x7fffc48312a0, | |
p=0x401498 "\"http:\\\\/\\\\/localhostr.com\\\\/files\\\\/.+?\"", f=0) at /var/fpwork/boost/include/boost/regex/v4/basic_regex.hpp:364 |
This file contains 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
export LESS_TERMCAP_mb=$'\E[01;31m' | |
export LESS_TERMCAP_md=$'\E[01;37m' | |
export LESS_TERMCAP_me=$'\E[0m' | |
export LESS_TERMCAP_se=$'\E[0m' | |
export LESS_TERMCAP_so=$'\E[01;44;33m' | |
export LESS_TERMCAP_ue=$'\E[0m' | |
export LESS_TERMCAP_us=$'\E[01;32m' |
This file contains 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
bld |
This file contains 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
cmake_minimum_required(VERSION 2.6) | |
macro(get_link_libraries_path extra_path) | |
message("Actual parameter variable is:${extra_path}") | |
if (CMAKE_COMPILER_IS_GNUCXX) | |
string(REPLACE ";" ":" ${extra_path} ${CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES}) | |
message("implicit link libraries dir:${${extra_path}}") | |
endif() | |
endmacro() |
This file contains 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
#!/usr/bin/awk -f | |
BEGIN{ | |
RS="\.\s* \[[0-9]+\]"; | |
FS="\n"; | |
OFS=","; | |
} | |
function find_next_field_until_regex(regex, i, result){ | |
result = ""; | |
for (; i < NF; i++){ |
NewerOlder