Unnamed: 0
int64 0
832k
| id
float64 2.49B
32.1B
| type
stringclasses 1
value | created_at
stringlengths 19
19
| repo
stringlengths 7
112
| repo_url
stringlengths 36
141
| action
stringclasses 3
values | title
stringlengths 1
853
| labels
stringlengths 4
898
| body
stringlengths 2
262k
| index
stringclasses 13
values | text_combine
stringlengths 96
262k
| label
stringclasses 2
values | text
stringlengths 96
250k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
28,179
| 8,109,306,391
|
IssuesEvent
|
2018-08-14 07:01:23
|
zeromq/cppzmq
|
https://api.github.com/repos/zeromq/cppzmq
|
closed
|
VS2008 compiling error
|
Area (build/compilation)
|
When I compiling an example of ZeroMQ in VS2008, there is error with zmq.hpp, which I saw there is problem in zmq.hpp file. I saw the CPP11 check which does not include the last function, in which std::vector does not support .data operator in old C++ compiler version.
```
#ifdef ZMQ_CPP11
inline int poll(zmq_pollitem_t const* items, size_t nitems, std::chrono::milliseconds timeout)
{
return poll(items, nitems, timeout.count() );
}
inline int poll(std::vector<zmq_pollitem_t> const& items, std::chrono::milliseconds timeout)
{
return poll(items.data(), items.size(), timeout.count() );
}
#endif
inline int poll(std::vector<zmq_pollitem_t> const& items, long timeout_ = -1)
{
return poll(items.data(), items.size(), timeout_);
}
```
|
1.0
|
VS2008 compiling error - When I compiling an example of ZeroMQ in VS2008, there is error with zmq.hpp, which I saw there is problem in zmq.hpp file. I saw the CPP11 check which does not include the last function, in which std::vector does not support .data operator in old C++ compiler version.
```
#ifdef ZMQ_CPP11
inline int poll(zmq_pollitem_t const* items, size_t nitems, std::chrono::milliseconds timeout)
{
return poll(items, nitems, timeout.count() );
}
inline int poll(std::vector<zmq_pollitem_t> const& items, std::chrono::milliseconds timeout)
{
return poll(items.data(), items.size(), timeout.count() );
}
#endif
inline int poll(std::vector<zmq_pollitem_t> const& items, long timeout_ = -1)
{
return poll(items.data(), items.size(), timeout_);
}
```
|
build
|
compiling error when i compiling an example of zeromq in there is error with zmq hpp which i saw there is problem in zmq hpp file i saw the check which does not include the last function in which std vector does not support data operator in old c compiler version ifdef zmq inline int poll zmq pollitem t const items size t nitems std chrono milliseconds timeout return poll items nitems timeout count inline int poll std vector const items std chrono milliseconds timeout return poll items data items size timeout count endif inline int poll std vector const items long timeout return poll items data items size timeout
| 1
|
758,303
| 26,549,605,051
|
IssuesEvent
|
2023-01-20 05:57:44
|
arwes/arwes
|
https://api.github.com/repos/arwes/arwes
|
closed
|
Research SEO support for animated components
|
package: animator complexity: medium type: research status: help wanted priority: medium
|
A public web page using Arwes animation-enabled components should be able to be optimized for web crawling and support SEO recommendations.
Since an animated component by default is mounted with the status "exited" and the HTML elements are usually hidden, there should be research to find out what are the best practices for the website using Arwes to have a good SEO score.
Since a website using Arwes may use SSR (server-side-rendering) when the components are enabled to be animated, an example hypothetical component for a page may look like this:
```html
<main class="main">
<h1>Bird</h1>
<p>Birds are a group of warm-blooded vertebrates constituting the class Aves, characterized by feathers, toothless beaked
jaws, the laying of hard-shelled eggs, a high metabolic rate, a four-chambered heart, and a strong yet lightweight
skeleton.</p>
</main>
```
The initial styles may be:
```css
.main {
opacity: 0;
}
```
Using the [anime](https://animejs.com) animation library on page load:
```js
anime({
targets: document.querySelector('.main'),
opacity: [0, 1]
});
```
Using the example animated component above:
- [x] Research SEO support and recommendations for animated HTML elements.
- [x] Are there better alternatives to animated components with initial hidden features on page load for SEO purposes?
- [x] Discuss the findings in this ticket.
According to the results of this finding, there may be following tasks.
|
1.0
|
Research SEO support for animated components - A public web page using Arwes animation-enabled components should be able to be optimized for web crawling and support SEO recommendations.
Since an animated component by default is mounted with the status "exited" and the HTML elements are usually hidden, there should be research to find out what are the best practices for the website using Arwes to have a good SEO score.
Since a website using Arwes may use SSR (server-side-rendering) when the components are enabled to be animated, an example hypothetical component for a page may look like this:
```html
<main class="main">
<h1>Bird</h1>
<p>Birds are a group of warm-blooded vertebrates constituting the class Aves, characterized by feathers, toothless beaked
jaws, the laying of hard-shelled eggs, a high metabolic rate, a four-chambered heart, and a strong yet lightweight
skeleton.</p>
</main>
```
The initial styles may be:
```css
.main {
opacity: 0;
}
```
Using the [anime](https://animejs.com) animation library on page load:
```js
anime({
targets: document.querySelector('.main'),
opacity: [0, 1]
});
```
Using the example animated component above:
- [x] Research SEO support and recommendations for animated HTML elements.
- [x] Are there better alternatives to animated components with initial hidden features on page load for SEO purposes?
- [x] Discuss the findings in this ticket.
According to the results of this finding, there may be following tasks.
|
non_build
|
research seo support for animated components a public web page using arwes animation enabled components should be able to be optimized for web crawling and support seo recommendations since an animated component by default is mounted with the status exited and the html elements are usually hidden there should be research to find out what are the best practices for the website using arwes to have a good seo score since a website using arwes may use ssr server side rendering when the components are enabled to be animated an example hypothetical component for a page may look like this html bird birds are a group of warm blooded vertebrates constituting the class aves characterized by feathers toothless beaked jaws the laying of hard shelled eggs a high metabolic rate a four chambered heart and a strong yet lightweight skeleton the initial styles may be css main opacity using the animation library on page load js anime targets document queryselector main opacity using the example animated component above research seo support and recommendations for animated html elements are there better alternatives to animated components with initial hidden features on page load for seo purposes discuss the findings in this ticket according to the results of this finding there may be following tasks
| 0
|
70,435
| 18,145,110,816
|
IssuesEvent
|
2021-09-25 09:30:27
|
tensorflow/tensorflow
|
https://api.github.com/repos/tensorflow/tensorflow
|
opened
|
Tensorflow build debug failed
|
type:build/install
|
**System information**
- OS Platform and Distribution (e.g., Linux xxx-ROG 5.12.19-1-MANJARO #1 SMP PREEMPT Tue Jul 20 20:57:37 UTC 2021 x86_64 GNU/Linux):
- TensorFlow installed from (source or binary):source
- TensorFlow version: master,lastest commit:225be1b5fb5 Update TFRT dependency to use revision
- Python version:3.9.7
- Installed using virtualenv? pip? conda?:None,just use system python and pip
- Bazel version (if compiling from source): bazel 3.7.2
- GCC/Compiler version (if compiling from source):/usr/bin/gcc-10
- CUDA/cuDNN version:release 11.4, V11.4.100/cudnn8.2
- GPU model and memory:RTX3090 32G GDDR6,memory 64G 3200Mhz
**Describe the problem**
- command:
- bazel build --config=mkl --copt=-mavx2 --copt=-O3 --copt=-DINTEL_MKL_QUANTIZED -s -c dbg --verbose_failures //tensorflow/tools/pip_package:build_pip_package
- bazel build -c dbg --config=cuda //tensorflow/tools/pip_package:build_pip_package
- bazel build -c opt --copt="-g" --cxxopt="-g" //tensorflow/tools/pip_package:build_pip_package
**I had used all method,same error like this:**
/home/xxx/tensorflow/tensorflow/python/BUILD:3170:24: Linking of rule '//tensorflow/python:_pywrap_tensorflow_internal.so' failed (Exit 1): crosstool_wrapper_driver_is_not_gcc failed: error executing command external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc @bazel-out/k8-dbg/bin/tensorflow/python/_pywrap_tensorflow_internal.so-2.params
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x6087e): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60c9c): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60df0): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60e1a): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60ef7): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f0f): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f27): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f3f): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f57): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60fbf): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60fd7): additional relocation overflows omitted from the output
collect2: error: ld returned 1 exit status
Target //tensorflow/tools/pip_package:build_pip_package failed to build
Use --verbose_failures to see the command lines of failed build steps.
|
1.0
|
Tensorflow build debug failed -
**System information**
- OS Platform and Distribution (e.g., Linux xxx-ROG 5.12.19-1-MANJARO #1 SMP PREEMPT Tue Jul 20 20:57:37 UTC 2021 x86_64 GNU/Linux):
- TensorFlow installed from (source or binary):source
- TensorFlow version: master,lastest commit:225be1b5fb5 Update TFRT dependency to use revision
- Python version:3.9.7
- Installed using virtualenv? pip? conda?:None,just use system python and pip
- Bazel version (if compiling from source): bazel 3.7.2
- GCC/Compiler version (if compiling from source):/usr/bin/gcc-10
- CUDA/cuDNN version:release 11.4, V11.4.100/cudnn8.2
- GPU model and memory:RTX3090 32G GDDR6,memory 64G 3200Mhz
**Describe the problem**
- command:
- bazel build --config=mkl --copt=-mavx2 --copt=-O3 --copt=-DINTEL_MKL_QUANTIZED -s -c dbg --verbose_failures //tensorflow/tools/pip_package:build_pip_package
- bazel build -c dbg --config=cuda //tensorflow/tools/pip_package:build_pip_package
- bazel build -c opt --copt="-g" --cxxopt="-g" //tensorflow/tools/pip_package:build_pip_package
**I had used all method,same error like this:**
/home/xxx/tensorflow/tensorflow/python/BUILD:3170:24: Linking of rule '//tensorflow/python:_pywrap_tensorflow_internal.so' failed (Exit 1): crosstool_wrapper_driver_is_not_gcc failed: error executing command external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc @bazel-out/k8-dbg/bin/tensorflow/python/_pywrap_tensorflow_internal.so-2.params
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x6087e): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60c9c): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60df0): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60e1a): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60ef7): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f0f): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f27): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f3f): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60f57): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60fbf): relocation truncated to fit: R_X86_64_32 against `.debug_info'
bazel-out/k8-dbg/bin/external/llvm-project/mlir/libGPUToNVVMTransforms.a(LowerGpuOpsToNVVMOps.pic.o):(.debug_loc+0x60fd7): additional relocation overflows omitted from the output
collect2: error: ld returned 1 exit status
Target //tensorflow/tools/pip_package:build_pip_package failed to build
Use --verbose_failures to see the command lines of failed build steps.
|
build
|
tensorflow build debug failed system information os platform and distribution e g linux xxx rog manjaro smp preempt tue jul utc gnu linux tensorflow installed from source or binary source tensorflow version master lastest commit update tfrt dependency to use revision python version installed using virtualenv pip conda none just use system python and pip bazel version if compiling from source bazel gcc compiler version if compiling from source usr bin gcc cuda cudnn version release gpu model and memory memory describe the problem command bazel build config mkl copt copt copt dintel mkl quantized s c dbg verbose failures tensorflow tools pip package build pip package bazel build c dbg config cuda tensorflow tools pip package build pip package bazel build c opt copt g cxxopt g tensorflow tools pip package build pip package i had used all method same error like this home xxx tensorflow tensorflow python build linking of rule tensorflow python pywrap tensorflow internal so failed exit crosstool wrapper driver is not gcc failed error executing command external local config cuda crosstool clang bin crosstool wrapper driver is not gcc bazel out dbg bin tensorflow python pywrap tensorflow internal so params bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc relocation truncated to fit r against debug info bazel out dbg bin external llvm project mlir libgputonvvmtransforms a lowergpuopstonvvmops pic o debug loc additional relocation overflows omitted from the output error ld returned exit status target tensorflow tools pip package build pip package failed to build use verbose failures to see the command lines of failed build steps
| 1
|
140,186
| 5,398,395,993
|
IssuesEvent
|
2017-02-27 16:50:36
|
HBHWoolacotts/RPii
|
https://api.github.com/repos/HBHWoolacotts/RPii
|
closed
|
Sale won't allow delivery date change when item on manifest (but RPii says it can be changed)
|
Label: General RP Bugs and Support Priority - High
|
We should be able to change the delivery DATE ONLY when an item is on manifest but clicking the lorry doesn't do anything.
**This sale needs to be modified ASAP so please let me know when they can go in and fix it once you've looked at it**

|
1.0
|
Sale won't allow delivery date change when item on manifest (but RPii says it can be changed) - We should be able to change the delivery DATE ONLY when an item is on manifest but clicking the lorry doesn't do anything.
**This sale needs to be modified ASAP so please let me know when they can go in and fix it once you've looked at it**

|
non_build
|
sale won t allow delivery date change when item on manifest but rpii says it can be changed we should be able to change the delivery date only when an item is on manifest but clicking the lorry doesn t do anything this sale needs to be modified asap so please let me know when they can go in and fix it once you ve looked at it
| 0
|
1,877
| 4,704,239,962
|
IssuesEvent
|
2016-10-13 10:44:36
|
dita-ot/dita-ot
|
https://api.github.com/repos/dita-ot/dita-ot
|
opened
|
Adjust table row span after filtering
|
feature P2 preprocess
|
DITA source has tables with row spans and profiling attributes on rows. When publishing, the filter strips out some rows and the original `@morerows` is no longer valid. Right now this will fail in error because XSLT cannot deal with invalid tables like these.
One solution to fix this would be to write the custom table coordinate attributes during initial parse *and* replace the `@morerows` with `@dita:rowspan-end`. This is similar to what CALS does with column span, specifying span end column name instead of span length. After filtering this could be converted back to `@morerows` by calculating the length with the current coordinates.
This would also work when conref push is used to push new rows into a rows span.
|
1.0
|
Adjust table row span after filtering - DITA source has tables with row spans and profiling attributes on rows. When publishing, the filter strips out some rows and the original `@morerows` is no longer valid. Right now this will fail in error because XSLT cannot deal with invalid tables like these.
One solution to fix this would be to write the custom table coordinate attributes during initial parse *and* replace the `@morerows` with `@dita:rowspan-end`. This is similar to what CALS does with column span, specifying span end column name instead of span length. After filtering this could be converted back to `@morerows` by calculating the length with the current coordinates.
This would also work when conref push is used to push new rows into a rows span.
|
non_build
|
adjust table row span after filtering dita source has tables with row spans and profiling attributes on rows when publishing the filter strips out some rows and the original morerows is no longer valid right now this will fail in error because xslt cannot deal with invalid tables like these one solution to fix this would be to write the custom table coordinate attributes during initial parse and replace the morerows with dita rowspan end this is similar to what cals does with column span specifying span end column name instead of span length after filtering this could be converted back to morerows by calculating the length with the current coordinates this would also work when conref push is used to push new rows into a rows span
| 0
|
86,218
| 24,794,412,576
|
IssuesEvent
|
2022-10-24 16:01:29
|
facebookincubator/velox
|
https://api.github.com/repos/facebookincubator/velox
|
closed
|
make for CPU_TARGET="aarch64" fails in Ubuntu
|
build
|
While attempting to build Velox on Ubuntu 22.04 - for an aarch64 platform - it fails with:
```[401/1356] Building CXX object velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o
FAILED: velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o
ccache /usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_CONTEXT_DYN_LINK -DBOOST_DATE_TIME_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFMT_LOCALE -DGFLAGS_IS_A_DLL=0 -DVELOX_ENABLE_PARQUET -I/velox/. -I/velox/velox/external/xxhash -I/velox/_build/release/_deps/folly-src -I/velox/_build/release/_deps/folly-build -I/velox/third_party/xsimd/include -isystem /velox/velox -isystem /velox/velox/external -isystem /velox/velox/external/duckdb -isystem /velox/velox/external/duckdb/tpch/dbgen/include -mcpu=neoverse-n1 -std=c++17 -D USE_VELOX_COMMON_BASE -D HAS_UNCAUGHT_EXCEPTIONS -Werror -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-sign-compare -Wno-ignored-qualifiers -Wno-implicit-fallthrough -Wno-empty-body -Wno-class-memaccess -Wno-comment -Wno-int-in-bool-context -Wno-redundant-move -Wno-array-bounds -Wno-maybe-uninitialized -Wno-unused-result -Wno-format-overflow -Wno-strict-aliasing -Wno-type-limits -O3 -DNDEBUG -fPIC -Wno-deprecated-declarations -Wno-stringop-overflow -std=gnu++17 -MD -MT velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o -MF velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o.d -o velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o -c /velox/velox/type/Filter.cpp
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:55,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<float, float> xsimd::sincos(float)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:981:54: note: parameter passing for argument of type 'std::pair<float, float>' when C++17 is enabled changed to match C++14 in GCC 10.1
981 | inline std::pair<float, float> sincos(float val) noexcept
| ^~~~~~~~
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<double, double> xsimd::sincos(double)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:988:57: note: parameter passing for argument of type 'std::pair<double, double>' when C++17 is enabled changed to match C++14 in GCC 10.1
988 | inline std::pair<double, double> sincos(double val) noexcept
| ^~~~~~~~
/velox/velox/type/Filter.cpp: In member function 'virtual xsimd::batch_bool<long int> facebook::velox::common::BigintValuesUsingHashTable::testValues(xsimd::batch<long int>) const':
/velox/velox/type/Filter.cpp:222:57: error: no matching function for call to 'xsimd::batch<long unsigned int>::batch(xsimd::batch<long int>&)'
222 | xsimd::batch<int64_t> indices(xsimd::batch<uint64_t>(x) * M & sizeMask_);
| ^
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:50:9: note: candidate: 'template<class ... Ts> xsimd::batch<T, A>::batch(T, T, Ts ...) [with Ts = {Ts ...}; T = long unsigned int; A = xsimd::neon64]'
50 | batch(T val0, T val1, Ts... vals) noexcept;
| ^~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:50:9: note: template argument deduction/substitution failed:
/velox/velox/type/Filter.cpp:222:57: note: candidate expects at least 2 arguments, 1 provided
222 | xsimd::batch<int64_t> indices(xsimd::batch<uint64_t>(x) * M & sizeMask_);
| ^
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:471:12: note: candidate: 'xsimd::batch<T, A>::batch(xsimd::batch<T, A>::register_type) [with T = long unsigned int; A = xsimd::neon64; xsimd::batch<T, A>::register_type = std::conditional<false, __Int64x2_t, __Uint64x2_t>::type]'
471 | inline batch<T, A>::batch(register_type reg) noexcept
| ^~~~~~~~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:471:45: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'xsimd::batch<long unsigned int>::register_type' {aka 'std::conditional<false, __Int64x2_t, __Uint64x2_t>::type'}
471 | inline batch<T, A>::batch(register_type reg) noexcept
| ~~~~~~~~~~~~~~^~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:461:12: note: candidate: 'xsimd::batch<T, A>::batch(const xsimd::batch_bool<T, A>&) [with T = long unsigned int; A = xsimd::neon64]'
461 | inline batch<T, A>::batch(batch_bool<T, A> const& b) noexcept
| ^~~~~~~~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:461:55: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'const xsimd::batch_bool<long unsigned int, xsimd::neon64>&'
461 | inline batch<T, A>::batch(batch_bool<T, A> const& b) noexcept
| ~~~~~~~~~~~~~~~~~~~~~~~~^
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:436:12: note: candidate: 'xsimd::batch<T, A>::batch(T) [with T = long unsigned int; A = xsimd::neon64]'
436 | inline batch<T, A>::batch(T val) noexcept
| ^~~~~~~~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:436:33: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'long unsigned int'
436 | inline batch<T, A>::batch(T val) noexcept
| ~~^~~
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:47:9: note: candidate: 'xsimd::batch<T, A>::batch() [with T = long unsigned int; A = xsimd::neon64]'
47 | batch() = default; ///< Create a batch initialized with undefined values.
| ^~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:47:9: note: candidate expects 0 arguments, 1 provided
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: candidate: 'constexpr xsimd::batch<long unsigned int>::batch(const xsimd::batch<long unsigned int>&)'
35 | class batch : public types::simd_register<T, A>
| ^~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'const xsimd::batch<long unsigned int>&'
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: candidate: 'constexpr xsimd::batch<long unsigned int>::batch(xsimd::batch<long unsigned int>&&)'
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'xsimd::batch<long unsigned int>&&'
[403/1356] Building CXX object velox/serializers/tests/CMakeFiles/velox_presto_serializer_test.dir/PrestoSerializerTest.cpp.o
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:55,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/buffer/Buffer.h:26,
from /velox/./velox/vector/VectorStream.h:18,
from /velox/./velox/serializers/PrestoSerializer.h:18,
from /velox/velox/serializers/tests/PrestoSerializerTest.cpp:16:
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<float, float> xsimd::sincos(float)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:981:54: note: parameter passing for argument of type 'std::pair<float, float>' when C++17 is enabled changed to match C++14 in GCC 10.1
981 | inline std::pair<float, float> sincos(float val) noexcept
| ^~~~~~~~
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<double, double> xsimd::sincos(double)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:988:57: note: parameter passing for argument of type 'std::pair<double, double>' when C++17 is enabled changed to match C++14 in GCC 10.1
988 | inline std::pair<double, double> sincos(double val) noexcept
| ^~~~~~~~
[404/1356] Building CXX object velox/serializers/tests/CMakeFiles/velox_presto_serializer_test.dir/UnsafeRowSerializerTest.cpp.o
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:55,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/buffer/Buffer.h:26,
from /velox/./velox/vector/BaseVector.h:29,
from /velox/./velox/vector/ComplexVector.h:25,
from /velox/./velox/serializers/UnsafeRowSerializer.h:17,
from /velox/velox/serializers/tests/UnsafeRowSerializerTest.cpp:16:
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<float, float> xsimd::sincos(float)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:981:54: note: parameter passing for argument of type 'std::pair<float, float>' when C++17 is enabled changed to match C++14 in GCC 10.1
981 | inline std::pair<float, float> sincos(float val) noexcept
| ^~~~~~~~
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<double, double> xsimd::sincos(double)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:988:57: note: parameter passing for argument of type 'std::pair<double, double>' when C++17 is enabled changed to match C++14 in GCC 10.1
988 | inline std::pair<double, double> sincos(double val) noexcept
| ^~~~~~~~
```
It seems to build fine for both M1 Mac (CPU_TARGET="arm64"), and on x86-64 (CPU_TARGET="avx").
I was wanting to benchmark Velox with TPC-H on both Intel and Graviton (aarch64) nodes. Is that architecture supported? It is mentioned here: https://github.com/facebookincubator/velox/blob/c7c094b28f3ad5c66e7baa5c3bcb136c8b2f20d2/scripts/setup-helper-functions.sh#L114
|
1.0
|
make for CPU_TARGET="aarch64" fails in Ubuntu - While attempting to build Velox on Ubuntu 22.04 - for an aarch64 platform - it fails with:
```[401/1356] Building CXX object velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o
FAILED: velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o
ccache /usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_CONTEXT_DYN_LINK -DBOOST_DATE_TIME_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFMT_LOCALE -DGFLAGS_IS_A_DLL=0 -DVELOX_ENABLE_PARQUET -I/velox/. -I/velox/velox/external/xxhash -I/velox/_build/release/_deps/folly-src -I/velox/_build/release/_deps/folly-build -I/velox/third_party/xsimd/include -isystem /velox/velox -isystem /velox/velox/external -isystem /velox/velox/external/duckdb -isystem /velox/velox/external/duckdb/tpch/dbgen/include -mcpu=neoverse-n1 -std=c++17 -D USE_VELOX_COMMON_BASE -D HAS_UNCAUGHT_EXCEPTIONS -Werror -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-sign-compare -Wno-ignored-qualifiers -Wno-implicit-fallthrough -Wno-empty-body -Wno-class-memaccess -Wno-comment -Wno-int-in-bool-context -Wno-redundant-move -Wno-array-bounds -Wno-maybe-uninitialized -Wno-unused-result -Wno-format-overflow -Wno-strict-aliasing -Wno-type-limits -O3 -DNDEBUG -fPIC -Wno-deprecated-declarations -Wno-stringop-overflow -std=gnu++17 -MD -MT velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o -MF velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o.d -o velox/type/CMakeFiles/velox_type.dir/Filter.cpp.o -c /velox/velox/type/Filter.cpp
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:55,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<float, float> xsimd::sincos(float)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:981:54: note: parameter passing for argument of type 'std::pair<float, float>' when C++17 is enabled changed to match C++14 in GCC 10.1
981 | inline std::pair<float, float> sincos(float val) noexcept
| ^~~~~~~~
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<double, double> xsimd::sincos(double)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:988:57: note: parameter passing for argument of type 'std::pair<double, double>' when C++17 is enabled changed to match C++14 in GCC 10.1
988 | inline std::pair<double, double> sincos(double val) noexcept
| ^~~~~~~~
/velox/velox/type/Filter.cpp: In member function 'virtual xsimd::batch_bool<long int> facebook::velox::common::BigintValuesUsingHashTable::testValues(xsimd::batch<long int>) const':
/velox/velox/type/Filter.cpp:222:57: error: no matching function for call to 'xsimd::batch<long unsigned int>::batch(xsimd::batch<long int>&)'
222 | xsimd::batch<int64_t> indices(xsimd::batch<uint64_t>(x) * M & sizeMask_);
| ^
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:50:9: note: candidate: 'template<class ... Ts> xsimd::batch<T, A>::batch(T, T, Ts ...) [with Ts = {Ts ...}; T = long unsigned int; A = xsimd::neon64]'
50 | batch(T val0, T val1, Ts... vals) noexcept;
| ^~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:50:9: note: template argument deduction/substitution failed:
/velox/velox/type/Filter.cpp:222:57: note: candidate expects at least 2 arguments, 1 provided
222 | xsimd::batch<int64_t> indices(xsimd::batch<uint64_t>(x) * M & sizeMask_);
| ^
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:471:12: note: candidate: 'xsimd::batch<T, A>::batch(xsimd::batch<T, A>::register_type) [with T = long unsigned int; A = xsimd::neon64; xsimd::batch<T, A>::register_type = std::conditional<false, __Int64x2_t, __Uint64x2_t>::type]'
471 | inline batch<T, A>::batch(register_type reg) noexcept
| ^~~~~~~~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:471:45: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'xsimd::batch<long unsigned int>::register_type' {aka 'std::conditional<false, __Int64x2_t, __Uint64x2_t>::type'}
471 | inline batch<T, A>::batch(register_type reg) noexcept
| ~~~~~~~~~~~~~~^~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:461:12: note: candidate: 'xsimd::batch<T, A>::batch(const xsimd::batch_bool<T, A>&) [with T = long unsigned int; A = xsimd::neon64]'
461 | inline batch<T, A>::batch(batch_bool<T, A> const& b) noexcept
| ^~~~~~~~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:461:55: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'const xsimd::batch_bool<long unsigned int, xsimd::neon64>&'
461 | inline batch<T, A>::batch(batch_bool<T, A> const& b) noexcept
| ~~~~~~~~~~~~~~~~~~~~~~~~^
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:436:12: note: candidate: 'xsimd::batch<T, A>::batch(T) [with T = long unsigned int; A = xsimd::neon64]'
436 | inline batch<T, A>::batch(T val) noexcept
| ^~~~~~~~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:436:33: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'long unsigned int'
436 | inline batch<T, A>::batch(T val) noexcept
| ~~^~~
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:47:9: note: candidate: 'xsimd::batch<T, A>::batch() [with T = long unsigned int; A = xsimd::neon64]'
47 | batch() = default; ///< Create a batch initialized with undefined values.
| ^~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:47:9: note: candidate expects 0 arguments, 1 provided
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:61,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/type/Filter.h:29,
from /velox/velox/type/Filter.cpp:25:
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: candidate: 'constexpr xsimd::batch<long unsigned int>::batch(const xsimd::batch<long unsigned int>&)'
35 | class batch : public types::simd_register<T, A>
| ^~~~~
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'const xsimd::batch<long unsigned int>&'
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: candidate: 'constexpr xsimd::batch<long unsigned int>::batch(xsimd::batch<long unsigned int>&&)'
/velox/third_party/xsimd/include/xsimd/types/xsimd_batch.hpp:35:11: note: no known conversion for argument 1 from 'xsimd::batch<long int>' to 'xsimd::batch<long unsigned int>&&'
[403/1356] Building CXX object velox/serializers/tests/CMakeFiles/velox_presto_serializer_test.dir/PrestoSerializerTest.cpp.o
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:55,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/buffer/Buffer.h:26,
from /velox/./velox/vector/VectorStream.h:18,
from /velox/./velox/serializers/PrestoSerializer.h:18,
from /velox/velox/serializers/tests/PrestoSerializerTest.cpp:16:
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<float, float> xsimd::sincos(float)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:981:54: note: parameter passing for argument of type 'std::pair<float, float>' when C++17 is enabled changed to match C++14 in GCC 10.1
981 | inline std::pair<float, float> sincos(float val) noexcept
| ^~~~~~~~
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<double, double> xsimd::sincos(double)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:988:57: note: parameter passing for argument of type 'std::pair<double, double>' when C++17 is enabled changed to match C++14 in GCC 10.1
988 | inline std::pair<double, double> sincos(double val) noexcept
| ^~~~~~~~
[404/1356] Building CXX object velox/serializers/tests/CMakeFiles/velox_presto_serializer_test.dir/UnsafeRowSerializerTest.cpp.o
In file included from /velox/third_party/xsimd/include/xsimd/xsimd.hpp:55,
from /velox/./velox/common/base/SimdUtil.h:24,
from /velox/./velox/buffer/Buffer.h:26,
from /velox/./velox/vector/BaseVector.h:29,
from /velox/./velox/vector/ComplexVector.h:25,
from /velox/./velox/serializers/UnsafeRowSerializer.h:17,
from /velox/velox/serializers/tests/UnsafeRowSerializerTest.cpp:16:
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<float, float> xsimd::sincos(float)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:981:54: note: parameter passing for argument of type 'std::pair<float, float>' when C++17 is enabled changed to match C++14 in GCC 10.1
981 | inline std::pair<float, float> sincos(float val) noexcept
| ^~~~~~~~
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp: In function 'std::pair<double, double> xsimd::sincos(double)':
/velox/third_party/xsimd/include/xsimd/arch/xsimd_scalar.hpp:988:57: note: parameter passing for argument of type 'std::pair<double, double>' when C++17 is enabled changed to match C++14 in GCC 10.1
988 | inline std::pair<double, double> sincos(double val) noexcept
| ^~~~~~~~
```
It seems to build fine for both M1 Mac (CPU_TARGET="arm64"), and on x86-64 (CPU_TARGET="avx").
I was wanting to benchmark Velox with TPC-H on both Intel and Graviton (aarch64) nodes. Is that architecture supported? It is mentioned here: https://github.com/facebookincubator/velox/blob/c7c094b28f3ad5c66e7baa5c3bcb136c8b2f20d2/scripts/setup-helper-functions.sh#L114
|
build
|
make for cpu target fails in ubuntu while attempting to build velox on ubuntu for an platform it fails with building cxx object velox type cmakefiles velox type dir filter cpp o failed velox type cmakefiles velox type dir filter cpp o ccache usr bin c dboost all no lib dboost atomic dyn link dboost context dyn link dboost date time dyn link dboost filesystem dyn link dboost program options dyn link dboost regex dyn link dboost system dyn link dboost thread dyn link dfmt locale dgflags is a dll dvelox enable parquet i velox i velox velox external xxhash i velox build release deps folly src i velox build release deps folly build i velox third party xsimd include isystem velox velox isystem velox velox external isystem velox velox external duckdb isystem velox velox external duckdb tpch dbgen include mcpu neoverse std c d use velox common base d has uncaught exceptions werror wall wextra wno unused wno unused parameter wno sign compare wno ignored qualifiers wno implicit fallthrough wno empty body wno class memaccess wno comment wno int in bool context wno redundant move wno array bounds wno maybe uninitialized wno unused result wno format overflow wno strict aliasing wno type limits dndebug fpic wno deprecated declarations wno stringop overflow std gnu md mt velox type cmakefiles velox type dir filter cpp o mf velox type cmakefiles velox type dir filter cpp o d o velox type cmakefiles velox type dir filter cpp o c velox velox type filter cpp in file included from velox third party xsimd include xsimd xsimd hpp from velox velox common base simdutil h from velox velox type filter h from velox velox type filter cpp velox third party xsimd include xsimd arch xsimd scalar hpp in function std pair xsimd sincos float velox third party xsimd include xsimd arch xsimd scalar hpp note parameter passing for argument of type std pair when c is enabled changed to match c in gcc inline std pair sincos float val noexcept velox third party xsimd include xsimd arch xsimd scalar hpp in function std pair xsimd sincos double velox third party xsimd include xsimd arch xsimd scalar hpp note parameter passing for argument of type std pair when c is enabled changed to match c in gcc inline std pair sincos double val noexcept velox velox type filter cpp in member function virtual xsimd batch bool facebook velox common bigintvaluesusinghashtable testvalues xsimd batch const velox velox type filter cpp error no matching function for call to xsimd batch batch xsimd batch xsimd batch indices xsimd batch x m sizemask in file included from velox third party xsimd include xsimd xsimd hpp from velox velox common base simdutil h from velox velox type filter h from velox velox type filter cpp velox third party xsimd include xsimd types xsimd batch hpp note candidate template xsimd batch batch t t ts batch t t ts vals noexcept velox third party xsimd include xsimd types xsimd batch hpp note template argument deduction substitution failed velox velox type filter cpp note candidate expects at least arguments provided xsimd batch indices xsimd batch x m sizemask in file included from velox third party xsimd include xsimd xsimd hpp from velox velox common base simdutil h from velox velox type filter h from velox velox type filter cpp velox third party xsimd include xsimd types xsimd batch hpp note candidate xsimd batch batch xsimd batch register type inline batch batch register type reg noexcept velox third party xsimd include xsimd types xsimd batch hpp note no known conversion for argument from xsimd batch to xsimd batch register type aka std conditional type inline batch batch register type reg noexcept velox third party xsimd include xsimd types xsimd batch hpp note candidate xsimd batch batch const xsimd batch bool inline batch batch batch bool const b noexcept velox third party xsimd include xsimd types xsimd batch hpp note no known conversion for argument from xsimd batch to const xsimd batch bool inline batch batch batch bool const b noexcept velox third party xsimd include xsimd types xsimd batch hpp note candidate xsimd batch batch t inline batch batch t val noexcept velox third party xsimd include xsimd types xsimd batch hpp note no known conversion for argument from xsimd batch to long unsigned int inline batch batch t val noexcept in file included from velox third party xsimd include xsimd xsimd hpp from velox velox common base simdutil h from velox velox type filter h from velox velox type filter cpp velox third party xsimd include xsimd types xsimd batch hpp note candidate xsimd batch batch batch default create a batch initialized with undefined values velox third party xsimd include xsimd types xsimd batch hpp note candidate expects arguments provided in file included from velox third party xsimd include xsimd xsimd hpp from velox velox common base simdutil h from velox velox type filter h from velox velox type filter cpp velox third party xsimd include xsimd types xsimd batch hpp note candidate constexpr xsimd batch batch const xsimd batch class batch public types simd register velox third party xsimd include xsimd types xsimd batch hpp note no known conversion for argument from xsimd batch to const xsimd batch velox third party xsimd include xsimd types xsimd batch hpp note candidate constexpr xsimd batch batch xsimd batch velox third party xsimd include xsimd types xsimd batch hpp note no known conversion for argument from xsimd batch to xsimd batch building cxx object velox serializers tests cmakefiles velox presto serializer test dir prestoserializertest cpp o in file included from velox third party xsimd include xsimd xsimd hpp from velox velox common base simdutil h from velox velox buffer buffer h from velox velox vector vectorstream h from velox velox serializers prestoserializer h from velox velox serializers tests prestoserializertest cpp velox third party xsimd include xsimd arch xsimd scalar hpp in function std pair xsimd sincos float velox third party xsimd include xsimd arch xsimd scalar hpp note parameter passing for argument of type std pair when c is enabled changed to match c in gcc inline std pair sincos float val noexcept velox third party xsimd include xsimd arch xsimd scalar hpp in function std pair xsimd sincos double velox third party xsimd include xsimd arch xsimd scalar hpp note parameter passing for argument of type std pair when c is enabled changed to match c in gcc inline std pair sincos double val noexcept building cxx object velox serializers tests cmakefiles velox presto serializer test dir unsaferowserializertest cpp o in file included from velox third party xsimd include xsimd xsimd hpp from velox velox common base simdutil h from velox velox buffer buffer h from velox velox vector basevector h from velox velox vector complexvector h from velox velox serializers unsaferowserializer h from velox velox serializers tests unsaferowserializertest cpp velox third party xsimd include xsimd arch xsimd scalar hpp in function std pair xsimd sincos float velox third party xsimd include xsimd arch xsimd scalar hpp note parameter passing for argument of type std pair when c is enabled changed to match c in gcc inline std pair sincos float val noexcept velox third party xsimd include xsimd arch xsimd scalar hpp in function std pair xsimd sincos double velox third party xsimd include xsimd arch xsimd scalar hpp note parameter passing for argument of type std pair when c is enabled changed to match c in gcc inline std pair sincos double val noexcept it seems to build fine for both mac cpu target and on cpu target avx i was wanting to benchmark velox with tpc h on both intel and graviton nodes is that architecture supported it is mentioned here
| 1
|
50,412
| 12,508,413,549
|
IssuesEvent
|
2020-06-02 15:31:18
|
amazeeio/lagoon
|
https://api.github.com/repos/amazeeio/lagoon
|
closed
|
Improve Harbor Migration Script
|
2-build-deploy
|
- add check if an INTERNAL_REGISTRY_URL is currently set
- if it is set to another harbor url than the default lagoon one, don't change anything at all (lagoon should assume that this project uses a custom internal registry)
- if it is set to the default lagoon harbor, we continue
- if nothing is set, we continue
- if robot account in harbor already exists, create a new one (with a new hash, so leave the old one intact)
- forcefully update the 3 INTERNAL_REGISTRY_* env variables in lagoon api with the new robot account infos
|
1.0
|
Improve Harbor Migration Script - - add check if an INTERNAL_REGISTRY_URL is currently set
- if it is set to another harbor url than the default lagoon one, don't change anything at all (lagoon should assume that this project uses a custom internal registry)
- if it is set to the default lagoon harbor, we continue
- if nothing is set, we continue
- if robot account in harbor already exists, create a new one (with a new hash, so leave the old one intact)
- forcefully update the 3 INTERNAL_REGISTRY_* env variables in lagoon api with the new robot account infos
|
build
|
improve harbor migration script add check if an internal registry url is currently set if it is set to another harbor url than the default lagoon one don t change anything at all lagoon should assume that this project uses a custom internal registry if it is set to the default lagoon harbor we continue if nothing is set we continue if robot account in harbor already exists create a new one with a new hash so leave the old one intact forcefully update the internal registry env variables in lagoon api with the new robot account infos
| 1
|
310,183
| 26,705,276,463
|
IssuesEvent
|
2023-01-27 17:34:54
|
cockroachdb/cockroach
|
https://api.github.com/repos/cockroachdb/cockroach
|
closed
|
sql/sem/builtins: TestCrdbInternalDatumsToBytes failed
|
C-test-failure O-robot branch-master T-sql-sessions
|
sql/sem/builtins.TestCrdbInternalDatumsToBytes [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8476308?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8476308?buildTab=artifacts#/) on master @ [90e24ab4313f59fdc825443c03a1f4dc04bcef09](https://github.com/cockroachdb/cockroach/commits/90e24ab4313f59fdc825443c03a1f4dc04bcef09):
```
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/transport_race.go:98 +0x161
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendToReplicas()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:2060 +0xd0d
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendPartialBatch()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1668 +0xa44
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1240 +0x592
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*RangeIterator).Seek()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/range_iter.go:208 +0x73a
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1234 +0x2b7
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).Send()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:861 +0xa59
github.com/cockroachdb/cockroach/pkg/kv.lookupRangeFwdScan()
github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:330 +0x832
github.com/cockroachdb/cockroach/pkg/kv.RangeLookup()
github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:205 +0x315
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).RangeLookup()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:570 +0x128
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).performRangeLookup()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:1032 +0x3fe
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl.func1()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:920 +0xc5
github.com/cockroachdb/cockroach/pkg/util/contextutil.RunWithTimeout()
github.com/cockroachdb/cockroach/pkg/util/contextutil/context.go:104 +0x1a9
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:917 +0x1a8
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).tryLookup.func3()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:815 +0xd9
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall.func1()
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:387 +0x51
github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTask()
github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:305 +0x147
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall()
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:386 +0x2a4
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).DoChan.func1()
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:356 +0xd0
==================
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/FLOAT8
I230127 10:59:01.829462 1790 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36760,user=root] 127 ={"Timestamp":1674817141816628360,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/FLOAT8\" (c0 FLOAT8, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":108,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/FLOAT8\""}
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT2
I230127 10:59:01.520996 1626 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36726,user=root] 121 ={"Timestamp":1674817141507965713,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT2\" (c0 INT2, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":104,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT2\""}
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT4
I230127 10:59:01.609676 1672 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36736,user=root] 122 ={"Timestamp":1674817141596287533,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT4\" (c0 INT4, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":105,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT4\""}
I230127 10:59:01.627039 596 1@gossip/gossip.go:1419 [T1,n1] 123 node has connected to cluster via gossip
I230127 10:59:01.627472 596 kv/kvserver/stores.go:281 [T1,n1] 124 wrote 0 node addresses to persistent storage
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT8
I230127 10:59:01.681483 1665 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36738,user=root] 125 ={"Timestamp":1674817141670406657,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT8\" (c0 INT8, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":106,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT8\""}
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/STRING
I230127 10:59:01.913788 1774 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36770,user=root] 128 ={"Timestamp":1674817141902907022,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/STRING\" (c0 STRING, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":109,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/STRING\""}
```
<p>Parameters: <code>TAGS=bazel,gss,race</code>
</p>
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
</p>
</details>
/cc @cockroachdb/sql-sessions
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestCrdbInternalDatumsToBytes.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-23917
|
1.0
|
sql/sem/builtins: TestCrdbInternalDatumsToBytes failed - sql/sem/builtins.TestCrdbInternalDatumsToBytes [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8476308?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/8476308?buildTab=artifacts#/) on master @ [90e24ab4313f59fdc825443c03a1f4dc04bcef09](https://github.com/cockroachdb/cockroach/commits/90e24ab4313f59fdc825443c03a1f4dc04bcef09):
```
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/transport_race.go:98 +0x161
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendToReplicas()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:2060 +0xd0d
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).sendPartialBatch()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1668 +0xa44
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1240 +0x592
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*RangeIterator).Seek()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/range_iter.go:208 +0x73a
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).divideAndSendBatchToRanges()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:1234 +0x2b7
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).Send()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:861 +0xa59
github.com/cockroachdb/cockroach/pkg/kv.lookupRangeFwdScan()
github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:330 +0x832
github.com/cockroachdb/cockroach/pkg/kv.RangeLookup()
github.com/cockroachdb/cockroach/pkg/kv/range_lookup.go:205 +0x315
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord.(*DistSender).RangeLookup()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvcoord/dist_sender.go:570 +0x128
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).performRangeLookup()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:1032 +0x3fe
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl.func1()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:920 +0xc5
github.com/cockroachdb/cockroach/pkg/util/contextutil.RunWithTimeout()
github.com/cockroachdb/cockroach/pkg/util/contextutil/context.go:104 +0x1a9
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.tryLookupImpl()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:917 +0x1a8
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache.(*RangeCache).tryLookup.func3()
github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache/range_cache.go:815 +0xd9
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall.func1()
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:387 +0x51
github.com/cockroachdb/cockroach/pkg/util/stop.(*Stopper).RunTask()
github.com/cockroachdb/cockroach/pkg/util/stop/stopper.go:305 +0x147
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).doCall()
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:386 +0x2a4
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight.(*Group).DoChan.func1()
github.com/cockroachdb/cockroach/pkg/util/syncutil/singleflight/singleflight.go:356 +0xd0
==================
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/FLOAT8
I230127 10:59:01.829462 1790 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36760,user=root] 127 ={"Timestamp":1674817141816628360,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/FLOAT8\" (c0 FLOAT8, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":108,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/FLOAT8\""}
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT2
I230127 10:59:01.520996 1626 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36726,user=root] 121 ={"Timestamp":1674817141507965713,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT2\" (c0 INT2, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":104,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT2\""}
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT4
I230127 10:59:01.609676 1672 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36736,user=root] 122 ={"Timestamp":1674817141596287533,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT4\" (c0 INT4, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":105,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT4\""}
I230127 10:59:01.627039 596 1@gossip/gossip.go:1419 [T1,n1] 123 node has connected to cluster via gossip
I230127 10:59:01.627472 596 kv/kvserver/stores.go:281 [T1,n1] 124 wrote 0 node addresses to persistent storage
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT8
I230127 10:59:01.681483 1665 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36738,user=root] 125 ={"Timestamp":1674817141670406657,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT8\" (c0 INT8, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":106,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/INT8\""}
=== RUN TestCrdbInternalDatumsToBytes/single_type_and_nulls/STRING
I230127 10:59:01.913788 1774 5@util/log/event_log.go:32 [T1,n1,client=127.0.0.1:36770,user=root] 128 ={"Timestamp":1674817141902907022,"EventType":"create_table","Statement":"CREATE TABLE defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/STRING\" (c0 STRING, UNIQUE WITHOUT INDEX (c0))","Tag":"CREATE TABLE","User":"root","DescriptorID":109,"TableName":"defaultdb.public.\"TestCrdbInternalDatumsToBytes/single_type_and_nulls/STRING\""}
```
<p>Parameters: <code>TAGS=bazel,gss,race</code>
</p>
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
</p>
</details>
/cc @cockroachdb/sql-sessions
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestCrdbInternalDatumsToBytes.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-23917
|
non_build
|
sql sem builtins testcrdbinternaldatumstobytes failed sql sem builtins testcrdbinternaldatumstobytes with on master github com cockroachdb cockroach pkg kv kvclient kvcoord transport race go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender sendtoreplicas github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender sendpartialbatch github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender divideandsendbatchtoranges github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord rangeiterator seek github com cockroachdb cockroach pkg kv kvclient kvcoord range iter go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender divideandsendbatchtoranges github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender send github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv lookuprangefwdscan github com cockroachdb cockroach pkg kv range lookup go github com cockroachdb cockroach pkg kv rangelookup github com cockroachdb cockroach pkg kv range lookup go github com cockroachdb cockroach pkg kv kvclient kvcoord distsender rangelookup github com cockroachdb cockroach pkg kv kvclient kvcoord dist sender go github com cockroachdb cockroach pkg kv kvclient rangecache rangecache performrangelookup github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg kv kvclient rangecache trylookupimpl github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg util contextutil runwithtimeout github com cockroachdb cockroach pkg util contextutil context go github com cockroachdb cockroach pkg kv kvclient rangecache trylookupimpl github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg kv kvclient rangecache rangecache trylookup github com cockroachdb cockroach pkg kv kvclient rangecache range cache go github com cockroachdb cockroach pkg util syncutil singleflight group docall github com cockroachdb cockroach pkg util syncutil singleflight singleflight go github com cockroachdb cockroach pkg util stop stopper runtask github com cockroachdb cockroach pkg util stop stopper go github com cockroachdb cockroach pkg util syncutil singleflight group docall github com cockroachdb cockroach pkg util syncutil singleflight singleflight go github com cockroachdb cockroach pkg util syncutil singleflight group dochan github com cockroachdb cockroach pkg util syncutil singleflight singleflight go run testcrdbinternaldatumstobytes single type and nulls util log event log go timestamp eventtype create table statement create table defaultdb public testcrdbinternaldatumstobytes single type and nulls unique without index tag create table user root descriptorid tablename defaultdb public testcrdbinternaldatumstobytes single type and nulls run testcrdbinternaldatumstobytes single type and nulls util log event log go timestamp eventtype create table statement create table defaultdb public testcrdbinternaldatumstobytes single type and nulls unique without index tag create table user root descriptorid tablename defaultdb public testcrdbinternaldatumstobytes single type and nulls run testcrdbinternaldatumstobytes single type and nulls util log event log go timestamp eventtype create table statement create table defaultdb public testcrdbinternaldatumstobytes single type and nulls unique without index tag create table user root descriptorid tablename defaultdb public testcrdbinternaldatumstobytes single type and nulls gossip gossip go node has connected to cluster via gossip kv kvserver stores go wrote node addresses to persistent storage run testcrdbinternaldatumstobytes single type and nulls util log event log go timestamp eventtype create table statement create table defaultdb public testcrdbinternaldatumstobytes single type and nulls unique without index tag create table user root descriptorid tablename defaultdb public testcrdbinternaldatumstobytes single type and nulls run testcrdbinternaldatumstobytes single type and nulls string util log event log go timestamp eventtype create table statement create table defaultdb public testcrdbinternaldatumstobytes single type and nulls string string unique without index tag create table user root descriptorid tablename defaultdb public testcrdbinternaldatumstobytes single type and nulls string parameters tags bazel gss race help see also cc cockroachdb sql sessions jira issue crdb
| 0
|
79,010
| 22,588,322,221
|
IssuesEvent
|
2022-06-28 17:13:06
|
mavlink/mavros
|
https://api.github.com/repos/mavlink/mavros
|
closed
|
Not working with ROS2 humble
|
question build error ros2
|
I recently upgraded my setup to using Ubuntu 22.04 and ROS2 humble (from 20.04 and ROS2 foxy) and was looking to migrate and update few projects which use mavros.
- Mavros does not seem to be available in the ros humble repositories (only ros-humble-mavros-messages and ros-humble-mavros-messages-dbgsym are available)
- Mavros doesn't compile from source correctly and throws an error while following the installation instructions [here](https://github.com/mavlink/mavros/blob/master/mavros/README.md#installation) and running colcon build instead of catkin build:
Questions:
- When will mavros be available as a binary package in ros-humble?
- What are potential fixes to the compile error below?
```bash
# $ colcon build
Starting >>> mavlink
Starting >>> mavros_msgs
Finished <<< mavlink [0.18s]
Starting >>> libmavconn
Finished <<< mavros_msgs [2.18s]
--- stderr: libmavconn
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:24:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:24:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/tcp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/tcp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:22:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/serial.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:23:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:22:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/serial.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:23:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/udp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/udp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:76: CMakeFiles/mavconn.dir/generated/src/mavlink_helpers.cpp.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:90: CMakeFiles/mavconn.dir/src/interface.cpp.o] Error 1
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:104: CMakeFiles/mavconn.dir/src/serial.cpp.o] Error 1
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:132: CMakeFiles/mavconn.dir/src/udp.cpp.o] Error 1
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:118: CMakeFiles/mavconn.dir/src/tcp.cpp.o] Error 1
gmake[1]: *** [CMakeFiles/Makefile2:157: CMakeFiles/mavconn.dir/all] Error 2
gmake: *** [Makefile:146: all] Error 2
---
Failed <<< libmavconn [2.67s, exited with code 2]
Summary: 2 packages finished [2.99s]
1 package failed: libmavconn
1 package had stderr output: libmavconn
2 packages not processed
```
|
1.0
|
Not working with ROS2 humble -
I recently upgraded my setup to using Ubuntu 22.04 and ROS2 humble (from 20.04 and ROS2 foxy) and was looking to migrate and update few projects which use mavros.
- Mavros does not seem to be available in the ros humble repositories (only ros-humble-mavros-messages and ros-humble-mavros-messages-dbgsym are available)
- Mavros doesn't compile from source correctly and throws an error while following the installation instructions [here](https://github.com/mavlink/mavros/blob/master/mavros/README.md#installation) and running colcon build instead of catkin build:
Questions:
- When will mavros be available as a binary package in ros-humble?
- What are potential fixes to the compile error below?
```bash
# $ colcon build
Starting >>> mavlink
Starting >>> mavros_msgs
Finished <<< mavlink [0.18s]
Starting >>> libmavconn
Finished <<< mavros_msgs [2.18s]
--- stderr: libmavconn
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:24:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/build/libmavconn/generated/src/mavlink_helpers.cpp:24:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/tcp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/tcp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/tcp.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:22:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/serial.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:23:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:22:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/serial.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/serial.cpp:23:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/interface.cpp:19:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected identifier before ‘(’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘}’ before ‘(’ token
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/udp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2320:1: note: to match this ‘{’
2320 | {
| ^
In file included from /usr/include/c++/11/cstdio:42,
from /usr/include/c++/11/ext/string_conversions.h:43,
from /usr/include/c++/11/bits/basic_string.h:6608,
from /usr/include/c++/11/string:55,
from /usr/include/console_bridge/console.h:40,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/console_bridge_compat.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:18:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected unqualified-id before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2328:5: error: expected ‘)’ before ‘-’ token
2328 | EOF=6, /* EOF: Offset past end of file for ListDirectory and ReadFile commands | */
| ^~~
In file included from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/mavlink_dialect.hpp:44,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/interface.hpp:26,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/include/mavconn/udp.hpp:22,
from /home/shashankrajivmoghe/ros/src/mavros/libmavconn/src/udp.cpp:20:
/home/shashankrajivmoghe/ros/install/mavlink/include/mavlink/v2.0/common/common.hpp:2366:1: error: expected declaration before ‘}’ token
2366 | } // namespace mavlink
| ^
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:76: CMakeFiles/mavconn.dir/generated/src/mavlink_helpers.cpp.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:90: CMakeFiles/mavconn.dir/src/interface.cpp.o] Error 1
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:104: CMakeFiles/mavconn.dir/src/serial.cpp.o] Error 1
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:132: CMakeFiles/mavconn.dir/src/udp.cpp.o] Error 1
gmake[2]: *** [CMakeFiles/mavconn.dir/build.make:118: CMakeFiles/mavconn.dir/src/tcp.cpp.o] Error 1
gmake[1]: *** [CMakeFiles/Makefile2:157: CMakeFiles/mavconn.dir/all] Error 2
gmake: *** [Makefile:146: all] Error 2
---
Failed <<< libmavconn [2.67s, exited with code 2]
Summary: 2 packages finished [2.99s]
1 package failed: libmavconn
1 package had stderr output: libmavconn
2 packages not processed
```
|
build
|
not working with humble i recently upgraded my setup to using ubuntu and humble from and foxy and was looking to migrate and update few projects which use mavros mavros does not seem to be available in the ros humble repositories only ros humble mavros messages and ros humble mavros messages dbgsym are available mavros doesn t compile from source correctly and throws an error while following the installation instructions and running colcon build instead of catkin build questions when will mavros be available as a binary package in ros humble what are potential fixes to the compile error below bash colcon build starting mavlink starting mavros msgs finished mavlink starting libmavconn finished mavros msgs stderr libmavconn in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from home shashankrajivmoghe ros build libmavconn generated src mavlink helpers cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected identifier before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros build libmavconn generated src mavlink helpers cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp note to match this ‘ ’ in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from home shashankrajivmoghe ros build libmavconn generated src mavlink helpers cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected unqualified id before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros build libmavconn generated src mavlink helpers cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected declaration before ‘ ’ token namespace mavlink in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src tcp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected identifier before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn tcp hpp from home shashankrajivmoghe ros src mavros libmavconn src tcp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp note to match this ‘ ’ in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src tcp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected unqualified id before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn tcp hpp from home shashankrajivmoghe ros src mavros libmavconn src tcp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected declaration before ‘ ’ token namespace mavlink in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src serial cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected identifier before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn serial hpp from home shashankrajivmoghe ros src mavros libmavconn src serial cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp note to match this ‘ ’ in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src serial cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected unqualified id before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn serial hpp from home shashankrajivmoghe ros src mavros libmavconn src serial cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected declaration before ‘ ’ token namespace mavlink in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src interface cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected identifier before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn src interface cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp note to match this ‘ ’ in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src interface cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected unqualified id before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn src interface cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected declaration before ‘ ’ token namespace mavlink in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src udp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected identifier before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn udp hpp from home shashankrajivmoghe ros src mavros libmavconn src udp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp note to match this ‘ ’ in file included from usr include c cstdio from usr include c ext string conversions h from usr include c bits basic string h from usr include c string from usr include console bridge console h from home shashankrajivmoghe ros src mavros libmavconn include mavconn console bridge compat hpp from home shashankrajivmoghe ros src mavros libmavconn src udp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected unqualified id before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected ‘ ’ before ‘ ’ token eof eof offset past end of file for listdirectory and readfile commands in file included from home shashankrajivmoghe ros src mavros libmavconn include mavconn mavlink dialect hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn interface hpp from home shashankrajivmoghe ros src mavros libmavconn include mavconn udp hpp from home shashankrajivmoghe ros src mavros libmavconn src udp cpp home shashankrajivmoghe ros install mavlink include mavlink common common hpp error expected declaration before ‘ ’ token namespace mavlink gmake error gmake waiting for unfinished jobs gmake error gmake error gmake error gmake error gmake error gmake error failed libmavconn summary packages finished package failed libmavconn package had stderr output libmavconn packages not processed
| 1
|
48,623
| 13,170,078,176
|
IssuesEvent
|
2020-08-11 14:39:38
|
primefaces/primefaces
|
https://api.github.com/repos/primefaces/primefaces
|
closed
|
DataTable: Selection; Radio-Buttons; multiple rows can be selected
|
defect
|
**Describe the defect**
Regression in 9.0-SNAPSHOT. Multiple rows can be selected by clicking onto the row instead of direct to the radio-button.
**Reproducer**
http://localhost:8080/showcase_war_exploded/ui/data/datatable/selection.xhtml
Example "RadioButton"

**Environment:**
- PF Version: 8.0 works
- PF Version: 9.0 broken
- Browser: Chrome, FF, (new) Edge
|
1.0
|
DataTable: Selection; Radio-Buttons; multiple rows can be selected - **Describe the defect**
Regression in 9.0-SNAPSHOT. Multiple rows can be selected by clicking onto the row instead of direct to the radio-button.
**Reproducer**
http://localhost:8080/showcase_war_exploded/ui/data/datatable/selection.xhtml
Example "RadioButton"

**Environment:**
- PF Version: 8.0 works
- PF Version: 9.0 broken
- Browser: Chrome, FF, (new) Edge
|
non_build
|
datatable selection radio buttons multiple rows can be selected describe the defect regression in snapshot multiple rows can be selected by clicking onto the row instead of direct to the radio button reproducer example radiobutton environment pf version works pf version broken browser chrome ff new edge
| 0
|
86,586
| 24,898,805,348
|
IssuesEvent
|
2022-10-28 18:32:05
|
opensearch-project/OpenSearch-Dashboards
|
https://api.github.com/repos/opensearch-project/OpenSearch-Dashboards
|
closed
|
[BUG] [Vis Builder] Saved Object Management view broken
|
bug vis builder v2.4.0
|
**Describe the bug**
Inspecting the visbuilder object in the saved object management view is broken
Error:
```
saved_object_view.tsx:65 Uncaught TypeError: Cannot read properties of undefined (reading 'type')
at new SavedObjectEdition (saved_object_view.tsx:65:1)
```
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Management -> Saved Objects
2. Click on any Vis Builder object's inspect icon
4. See blank screen
**Expected behavior**
Should be able to see the inspect view
**OpenSearch Version**
3.0
**Dashboards Version**
3.0
**Plugins**
Please list all plugins currently enabled.
**Screenshots**
<img width="1615" alt="Screen Shot 2022-10-25 at 5 48 39 PM" src="https://user-images.githubusercontent.com/20453492/197908823-386c98b8-2cc5-4d58-8b76-f0db9740afa9.png">
**Host/Environment (please complete the following information):**
- OS: [e.g. iOS]
- Browser and version [e.g. 22]
**Additional context**
Add any other context about the problem here.
|
1.0
|
[BUG] [Vis Builder] Saved Object Management view broken - **Describe the bug**
Inspecting the visbuilder object in the saved object management view is broken
Error:
```
saved_object_view.tsx:65 Uncaught TypeError: Cannot read properties of undefined (reading 'type')
at new SavedObjectEdition (saved_object_view.tsx:65:1)
```
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Management -> Saved Objects
2. Click on any Vis Builder object's inspect icon
4. See blank screen
**Expected behavior**
Should be able to see the inspect view
**OpenSearch Version**
3.0
**Dashboards Version**
3.0
**Plugins**
Please list all plugins currently enabled.
**Screenshots**
<img width="1615" alt="Screen Shot 2022-10-25 at 5 48 39 PM" src="https://user-images.githubusercontent.com/20453492/197908823-386c98b8-2cc5-4d58-8b76-f0db9740afa9.png">
**Host/Environment (please complete the following information):**
- OS: [e.g. iOS]
- Browser and version [e.g. 22]
**Additional context**
Add any other context about the problem here.
|
build
|
saved object management view broken describe the bug inspecting the visbuilder object in the saved object management view is broken error saved object view tsx uncaught typeerror cannot read properties of undefined reading type at new savedobjectedition saved object view tsx to reproduce steps to reproduce the behavior go to management saved objects click on any vis builder object s inspect icon see blank screen expected behavior should be able to see the inspect view opensearch version dashboards version plugins please list all plugins currently enabled screenshots img width alt screen shot at pm src host environment please complete the following information os browser and version additional context add any other context about the problem here
| 1
|
46,275
| 11,809,920,958
|
IssuesEvent
|
2020-03-19 15:41:26
|
eclipse/lemminx
|
https://api.github.com/repos/eclipse/lemminx
|
closed
|
Release LemMinX 0.11.0
|
build
|
- [ ] make sure jars are properly signed
- [x] automate release process + git tagging
- [x] release Maven jars to repo.eclipse.org (Bonus points for Maven Central release)
|
1.0
|
Release LemMinX 0.11.0 - - [ ] make sure jars are properly signed
- [x] automate release process + git tagging
- [x] release Maven jars to repo.eclipse.org (Bonus points for Maven Central release)
|
build
|
release lemminx make sure jars are properly signed automate release process git tagging release maven jars to repo eclipse org bonus points for maven central release
| 1
|
41,623
| 9,014,885,387
|
IssuesEvent
|
2019-02-06 00:03:55
|
google/wire
|
https://api.github.com/repos/google/wire
|
opened
|
docs: InterfaceValue godoc should describe its arguments
|
bug code health
|
The [`InterfaceValue`](https://godoc.org/github.com/google/wire#InterfaceValue) marker function does not describe its arguments.
|
1.0
|
docs: InterfaceValue godoc should describe its arguments - The [`InterfaceValue`](https://godoc.org/github.com/google/wire#InterfaceValue) marker function does not describe its arguments.
|
non_build
|
docs interfacevalue godoc should describe its arguments the marker function does not describe its arguments
| 0
|
180,551
| 14,786,666,425
|
IssuesEvent
|
2021-01-12 06:04:07
|
open-telemetry/opentelemetry-java-instrumentation
|
https://api.github.com/repos/open-telemetry/opentelemetry-java-instrumentation
|
closed
|
Document supported app servers in the README
|
documentation priority:p3 release:required-for-ga
|
I think it would be helpful if the README included a section about supported app servers (possibly including versions). I took a poke around and saw that we have instrumentation, unit tests, or smoke tests involving at least Jetty, Tomcat, and Wildfly. I know that the line between app server and framework/library can get blurry, but it would be helpful if somebody evaluating the project could quickly grep for `tomcat` and then look more deeply rather than erroneously deciding "oh, they don't seem to support Tomcat" and abandoning us.
|
1.0
|
Document supported app servers in the README - I think it would be helpful if the README included a section about supported app servers (possibly including versions). I took a poke around and saw that we have instrumentation, unit tests, or smoke tests involving at least Jetty, Tomcat, and Wildfly. I know that the line between app server and framework/library can get blurry, but it would be helpful if somebody evaluating the project could quickly grep for `tomcat` and then look more deeply rather than erroneously deciding "oh, they don't seem to support Tomcat" and abandoning us.
|
non_build
|
document supported app servers in the readme i think it would be helpful if the readme included a section about supported app servers possibly including versions i took a poke around and saw that we have instrumentation unit tests or smoke tests involving at least jetty tomcat and wildfly i know that the line between app server and framework library can get blurry but it would be helpful if somebody evaluating the project could quickly grep for tomcat and then look more deeply rather than erroneously deciding oh they don t seem to support tomcat and abandoning us
| 0
|
55,544
| 13,639,169,004
|
IssuesEvent
|
2020-09-25 10:32:28
|
astropy/astropy
|
https://api.github.com/repos/astropy/astropy
|
opened
|
Astropy does not build on MacOSX with xcode 12.0.0
|
build
|
<!-- This comments are hidden when you submit the issue,
so you do not need to remove them! -->
<!-- Please be sure to check out our contributing guidelines,
https://github.com/astropy/astropy/blob/master/CONTRIBUTING.md .
Please be sure to check out our code of conduct,
https://github.com/astropy/astropy/blob/master/CODE_OF_CONDUCT.md . -->
<!-- Please have a search on our GitHub repository to see if a similar
issue has already been posted.
If a similar issue is closed, have a quick look to see if you are satisfied
by the resolution.
If not please go ahead and open an issue! -->
<!-- Please check that the development version still produces the same bug.
You can install development version with
pip install git+https://github.com/astropy/astropy
command. -->
### Description
<!-- Provide a general description of the bug. -->
When I try to build astropy on my Mac (Mojave + Xcode 12.0) it fails with the following error:
```
cextern/cfitsio/lib/group.c:5664:8: error: implicit declaration of function 'getcwd' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
if (!getcwd(buff,FLEN_FILENAME))
^
1 warning and 1 error generated.
error: command 'gcc' failed with exit status 1
(astropy) ➜ astropy-tmp git:(master) gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
Apple clang version 12.0.0 (clang-1200.0.32.2)
Target: x86_64-apple-darwin19.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
```
Xcode 12.0 was just released Sep. 16 and I'm guessing that it was automatically updated on my Mac since I did not request an update. Astropy is apparently not alone, e.g. https://gitlab.com/graphviz/graphviz/-/issues/1826.
There is a long slack thread with helpful inputs from @saimn and @manodeep here: https://astropy.slack.com/archives/C067V74GK/p1600984862007700
A workaround is:
```
CFLAGS=-Wno-error=implicit-function-declaration pip install -e .
```
### Expected behavior
<!-- What did you expect to happen. -->
Astropy builds and runs tests.
### Actual behavior
<!-- What actually happened. -->
<!-- Was the output confusing or poorly described? -->
Build failed as shown.
### Steps to Reproduce
<!-- Ideally a code example could be provided so we can run it ourselves. -->
<!-- If you are pasting code, use triple backticks (```) around
your code snippet. -->
<!-- If necessary, sanitize your screen output to be pasted so you do not
reveal secrets like tokens and passwords. -->
1. Checkout astropy at master, `git clean -fxd`
2. `tox -e test` or `pip install -e .`
### System Details
<!-- Even if you do not think this is necessary, it is useful information for the maintainers.
Please run the following snippet and paste the output below:
import platform; print(platform.platform())
import sys; print("Python", sys.version)
import numpy; print("Numpy", numpy.__version__)
import astropy; print("astropy", astropy.__version__)
import scipy; print("Scipy", scipy.__version__)
import matplotlib; print("Matplotlib", matplotlib.__version__)
-->
```
Darwin-19.5.0-x86_64-i386-64bit
Python 3.7.7 (default, Mar 26 2020, 10:32:53)
[Clang 4.0.1 (tags/RELEASE_401/final)]
Numpy 1.18.1
astropy 4.2.dev715+gfaccb8b41
Scipy 1.4.1
Matplotlib 3.1.3
```
|
1.0
|
Astropy does not build on MacOSX with xcode 12.0.0 - <!-- This comments are hidden when you submit the issue,
so you do not need to remove them! -->
<!-- Please be sure to check out our contributing guidelines,
https://github.com/astropy/astropy/blob/master/CONTRIBUTING.md .
Please be sure to check out our code of conduct,
https://github.com/astropy/astropy/blob/master/CODE_OF_CONDUCT.md . -->
<!-- Please have a search on our GitHub repository to see if a similar
issue has already been posted.
If a similar issue is closed, have a quick look to see if you are satisfied
by the resolution.
If not please go ahead and open an issue! -->
<!-- Please check that the development version still produces the same bug.
You can install development version with
pip install git+https://github.com/astropy/astropy
command. -->
### Description
<!-- Provide a general description of the bug. -->
When I try to build astropy on my Mac (Mojave + Xcode 12.0) it fails with the following error:
```
cextern/cfitsio/lib/group.c:5664:8: error: implicit declaration of function 'getcwd' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
if (!getcwd(buff,FLEN_FILENAME))
^
1 warning and 1 error generated.
error: command 'gcc' failed with exit status 1
(astropy) ➜ astropy-tmp git:(master) gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
Apple clang version 12.0.0 (clang-1200.0.32.2)
Target: x86_64-apple-darwin19.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
```
Xcode 12.0 was just released Sep. 16 and I'm guessing that it was automatically updated on my Mac since I did not request an update. Astropy is apparently not alone, e.g. https://gitlab.com/graphviz/graphviz/-/issues/1826.
There is a long slack thread with helpful inputs from @saimn and @manodeep here: https://astropy.slack.com/archives/C067V74GK/p1600984862007700
A workaround is:
```
CFLAGS=-Wno-error=implicit-function-declaration pip install -e .
```
### Expected behavior
<!-- What did you expect to happen. -->
Astropy builds and runs tests.
### Actual behavior
<!-- What actually happened. -->
<!-- Was the output confusing or poorly described? -->
Build failed as shown.
### Steps to Reproduce
<!-- Ideally a code example could be provided so we can run it ourselves. -->
<!-- If you are pasting code, use triple backticks (```) around
your code snippet. -->
<!-- If necessary, sanitize your screen output to be pasted so you do not
reveal secrets like tokens and passwords. -->
1. Checkout astropy at master, `git clean -fxd`
2. `tox -e test` or `pip install -e .`
### System Details
<!-- Even if you do not think this is necessary, it is useful information for the maintainers.
Please run the following snippet and paste the output below:
import platform; print(platform.platform())
import sys; print("Python", sys.version)
import numpy; print("Numpy", numpy.__version__)
import astropy; print("astropy", astropy.__version__)
import scipy; print("Scipy", scipy.__version__)
import matplotlib; print("Matplotlib", matplotlib.__version__)
-->
```
Darwin-19.5.0-x86_64-i386-64bit
Python 3.7.7 (default, Mar 26 2020, 10:32:53)
[Clang 4.0.1 (tags/RELEASE_401/final)]
Numpy 1.18.1
astropy 4.2.dev715+gfaccb8b41
Scipy 1.4.1
Matplotlib 3.1.3
```
|
build
|
astropy does not build on macosx with xcode this comments are hidden when you submit the issue so you do not need to remove them please be sure to check out our contributing guidelines please be sure to check out our code of conduct please have a search on our github repository to see if a similar issue has already been posted if a similar issue is closed have a quick look to see if you are satisfied by the resolution if not please go ahead and open an issue please check that the development version still produces the same bug you can install development version with pip install git command description when i try to build astropy on my mac mojave xcode it fails with the following error cextern cfitsio lib group c error implicit declaration of function getcwd is invalid in if getcwd buff flen filename warning and error generated error command gcc failed with exit status astropy ➜ astropy tmp git master gcc version configured with prefix applications xcode app contents developer usr with gxx include dir applications xcode app contents developer platforms macosx platform developer sdks macosx sdk usr include c apple clang version clang target apple thread model posix installeddir applications xcode app contents developer toolchains xcodedefault xctoolchain usr bin xcode was just released sep and i m guessing that it was automatically updated on my mac since i did not request an update astropy is apparently not alone e g there is a long slack thread with helpful inputs from saimn and manodeep here a workaround is cflags wno error implicit function declaration pip install e expected behavior astropy builds and runs tests actual behavior build failed as shown steps to reproduce if you are pasting code use triple backticks around your code snippet if necessary sanitize your screen output to be pasted so you do not reveal secrets like tokens and passwords checkout astropy at master git clean fxd tox e test or pip install e system details even if you do not think this is necessary it is useful information for the maintainers please run the following snippet and paste the output below import platform print platform platform import sys print python sys version import numpy print numpy numpy version import astropy print astropy astropy version import scipy print scipy scipy version import matplotlib print matplotlib matplotlib version darwin python default mar numpy astropy scipy matplotlib
| 1
|
21,555
| 7,043,914,974
|
IssuesEvent
|
2017-12-31 14:56:47
|
ElektraInitiative/libelektra
|
https://api.github.com/repos/ElektraInitiative/libelektra
|
closed
|
Reduce number of default build jobs
|
bug build
|
With "jenkins build all please" (a big thanks to @sanssecours for that) it seems to be overkill to build ~10 jobs per default (which are repeated on every push and when saying "jenkins build all please"). I propose to reduce these default jobs to 2-3 jobs:
- jenkins build fast please
- jenkins build stable please
- jenkins build unstable please
Maybe we can even get rid of "fast". Is this job useful? (The idea was to give some quick feedback.)
We should also document which jobs are built by default.
|
1.0
|
Reduce number of default build jobs - With "jenkins build all please" (a big thanks to @sanssecours for that) it seems to be overkill to build ~10 jobs per default (which are repeated on every push and when saying "jenkins build all please"). I propose to reduce these default jobs to 2-3 jobs:
- jenkins build fast please
- jenkins build stable please
- jenkins build unstable please
Maybe we can even get rid of "fast". Is this job useful? (The idea was to give some quick feedback.)
We should also document which jobs are built by default.
|
build
|
reduce number of default build jobs with jenkins build all please a big thanks to sanssecours for that it seems to be overkill to build jobs per default which are repeated on every push and when saying jenkins build all please i propose to reduce these default jobs to jobs jenkins build fast please jenkins build stable please jenkins build unstable please maybe we can even get rid of fast is this job useful the idea was to give some quick feedback we should also document which jobs are built by default
| 1
|
93,287
| 26,909,333,197
|
IssuesEvent
|
2023-02-06 21:58:30
|
opt-nc/opt-temps-attente-agences-sdk
|
https://api.github.com/repos/opt-nc/opt-temps-attente-agences-sdk
|
closed
|
Se concentrer sur java 17 et 18... et dégager `8..14`
|
ci simlification BUILD
|
@Dougniel : on devrait se concentrer sur java 17 et 18... et dégager `8..14`

_Originally posted by @adriens in https://github.com/opt-nc/opt-temps-attente-agences-sdk/issues/24#issuecomment-1081526790_
|
1.0
|
Se concentrer sur java 17 et 18... et dégager `8..14` - @Dougniel : on devrait se concentrer sur java 17 et 18... et dégager `8..14`

_Originally posted by @adriens in https://github.com/opt-nc/opt-temps-attente-agences-sdk/issues/24#issuecomment-1081526790_
|
build
|
se concentrer sur java et et dégager dougniel on devrait se concentrer sur java et et dégager originally posted by adriens in
| 1
|
278,761
| 21,095,454,428
|
IssuesEvent
|
2022-04-04 09:52:21
|
eslint/eslint
|
https://api.github.com/repos/eslint/eslint
|
closed
|
Typo in space-infix-ops docs
|
documentation accepted
|
### URL(s)
https://eslint.org/docs/rules/space-infix-ops#space-infix-ops
### What did you do?
I was reading documentation...
The issue I am reporting has to do with the **ESLint Rule:** **_`space-infix-ops`_**
### What did you expect to happen?
### The "rules/space-infix-ops" page contains the following line:
> ##### "The proponents of these extra spaces **[believe it make](https://eslint.org/docs/rules/space-infix-ops#space-infix-ops)** the code easier to read and can more easily highlight potential errors, such as:"
### What actually happened?
### The line should read...
> ##### "Proponents of this rule believe that it makes code easier to read."
### Participation
- [X] I am willing to submit a pull request for this issue.
### Additional comments
I want to submit a pull request to fix the documentation for this page, but I want to make sure that I am requesting, and pulling the correct repository. My email is W3Dojo@Gmail.com, and I would be happy to fix this issue my self, and maybe even some others, if you could send me the docs, or what have you on the standard procedure for requesting a pull request for an ESLint/ESLint-website issue.
|
1.0
|
Typo in space-infix-ops docs - ### URL(s)
https://eslint.org/docs/rules/space-infix-ops#space-infix-ops
### What did you do?
I was reading documentation...
The issue I am reporting has to do with the **ESLint Rule:** **_`space-infix-ops`_**
### What did you expect to happen?
### The "rules/space-infix-ops" page contains the following line:
> ##### "The proponents of these extra spaces **[believe it make](https://eslint.org/docs/rules/space-infix-ops#space-infix-ops)** the code easier to read and can more easily highlight potential errors, such as:"
### What actually happened?
### The line should read...
> ##### "Proponents of this rule believe that it makes code easier to read."
### Participation
- [X] I am willing to submit a pull request for this issue.
### Additional comments
I want to submit a pull request to fix the documentation for this page, but I want to make sure that I am requesting, and pulling the correct repository. My email is W3Dojo@Gmail.com, and I would be happy to fix this issue my self, and maybe even some others, if you could send me the docs, or what have you on the standard procedure for requesting a pull request for an ESLint/ESLint-website issue.
|
non_build
|
typo in space infix ops docs url s what did you do i was reading documentation the issue i am reporting has to do with the eslint rule space infix ops what did you expect to happen the rules space infix ops page contains the following line the proponents of these extra spaces the code easier to read and can more easily highlight potential errors such as what actually happened the line should read proponents of this rule believe that it makes code easier to read participation i am willing to submit a pull request for this issue additional comments i want to submit a pull request to fix the documentation for this page but i want to make sure that i am requesting and pulling the correct repository my email is gmail com and i would be happy to fix this issue my self and maybe even some others if you could send me the docs or what have you on the standard procedure for requesting a pull request for an eslint eslint website issue
| 0
|
222,817
| 7,439,143,178
|
IssuesEvent
|
2018-03-27 04:46:38
|
CS2103JAN2018-W11-B1/main
|
https://api.github.com/repos/CS2103JAN2018-W11-B1/main
|
closed
|
Update add command to allow all non-name fields to be optional
|
priority.high type.task
|
Along with that, allow the non-name attributes to have null/empty string representing if the data has not been entered by the user.
Work on making sure other commands do not break due to the change.
|
1.0
|
Update add command to allow all non-name fields to be optional - Along with that, allow the non-name attributes to have null/empty string representing if the data has not been entered by the user.
Work on making sure other commands do not break due to the change.
|
non_build
|
update add command to allow all non name fields to be optional along with that allow the non name attributes to have null empty string representing if the data has not been entered by the user work on making sure other commands do not break due to the change
| 0
|
39,079
| 9,198,095,703
|
IssuesEvent
|
2019-03-07 11:40:20
|
primefaces/primefaces
|
https://api.github.com/repos/primefaces/primefaces
|
closed
|
Schedule: Problem with PF6.1
|
defect invalid
|
## 1) Environment
- PrimeFaces version: PF6.1
- Does it work on the newest released PrimeFaces version? Version? No
- Does it work on the newest sources in GitHub? (Build by source -> https://github.com/primefaces/primefaces/wiki/Building-From-Source)
- Application server + version: Tomcat 7
- Affected browsers: all browsers
## 2) Expected behavior
Displaying p:schedule with its events
...
## 3) Actual behavior
Nothing displayed, it shows errors:
`SyntaxError: missing : after property id[Learn More] jquery.js.xhtml:1:320 `
`globalEval4 jQuery updateElement http://localhost:8080/xxxxx/javax.faces ... es&v=6.1:3
doUpdate http://localhost:8080/xxxx/javax.faces. ... es&v=6.1:3
handle http://localhost:8080/xxxx/javax.faces. ... es&v=6.1:3
success http://localhost:8080/xxx/javax.faces.r ... es&v=6.1:3
i4jQuery`
..
## 4) Steps to reproduce
..
## 5) Sample XHTML
`<p:schedule id="schedule" value="#{mainView.eventModel}" axisFormat="H:mm"
style="width:80%;height:80%" view="agendaWeek" allDaySlot="false" aspectRatio="2" timeZone="GMT+1"
minTime="0:00" maxTime="23:00" columnFormat="ddd DD/MM">
<!--events-->
</p:schedule>`
..
## 6) Sample bean
`DefaultScheduleEvent evt = new DefaultScheduleEvent(Team.get(j).getName()+" | "+Team.get(j).getItem(),
start, end,status);
evt.setData(taches_perTeam.get(j));
eventModel.addEvent(evt);`
..
Many Thanks
|
1.0
|
Schedule: Problem with PF6.1 -
## 1) Environment
- PrimeFaces version: PF6.1
- Does it work on the newest released PrimeFaces version? Version? No
- Does it work on the newest sources in GitHub? (Build by source -> https://github.com/primefaces/primefaces/wiki/Building-From-Source)
- Application server + version: Tomcat 7
- Affected browsers: all browsers
## 2) Expected behavior
Displaying p:schedule with its events
...
## 3) Actual behavior
Nothing displayed, it shows errors:
`SyntaxError: missing : after property id[Learn More] jquery.js.xhtml:1:320 `
`globalEval4 jQuery updateElement http://localhost:8080/xxxxx/javax.faces ... es&v=6.1:3
doUpdate http://localhost:8080/xxxx/javax.faces. ... es&v=6.1:3
handle http://localhost:8080/xxxx/javax.faces. ... es&v=6.1:3
success http://localhost:8080/xxx/javax.faces.r ... es&v=6.1:3
i4jQuery`
..
## 4) Steps to reproduce
..
## 5) Sample XHTML
`<p:schedule id="schedule" value="#{mainView.eventModel}" axisFormat="H:mm"
style="width:80%;height:80%" view="agendaWeek" allDaySlot="false" aspectRatio="2" timeZone="GMT+1"
minTime="0:00" maxTime="23:00" columnFormat="ddd DD/MM">
<!--events-->
</p:schedule>`
..
## 6) Sample bean
`DefaultScheduleEvent evt = new DefaultScheduleEvent(Team.get(j).getName()+" | "+Team.get(j).getItem(),
start, end,status);
evt.setData(taches_perTeam.get(j));
eventModel.addEvent(evt);`
..
Many Thanks
|
non_build
|
schedule problem with environment primefaces version does it work on the newest released primefaces version version no does it work on the newest sources in github build by source application server version tomcat affected browsers all browsers expected behavior displaying p schedule with its events actual behavior nothing displayed it shows errors syntaxerror missing after property id jquery js xhtml jquery updateelement es v doupdate es v handle es v success es v steps to reproduce sample xhtml p schedule id schedule value mainview eventmodel axisformat h mm style width height view agendaweek alldayslot false aspectratio timezone gmt mintime maxtime columnformat ddd dd mm sample bean defaultscheduleevent evt new defaultscheduleevent team get j getname team get j getitem start end status evt setdata taches perteam get j eventmodel addevent evt many thanks
| 0
|
99,201
| 30,300,750,405
|
IssuesEvent
|
2023-07-10 05:37:17
|
elastic/beats
|
https://api.github.com/repos/elastic/beats
|
closed
|
github.com/elastic/beats/v7/libbeat/outputs/shipper tests are flaky
|
flaky-test automation ci-reported Team:Elastic-Agent-Data-Plane build-failures
|
## :broken_heart: Tests Failed
<!-- BUILD BADGES-->
> _the below badges are clickable and redirect to their specific view in the CI or DOCS_
[](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//pipeline) [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//tests) [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//changes) [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//artifacts) [](http://beats_null.docs-preview.app.elstc.co/diff) [](https://ci-stats.elastic.co/app/apm/services/beats-ci/transactions/view?rangeFrom=2023-03-31T05:10:12.174Z&rangeTo=2023-03-31T05:30:12.174Z&transactionName=BUILD+Beats%2Fbeats%2Fmain&transactionType=job&latencyAggregationType=avg&traceId=bd4e962c54d3a707cd7f928e3011fca1&transactionId=e2d4047e6fcccc81)
<!-- BUILD SUMMARY-->
<details><summary>Expand to view the summary</summary>
<p>
#### Build stats
* Start Time: 2023-03-31T05:20:12.174+0000
* Duration: 69 min 4 sec
#### Test stats :test_tube:
| Test | Results |
| ------------ | :-----------------------------: |
| Failed | 2 |
| Passed | 25514 |
| Skipped | 1820 |
| Total | 27336 |
</p>
</details>
<!-- TEST RESULTS IF ANY-->
### Test errors [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//tests)
<details><summary>Expand to view the tests failures</summary><p>
##### `Build&Test / libbeat-goIntegTest / TestPublish/cancels_the_batch_when_a_different_server_responds – github.com/elastic/beats/v7/libbeat/outputs/shipper`
<ul>
<details><summary>Expand to view the error details</summary><p>
```
Failed
```
</p></details>
<details><summary>Expand to view the stacktrace</summary><p>
```
=== RUN TestPublish/cancels_the_batch_when_a_different_server_responds
shipper_test.go:314:
Error Trace: /var/lib/jenkins/workspace/main-1388-1e1dabde-6b3d-40f8-93dd-74112f695066/src/github.com/elastic/beats/libbeat/outputs/shipper/shipper_test.go:314
Error: Condition never satisfied
Test: TestPublish/cancels_the_batch_when_a_different_server_responds
shipper_test.go:319:
Error Trace: /var/lib/jenkins/workspace/main-1388-1e1dabde-6b3d-40f8-93dd-74112f695066/src/github.com/elastic/beats/libbeat/outputs/shipper/shipper_test.go:319
Error: Not equal:
expected: []outest.BatchSignal{outest.BatchSignal{Tag:0x4, Events:[]publisher.Event(nil)}}
actual : []outest.BatchSignal(nil)
Diff:
--- Expected
+++ Actual
@@ -1,7 +1,2 @@
-([]outest.BatchSignal) (len=1) {
- (outest.BatchSignal) {
- Tag: (outest.BatchSignalTag) 4,
- Events: ([]publisher.Event) <nil>
- }
-}
+([]outest.BatchSignal) <nil>
Test: TestPublish/cancels_the_batch_when_a_different_server_responds
--- FAIL: TestPublish/cancels_the_batch_when_a_different_server_responds (0.12s)
```
</p></details>
</ul>
##### `Build&Test / libbeat-goIntegTest / TestPublish – github.com/elastic/beats/v7/libbeat/outputs/shipper`
<ul>
<details><summary>Expand to view the error details</summary><p>
```
Failed
```
</p></details>
<details><summary>Expand to view the stacktrace</summary><p>
```
=== RUN TestPublish
--- FAIL: TestPublish (2.18s)
```
</p></details>
</ul>
</p></details>
<!-- STEPS ERRORS IF ANY -->
### Steps errors [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//pipeline)
<details><summary>Expand to view the steps failures</summary>
<p>
##### `libbeat-goIntegTest - mage goIntegTest`
<ul>
<li>Took 5 min 21 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/12231/log/?start=0">here</a></li>
<li>Description: <code>mage goIntegTest</code></l1>
</ul>
##### `libbeat-goIntegTest - mage goIntegTest`
<ul>
<li>Took 3 min 35 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/16337/log/?start=0">here</a></li>
<li>Description: <code>mage goIntegTest</code></l1>
</ul>
##### `libbeat-goIntegTest - mage goIntegTest`
<ul>
<li>Took 3 min 34 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/18424/log/?start=0">here</a></li>
<li>Description: <code>mage goIntegTest</code></l1>
</ul>
##### `Error signal`
<ul>
<li>Took 0 min 0 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/19629/log/?start=0">here</a></li>
<li>Description: <code>Error "hudson.AbortException: script returned exit code 1"</code></l1>
</ul>
</p>
</details>
|
1.0
|
github.com/elastic/beats/v7/libbeat/outputs/shipper tests are flaky -
## :broken_heart: Tests Failed
<!-- BUILD BADGES-->
> _the below badges are clickable and redirect to their specific view in the CI or DOCS_
[](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//pipeline) [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//tests) [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//changes) [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//artifacts) [](http://beats_null.docs-preview.app.elstc.co/diff) [](https://ci-stats.elastic.co/app/apm/services/beats-ci/transactions/view?rangeFrom=2023-03-31T05:10:12.174Z&rangeTo=2023-03-31T05:30:12.174Z&transactionName=BUILD+Beats%2Fbeats%2Fmain&transactionType=job&latencyAggregationType=avg&traceId=bd4e962c54d3a707cd7f928e3011fca1&transactionId=e2d4047e6fcccc81)
<!-- BUILD SUMMARY-->
<details><summary>Expand to view the summary</summary>
<p>
#### Build stats
* Start Time: 2023-03-31T05:20:12.174+0000
* Duration: 69 min 4 sec
#### Test stats :test_tube:
| Test | Results |
| ------------ | :-----------------------------: |
| Failed | 2 |
| Passed | 25514 |
| Skipped | 1820 |
| Total | 27336 |
</p>
</details>
<!-- TEST RESULTS IF ANY-->
### Test errors [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//tests)
<details><summary>Expand to view the tests failures</summary><p>
##### `Build&Test / libbeat-goIntegTest / TestPublish/cancels_the_batch_when_a_different_server_responds – github.com/elastic/beats/v7/libbeat/outputs/shipper`
<ul>
<details><summary>Expand to view the error details</summary><p>
```
Failed
```
</p></details>
<details><summary>Expand to view the stacktrace</summary><p>
```
=== RUN TestPublish/cancels_the_batch_when_a_different_server_responds
shipper_test.go:314:
Error Trace: /var/lib/jenkins/workspace/main-1388-1e1dabde-6b3d-40f8-93dd-74112f695066/src/github.com/elastic/beats/libbeat/outputs/shipper/shipper_test.go:314
Error: Condition never satisfied
Test: TestPublish/cancels_the_batch_when_a_different_server_responds
shipper_test.go:319:
Error Trace: /var/lib/jenkins/workspace/main-1388-1e1dabde-6b3d-40f8-93dd-74112f695066/src/github.com/elastic/beats/libbeat/outputs/shipper/shipper_test.go:319
Error: Not equal:
expected: []outest.BatchSignal{outest.BatchSignal{Tag:0x4, Events:[]publisher.Event(nil)}}
actual : []outest.BatchSignal(nil)
Diff:
--- Expected
+++ Actual
@@ -1,7 +1,2 @@
-([]outest.BatchSignal) (len=1) {
- (outest.BatchSignal) {
- Tag: (outest.BatchSignalTag) 4,
- Events: ([]publisher.Event) <nil>
- }
-}
+([]outest.BatchSignal) <nil>
Test: TestPublish/cancels_the_batch_when_a_different_server_responds
--- FAIL: TestPublish/cancels_the_batch_when_a_different_server_responds (0.12s)
```
</p></details>
</ul>
##### `Build&Test / libbeat-goIntegTest / TestPublish – github.com/elastic/beats/v7/libbeat/outputs/shipper`
<ul>
<details><summary>Expand to view the error details</summary><p>
```
Failed
```
</p></details>
<details><summary>Expand to view the stacktrace</summary><p>
```
=== RUN TestPublish
--- FAIL: TestPublish (2.18s)
```
</p></details>
</ul>
</p></details>
<!-- STEPS ERRORS IF ANY -->
### Steps errors [](https://beats-ci.elastic.co/blue/organizations/jenkins/Beats%2Fbeats%2Fmain/detail/main/1388//pipeline)
<details><summary>Expand to view the steps failures</summary>
<p>
##### `libbeat-goIntegTest - mage goIntegTest`
<ul>
<li>Took 5 min 21 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/12231/log/?start=0">here</a></li>
<li>Description: <code>mage goIntegTest</code></l1>
</ul>
##### `libbeat-goIntegTest - mage goIntegTest`
<ul>
<li>Took 3 min 35 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/16337/log/?start=0">here</a></li>
<li>Description: <code>mage goIntegTest</code></l1>
</ul>
##### `libbeat-goIntegTest - mage goIntegTest`
<ul>
<li>Took 3 min 34 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/18424/log/?start=0">here</a></li>
<li>Description: <code>mage goIntegTest</code></l1>
</ul>
##### `Error signal`
<ul>
<li>Took 0 min 0 sec . View more details <a href="https://beats-ci.elastic.co//blue/rest/organizations/jenkins/pipelines/Beats/pipelines/beats/pipelines/main/runs/1388/steps/19629/log/?start=0">here</a></li>
<li>Description: <code>Error "hudson.AbortException: script returned exit code 1"</code></l1>
</ul>
</p>
</details>
|
build
|
github com elastic beats libbeat outputs shipper tests are flaky broken heart tests failed the below badges are clickable and redirect to their specific view in the ci or docs expand to view the summary build stats start time duration min sec test stats test tube test results failed passed skipped total test errors expand to view the tests failures build test libbeat gointegtest testpublish cancels the batch when a different server responds – github com elastic beats libbeat outputs shipper expand to view the error details failed expand to view the stacktrace run testpublish cancels the batch when a different server responds shipper test go error trace var lib jenkins workspace main src github com elastic beats libbeat outputs shipper shipper test go error condition never satisfied test testpublish cancels the batch when a different server responds shipper test go error trace var lib jenkins workspace main src github com elastic beats libbeat outputs shipper shipper test go error not equal expected outest batchsignal outest batchsignal tag events publisher event nil actual outest batchsignal nil diff expected actual outest batchsignal len outest batchsignal tag outest batchsignaltag events publisher event outest batchsignal test testpublish cancels the batch when a different server responds fail testpublish cancels the batch when a different server responds build test libbeat gointegtest testpublish – github com elastic beats libbeat outputs shipper expand to view the error details failed expand to view the stacktrace run testpublish fail testpublish steps errors expand to view the steps failures libbeat gointegtest mage gointegtest took min sec view more details a href description mage gointegtest libbeat gointegtest mage gointegtest took min sec view more details a href description mage gointegtest libbeat gointegtest mage gointegtest took min sec view more details a href description mage gointegtest error signal took min sec view more details a href description error hudson abortexception script returned exit code
| 1
|
67,470
| 9,049,663,362
|
IssuesEvent
|
2019-02-12 05:48:47
|
atc0005/ansible-role-lxd-testenv
|
https://api.github.com/repos/atc0005/ansible-role-lxd-testenv
|
opened
|
Some role vars have lxc_ prefix instead of intended lxd_ prefix
|
bug configuration documentation inventory
|
I noticed this while working on #15.
|
1.0
|
Some role vars have lxc_ prefix instead of intended lxd_ prefix - I noticed this while working on #15.
|
non_build
|
some role vars have lxc prefix instead of intended lxd prefix i noticed this while working on
| 0
|
277,736
| 8,632,182,709
|
IssuesEvent
|
2018-11-22 10:04:43
|
k8smeetup/website-tasks
|
https://api.github.com/repos/k8smeetup/website-tasks
|
closed
|
/docs/concepts/containers/runtime-class.md
|
doc/core finished priority/P0 version/1.12
|
Path:`/docs/concepts/containers/runtime-class.md`
[Source code](https://github.com/kubernetes/website/tree/release-1.12/content/en//docs/concepts/containers/runtime-class.md)
|
1.0
|
/docs/concepts/containers/runtime-class.md - Path:`/docs/concepts/containers/runtime-class.md`
[Source code](https://github.com/kubernetes/website/tree/release-1.12/content/en//docs/concepts/containers/runtime-class.md)
|
non_build
|
docs concepts containers runtime class md path: docs concepts containers runtime class md
| 0
|
49,409
| 6,025,302,460
|
IssuesEvent
|
2017-06-08 08:20:22
|
khartec/waltz
|
https://api.github.com/repos/khartec/waltz
|
closed
|
Travis build breaking
|
bug fixed (test & close)
|
Error below:
> node-sass@4.5.2 install /home/travis/build/kamransaleem/waltz/waltz-ng/node_modules/node-sass
> node scripts/install.js
Downloading binary from https://github.com/sass/node-sass/releases/download/v4.5.2/linux-x64-57_binding.node
Cannot download "https://github.com/sass/node-sass/releases/download/v4.5.2/linux-x64-57_binding.node":
HTTP error 404 Not Found
|
1.0
|
Travis build breaking - Error below:
> node-sass@4.5.2 install /home/travis/build/kamransaleem/waltz/waltz-ng/node_modules/node-sass
> node scripts/install.js
Downloading binary from https://github.com/sass/node-sass/releases/download/v4.5.2/linux-x64-57_binding.node
Cannot download "https://github.com/sass/node-sass/releases/download/v4.5.2/linux-x64-57_binding.node":
HTTP error 404 Not Found
|
non_build
|
travis build breaking error below node sass install home travis build kamransaleem waltz waltz ng node modules node sass node scripts install js downloading binary from cannot download http error not found
| 0
|
40,433
| 10,523,751,154
|
IssuesEvent
|
2019-09-30 11:48:09
|
alpheios-project/components
|
https://api.github.com/repos/alpheios-project/components
|
closed
|
Safari: User Panel Text
|
auth design waiting_build
|
Let's change the text on the User Panel for Safari:
When not logged in:
*Login Instructions*
Please launch the Alpheios Reading Tools application. You can create and login to your account from there.
Return to the browser after login.
You will stay logged in, even after the browser is closed, until you logout or your session expires.
See the [User Account Tutorial](https://alpheios.net/pages/tutorials/#safari-user-account) for further help with logging in.
and when logged in, after the user account details:
*Logout Instructions*
Please launch the Alpheios Reading Tools application. You can logout from your account from there.
Return to the browser after logout.
You may need to refresh or close your browser for the logout to take affect.
See the [User Account Tutorial](https://alpheios.net/pages/tutorials/#safari-user-account) for further help with logging in.
|
1.0
|
Safari: User Panel Text - Let's change the text on the User Panel for Safari:
When not logged in:
*Login Instructions*
Please launch the Alpheios Reading Tools application. You can create and login to your account from there.
Return to the browser after login.
You will stay logged in, even after the browser is closed, until you logout or your session expires.
See the [User Account Tutorial](https://alpheios.net/pages/tutorials/#safari-user-account) for further help with logging in.
and when logged in, after the user account details:
*Logout Instructions*
Please launch the Alpheios Reading Tools application. You can logout from your account from there.
Return to the browser after logout.
You may need to refresh or close your browser for the logout to take affect.
See the [User Account Tutorial](https://alpheios.net/pages/tutorials/#safari-user-account) for further help with logging in.
|
build
|
safari user panel text let s change the text on the user panel for safari when not logged in login instructions please launch the alpheios reading tools application you can create and login to your account from there return to the browser after login you will stay logged in even after the browser is closed until you logout or your session expires see the for further help with logging in and when logged in after the user account details logout instructions please launch the alpheios reading tools application you can logout from your account from there return to the browser after logout you may need to refresh or close your browser for the logout to take affect see the for further help with logging in
| 1
|
78,199
| 22,154,971,757
|
IssuesEvent
|
2022-06-03 21:19:28
|
apache/beam
|
https://api.github.com/repos/apache/beam
|
opened
|
Run tests against shaded JAR
|
new feature P3 build-system
|
We should run our tests against shaded jars.
See https://github.com/apache/beam/pull/5471
Imported from Jira [BEAM-4402](https://issues.apache.org/jira/browse/BEAM-4402). Original Jira may contain additional context.
Reported by: apilloud.
|
1.0
|
Run tests against shaded JAR - We should run our tests against shaded jars.
See https://github.com/apache/beam/pull/5471
Imported from Jira [BEAM-4402](https://issues.apache.org/jira/browse/BEAM-4402). Original Jira may contain additional context.
Reported by: apilloud.
|
build
|
run tests against shaded jar we should run our tests against shaded jars see imported from jira original jira may contain additional context reported by apilloud
| 1
|
94,702
| 27,265,862,461
|
IssuesEvent
|
2023-02-22 17:58:58
|
RTXteam/RTX-KG2
|
https://api.github.com/repos/RTXteam/RTX-KG2
|
closed
|
issue with foodon.owl include
|
bug verify this fix in next kg2 build
|
This issue brought to my attention by @acevedol who first logged it in #138
```
Reading ontology file: foodon.owl; size: 6944.69 KiB /usr/bin/java -Xms2G -Xmx249G -DentityExpansionLimit=4086000 -Djava.awt.headless=true -classpath /home/ubuntu/kg2-build/owltools
owltools.cli.CommandLineInterface foodon.owl -o -f json /tmp/kg2-_afrl46i.json 2021-09-15 02:38:43,998 ERROR (CommandRunner:4815) could not parse:foodon.owl
org.semanticweb.owlapi.model.UnloadableImportException: Could not load imported ontology: http://purl.obolibrary.org/obo/foodon/imports/dietary_supplement_import.owl Cause: https://raw.githubusercontent.com/FoodOntology/foodon/master/imports/dietary_supplement_import.owl at uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.makeL… S
```
|
1.0
|
issue with foodon.owl include - This issue brought to my attention by @acevedol who first logged it in #138
```
Reading ontology file: foodon.owl; size: 6944.69 KiB /usr/bin/java -Xms2G -Xmx249G -DentityExpansionLimit=4086000 -Djava.awt.headless=true -classpath /home/ubuntu/kg2-build/owltools
owltools.cli.CommandLineInterface foodon.owl -o -f json /tmp/kg2-_afrl46i.json 2021-09-15 02:38:43,998 ERROR (CommandRunner:4815) could not parse:foodon.owl
org.semanticweb.owlapi.model.UnloadableImportException: Could not load imported ontology: http://purl.obolibrary.org/obo/foodon/imports/dietary_supplement_import.owl Cause: https://raw.githubusercontent.com/FoodOntology/foodon/master/imports/dietary_supplement_import.owl at uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.makeL… S
```
|
build
|
issue with foodon owl include this issue brought to my attention by acevedol who first logged it in reading ontology file foodon owl size kib usr bin java dentityexpansionlimit djava awt headless true classpath home ubuntu build owltools owltools cli commandlineinterface foodon owl o f json tmp json error commandrunner could not parse foodon owl org semanticweb owlapi model unloadableimportexception could not load imported ontology cause at uk ac manchester cs owl owlapi owlontologymanagerimpl makel… s
| 1
|
130,248
| 27,636,146,379
|
IssuesEvent
|
2023-03-10 14:35:32
|
alvgonfri/dp2-acme-l3
|
https://api.github.com/repos/alvgonfri/dp2-acme-l3
|
opened
|
R20: System administrator operations
|
code optional
|
Operations by administrators on the system configuration:
- Show the system configuration.
- Update the system configuration.
|
1.0
|
R20: System administrator operations - Operations by administrators on the system configuration:
- Show the system configuration.
- Update the system configuration.
|
non_build
|
system administrator operations operations by administrators on the system configuration show the system configuration update the system configuration
| 0
|
96,591
| 27,950,271,980
|
IssuesEvent
|
2023-03-24 08:15:34
|
syncthing/syncthing
|
https://api.github.com/repos/syncthing/syncthing
|
closed
|
cmd/stdiscosrv: TestDatabaseGetSet flake
|
build
|
This test is flaky in GitHub actions, and easy to reproduce locally as well.
```
--- FAIL: TestDatabaseGetSet (0.02s)
database_test.go:138: 0
database_test.go:139: incorrect misses
FAIL
FAIL github.com/syncthing/syncthing/cmd/stdiscosrv 0.269s
```
|
1.0
|
cmd/stdiscosrv: TestDatabaseGetSet flake - This test is flaky in GitHub actions, and easy to reproduce locally as well.
```
--- FAIL: TestDatabaseGetSet (0.02s)
database_test.go:138: 0
database_test.go:139: incorrect misses
FAIL
FAIL github.com/syncthing/syncthing/cmd/stdiscosrv 0.269s
```
|
build
|
cmd stdiscosrv testdatabasegetset flake this test is flaky in github actions and easy to reproduce locally as well fail testdatabasegetset database test go database test go incorrect misses fail fail github com syncthing syncthing cmd stdiscosrv
| 1
|
275,139
| 20,908,642,488
|
IssuesEvent
|
2022-03-24 06:48:44
|
appsmithorg/appsmith-docs
|
https://api.github.com/repos/appsmithorg/appsmith-docs
|
closed
|
How to use ElasticSearch as a data source on Appsmith
|
documentation good first issue hacktoberfest
|
Please cover the following topics in this guide -
1. Integrating the data source into Appsmith.
2. Fetching data from the connected data source.
3. Binding the data to a widget.
For documentation guidelines, click [here.](https://github.com/appsmithorg/appsmith/blob/release/contributions/docs/CONTRIBUTING.md)
|
1.0
|
How to use ElasticSearch as a data source on Appsmith - Please cover the following topics in this guide -
1. Integrating the data source into Appsmith.
2. Fetching data from the connected data source.
3. Binding the data to a widget.
For documentation guidelines, click [here.](https://github.com/appsmithorg/appsmith/blob/release/contributions/docs/CONTRIBUTING.md)
|
non_build
|
how to use elasticsearch as a data source on appsmith please cover the following topics in this guide integrating the data source into appsmith fetching data from the connected data source binding the data to a widget for documentation guidelines click
| 0
|
84,838
| 24,443,849,767
|
IssuesEvent
|
2022-10-06 16:18:38
|
open-telemetry/opentelemetry-cpp
|
https://api.github.com/repos/open-telemetry/opentelemetry-cpp
|
closed
|
[BUILD] Build failure on solaris11-sparc-64bit
|
bug build and test
|
CMake fails, because it does not handle the `sparc` architecture.
Error message is raised from:
```
message(
FATAL_ERROR
"opentelemetry-cpp: unrecognized target processor configuration!")
```
|
1.0
|
[BUILD] Build failure on solaris11-sparc-64bit - CMake fails, because it does not handle the `sparc` architecture.
Error message is raised from:
```
message(
FATAL_ERROR
"opentelemetry-cpp: unrecognized target processor configuration!")
```
|
build
|
build failure on sparc cmake fails because it does not handle the sparc architecture error message is raised from message fatal error opentelemetry cpp unrecognized target processor configuration
| 1
|
20,869
| 6,953,213,056
|
IssuesEvent
|
2017-12-06 20:11:24
|
unfoldingWord-dev/translationCore
|
https://api.github.com/repos/unfoldingWord-dev/translationCore
|
closed
|
Refactor Build Process to Build off of Branches
|
Kind/Build
|
Builds should be automatically triggered for these branches:
* [x] `develop`
* [x] `release-*`
Builds that are created of release branches should include the version string indicated in the release branch. For example, a release branch named `release-v0.9.0` should have the version code `v0.9.0` encoded into the build. The main reason for this is so that we can use the last build from the release branch as what we publish for the release.
* [ ] Last component of this is to meet with the team to explain the build process.
|
1.0
|
Refactor Build Process to Build off of Branches - Builds should be automatically triggered for these branches:
* [x] `develop`
* [x] `release-*`
Builds that are created of release branches should include the version string indicated in the release branch. For example, a release branch named `release-v0.9.0` should have the version code `v0.9.0` encoded into the build. The main reason for this is so that we can use the last build from the release branch as what we publish for the release.
* [ ] Last component of this is to meet with the team to explain the build process.
|
build
|
refactor build process to build off of branches builds should be automatically triggered for these branches develop release builds that are created of release branches should include the version string indicated in the release branch for example a release branch named release should have the version code encoded into the build the main reason for this is so that we can use the last build from the release branch as what we publish for the release last component of this is to meet with the team to explain the build process
| 1
|
50,066
| 12,467,395,412
|
IssuesEvent
|
2020-05-28 17:00:01
|
terraform-providers/terraform-provider-aws
|
https://api.github.com/repos/terraform-providers/terraform-provider-aws
|
closed
|
Error: Provider produced inconsistent final plan (aws_codebuild_project)
|
bug service/codebuild
|
<!---
Please note the following potential times when an issue might be in Terraform core:
* [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues
* [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
* [Registry](https://registry.terraform.io/) issues
* Spans resources across multiple providers
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
--->
<!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform Version
Terraform v0.12.12
+ provider.aws v2.33.0
+ provider.cloudflare v1.18.1
+ provider.fastly v0.11.0
+ provider.null v2.1.2
+ provider.template v2.1.2
<!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). --->
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* aws_codebuild_project
### Terraform Configuration Files
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
```hcl
resource "aws_codebuild_project" "kinesis_lambda" {
name = "ads-kinesis-lambda-transformation-codebuild"
build_timeout = "60"
service_role = "${aws_iam_role.codebuild_role.arn}"
artifacts {
type = "CODEPIPELINE"
}
environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/standard:1.0"
type = "LINUX_CONTAINER"
privileged_mode = true
}
logs_config {
cloudwatch_logs {
group_name = "${aws_cloudwatch_log_group.kinesis_lambda_codebuild.name}"
stream_name = "codebuild_logs"
}
}
source {
type = "CODEPIPELINE"
buildspec = "${data.template_file.kinesis_lambda_buildspec.rendered}"
}
tags = "${merge(map("Name","Kinesis Lambda CodeBuild Project" ), var.codepipeline_tags, var.custom_tags)}"
}
```
data.template_file.kinesis_lambda_buildspec
```yaml
version: 0.2
env:
parameter-store:
LAMBDA_BUCKET: ${ssm_lambda_bucket_name}
phases:
install:
runtime-versions:
nodejs: 10
commands:
- echo "Upgrade to latest awscli and yamllint"
pre_build:
commands:
- echo Validation started on `date`
build:
commands:
- echo Validation completed on `date`
artifacts:
files:
- deploy-kinesis-lambda-transformation.yaml
```
### Debug Output
<!---
Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html).
--->
### Panic Output
```
Error: Provider produced inconsistent final plan
When expanding the plan for
module.kinesis_lambda.aws_codebuild_project.kinesis_lambda to include new
values learned so far during apply, provider "aws" produced an invalid new
value for .source: planned set element
cty.ObjectVal(map[string]cty.Value{"auth":cty.SetValEmpty(cty.Object(map[string]cty.Type{"resource":cty.String,
"type":cty.String})), "buildspec":cty.UnknownVal(cty.String),
"git_clone_depth":cty.NullVal(cty.Number),
"insecure_ssl":cty.NullVal(cty.Bool), "location":cty.StringVal(""),
"report_build_status":cty.NullVal(cty.Bool),
"type":cty.StringVal("CODEPIPELINE")}) does not correlate with any element in
actual.
This is a bug in the provider, which should be reported in the provider's own
issue tracker.
```
<!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. --->
### Expected Behavior
Terraform apply should apply completely
<!--- What should have happened? --->
### Actual Behavior
Resources fail to apply with the panic error
<!--- What actually happened? --->
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. `terraform apply`
|
1.0
|
Error: Provider produced inconsistent final plan (aws_codebuild_project) - <!---
Please note the following potential times when an issue might be in Terraform core:
* [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues
* [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
* [Registry](https://registry.terraform.io/) issues
* Spans resources across multiple providers
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
--->
<!--- Please keep this note for the community --->
### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
<!--- Thank you for keeping this note for the community --->
### Terraform Version
Terraform v0.12.12
+ provider.aws v2.33.0
+ provider.cloudflare v1.18.1
+ provider.fastly v0.11.0
+ provider.null v2.1.2
+ provider.template v2.1.2
<!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). --->
### Affected Resource(s)
<!--- Please list the affected resources and data sources. --->
* aws_codebuild_project
### Terraform Configuration Files
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
```hcl
resource "aws_codebuild_project" "kinesis_lambda" {
name = "ads-kinesis-lambda-transformation-codebuild"
build_timeout = "60"
service_role = "${aws_iam_role.codebuild_role.arn}"
artifacts {
type = "CODEPIPELINE"
}
environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/standard:1.0"
type = "LINUX_CONTAINER"
privileged_mode = true
}
logs_config {
cloudwatch_logs {
group_name = "${aws_cloudwatch_log_group.kinesis_lambda_codebuild.name}"
stream_name = "codebuild_logs"
}
}
source {
type = "CODEPIPELINE"
buildspec = "${data.template_file.kinesis_lambda_buildspec.rendered}"
}
tags = "${merge(map("Name","Kinesis Lambda CodeBuild Project" ), var.codepipeline_tags, var.custom_tags)}"
}
```
data.template_file.kinesis_lambda_buildspec
```yaml
version: 0.2
env:
parameter-store:
LAMBDA_BUCKET: ${ssm_lambda_bucket_name}
phases:
install:
runtime-versions:
nodejs: 10
commands:
- echo "Upgrade to latest awscli and yamllint"
pre_build:
commands:
- echo Validation started on `date`
build:
commands:
- echo Validation completed on `date`
artifacts:
files:
- deploy-kinesis-lambda-transformation.yaml
```
### Debug Output
<!---
Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html).
--->
### Panic Output
```
Error: Provider produced inconsistent final plan
When expanding the plan for
module.kinesis_lambda.aws_codebuild_project.kinesis_lambda to include new
values learned so far during apply, provider "aws" produced an invalid new
value for .source: planned set element
cty.ObjectVal(map[string]cty.Value{"auth":cty.SetValEmpty(cty.Object(map[string]cty.Type{"resource":cty.String,
"type":cty.String})), "buildspec":cty.UnknownVal(cty.String),
"git_clone_depth":cty.NullVal(cty.Number),
"insecure_ssl":cty.NullVal(cty.Bool), "location":cty.StringVal(""),
"report_build_status":cty.NullVal(cty.Bool),
"type":cty.StringVal("CODEPIPELINE")}) does not correlate with any element in
actual.
This is a bug in the provider, which should be reported in the provider's own
issue tracker.
```
<!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. --->
### Expected Behavior
Terraform apply should apply completely
<!--- What should have happened? --->
### Actual Behavior
Resources fail to apply with the panic error
<!--- What actually happened? --->
### Steps to Reproduce
<!--- Please list the steps required to reproduce the issue. --->
1. `terraform apply`
|
build
|
error provider produced inconsistent final plan aws codebuild project please note the following potential times when an issue might be in terraform core or resource ordering issues and issues issues issues spans resources across multiple providers if you are running into one of these scenarios we recommend opening an issue in the instead community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform version terraform provider aws provider cloudflare provider fastly provider null provider template affected resource s aws codebuild project terraform configuration files hcl resource aws codebuild project kinesis lambda name ads kinesis lambda transformation codebuild build timeout service role aws iam role codebuild role arn artifacts type codepipeline environment compute type build small image aws codebuild standard type linux container privileged mode true logs config cloudwatch logs group name aws cloudwatch log group kinesis lambda codebuild name stream name codebuild logs source type codepipeline buildspec data template file kinesis lambda buildspec rendered tags merge map name kinesis lambda codebuild project var codepipeline tags var custom tags data template file kinesis lambda buildspec yaml version env parameter store lambda bucket ssm lambda bucket name phases install runtime versions nodejs commands echo upgrade to latest awscli and yamllint pre build commands echo validation started on date build commands echo validation completed on date artifacts files deploy kinesis lambda transformation yaml debug output please provide a link to a github gist containing the complete debug output please do not paste the debug output in the issue just paste a link to the gist to obtain the debug output see the panic output error provider produced inconsistent final plan when expanding the plan for module kinesis lambda aws codebuild project kinesis lambda to include new values learned so far during apply provider aws produced an invalid new value for source planned set element cty objectval map cty value auth cty setvalempty cty object map cty type resource cty string type cty string buildspec cty unknownval cty string git clone depth cty nullval cty number insecure ssl cty nullval cty bool location cty stringval report build status cty nullval cty bool type cty stringval codepipeline does not correlate with any element in actual this is a bug in the provider which should be reported in the provider s own issue tracker expected behavior terraform apply should apply completely actual behavior resources fail to apply with the panic error steps to reproduce terraform apply
| 1
|
421,442
| 28,316,046,313
|
IssuesEvent
|
2023-04-10 19:41:55
|
bounswe/bounswe2023group9
|
https://api.github.com/repos/bounswe/bounswe2023group9
|
closed
|
Use Case Diagram Page will be created
|
priority: critical type: documentation status: completed size: small difficulty: easy
|
### Issue Description
Use Case Diagram Page will be created and placed in the wiki sidebar to refer in the Milestone 1 report.
### Steps
- [x] Use case diagram Page will be created
- [x] The created page will be added to the wiki sidebar
### Deadline for the Issue
10.04.2023
|
1.0
|
Use Case Diagram Page will be created - ### Issue Description
Use Case Diagram Page will be created and placed in the wiki sidebar to refer in the Milestone 1 report.
### Steps
- [x] Use case diagram Page will be created
- [x] The created page will be added to the wiki sidebar
### Deadline for the Issue
10.04.2023
|
non_build
|
use case diagram page will be created issue description use case diagram page will be created and placed in the wiki sidebar to refer in the milestone report steps use case diagram page will be created the created page will be added to the wiki sidebar deadline for the issue
| 0
|
814,145
| 30,490,233,296
|
IssuesEvent
|
2023-07-18 07:09:41
|
Memmy-App/memmy
|
https://api.github.com/repos/Memmy-App/memmy
|
closed
|
Consolidate “Feed” and “Traverse” on Navbar with Back Gesture?
|
enhancement medium priority in progress
|
### Discussed in https://github.com/Memmy-App/memmy/discussions/532
<div type='discussions-op-text'>
<sup>Originally posted by **Corb3t** July 9, 2023</sup>
I love the work that’s been done on Memmy so far, but one user flow I’m so accustomed to in other Reddit-like apps is the ability to swipe back in the Feed section to display all my communities, similar to what is shown in Traverse.
This user flow was in Apollo, and in the official Reddit app - could this be added in Memmy? Doing so means you could remove the “Traverse” navbar item and instead add a “Settings”, which you’ll eventually need as your app gets more fleshed out.
Do you guys have any interest in some front-end help? Not sure what collaborative tools you guys use, but I do have some UI/UX experience and would be happy to help.</div>
|
1.0
|
Consolidate “Feed” and “Traverse” on Navbar with Back Gesture? - ### Discussed in https://github.com/Memmy-App/memmy/discussions/532
<div type='discussions-op-text'>
<sup>Originally posted by **Corb3t** July 9, 2023</sup>
I love the work that’s been done on Memmy so far, but one user flow I’m so accustomed to in other Reddit-like apps is the ability to swipe back in the Feed section to display all my communities, similar to what is shown in Traverse.
This user flow was in Apollo, and in the official Reddit app - could this be added in Memmy? Doing so means you could remove the “Traverse” navbar item and instead add a “Settings”, which you’ll eventually need as your app gets more fleshed out.
Do you guys have any interest in some front-end help? Not sure what collaborative tools you guys use, but I do have some UI/UX experience and would be happy to help.</div>
|
non_build
|
consolidate “feed” and “traverse” on navbar with back gesture discussed in originally posted by july i love the work that’s been done on memmy so far but one user flow i’m so accustomed to in other reddit like apps is the ability to swipe back in the feed section to display all my communities similar to what is shown in traverse this user flow was in apollo and in the official reddit app could this be added in memmy doing so means you could remove the “traverse” navbar item and instead add a “settings” which you’ll eventually need as your app gets more fleshed out do you guys have any interest in some front end help not sure what collaborative tools you guys use but i do have some ui ux experience and would be happy to help
| 0
|
65,621
| 16,439,285,258
|
IssuesEvent
|
2021-05-20 12:46:45
|
dotnet/runtime
|
https://api.github.com/repos/dotnet/runtime
|
opened
|
[wasm] emscripten 2.0.21 introduces failures where UnauthorizedAccessException is not thrown
|
arch-wasm area-Build-mono
|
Happens in `System.IO.FileSystem.Tests.dll` and `System.IO.MemoryMappedFiles.Tests.dll`.
```
[23:13:25] info: console.info: Arguments: --working-dir=/test-dir,--run,WasmTestRunner.dll,System.IO.FileSystem.Tests.dll,-notrait,category=IgnoreForCI,-notrait,category=OuterLoop,-notrait,category=failing
[23:13:25] info: console.debug: MONO_WASM: Initializing mono runtime
[23:13:25] info: console.debug: MONO_WASM: ICU data archive(s) loaded, disabling invariant mode
[23:13:25] info: console.debug: mono_wasm_runtime_ready fe00e07a-5519-4dfe-b35a-f867dbaf2e28
[23:13:25] info: console.info: Initializing.....
[23:13:25] info: Discovering: System.IO.FileSystem.Tests.dll (method display = ClassAndMethod, method display options = None)
[23:13:25] info: Discovered: System.IO.FileSystem.Tests.dll (found 2619 of 3450 test cases)
[23:13:25] info: Starting: System.IO.FileSystem.Tests.dll
[23:13:26] fail: [FAIL] System.IO.Tests.File_ReadLines.WriteToReadOnlyFile
[23:13:26] info: Assert.Throws() Failure
[23:13:26] info: Expected: typeof(System.UnauthorizedAccessException)
[23:13:26] info: Actual: (No exception was thrown)
[23:13:26] info: at System.IO.Tests.File_ReadWriteAllLines_Enumerable.WriteToReadOnlyFile()
[23:13:26] info: at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
...
```
|
1.0
|
[wasm] emscripten 2.0.21 introduces failures where UnauthorizedAccessException is not thrown - Happens in `System.IO.FileSystem.Tests.dll` and `System.IO.MemoryMappedFiles.Tests.dll`.
```
[23:13:25] info: console.info: Arguments: --working-dir=/test-dir,--run,WasmTestRunner.dll,System.IO.FileSystem.Tests.dll,-notrait,category=IgnoreForCI,-notrait,category=OuterLoop,-notrait,category=failing
[23:13:25] info: console.debug: MONO_WASM: Initializing mono runtime
[23:13:25] info: console.debug: MONO_WASM: ICU data archive(s) loaded, disabling invariant mode
[23:13:25] info: console.debug: mono_wasm_runtime_ready fe00e07a-5519-4dfe-b35a-f867dbaf2e28
[23:13:25] info: console.info: Initializing.....
[23:13:25] info: Discovering: System.IO.FileSystem.Tests.dll (method display = ClassAndMethod, method display options = None)
[23:13:25] info: Discovered: System.IO.FileSystem.Tests.dll (found 2619 of 3450 test cases)
[23:13:25] info: Starting: System.IO.FileSystem.Tests.dll
[23:13:26] fail: [FAIL] System.IO.Tests.File_ReadLines.WriteToReadOnlyFile
[23:13:26] info: Assert.Throws() Failure
[23:13:26] info: Expected: typeof(System.UnauthorizedAccessException)
[23:13:26] info: Actual: (No exception was thrown)
[23:13:26] info: at System.IO.Tests.File_ReadWriteAllLines_Enumerable.WriteToReadOnlyFile()
[23:13:26] info: at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
...
```
|
build
|
emscripten introduces failures where unauthorizedaccessexception is not thrown happens in system io filesystem tests dll and system io memorymappedfiles tests dll info console info arguments working dir test dir run wasmtestrunner dll system io filesystem tests dll notrait category ignoreforci notrait category outerloop notrait category failing info console debug mono wasm initializing mono runtime info console debug mono wasm icu data archive s loaded disabling invariant mode info console debug mono wasm runtime ready info console info initializing info discovering system io filesystem tests dll method display classandmethod method display options none info discovered system io filesystem tests dll found of test cases info starting system io filesystem tests dll fail system io tests file readlines writetoreadonlyfile info assert throws failure info expected typeof system unauthorizedaccessexception info actual no exception was thrown info at system io tests file readwritealllines enumerable writetoreadonlyfile info at system reflection runtimemethodinfo invoke object obj bindingflags invokeattr binder binder object parameters cultureinfo culture
| 1
|
38,751
| 10,240,275,877
|
IssuesEvent
|
2019-08-19 20:24:19
|
angular/angular-cli
|
https://api.github.com/repos/angular/angular-cli
|
closed
|
Imported CSS from linked node packages don't get updated on change
|
comp: devkit/build-angular freq1: low severity2: inconvenient type: bug/fix
|
### Versions
```
Angular CLI: 1.6.0
Node: 8.9.2
OS: macOS High Sierra 10.13.3
Angular: 5.1.0
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router
@angular/cli: 1.6.0
@angular-devkit/build-optimizer: 0.0.35
@angular-devkit/core: 0.0.22
@angular-devkit/schematics: 0.0.41
@ngtools/json-schema: 1.1.0
@ngtools/webpack: 1.9.0
@schematics/angular: 0.1.10
@schematics/schematics: 0.0.10
typescript: 2.4.2
webpack: 3.10.0
```
### Repro steps
* Create a new app using the CLI `ng new app`
* Link a local node package using npm link `npm link name-of-package`
* Add a CSS file to the styles array in the angular-cli.json file from the linked node package
* Run `ng serve --preserve-symlinks`
* Change the content of the linked CSS file and save it
### Observed behavior
The changes made to the styles from the imported CSS don't get reflected in the injected styles in the head of the app until the ng server is restarted, even when reloading of the entire page.
### Desired behavior
The updated styles should get re-injected in the head upon change.
|
1.0
|
Imported CSS from linked node packages don't get updated on change - ### Versions
```
Angular CLI: 1.6.0
Node: 8.9.2
OS: macOS High Sierra 10.13.3
Angular: 5.1.0
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router
@angular/cli: 1.6.0
@angular-devkit/build-optimizer: 0.0.35
@angular-devkit/core: 0.0.22
@angular-devkit/schematics: 0.0.41
@ngtools/json-schema: 1.1.0
@ngtools/webpack: 1.9.0
@schematics/angular: 0.1.10
@schematics/schematics: 0.0.10
typescript: 2.4.2
webpack: 3.10.0
```
### Repro steps
* Create a new app using the CLI `ng new app`
* Link a local node package using npm link `npm link name-of-package`
* Add a CSS file to the styles array in the angular-cli.json file from the linked node package
* Run `ng serve --preserve-symlinks`
* Change the content of the linked CSS file and save it
### Observed behavior
The changes made to the styles from the imported CSS don't get reflected in the injected styles in the head of the app until the ng server is restarted, even when reloading of the entire page.
### Desired behavior
The updated styles should get re-injected in the head upon change.
|
build
|
imported css from linked node packages don t get updated on change versions angular cli node os macos high sierra angular animations common compiler compiler cli core forms http language service platform browser platform browser dynamic router angular cli angular devkit build optimizer angular devkit core angular devkit schematics ngtools json schema ngtools webpack schematics angular schematics schematics typescript webpack repro steps create a new app using the cli ng new app link a local node package using npm link npm link name of package add a css file to the styles array in the angular cli json file from the linked node package run ng serve preserve symlinks change the content of the linked css file and save it observed behavior the changes made to the styles from the imported css don t get reflected in the injected styles in the head of the app until the ng server is restarted even when reloading of the entire page desired behavior the updated styles should get re injected in the head upon change
| 1
|
417,662
| 28,110,748,649
|
IssuesEvent
|
2023-03-31 06:57:55
|
chia-yh/ped
|
https://api.github.com/repos/chia-yh/ped
|
opened
|
Links in Expense Features Summary not working
|
severity.VeryLow type.DocumentationBug
|
"Add Recurring Expense", "Delete Recurring Expense", "Delete Recurring Expense" links not working, does nothing instead of redirect to relevant section on command.
Steps to reproduce:
1. click on "Add Recurring Expense"/ "Delete Recurring Expense"/ "Delete Recurring Expense" links in User Guide
<!--session: 1680243213831-e96c1caa-a81d-4fd6-a52b-b768497cce64-->
<!--Version: Web v3.4.7-->
|
1.0
|
Links in Expense Features Summary not working - "Add Recurring Expense", "Delete Recurring Expense", "Delete Recurring Expense" links not working, does nothing instead of redirect to relevant section on command.
Steps to reproduce:
1. click on "Add Recurring Expense"/ "Delete Recurring Expense"/ "Delete Recurring Expense" links in User Guide
<!--session: 1680243213831-e96c1caa-a81d-4fd6-a52b-b768497cce64-->
<!--Version: Web v3.4.7-->
|
non_build
|
links in expense features summary not working add recurring expense delete recurring expense delete recurring expense links not working does nothing instead of redirect to relevant section on command steps to reproduce click on add recurring expense delete recurring expense delete recurring expense links in user guide
| 0
|
531,861
| 15,526,589,985
|
IssuesEvent
|
2021-03-13 01:50:43
|
CreeperMagnet/the-creepers-code
|
https://api.github.com/repos/CreeperMagnet/the-creepers-code
|
closed
|
Charged Music Discs don't drop from charged creepers if they're killed by skeletons
|
priority: high
|
Easy fix, just need to put the functions outside the item tag expander.
(Imported from old repository)
|
1.0
|
Charged Music Discs don't drop from charged creepers if they're killed by skeletons - Easy fix, just need to put the functions outside the item tag expander.
(Imported from old repository)
|
non_build
|
charged music discs don t drop from charged creepers if they re killed by skeletons easy fix just need to put the functions outside the item tag expander imported from old repository
| 0
|
99,437
| 30,452,814,896
|
IssuesEvent
|
2023-07-16 14:10:05
|
CE-Programming/toolchain
|
https://api.github.com/repos/CE-Programming/toolchain
|
closed
|
11.1 Linux binary package doesn't work on Debian stable
|
bug build
|
The binaries provided in the 11.1 release package (at least `cedev-config`, probably others) are linked against glibc 2.34 but Debian stable (bullseye) is still shipping glibc 2.31 so attempting to build a program fails:
```
cedev-config: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by cedev-config)
make: *** No targets. Stop.
```
Release packages should either be statically linked in their entirety, or link against an old version of glibc to avoid these kinds of problems; a common solution is to do release builds on a very old distro (often the oldest still-supported version of CentOS), but I'd be happy with something like Debian oldstable as a target.
|
1.0
|
11.1 Linux binary package doesn't work on Debian stable - The binaries provided in the 11.1 release package (at least `cedev-config`, probably others) are linked against glibc 2.34 but Debian stable (bullseye) is still shipping glibc 2.31 so attempting to build a program fails:
```
cedev-config: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by cedev-config)
make: *** No targets. Stop.
```
Release packages should either be statically linked in their entirety, or link against an old version of glibc to avoid these kinds of problems; a common solution is to do release builds on a very old distro (often the oldest still-supported version of CentOS), but I'd be happy with something like Debian oldstable as a target.
|
build
|
linux binary package doesn t work on debian stable the binaries provided in the release package at least cedev config probably others are linked against glibc but debian stable bullseye is still shipping glibc so attempting to build a program fails cedev config lib linux gnu libc so version glibc not found required by cedev config make no targets stop release packages should either be statically linked in their entirety or link against an old version of glibc to avoid these kinds of problems a common solution is to do release builds on a very old distro often the oldest still supported version of centos but i d be happy with something like debian oldstable as a target
| 1
|
39,686
| 8,676,363,953
|
IssuesEvent
|
2018-11-30 13:55:07
|
epfl-idevelop/elements
|
https://api.github.com/repos/epfl-idevelop/elements
|
closed
|
[1.5]Add alerts with actions button (1 parimary button, 1 secondary) fixed on top (cookie consent use case)
|
Validated - to code
|
- [x] Design it ;-)
- [ ] Code it
|
1.0
|
[1.5]Add alerts with actions button (1 parimary button, 1 secondary) fixed on top (cookie consent use case) - - [x] Design it ;-)
- [ ] Code it
|
non_build
|
add alerts with actions button parimary button secondary fixed on top cookie consent use case design it code it
| 0
|
371,309
| 25,946,783,029
|
IssuesEvent
|
2022-12-17 03:20:34
|
smclaughlan/GWJ52
|
https://api.github.com/repos/smclaughlan/GWJ52
|
closed
|
Various - notes from mtg Dec 11
|
documentation
|
Bugs:
- Laser knock back is broken after introduction of melee knockback
- Initial towers don't have active collision shapes. (make them bases+turrets, not just turrets)
Design:
- What's the win condition? Maybe player buys their "win" with currency (light) at the base
- Move the shopping interface to the base so the player has to divide their time between hunting and defending
- Tower placement needs maximum range so player can't spread too quickly
- Tower placement needs more obvious feedback about requirements - insufficient cash, distance, etc.
- Player needs some starting cash, so they can place a couple of towers.
- Need a softer landing / onboarding / tutorial. (Maybe scene 1 is a small tutorial zone where they place the first 4 towers that show up when they start the real game)
- If the player is off hunting, they should get an edge-of-screen alert when the base is under attack.
- maybe give an edge of screen wave alert if the player is at the base and an offscreen spawner fires up a new wave.
- Make the village an exclusion zone, so no towers can be placed there (this might be auto-solved based on tower minimum distance requirements)
- Player should be able to destroy towers for a refund.
- right click on tower while holding the construction wrench? Or interaction key (e or f)
- Towers, when placed, will snap to a grid, so they don't look untidy.
Backlog
- Plexsoup is still working on the tower wiring network.
- If the path to the source breaks, all downstream towers should lose power.
- When towers are depowered they should light up again when a new (powered) tower is placed nearby
- player can't build in the dark, towers have a light aura / radius. new towers only go in the light. if part of the grid is dep-powered, there's no building there.
|
1.0
|
Various - notes from mtg Dec 11 - Bugs:
- Laser knock back is broken after introduction of melee knockback
- Initial towers don't have active collision shapes. (make them bases+turrets, not just turrets)
Design:
- What's the win condition? Maybe player buys their "win" with currency (light) at the base
- Move the shopping interface to the base so the player has to divide their time between hunting and defending
- Tower placement needs maximum range so player can't spread too quickly
- Tower placement needs more obvious feedback about requirements - insufficient cash, distance, etc.
- Player needs some starting cash, so they can place a couple of towers.
- Need a softer landing / onboarding / tutorial. (Maybe scene 1 is a small tutorial zone where they place the first 4 towers that show up when they start the real game)
- If the player is off hunting, they should get an edge-of-screen alert when the base is under attack.
- maybe give an edge of screen wave alert if the player is at the base and an offscreen spawner fires up a new wave.
- Make the village an exclusion zone, so no towers can be placed there (this might be auto-solved based on tower minimum distance requirements)
- Player should be able to destroy towers for a refund.
- right click on tower while holding the construction wrench? Or interaction key (e or f)
- Towers, when placed, will snap to a grid, so they don't look untidy.
Backlog
- Plexsoup is still working on the tower wiring network.
- If the path to the source breaks, all downstream towers should lose power.
- When towers are depowered they should light up again when a new (powered) tower is placed nearby
- player can't build in the dark, towers have a light aura / radius. new towers only go in the light. if part of the grid is dep-powered, there's no building there.
|
non_build
|
various notes from mtg dec bugs laser knock back is broken after introduction of melee knockback initial towers don t have active collision shapes make them bases turrets not just turrets design what s the win condition maybe player buys their win with currency light at the base move the shopping interface to the base so the player has to divide their time between hunting and defending tower placement needs maximum range so player can t spread too quickly tower placement needs more obvious feedback about requirements insufficient cash distance etc player needs some starting cash so they can place a couple of towers need a softer landing onboarding tutorial maybe scene is a small tutorial zone where they place the first towers that show up when they start the real game if the player is off hunting they should get an edge of screen alert when the base is under attack maybe give an edge of screen wave alert if the player is at the base and an offscreen spawner fires up a new wave make the village an exclusion zone so no towers can be placed there this might be auto solved based on tower minimum distance requirements player should be able to destroy towers for a refund right click on tower while holding the construction wrench or interaction key e or f towers when placed will snap to a grid so they don t look untidy backlog plexsoup is still working on the tower wiring network if the path to the source breaks all downstream towers should lose power when towers are depowered they should light up again when a new powered tower is placed nearby player can t build in the dark towers have a light aura radius new towers only go in the light if part of the grid is dep powered there s no building there
| 0
|
237,932
| 26,085,463,779
|
IssuesEvent
|
2022-12-26 01:48:36
|
chill-cats/bk_google_calendar
|
https://api.github.com/repos/chill-cats/bk_google_calendar
|
opened
|
CVE-2022-37603 (High) detected in multiple libraries
|
security vulnerability
|
## CVE-2022-37603 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>loader-utils-1.4.0.tgz</b>, <b>loader-utils-2.0.2.tgz</b>, <b>loader-utils-3.2.0.tgz</b></p></summary>
<p>
<details><summary><b>loader-utils-1.4.0.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/mini-css-extract-plugin/node_modules/loader-utils/package.json,/node_modules/webpack/node_modules/loader-utils/package.json,/node_modules/babel-loader/node_modules/loader-utils/package.json,/node_modules/postcss-loader/node_modules/loader-utils/package.json,/node_modules/html-webpack-plugin/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.0.tgz (Root Library)
- babel-loader-8.2.3.tgz
- :x: **loader-utils-1.4.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>loader-utils-2.0.2.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.0.tgz (Root Library)
- file-loader-6.2.0.tgz
- :x: **loader-utils-2.0.2.tgz** (Vulnerable Library)
</details>
<details><summary><b>loader-utils-3.2.0.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/react-dev-utils/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.0.tgz (Root Library)
- react-dev-utils-12.0.0.tgz
- :x: **loader-utils-3.2.0.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/LeNguyenHoangNhan/bk_google_calendar/commit/3f4b06e654553136dec33dfdc45c4696afa3fe8a">3f4b06e654553136dec33dfdc45c4696afa3fe8a</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the url variable in interpolateName.js.
<p>Publish Date: 2022-10-14
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-37603>CVE-2022-37603</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-3rfm-jhwj-7488">https://github.com/advisories/GHSA-3rfm-jhwj-7488</a></p>
<p>Release Date: 2022-10-14</p>
<p>Fix Resolution (loader-utils): 2.0.4</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p><p>Fix Resolution (loader-utils): 2.0.4</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p><p>Fix Resolution (loader-utils): 3.2.1</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2022-37603 (High) detected in multiple libraries - ## CVE-2022-37603 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>loader-utils-1.4.0.tgz</b>, <b>loader-utils-2.0.2.tgz</b>, <b>loader-utils-3.2.0.tgz</b></p></summary>
<p>
<details><summary><b>loader-utils-1.4.0.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/mini-css-extract-plugin/node_modules/loader-utils/package.json,/node_modules/webpack/node_modules/loader-utils/package.json,/node_modules/babel-loader/node_modules/loader-utils/package.json,/node_modules/postcss-loader/node_modules/loader-utils/package.json,/node_modules/html-webpack-plugin/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.0.tgz (Root Library)
- babel-loader-8.2.3.tgz
- :x: **loader-utils-1.4.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>loader-utils-2.0.2.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.0.tgz (Root Library)
- file-loader-6.2.0.tgz
- :x: **loader-utils-2.0.2.tgz** (Vulnerable Library)
</details>
<details><summary><b>loader-utils-3.2.0.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/react-dev-utils/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-5.0.0.tgz (Root Library)
- react-dev-utils-12.0.0.tgz
- :x: **loader-utils-3.2.0.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/LeNguyenHoangNhan/bk_google_calendar/commit/3f4b06e654553136dec33dfdc45c4696afa3fe8a">3f4b06e654553136dec33dfdc45c4696afa3fe8a</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A Regular expression denial of service (ReDoS) flaw was found in Function interpolateName in interpolateName.js in webpack loader-utils 2.0.0 via the url variable in interpolateName.js.
<p>Publish Date: 2022-10-14
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-37603>CVE-2022-37603</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/advisories/GHSA-3rfm-jhwj-7488">https://github.com/advisories/GHSA-3rfm-jhwj-7488</a></p>
<p>Release Date: 2022-10-14</p>
<p>Fix Resolution (loader-utils): 2.0.4</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p><p>Fix Resolution (loader-utils): 2.0.4</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p><p>Fix Resolution (loader-utils): 3.2.1</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_build
|
cve high detected in multiple libraries cve high severity vulnerability vulnerable libraries loader utils tgz loader utils tgz loader utils tgz loader utils tgz utils for webpack loaders library home page a href path to dependency file package json path to vulnerable library node modules mini css extract plugin node modules loader utils package json node modules webpack node modules loader utils package json node modules babel loader node modules loader utils package json node modules postcss loader node modules loader utils package json node modules html webpack plugin node modules loader utils package json dependency hierarchy react scripts tgz root library babel loader tgz x loader utils tgz vulnerable library loader utils tgz utils for webpack loaders library home page a href path to dependency file package json path to vulnerable library node modules loader utils package json dependency hierarchy react scripts tgz root library file loader tgz x loader utils tgz vulnerable library loader utils tgz utils for webpack loaders library home page a href path to dependency file package json path to vulnerable library node modules react dev utils node modules loader utils package json dependency hierarchy react scripts tgz root library react dev utils tgz x loader utils tgz vulnerable library found in head commit a href found in base branch main vulnerability details a regular expression denial of service redos flaw was found in function interpolatename in interpolatename js in webpack loader utils via the url variable in interpolatename js publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution loader utils direct dependency fix resolution react scripts fix resolution loader utils direct dependency fix resolution react scripts fix resolution loader utils direct dependency fix resolution react scripts step up your open source security game with mend
| 0
|
18,741
| 5,703,673,593
|
IssuesEvent
|
2017-04-18 00:51:56
|
codefordc/opendatadc
|
https://api.github.com/repos/codefordc/opendatadc
|
opened
|
Rename the site?
|
no code
|
"Open Data DC" is also the name of DC's data portal (http://opendata.dc.gov/) — and they even have the twitter handle (https://twitter.com/opendatadc)!
Also, even if that weren't true, "Open Data DC" is still confusing in that it sounds like it could be an official government site. So we may want to consider changing the site's name.
The question is, what to change it to? Two easy, if unsexy, options are:
- "Code for DC's data portal"
- "data.codefordc.org" (calling the site by its URL)
Thoughts?
|
1.0
|
Rename the site? - "Open Data DC" is also the name of DC's data portal (http://opendata.dc.gov/) — and they even have the twitter handle (https://twitter.com/opendatadc)!
Also, even if that weren't true, "Open Data DC" is still confusing in that it sounds like it could be an official government site. So we may want to consider changing the site's name.
The question is, what to change it to? Two easy, if unsexy, options are:
- "Code for DC's data portal"
- "data.codefordc.org" (calling the site by its URL)
Thoughts?
|
non_build
|
rename the site open data dc is also the name of dc s data portal — and they even have the twitter handle also even if that weren t true open data dc is still confusing in that it sounds like it could be an official government site so we may want to consider changing the site s name the question is what to change it to two easy if unsexy options are code for dc s data portal data codefordc org calling the site by its url thoughts
| 0
|
138,928
| 31,142,263,512
|
IssuesEvent
|
2023-08-16 01:42:24
|
holdyounger/ScopeBlog
|
https://api.github.com/repos/holdyounger/ScopeBlog
|
opened
|
Go面向对象编程3——组合
|
Go code Go简明手册 面向对象编程 组合
|
Go面向对象编程3——组合
Go 语言虽然抛弃了继承,但是却提供了一个更加方便的组合特性。相对于继承的编译期确定实现,组合的运行态指定实现,更加灵活。下面通过一段代码来了解组合的基本属性以及它与继承的不同之处。
先定义一个结构体 Base, 并为它添加两个方法 `Foo()` 和 `Bar()`:
```go
type Base struct{
Name string
}
func (b *Base) Foo() {...}
func (b *Base) Bar() {...}
type Seed struct {
Base
...
}
func (s *Seed) Foo() {
s.Base.Foo()
s.Bar()
...
}
```
上面代码先定义了一个 Base 类,然后定义了一个 Seed 类。Seed 类“继承”了 Base 类的所有成员属性和方法并重写了 `Foo()` 方法。同时在重写 `Foo()` 方法时调用了 Base 类的 `Foo()` 方法和 `Bar()` 方法。需要注意的是,若此时 Seed 的对象通过 `s.Foo()` 调用 `Foo()` 方法时,实际调用的是 Seed 重写过后的 `Foo()` 方法,而不是基类 Base 的 `Foo()` 方法,若想调用 Base 类的 `Foo()` 方法则要使用 `s.Base.Foo`,而调用没有重写的 `Bar()` 方法时,使用 `s.Bar()` 和`s.Base.Bar()` 效果是一样的。
> blog link [Go面向对象编程3——组合](https://holdyounger.github.io/Code/GO/Go简明手册/面向对象编程/组合/README/)
|
1.0
|
Go面向对象编程3——组合 - Go面向对象编程3——组合
Go 语言虽然抛弃了继承,但是却提供了一个更加方便的组合特性。相对于继承的编译期确定实现,组合的运行态指定实现,更加灵活。下面通过一段代码来了解组合的基本属性以及它与继承的不同之处。
先定义一个结构体 Base, 并为它添加两个方法 `Foo()` 和 `Bar()`:
```go
type Base struct{
Name string
}
func (b *Base) Foo() {...}
func (b *Base) Bar() {...}
type Seed struct {
Base
...
}
func (s *Seed) Foo() {
s.Base.Foo()
s.Bar()
...
}
```
上面代码先定义了一个 Base 类,然后定义了一个 Seed 类。Seed 类“继承”了 Base 类的所有成员属性和方法并重写了 `Foo()` 方法。同时在重写 `Foo()` 方法时调用了 Base 类的 `Foo()` 方法和 `Bar()` 方法。需要注意的是,若此时 Seed 的对象通过 `s.Foo()` 调用 `Foo()` 方法时,实际调用的是 Seed 重写过后的 `Foo()` 方法,而不是基类 Base 的 `Foo()` 方法,若想调用 Base 类的 `Foo()` 方法则要使用 `s.Base.Foo`,而调用没有重写的 `Bar()` 方法时,使用 `s.Bar()` 和`s.Base.Bar()` 效果是一样的。
> blog link [Go面向对象编程3——组合](https://holdyounger.github.io/Code/GO/Go简明手册/面向对象编程/组合/README/)
|
non_build
|
——组合 ——组合 go 语言虽然抛弃了继承,但是却提供了一个更加方便的组合特性。相对于继承的编译期确定实现,组合的运行态指定实现,更加灵活。下面通过一段代码来了解组合的基本属性以及它与继承的不同之处。 先定义一个结构体 base 并为它添加两个方法 foo 和 bar : go type base struct name string func b base foo func b base bar type seed struct base func s seed foo s base foo s bar 上面代码先定义了一个 base 类,然后定义了一个 seed 类。seed 类“继承”了 base 类的所有成员属性和方法并重写了 foo 方法。同时在重写 foo 方法时调用了 base 类的 foo 方法和 bar 方法。需要注意的是,若此时 seed 的对象通过 s foo 调用 foo 方法时,实际调用的是 seed 重写过后的 foo 方法,而不是基类 base 的 foo 方法,若想调用 base 类的 foo 方法则要使用 s base foo ,而调用没有重写的 bar 方法时,使用 s bar 和 s base bar 效果是一样的。 blog link
| 0
|
50,652
| 12,536,228,932
|
IssuesEvent
|
2020-06-04 23:23:35
|
tensorflow/tensorflow
|
https://api.github.com/repos/tensorflow/tensorflow
|
opened
|
build failed on CentOS-7 @flatbuffers//:flatc' #1660
|
type:build/install
|
## Bug Report
Getting the following error while building.
```
ERROR: /mnt/sdb/tf220/mkl/build/external/flatbuffers/BUILD.bazel:60:1:
Linking of rule '@flatbuffers//:flatc' failed (Exit 1)
```
Re: #1563
this bug also reported the same issue but with building docker. Here, I am not building any docker.
### System information
- **OS Platform and Distribution (e.g., CentOS Linux 7)**:
- **TensorFlow Serving installed from (source v2.2.0)**:
- **TensorFlow Serving version**:
### Describe the problem
Getting the above build error
### Exact Steps to Reproduce
clone and checkout the tag v2.2.0
./configure
<accept all defaults>
`bazel --output_base=$build_dir build --config=mkl //tensorflow/tools/pip_package:build_pip_package`
### Source code / logs
```
INFO: From Compiling external/snappy/snappy-stubs-internal.cc:
cc1plus: warning: command line option '-Wno-implicit-function-declaration' is valid for C/ObjC but not for C++
ERROR: /build/external/swig/BUILD.bazel:5:1: Linking of rule '@swig//:swig' failed (Exit 1)
bazel-out/host/bin/external/swig/_objs/swig/allocate.o:allocate.cxx:function Allocate::~Allocate(): error: undefined reference to 'operator delete(void*, unsigned long)'
bazel-out/host/bin/external/swig/_objs/swig/contract.o:contract.cxx:function Contracts::~Contracts(): error: undefined reference to 'operator delete(void*, unsigned long)'
bazel-out/host/bin/external/swig/_objs/swig/lang.o:lang.cxx:function Language::~Language(): error: undefined reference to 'operator delete(void*, unsigned long)'
bazel-out/host/bin/external/swig/_objs/swig/module.o:module.cxx:function Swig_register_module(char const*, Language* (*)()) [clone .cold.0]: error: undefined reference to 'operator delete(void*, unsigned long)'
collect2: error: ld returned 1 exit status
Target //tensorflow/tools/pip_package:build_pip_package failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 87.968s, Critical Path: 69.22s
INFO: 4631 processes: 4631 local.
FAILED: Build did NOT complete successfully
```
|
1.0
|
build failed on CentOS-7 @flatbuffers//:flatc' #1660 - ## Bug Report
Getting the following error while building.
```
ERROR: /mnt/sdb/tf220/mkl/build/external/flatbuffers/BUILD.bazel:60:1:
Linking of rule '@flatbuffers//:flatc' failed (Exit 1)
```
Re: #1563
this bug also reported the same issue but with building docker. Here, I am not building any docker.
### System information
- **OS Platform and Distribution (e.g., CentOS Linux 7)**:
- **TensorFlow Serving installed from (source v2.2.0)**:
- **TensorFlow Serving version**:
### Describe the problem
Getting the above build error
### Exact Steps to Reproduce
clone and checkout the tag v2.2.0
./configure
<accept all defaults>
`bazel --output_base=$build_dir build --config=mkl //tensorflow/tools/pip_package:build_pip_package`
### Source code / logs
```
INFO: From Compiling external/snappy/snappy-stubs-internal.cc:
cc1plus: warning: command line option '-Wno-implicit-function-declaration' is valid for C/ObjC but not for C++
ERROR: /build/external/swig/BUILD.bazel:5:1: Linking of rule '@swig//:swig' failed (Exit 1)
bazel-out/host/bin/external/swig/_objs/swig/allocate.o:allocate.cxx:function Allocate::~Allocate(): error: undefined reference to 'operator delete(void*, unsigned long)'
bazel-out/host/bin/external/swig/_objs/swig/contract.o:contract.cxx:function Contracts::~Contracts(): error: undefined reference to 'operator delete(void*, unsigned long)'
bazel-out/host/bin/external/swig/_objs/swig/lang.o:lang.cxx:function Language::~Language(): error: undefined reference to 'operator delete(void*, unsigned long)'
bazel-out/host/bin/external/swig/_objs/swig/module.o:module.cxx:function Swig_register_module(char const*, Language* (*)()) [clone .cold.0]: error: undefined reference to 'operator delete(void*, unsigned long)'
collect2: error: ld returned 1 exit status
Target //tensorflow/tools/pip_package:build_pip_package failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 87.968s, Critical Path: 69.22s
INFO: 4631 processes: 4631 local.
FAILED: Build did NOT complete successfully
```
|
build
|
build failed on centos flatbuffers flatc bug report getting the following error while building error mnt sdb mkl build external flatbuffers build bazel linking of rule flatbuffers flatc failed exit re this bug also reported the same issue but with building docker here i am not building any docker system information os platform and distribution e g centos linux tensorflow serving installed from source tensorflow serving version describe the problem getting the above build error exact steps to reproduce clone and checkout the tag configure bazel output base build dir build config mkl tensorflow tools pip package build pip package source code logs info from compiling external snappy snappy stubs internal cc warning command line option wno implicit function declaration is valid for c objc but not for c error build external swig build bazel linking of rule swig swig failed exit bazel out host bin external swig objs swig allocate o allocate cxx function allocate allocate error undefined reference to operator delete void unsigned long bazel out host bin external swig objs swig contract o contract cxx function contracts contracts error undefined reference to operator delete void unsigned long bazel out host bin external swig objs swig lang o lang cxx function language language error undefined reference to operator delete void unsigned long bazel out host bin external swig objs swig module o module cxx function swig register module char const language error undefined reference to operator delete void unsigned long error ld returned exit status target tensorflow tools pip package build pip package failed to build use verbose failures to see the command lines of failed build steps info elapsed time critical path info processes local failed build did not complete successfully
| 1
|
14,218
| 5,583,612,548
|
IssuesEvent
|
2017-03-29 01:06:58
|
airbnb/lottie-react-native
|
https://api.github.com/repos/airbnb/lottie-react-native
|
closed
|
Build fails on release (iOS)
|
build issue
|
Hi guys,
Posting here because I've got a similar problem. I succeeded to make lottie work on my RN project using Lottie 1.0.6 and RN 0.39 on iOS in debug. I removed `libLottie.a` as said on ticket #59 from the linked frameworks and libraries and it's building well on the simulator and animations correctly appear.
However, when using fastlane to generate an .ipa to deploy on Testflight for my team, the build is not working and I've got the following message node_modules/lottie-react-native/lib/ios/LottieReactNative/LRNContainerView.h:19:9: 'Lottie/Lottie.h' file not found
http://cl.kowaio.me/2w0M2027462S
Here is also a screenshot of my embedded and linked frameworks: http://cl.kowaio.me/3O3Z3E392i2S
FYI, I also tried to make an archive not using fastlane, by hand, and I've got exactly the same error as said above. http://cl.kowaio.me/0M3E3L0A2m44
I don't know why it's doing this in release. Did you encounter this while trying to build on your side?
Thanks again guys
|
1.0
|
Build fails on release (iOS) - Hi guys,
Posting here because I've got a similar problem. I succeeded to make lottie work on my RN project using Lottie 1.0.6 and RN 0.39 on iOS in debug. I removed `libLottie.a` as said on ticket #59 from the linked frameworks and libraries and it's building well on the simulator and animations correctly appear.
However, when using fastlane to generate an .ipa to deploy on Testflight for my team, the build is not working and I've got the following message node_modules/lottie-react-native/lib/ios/LottieReactNative/LRNContainerView.h:19:9: 'Lottie/Lottie.h' file not found
http://cl.kowaio.me/2w0M2027462S
Here is also a screenshot of my embedded and linked frameworks: http://cl.kowaio.me/3O3Z3E392i2S
FYI, I also tried to make an archive not using fastlane, by hand, and I've got exactly the same error as said above. http://cl.kowaio.me/0M3E3L0A2m44
I don't know why it's doing this in release. Did you encounter this while trying to build on your side?
Thanks again guys
|
build
|
build fails on release ios hi guys posting here because i ve got a similar problem i succeeded to make lottie work on my rn project using lottie and rn on ios in debug i removed liblottie a as said on ticket from the linked frameworks and libraries and it s building well on the simulator and animations correctly appear however when using fastlane to generate an ipa to deploy on testflight for my team the build is not working and i ve got the following message node modules lottie react native lib ios lottiereactnative lrncontainerview h lottie lottie h file not found here is also a screenshot of my embedded and linked frameworks fyi i also tried to make an archive not using fastlane by hand and i ve got exactly the same error as said above i don t know why it s doing this in release did you encounter this while trying to build on your side thanks again guys
| 1
|
57,935
| 14,246,060,463
|
IssuesEvent
|
2020-11-19 09:33:23
|
tensorflow/tfjs
|
https://api.github.com/repos/tensorflow/tfjs
|
opened
|
Unable to resolve "@react-native-community/async-storage" from "node_modules\@tensorflow\tfjs-react-native\dist\async_storage_io.js"
|
type:build/install
|
**System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10
- Mobile device : Honor7x
- TensorFlow.js installed from (npm or script link): npm
- TensorFlow.js version: 2.7.0
Description:
Importing fetch from @tensorflow/tfjs-react-native resulting in above issue.
I am getting this issue when I import only. I did follow the exact steps as in docs.
Please see the screenshot below:

Package Dependencies :
```javascript
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@tensorflow-models/mobilenet": "^2.0.4",
"@tensorflow/tfjs": "^2.7.0",
"@tensorflow/tfjs-react-native": "^0.5.0",
"expo": "~39.0.2",
"expo-camera": "^9.0.0",
"expo-constants": "^9.2.0",
"expo-gl": "^9.1.1",
"expo-gl-cpp": "^9.1.2",
"expo-image-picker": "^9.1.1",
"expo-permissions": "^9.3.0",
"expo-status-bar": "~1.0.2",
"jpeg-js": "^0.4.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz",
"react-native-fs": "^2.16.6",
"react-native-web": "~0.13.12"
},
```
Please help me how to resolve this issue.
|
1.0
|
Unable to resolve "@react-native-community/async-storage" from "node_modules\@tensorflow\tfjs-react-native\dist\async_storage_io.js" -
**System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10
- Mobile device : Honor7x
- TensorFlow.js installed from (npm or script link): npm
- TensorFlow.js version: 2.7.0
Description:
Importing fetch from @tensorflow/tfjs-react-native resulting in above issue.
I am getting this issue when I import only. I did follow the exact steps as in docs.
Please see the screenshot below:

Package Dependencies :
```javascript
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@tensorflow-models/mobilenet": "^2.0.4",
"@tensorflow/tfjs": "^2.7.0",
"@tensorflow/tfjs-react-native": "^0.5.0",
"expo": "~39.0.2",
"expo-camera": "^9.0.0",
"expo-constants": "^9.2.0",
"expo-gl": "^9.1.1",
"expo-gl-cpp": "^9.1.2",
"expo-image-picker": "^9.1.1",
"expo-permissions": "^9.3.0",
"expo-status-bar": "~1.0.2",
"jpeg-js": "^0.4.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz",
"react-native-fs": "^2.16.6",
"react-native-web": "~0.13.12"
},
```
Please help me how to resolve this issue.
|
build
|
unable to resolve react native community async storage from node modules tensorflow tfjs react native dist async storage io js system information os platform and distribution e g linux ubuntu windows mobile device tensorflow js installed from npm or script link npm tensorflow js version description importing fetch from tensorflow tfjs react native resulting in above issue i am getting this issue when i import only i did follow the exact steps as in docs please see the screenshot below package dependencies javascript dependencies react native async storage async storage tensorflow models mobilenet tensorflow tfjs tensorflow tfjs react native expo expo camera expo constants expo gl expo gl cpp expo image picker expo permissions expo status bar jpeg js react react dom react native react native fs react native web please help me how to resolve this issue
| 1
|
55,694
| 13,651,260,892
|
IssuesEvent
|
2020-09-26 23:59:15
|
stan-dev/cmdstanpy
|
https://api.github.com/repos/stan-dev/cmdstanpy
|
closed
|
package release tasks
|
build
|
#### Summary:
automate and document procedure for creating distro package and docset for new releases of CmdStanPy.
#### Description:
It would be nice to have a release script for CmdStanPy that would, given a release tag:
- handle GitHub tags
- generate html docs for version and update `docs` dir contents for github pages
- update the file cmdstanpy/_version.py setting __version__ to the tag
- upload to PyPi
- update readthedocs default version so that readthedocs shows latest version number
- generate html docs for version and update `docs` dir contents for github pages
generate html docs for develop branch to republish github pages
#### Additional Information:
discussion leading up to this was in issue https://github.com/stan-dev/cmdstanpy/issues/225#issuecomment-696192382 - moving to its own issue
#### Current Version:
|
1.0
|
package release tasks - #### Summary:
automate and document procedure for creating distro package and docset for new releases of CmdStanPy.
#### Description:
It would be nice to have a release script for CmdStanPy that would, given a release tag:
- handle GitHub tags
- generate html docs for version and update `docs` dir contents for github pages
- update the file cmdstanpy/_version.py setting __version__ to the tag
- upload to PyPi
- update readthedocs default version so that readthedocs shows latest version number
- generate html docs for version and update `docs` dir contents for github pages
generate html docs for develop branch to republish github pages
#### Additional Information:
discussion leading up to this was in issue https://github.com/stan-dev/cmdstanpy/issues/225#issuecomment-696192382 - moving to its own issue
#### Current Version:
|
build
|
package release tasks summary automate and document procedure for creating distro package and docset for new releases of cmdstanpy description it would be nice to have a release script for cmdstanpy that would given a release tag handle github tags generate html docs for version and update docs dir contents for github pages update the file cmdstanpy version py setting version to the tag upload to pypi update readthedocs default version so that readthedocs shows latest version number generate html docs for version and update docs dir contents for github pages generate html docs for develop branch to republish github pages additional information discussion leading up to this was in issue moving to its own issue current version
| 1
|
74,868
| 20,386,283,735
|
IssuesEvent
|
2022-02-22 07:20:21
|
tensorflow/tensorflow
|
https://api.github.com/repos/tensorflow/tensorflow
|
closed
|
Target //tensorflow/tools/pip_package:build_pip_package failed to build
|
stat:awaiting response type:build/install stalled comp:tpus subtype: ubuntu/linux
|
<em>Please make sure that this is a build/installation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em>
**System information**
Linux Ubuntu 16.04
CPU:5220R,memory 128G,disk:14T
use these command:
docker pull tensorflow/tensorflow:devel
docker run -it -w /tensorflow_src -v $PWD:/mnt -e HOST_PERMS="$(id -u):$(id -g)" \
tensorflow/tensorflow:devel bash
git pull
use proxy and:
pip install --upgrade pip setuptools
pip install --upgrade pip
./configure is N with all question,and build with this command:
bazel build -c opt --copt=-march=native --copt=-mfpmath=both --config=v2 -k //tensorflow/tools/pip_package:build_pip_package --verbose_failures
the error info is:
ERROR: /tensorflow_src/tensorflow/stream_executor/tpu/BUILD:43:11: Compiling tensorflow/stream_executor/tpu/c_api_conversions.cc failed: (Exit 1): gcc failed: error executing command
(cd /root/.cache/bazel/_bazel_root/43801f1e35f242fb634ebbc6079cf6c5/execroot/org_tensorflow && \
exec env - \
PATH=/root/.cache/bazelisk/downloads/bazelbuild/bazel-5.0.0-linux-x86_64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF2_BEHAVIOR=1 \
/usr/bin/gcc -U_FORTIFY_SOURCE -fstack-protector -Wall -Wunused-but-set-parameter -Wno-free-nonheap-object -fno-omit-frame-pointer -g0 -O2 '-D_FORTIFY_SOURCE=1' -DNDEBUG -ffunction-sections -fdata-sections '-std=c++11' -MD -MF bazel-out/k8-opt/bin/tensorflow/stream_executor/tpu/_objs/c_api_conversions/c_api_conversions.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/stream_executor/tpu/_objs/c_api_conversions/c_api_conversions.pic.o' -fPIC -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DLLVM_ON_UNIX=1' '-DHAVE_BACKTRACE=1' '-DBACKTRACE_HEADER=<execinfo.h>' '-DLTDL_SHLIB_EXT=".so"' '-DLLVM_PLUGIN_EXT=".so"' '-DLLVM_ENABLE_THREADS=1' '-DHAVE_DEREGISTER_FRAME=1' '-DHAVE_LIBPTHREAD=1' '-DHAVE_PTHREAD_GETNAME_NP=1' '-DHAVE_PTHREAD_GETSPECIFIC=1' '-DHAVE_PTHREAD_H=1' '-DHAVE_PTHREAD_SETNAME_NP=1' '-DHAVE_REGISTER_FRAME=1' '-DHAVE_SETENV_R=1' '-DHAVE_STRERROR_R=1' '-DHAVE_SYSEXITS_H=1' '-DHAVE_UNISTD_H=1' -D_GNU_SOURCE '-DHAVE_LINK_H=1' '-DHAVE_LSEEK64=1' '-DHAVE_MALLINFO=1' '-DHAVE_SBRK=1' '-DHAVE_STRUCT_STAT_ST_MTIM_TV_NSEC=1' '-DLLVM_NATIVE_ARCH="X86"' '-DLLVM_NATIVE_ASMPARSER=LLVMInitializeX86AsmParser' '-DLLVM_NATIVE_ASMPRINTER=LLVMInitializeX86AsmPrinter' '-DLLVM_NATIVE_DISASSEMBLER=LLVMInitializeX86Disassembler' '-DLLVM_NATIVE_TARGET=LLVMInitializeX86Target' '-DLLVM_NATIVE_TARGETINFO=LLVMInitializeX86TargetInfo' '-DLLVM_NATIVE_TARGETMC=LLVMInitializeX86TargetMC' '-DLLVM_NATIVE_TARGETMCA=LLVMInitializeX86TargetMCA' '-DLLVM_HOST_TRIPLE="x86_64-unknown-linux-gnu"' '-DLLVM_DEFAULT_TARGET_TRIPLE="x86_64-unknown-linux-gnu"' -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -iquote. -iquotebazel-out/k8-opt/bin -iquoteexternal/com_google_absl -iquotebazel-out/k8-opt/bin/external/com_google_absl -iquoteexternal/nsync -iquotebazel-out/k8-opt/bin/external/nsync -iquoteexternal/eigen_archive -iquotebazel-out/k8-opt/bin/external/eigen_archive -iquoteexternal/gif -iquotebazel-out/k8-opt/bin/external/gif -iquoteexternal/libjpeg_turbo -iquotebazel-out/k8-opt/bin/external/libjpeg_turbo -iquoteexternal/com_google_protobuf -iquotebazel-out/k8-opt/bin/external/com_google_protobuf -iquoteexternal/com_googlesource_code_re2 -iquotebazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquoteexternal/farmhash_archive -iquotebazel-out/k8-opt/bin/external/farmhash_archive -iquoteexternal/fft2d -iquotebazel-out/k8-opt/bin/external/fft2d -iquoteexternal/highwayhash -iquotebazel-out/k8-opt/bin/external/highwayhash -iquoteexternal/zlib -iquotebazel-out/k8-opt/bin/external/zlib -iquoteexternal/double_conversion -iquotebazel-out/k8-opt/bin/external/double_conversion -iquoteexternal/local_config_cuda -iquotebazel-out/k8-opt/bin/external/local_config_cuda -iquoteexternal/local_config_rocm -iquotebazel-out/k8-opt/bin/external/local_config_rocm -iquoteexternal/local_config_tensorrt -iquotebazel-out/k8-opt/bin/external/local_config_tensorrt -iquoteexternal/llvm-project -iquotebazel-out/k8-opt/bin/external/llvm-project -iquoteexternal/llvm_terminfo -iquotebazel-out/k8-opt/bin/external/llvm_terminfo -iquoteexternal/llvm_zlib -iquotebazel-out/k8-opt/bin/external/llvm_zlib -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_tensorrt/_virtual_includes/tensorrt_headers -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinAttributeInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinAttributesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinDialectIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinLocationAttributesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinTypeInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinTypesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/CallOpInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/CastOpInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/FunctionInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/InferTypeOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/OpAsmInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/RegionKindInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SideEffectInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SubElementInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SymbolInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TensorEncodingIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/AffineMemoryOpInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/AffineOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ArithmeticBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ArithmeticCanonicalizationIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ArithmeticOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/VectorInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ControlFlowInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LoopLikeInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/CopyOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MemRefBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MemRefOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ViewLikeInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ComplexBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ComplexOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TensorOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TilingInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/AllocationOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BufferizableOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BufferizationBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BufferizationOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/StandardOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LinalgInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LinalgStructuredOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LinalgOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MathBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MathOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ParserTokenKinds -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SCFIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SCFPassIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/PDLOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/PDLTypesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/PDLInterpOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ConversionPassIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TransformsPassIncGen -isystem external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem third_party/eigen3/mkl_include -isystem bazel-out/k8-opt/bin/third_party/eigen3/mkl_include -isystem external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/gif -isystem bazel-out/k8-opt/bin/external/gif -isystem external/com_google_protobuf/src -isystem bazel-out/k8-opt/bin/external/com_google_protobuf/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib -isystem bazel-out/k8-opt/bin/external/zlib -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/local_config_rocm/rocm -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm -isystem external/local_config_rocm/rocm/rocm/include -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm/rocm/include -isystem external/local_config_rocm/rocm/rocm/include/rocrand -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm/rocm/include/rocrand -isystem external/local_config_rocm/rocm/rocm/include/roctracer -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm/rocm/include/roctracer -isystem external/llvm-project/llvm/include -isystem bazel-out/k8-opt/bin/external/llvm-project/llvm/include -isystem external/llvm-project/mlir/include -isystem bazel-out/k8-opt/bin/external/llvm-project/mlir/include -w -DAUTOLOAD_DYNAMIC_KERNELS '-march=native' '-mfpmath=both' '-std=c++14' -fno-canonical-system-headers -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -c tensorflow/stream_executor/tpu/c_api_conversions.cc -o bazel-out/k8-opt/bin/tensorflow/stream_executor/tpu/_objs/c_api_conversions/c_api_conversions.pic.o)
# Configuration: cb47f8d13e3125d32e10218a9865bded6972cd74ed0740dd8e7d96b1926d8feb
# Execution platform: @local_execution_config_platform//:platform
tensorflow/stream_executor/tpu/c_api_conversions.cc: In instantiation of 'void ApiConverter::CreateVectorBase(absl::lts_20211102::Span<T>, DstList*) [with Src = const float; Dst = float; DstList = FloatList]':
tensorflow/stream_executor/tpu/c_api_conversions.cc:175:66: required from here
tensorflow/stream_executor/tpu/c_api_conversions.cc:164:15: error: cannot convert 'float*' to 'float_t*' {aka 'long double*'} in assignment
164 | dst->heap = new Dst[dst->size];
| ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
tensorflow/stream_executor/tpu/c_api_conversions.cc: In instantiation of 'absl::lts_20211102::Span<const T> ApiConverter::MakeSpanBase(const SrcList&) [with Dst = float; Src = float; SrcList = FloatList]':
tensorflow/stream_executor/tpu/c_api_conversions.cc:214:56: required from here
tensorflow/stream_executor/tpu/c_api_conversions.cc:203:58: error: cannot convert 'const float_t*' {aka 'const long double*'} to 'const float*' in initialization
203 | const Src* src = src_list.size > TPU_C_API_MAX_INLINED ? src_list.heap
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
| |
| const float_t* {aka const long double*}
204 | : &src_list.inlined[0];
| ~~~~~~~~~~~~~~~~~~~~
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 5.973s, Critical Path: 4.90s
INFO: 2 processes: 2 internal.
FAILED: Build did NOT complete successfully
thanks
|
1.0
|
Target //tensorflow/tools/pip_package:build_pip_package failed to build - <em>Please make sure that this is a build/installation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em>
**System information**
Linux Ubuntu 16.04
CPU:5220R,memory 128G,disk:14T
use these command:
docker pull tensorflow/tensorflow:devel
docker run -it -w /tensorflow_src -v $PWD:/mnt -e HOST_PERMS="$(id -u):$(id -g)" \
tensorflow/tensorflow:devel bash
git pull
use proxy and:
pip install --upgrade pip setuptools
pip install --upgrade pip
./configure is N with all question,and build with this command:
bazel build -c opt --copt=-march=native --copt=-mfpmath=both --config=v2 -k //tensorflow/tools/pip_package:build_pip_package --verbose_failures
the error info is:
ERROR: /tensorflow_src/tensorflow/stream_executor/tpu/BUILD:43:11: Compiling tensorflow/stream_executor/tpu/c_api_conversions.cc failed: (Exit 1): gcc failed: error executing command
(cd /root/.cache/bazel/_bazel_root/43801f1e35f242fb634ebbc6079cf6c5/execroot/org_tensorflow && \
exec env - \
PATH=/root/.cache/bazelisk/downloads/bazelbuild/bazel-5.0.0-linux-x86_64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
PWD=/proc/self/cwd \
PYTHON_BIN_PATH=/usr/bin/python3 \
PYTHON_LIB_PATH=/usr/lib/python3/dist-packages \
TF2_BEHAVIOR=1 \
/usr/bin/gcc -U_FORTIFY_SOURCE -fstack-protector -Wall -Wunused-but-set-parameter -Wno-free-nonheap-object -fno-omit-frame-pointer -g0 -O2 '-D_FORTIFY_SOURCE=1' -DNDEBUG -ffunction-sections -fdata-sections '-std=c++11' -MD -MF bazel-out/k8-opt/bin/tensorflow/stream_executor/tpu/_objs/c_api_conversions/c_api_conversions.pic.d '-frandom-seed=bazel-out/k8-opt/bin/tensorflow/stream_executor/tpu/_objs/c_api_conversions/c_api_conversions.pic.o' -fPIC -DEIGEN_MPL2_ONLY '-DEIGEN_MAX_ALIGN_BYTES=64' '-DLLVM_ON_UNIX=1' '-DHAVE_BACKTRACE=1' '-DBACKTRACE_HEADER=<execinfo.h>' '-DLTDL_SHLIB_EXT=".so"' '-DLLVM_PLUGIN_EXT=".so"' '-DLLVM_ENABLE_THREADS=1' '-DHAVE_DEREGISTER_FRAME=1' '-DHAVE_LIBPTHREAD=1' '-DHAVE_PTHREAD_GETNAME_NP=1' '-DHAVE_PTHREAD_GETSPECIFIC=1' '-DHAVE_PTHREAD_H=1' '-DHAVE_PTHREAD_SETNAME_NP=1' '-DHAVE_REGISTER_FRAME=1' '-DHAVE_SETENV_R=1' '-DHAVE_STRERROR_R=1' '-DHAVE_SYSEXITS_H=1' '-DHAVE_UNISTD_H=1' -D_GNU_SOURCE '-DHAVE_LINK_H=1' '-DHAVE_LSEEK64=1' '-DHAVE_MALLINFO=1' '-DHAVE_SBRK=1' '-DHAVE_STRUCT_STAT_ST_MTIM_TV_NSEC=1' '-DLLVM_NATIVE_ARCH="X86"' '-DLLVM_NATIVE_ASMPARSER=LLVMInitializeX86AsmParser' '-DLLVM_NATIVE_ASMPRINTER=LLVMInitializeX86AsmPrinter' '-DLLVM_NATIVE_DISASSEMBLER=LLVMInitializeX86Disassembler' '-DLLVM_NATIVE_TARGET=LLVMInitializeX86Target' '-DLLVM_NATIVE_TARGETINFO=LLVMInitializeX86TargetInfo' '-DLLVM_NATIVE_TARGETMC=LLVMInitializeX86TargetMC' '-DLLVM_NATIVE_TARGETMCA=LLVMInitializeX86TargetMCA' '-DLLVM_HOST_TRIPLE="x86_64-unknown-linux-gnu"' '-DLLVM_DEFAULT_TARGET_TRIPLE="x86_64-unknown-linux-gnu"' -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -iquote. -iquotebazel-out/k8-opt/bin -iquoteexternal/com_google_absl -iquotebazel-out/k8-opt/bin/external/com_google_absl -iquoteexternal/nsync -iquotebazel-out/k8-opt/bin/external/nsync -iquoteexternal/eigen_archive -iquotebazel-out/k8-opt/bin/external/eigen_archive -iquoteexternal/gif -iquotebazel-out/k8-opt/bin/external/gif -iquoteexternal/libjpeg_turbo -iquotebazel-out/k8-opt/bin/external/libjpeg_turbo -iquoteexternal/com_google_protobuf -iquotebazel-out/k8-opt/bin/external/com_google_protobuf -iquoteexternal/com_googlesource_code_re2 -iquotebazel-out/k8-opt/bin/external/com_googlesource_code_re2 -iquoteexternal/farmhash_archive -iquotebazel-out/k8-opt/bin/external/farmhash_archive -iquoteexternal/fft2d -iquotebazel-out/k8-opt/bin/external/fft2d -iquoteexternal/highwayhash -iquotebazel-out/k8-opt/bin/external/highwayhash -iquoteexternal/zlib -iquotebazel-out/k8-opt/bin/external/zlib -iquoteexternal/double_conversion -iquotebazel-out/k8-opt/bin/external/double_conversion -iquoteexternal/local_config_cuda -iquotebazel-out/k8-opt/bin/external/local_config_cuda -iquoteexternal/local_config_rocm -iquotebazel-out/k8-opt/bin/external/local_config_rocm -iquoteexternal/local_config_tensorrt -iquotebazel-out/k8-opt/bin/external/local_config_tensorrt -iquoteexternal/llvm-project -iquotebazel-out/k8-opt/bin/external/llvm-project -iquoteexternal/llvm_terminfo -iquotebazel-out/k8-opt/bin/external/llvm_terminfo -iquoteexternal/llvm_zlib -iquotebazel-out/k8-opt/bin/external/llvm_zlib -Ibazel-out/k8-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual -Ibazel-out/k8-opt/bin/external/local_config_tensorrt/_virtual_includes/tensorrt_headers -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinAttributeInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinAttributesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinDialectIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinLocationAttributesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinTypeInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BuiltinTypesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/CallOpInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/CastOpInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/FunctionInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/InferTypeOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/OpAsmInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/RegionKindInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SideEffectInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SubElementInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SymbolInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TensorEncodingIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/AffineMemoryOpInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/AffineOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ArithmeticBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ArithmeticCanonicalizationIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ArithmeticOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/VectorInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ControlFlowInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LoopLikeInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/CopyOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MemRefBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MemRefOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ViewLikeInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ComplexBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ComplexOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TensorOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TilingInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/AllocationOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BufferizableOpInterfaceIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BufferizationBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/BufferizationOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/StandardOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LinalgInterfacesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LinalgStructuredOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/LinalgOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MathBaseIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/MathOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ParserTokenKinds -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SCFIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/SCFPassIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/PDLOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/PDLTypesIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/PDLInterpOpsIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/ConversionPassIncGen -Ibazel-out/k8-opt/bin/external/llvm-project/mlir/_virtual_includes/TransformsPassIncGen -isystem external/nsync/public -isystem bazel-out/k8-opt/bin/external/nsync/public -isystem third_party/eigen3/mkl_include -isystem bazel-out/k8-opt/bin/third_party/eigen3/mkl_include -isystem external/eigen_archive -isystem bazel-out/k8-opt/bin/external/eigen_archive -isystem external/gif -isystem bazel-out/k8-opt/bin/external/gif -isystem external/com_google_protobuf/src -isystem bazel-out/k8-opt/bin/external/com_google_protobuf/src -isystem external/farmhash_archive/src -isystem bazel-out/k8-opt/bin/external/farmhash_archive/src -isystem external/zlib -isystem bazel-out/k8-opt/bin/external/zlib -isystem external/local_config_cuda/cuda -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda -isystem external/local_config_cuda/cuda/cuda/include -isystem bazel-out/k8-opt/bin/external/local_config_cuda/cuda/cuda/include -isystem external/local_config_rocm/rocm -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm -isystem external/local_config_rocm/rocm/rocm/include -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm/rocm/include -isystem external/local_config_rocm/rocm/rocm/include/rocrand -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm/rocm/include/rocrand -isystem external/local_config_rocm/rocm/rocm/include/roctracer -isystem bazel-out/k8-opt/bin/external/local_config_rocm/rocm/rocm/include/roctracer -isystem external/llvm-project/llvm/include -isystem bazel-out/k8-opt/bin/external/llvm-project/llvm/include -isystem external/llvm-project/mlir/include -isystem bazel-out/k8-opt/bin/external/llvm-project/mlir/include -w -DAUTOLOAD_DYNAMIC_KERNELS '-march=native' '-mfpmath=both' '-std=c++14' -fno-canonical-system-headers -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -c tensorflow/stream_executor/tpu/c_api_conversions.cc -o bazel-out/k8-opt/bin/tensorflow/stream_executor/tpu/_objs/c_api_conversions/c_api_conversions.pic.o)
# Configuration: cb47f8d13e3125d32e10218a9865bded6972cd74ed0740dd8e7d96b1926d8feb
# Execution platform: @local_execution_config_platform//:platform
tensorflow/stream_executor/tpu/c_api_conversions.cc: In instantiation of 'void ApiConverter::CreateVectorBase(absl::lts_20211102::Span<T>, DstList*) [with Src = const float; Dst = float; DstList = FloatList]':
tensorflow/stream_executor/tpu/c_api_conversions.cc:175:66: required from here
tensorflow/stream_executor/tpu/c_api_conversions.cc:164:15: error: cannot convert 'float*' to 'float_t*' {aka 'long double*'} in assignment
164 | dst->heap = new Dst[dst->size];
| ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
tensorflow/stream_executor/tpu/c_api_conversions.cc: In instantiation of 'absl::lts_20211102::Span<const T> ApiConverter::MakeSpanBase(const SrcList&) [with Dst = float; Src = float; SrcList = FloatList]':
tensorflow/stream_executor/tpu/c_api_conversions.cc:214:56: required from here
tensorflow/stream_executor/tpu/c_api_conversions.cc:203:58: error: cannot convert 'const float_t*' {aka 'const long double*'} to 'const float*' in initialization
203 | const Src* src = src_list.size > TPU_C_API_MAX_INLINED ? src_list.heap
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
| |
| const float_t* {aka const long double*}
204 | : &src_list.inlined[0];
| ~~~~~~~~~~~~~~~~~~~~
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 5.973s, Critical Path: 4.90s
INFO: 2 processes: 2 internal.
FAILED: Build did NOT complete successfully
thanks
|
build
|
target tensorflow tools pip package build pip package failed to build please make sure that this is a build installation issue as per our we only address code doc bugs performance issues feature requests and build installation issues on github tag build template system information linux ubuntu cpu memory disk use these command docker pull tensorflow tensorflow devel docker run it w tensorflow src v pwd mnt e host perms id u id g tensorflow tensorflow devel bash git pull use proxy and pip install upgrade pip setuptools pip install upgrade pip configure is n with all question and build with this command bazel build c opt copt march native copt mfpmath both config k tensorflow tools pip package build pip package verbose failures the error info is error tensorflow src tensorflow stream executor tpu build compiling tensorflow stream executor tpu c api conversions cc failed exit gcc failed error executing command cd root cache bazel bazel root execroot org tensorflow exec env path root cache bazelisk downloads bazelbuild bazel linux bin usr local sbin usr local bin usr sbin usr bin sbin bin pwd proc self cwd python bin path usr bin python lib path usr lib dist packages behavior usr bin gcc u fortify source fstack protector wall wunused but set parameter wno free nonheap object fno omit frame pointer d fortify source dndebug ffunction sections fdata sections std c md mf bazel out opt bin tensorflow stream executor tpu objs c api conversions c api conversions pic d frandom seed bazel out opt bin tensorflow stream executor tpu objs c api conversions c api conversions pic o fpic deigen only deigen max align bytes dllvm on unix dhave backtrace dbacktrace header dltdl shlib ext so dllvm plugin ext so dllvm enable threads dhave deregister frame dhave libpthread dhave pthread getname np dhave pthread getspecific dhave pthread h dhave pthread setname np dhave register frame dhave setenv r dhave strerror r dhave sysexits h dhave unistd h d gnu source dhave link h dhave dhave mallinfo dhave sbrk dhave struct stat st mtim tv nsec dllvm native arch dllvm native asmparser dllvm native asmprinter dllvm native disassembler dllvm native target dllvm native targetinfo dllvm native targetmc dllvm native targetmca dllvm host triple unknown linux gnu dllvm default target triple unknown linux gnu d stdc limit macros d stdc constant macros d stdc format macros iquote iquotebazel out opt bin iquoteexternal com google absl iquotebazel out opt bin external com google absl iquoteexternal nsync iquotebazel out opt bin external nsync iquoteexternal eigen archive iquotebazel out opt bin external eigen archive iquoteexternal gif iquotebazel out opt bin external gif iquoteexternal libjpeg turbo iquotebazel out opt bin external libjpeg turbo iquoteexternal com google protobuf iquotebazel out opt bin external com google protobuf iquoteexternal com googlesource code iquotebazel out opt bin external com googlesource code iquoteexternal farmhash archive iquotebazel out opt bin external farmhash archive iquoteexternal iquotebazel out opt bin external iquoteexternal highwayhash iquotebazel out opt bin external highwayhash iquoteexternal zlib iquotebazel out opt bin external zlib iquoteexternal double conversion iquotebazel out opt bin external double conversion iquoteexternal local config cuda iquotebazel out opt bin external local config cuda iquoteexternal local config rocm iquotebazel out opt bin external local config rocm iquoteexternal local config tensorrt iquotebazel out opt bin external local config tensorrt iquoteexternal llvm project iquotebazel out opt bin external llvm project iquoteexternal llvm terminfo iquotebazel out opt bin external llvm terminfo iquoteexternal llvm zlib iquotebazel out opt bin external llvm zlib ibazel out opt bin external local config cuda cuda virtual includes cuda headers virtual ibazel out opt bin external local config tensorrt virtual includes tensorrt headers ibazel out opt bin external llvm project mlir virtual includes builtinattributeinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes builtinattributesincgen ibazel out opt bin external llvm project mlir virtual includes builtindialectincgen ibazel out opt bin external llvm project mlir virtual includes builtinlocationattributesincgen ibazel out opt bin external llvm project mlir virtual includes builtinopsincgen ibazel out opt bin external llvm project mlir virtual includes builtintypeinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes builtintypesincgen ibazel out opt bin external llvm project mlir virtual includes callopinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes castopinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes functioninterfacesincgen ibazel out opt bin external llvm project mlir virtual includes infertypeopinterfaceincgen ibazel out opt bin external llvm project mlir virtual includes opasminterfaceincgen ibazel out opt bin external llvm project mlir virtual includes regionkindinterfaceincgen ibazel out opt bin external llvm project mlir virtual includes sideeffectinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes subelementinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes symbolinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes tensorencodingincgen ibazel out opt bin external llvm project mlir virtual includes affinememoryopinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes affineopsincgen ibazel out opt bin external llvm project mlir virtual includes arithmeticbaseincgen ibazel out opt bin external llvm project mlir virtual includes arithmeticcanonicalizationincgen ibazel out opt bin external llvm project mlir virtual includes arithmeticopsincgen ibazel out opt bin external llvm project mlir virtual includes vectorinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes controlflowinterfacesincgen ibazel out opt bin external llvm project mlir virtual includes looplikeinterfaceincgen ibazel out opt bin external llvm project mlir virtual includes copyopinterfaceincgen ibazel out opt bin external llvm project mlir virtual includes memrefbaseincgen ibazel out opt bin external llvm project mlir virtual includes memrefopsincgen ibazel out opt bin external llvm project mlir virtual includes viewlikeinterfaceincgen ibazel out opt bin external llvm project mlir virtual includes complexbaseincgen ibazel out opt bin external llvm project mlir virtual includes complexopsincgen ibazel out opt bin external llvm project mlir virtual includes tensoropsincgen ibazel out opt bin external llvm project mlir virtual includes tilinginterfaceincgen ibazel out opt bin external llvm project mlir virtual includes allocationopinterfaceincgen ibazel out opt bin external llvm project mlir virtual includes bufferizableopinterfaceincgen ibazel out opt bin external llvm project mlir virtual includes bufferizationbaseincgen ibazel out opt bin external llvm project mlir virtual includes bufferizationopsincgen ibazel out opt bin external llvm project mlir virtual includes standardopsincgen ibazel out opt bin external llvm project mlir virtual includes linalginterfacesincgen ibazel out opt bin external llvm project mlir virtual includes linalgstructuredopsincgen ibazel out opt bin external llvm project mlir virtual includes linalgopsincgen ibazel out opt bin external llvm project mlir virtual includes mathbaseincgen ibazel out opt bin external llvm project mlir virtual includes mathopsincgen ibazel out opt bin external llvm project mlir virtual includes parsertokenkinds ibazel out opt bin external llvm project mlir virtual includes scfincgen ibazel out opt bin external llvm project mlir virtual includes scfpassincgen ibazel out opt bin external llvm project mlir virtual includes pdlopsincgen ibazel out opt bin external llvm project mlir virtual includes pdltypesincgen ibazel out opt bin external llvm project mlir virtual includes pdlinterpopsincgen ibazel out opt bin external llvm project mlir virtual includes conversionpassincgen ibazel out opt bin external llvm project mlir virtual includes transformspassincgen isystem external nsync public isystem bazel out opt bin external nsync public isystem third party mkl include isystem bazel out opt bin third party mkl include isystem external eigen archive isystem bazel out opt bin external eigen archive isystem external gif isystem bazel out opt bin external gif isystem external com google protobuf src isystem bazel out opt bin external com google protobuf src isystem external farmhash archive src isystem bazel out opt bin external farmhash archive src isystem external zlib isystem bazel out opt bin external zlib isystem external local config cuda cuda isystem bazel out opt bin external local config cuda cuda isystem external local config cuda cuda cuda include isystem bazel out opt bin external local config cuda cuda cuda include isystem external local config rocm rocm isystem bazel out opt bin external local config rocm rocm isystem external local config rocm rocm rocm include isystem bazel out opt bin external local config rocm rocm rocm include isystem external local config rocm rocm rocm include rocrand isystem bazel out opt bin external local config rocm rocm rocm include rocrand isystem external local config rocm rocm rocm include roctracer isystem bazel out opt bin external local config rocm rocm rocm include roctracer isystem external llvm project llvm include isystem bazel out opt bin external llvm project llvm include isystem external llvm project mlir include isystem bazel out opt bin external llvm project mlir include w dautoload dynamic kernels march native mfpmath both std c fno canonical system headers wno builtin macro redefined d date redacted d timestamp redacted d time redacted c tensorflow stream executor tpu c api conversions cc o bazel out opt bin tensorflow stream executor tpu objs c api conversions c api conversions pic o configuration execution platform local execution config platform platform tensorflow stream executor tpu c api conversions cc in instantiation of void apiconverter createvectorbase absl lts span dstlist tensorflow stream executor tpu c api conversions cc required from here tensorflow stream executor tpu c api conversions cc error cannot convert float to float t aka long double in assignment dst heap new dst tensorflow stream executor tpu c api conversions cc in instantiation of absl lts span apiconverter makespanbase const srclist tensorflow stream executor tpu c api conversions cc required from here tensorflow stream executor tpu c api conversions cc error cannot convert const float t aka const long double to const float in initialization const src src src list size tpu c api max inlined src list heap const float t aka const long double src list inlined target tensorflow tools pip package build pip package failed to build info elapsed time critical path info processes internal failed build did not complete successfully thanks
| 1
|
83,994
| 24,192,979,080
|
IssuesEvent
|
2022-09-23 19:41:31
|
angular/angular-cli
|
https://api.github.com/repos/angular/angular-cli
|
closed
|
bundleDependencies option does not support false in angular 13/14.
|
comp: devkit/build-angular devkit/build-angular: server
|
### Command
build
### Is this a regression?
- [X] Yes, this behavior used to work in the previous version
### The previous version in which this bug was not present was
angular 12
### Description
Since angular 13 shipped with ESM package format only, if we build the project with bundleDependencies=false, it will report an error like this:
> require() of ES Module /Users/kame/code/web/node_modules/@angular/core/fesm2015/core.mjs not supported.
I know we can set bundleDependencies=true to make the build work. But I found ssr render performance with all dependencies bundled is worse than unbundled in previous version(angular 12, not sure why).
### Minimal Reproduction
Here is the minimal repo to reproduce the issue: https://github.com/ganatan/angular-ssr
Steps to reproduce:
1. Clone the repo
2. Change "bundleDependencies" option to false for server build in angular.json file
3. Run command `npm run build:ssr`
4. Run `npm run serve:ssr`
### Exception or Error
```text
node:internal/modules/cjs/loader:979
throw new ERR_REQUIRE_ESM(filename, true);
^
Error [ERR_REQUIRE_ESM]: require() of ES Module /Users/kame/code/github/angular-ssr/node_modules/@angular/common/fesm2015/common.mjs not supported.
Instead change the require of /Users/kame.chen/code/github/angular-ssr/node_modules/@angular/common/fesm2015/common.mjs to a dynamic import() which is available in all CommonJS modules.
at Object.8260 (/Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:517:18)
at __webpack_require__ (/Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:671:41)
at /Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:814:73
at /Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:870:3
at Object.<anonymous> (/Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:875:12) {
code: 'ERR_REQUIRE_ESM'
```
### Your Environment
```text
Angular CLI: 14.1.3
Node: 16.15.0
Package Manager: npm 8.5.5
OS: darwin x64
Angular: 14.1.3
... animations, cli, common, compiler, compiler-cli, core, forms
... platform-browser, platform-browser-dynamic, platform-server
... router, service-worker
Package Version
---------------------------------------------------------
@angular-devkit/architect 0.1401.3
@angular-devkit/build-angular 14.1.3
@angular-devkit/core 14.1.3
@angular-devkit/schematics 14.1.3
@nguniversal/builders 14.1.0
@nguniversal/express-engine 14.1.0
@schematics/angular 14.1.3
rxjs 7.5.6
typescript 4.7.4
```
### Anything else relevant?
_No response_
|
2.0
|
bundleDependencies option does not support false in angular 13/14. - ### Command
build
### Is this a regression?
- [X] Yes, this behavior used to work in the previous version
### The previous version in which this bug was not present was
angular 12
### Description
Since angular 13 shipped with ESM package format only, if we build the project with bundleDependencies=false, it will report an error like this:
> require() of ES Module /Users/kame/code/web/node_modules/@angular/core/fesm2015/core.mjs not supported.
I know we can set bundleDependencies=true to make the build work. But I found ssr render performance with all dependencies bundled is worse than unbundled in previous version(angular 12, not sure why).
### Minimal Reproduction
Here is the minimal repo to reproduce the issue: https://github.com/ganatan/angular-ssr
Steps to reproduce:
1. Clone the repo
2. Change "bundleDependencies" option to false for server build in angular.json file
3. Run command `npm run build:ssr`
4. Run `npm run serve:ssr`
### Exception or Error
```text
node:internal/modules/cjs/loader:979
throw new ERR_REQUIRE_ESM(filename, true);
^
Error [ERR_REQUIRE_ESM]: require() of ES Module /Users/kame/code/github/angular-ssr/node_modules/@angular/common/fesm2015/common.mjs not supported.
Instead change the require of /Users/kame.chen/code/github/angular-ssr/node_modules/@angular/common/fesm2015/common.mjs to a dynamic import() which is available in all CommonJS modules.
at Object.8260 (/Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:517:18)
at __webpack_require__ (/Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:671:41)
at /Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:814:73
at /Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:870:3
at Object.<anonymous> (/Users/kame.chen/code/github/angular-ssr/dist/angular-starter/server/main.js:875:12) {
code: 'ERR_REQUIRE_ESM'
```
### Your Environment
```text
Angular CLI: 14.1.3
Node: 16.15.0
Package Manager: npm 8.5.5
OS: darwin x64
Angular: 14.1.3
... animations, cli, common, compiler, compiler-cli, core, forms
... platform-browser, platform-browser-dynamic, platform-server
... router, service-worker
Package Version
---------------------------------------------------------
@angular-devkit/architect 0.1401.3
@angular-devkit/build-angular 14.1.3
@angular-devkit/core 14.1.3
@angular-devkit/schematics 14.1.3
@nguniversal/builders 14.1.0
@nguniversal/express-engine 14.1.0
@schematics/angular 14.1.3
rxjs 7.5.6
typescript 4.7.4
```
### Anything else relevant?
_No response_
|
build
|
bundledependencies option does not support false in angular command build is this a regression yes this behavior used to work in the previous version the previous version in which this bug was not present was angular description since angular shipped with esm package format only if we build the project with bundledependencies false it will report an error like this require of es module users kame code web node modules angular core core mjs not supported i know we can set bundledependencies true to make the build work but i found ssr render performance with all dependencies bundled is worse than unbundled in previous version angular not sure why minimal reproduction here is the minimal repo to reproduce the issue steps to reproduce clone the repo change bundledependencies option to false for server build in angular json file run command npm run build ssr run npm run serve ssr exception or error text node internal modules cjs loader throw new err require esm filename true error require of es module users kame code github angular ssr node modules angular common common mjs not supported instead change the require of users kame chen code github angular ssr node modules angular common common mjs to a dynamic import which is available in all commonjs modules at object users kame chen code github angular ssr dist angular starter server main js at webpack require users kame chen code github angular ssr dist angular starter server main js at users kame chen code github angular ssr dist angular starter server main js at users kame chen code github angular ssr dist angular starter server main js at object users kame chen code github angular ssr dist angular starter server main js code err require esm your environment text angular cli node package manager npm os darwin angular animations cli common compiler compiler cli core forms platform browser platform browser dynamic platform server router service worker package version angular devkit architect angular devkit build angular angular devkit core angular devkit schematics nguniversal builders nguniversal express engine schematics angular rxjs typescript anything else relevant no response
| 1
|
35,664
| 9,636,098,076
|
IssuesEvent
|
2019-05-16 04:20:02
|
servo/servo
|
https://api.github.com/repos/servo/servo
|
closed
|
README update for macOS
|
A-build P-mac
|
seems we need this now due to recent commits
```
brew bundle install --file=etc/taskcluster/macos/Brewfile-gstreamer
```
|
1.0
|
README update for macOS - seems we need this now due to recent commits
```
brew bundle install --file=etc/taskcluster/macos/Brewfile-gstreamer
```
|
build
|
readme update for macos seems we need this now due to recent commits brew bundle install file etc taskcluster macos brewfile gstreamer
| 1
|
86,445
| 24,850,593,526
|
IssuesEvent
|
2022-10-26 19:41:48
|
ccache/ccache
|
https://api.github.com/repos/ccache/ccache
|
closed
|
Missing <limits.h> in Util.cpp leads to undefined PATH_MAX [Solaris 11.4, gcc 11.2, ccache 4.7.1]
|
bug build os: solaris
|
### How to reproduce ###
<!-- Steps to reproduce the behavior: -->
1. mkdir build && cd build
2. cmake --build .
### Actual behavior ###
<!-- What happened? -->
/export/home/briggs/ccache-4.7.1/src/Util.cpp: In function ‘std::string Util::get_actual_cwd()’:
/export/home/briggs/ccache-4.7.1/src/Util.cpp:586:15: error: ‘PATH_MAX’ was not declared in this scope
586 | char buffer[PATH_MAX];
| ^~~~~~~~
### Expected behavior ###
<!-- What did you expect to happen? -->
clean compilation.
Per POSIX, PATH_MAX is defined in <limits.h>, and should be tested for/included in Util.cpp
### Environment ###
<!-- Which ccache version did you use? -->
ccache version 4.7.1
<!-- If applicable, add more info such as compiler, OS and file system below: -->
gcc version 11.2 on Solaris 11.4
|
1.0
|
Missing <limits.h> in Util.cpp leads to undefined PATH_MAX [Solaris 11.4, gcc 11.2, ccache 4.7.1] - ### How to reproduce ###
<!-- Steps to reproduce the behavior: -->
1. mkdir build && cd build
2. cmake --build .
### Actual behavior ###
<!-- What happened? -->
/export/home/briggs/ccache-4.7.1/src/Util.cpp: In function ‘std::string Util::get_actual_cwd()’:
/export/home/briggs/ccache-4.7.1/src/Util.cpp:586:15: error: ‘PATH_MAX’ was not declared in this scope
586 | char buffer[PATH_MAX];
| ^~~~~~~~
### Expected behavior ###
<!-- What did you expect to happen? -->
clean compilation.
Per POSIX, PATH_MAX is defined in <limits.h>, and should be tested for/included in Util.cpp
### Environment ###
<!-- Which ccache version did you use? -->
ccache version 4.7.1
<!-- If applicable, add more info such as compiler, OS and file system below: -->
gcc version 11.2 on Solaris 11.4
|
build
|
missing in util cpp leads to undefined path max how to reproduce mkdir build cd build cmake build actual behavior export home briggs ccache src util cpp in function ‘std string util get actual cwd ’ export home briggs ccache src util cpp error ‘path max’ was not declared in this scope char buffer expected behavior clean compilation per posix path max is defined in and should be tested for included in util cpp environment ccache version gcc version on solaris
| 1
|
25,166
| 7,643,133,426
|
IssuesEvent
|
2018-05-08 11:39:51
|
precice/precice
|
https://api.github.com/repos/precice/precice
|
closed
|
C++ Solverproxy does not build
|
building
|
```
scons: Reading SConscript files ...
scons: warning: Can't find Intel compiler top dir for version='None', abi='x86_64'
File "/home/florian/precice/tools/solverproxies/cpp/SConstruct", line 43, in <module>
scons: done reading SConscript files.
scons: Building targets ...
icc -o solverproxy-debug main.cpp -L/home/florian/precice/build/debug -lprecice -lpython2.7 -lpthread
main.cpp(94): error: identifier "actionReadSimulationCheckpoint" is undefined
if (interface.isActionRequired(actionReadSimulationCheckpoint())){
^
main.cpp(185): error: identifier "actionWriteSimulationCheckpoint" is undefined
if (interface.isActionRequired(actionWriteSimulationCheckpoint())){
^
compilation aborted for main.cpp (code 2)
scons: *** [solverproxy-debug] Error 2
scons: building terminated because of errors.
```
|
1.0
|
C++ Solverproxy does not build - ```
scons: Reading SConscript files ...
scons: warning: Can't find Intel compiler top dir for version='None', abi='x86_64'
File "/home/florian/precice/tools/solverproxies/cpp/SConstruct", line 43, in <module>
scons: done reading SConscript files.
scons: Building targets ...
icc -o solverproxy-debug main.cpp -L/home/florian/precice/build/debug -lprecice -lpython2.7 -lpthread
main.cpp(94): error: identifier "actionReadSimulationCheckpoint" is undefined
if (interface.isActionRequired(actionReadSimulationCheckpoint())){
^
main.cpp(185): error: identifier "actionWriteSimulationCheckpoint" is undefined
if (interface.isActionRequired(actionWriteSimulationCheckpoint())){
^
compilation aborted for main.cpp (code 2)
scons: *** [solverproxy-debug] Error 2
scons: building terminated because of errors.
```
|
build
|
c solverproxy does not build scons reading sconscript files scons warning can t find intel compiler top dir for version none abi file home florian precice tools solverproxies cpp sconstruct line in scons done reading sconscript files scons building targets icc o solverproxy debug main cpp l home florian precice build debug lprecice lpthread main cpp error identifier actionreadsimulationcheckpoint is undefined if interface isactionrequired actionreadsimulationcheckpoint main cpp error identifier actionwritesimulationcheckpoint is undefined if interface isactionrequired actionwritesimulationcheckpoint compilation aborted for main cpp code scons error scons building terminated because of errors
| 1
|
119,694
| 17,627,566,913
|
IssuesEvent
|
2021-08-19 01:05:50
|
jtimberlake/rl-bakery
|
https://api.github.com/repos/jtimberlake/rl-bakery
|
opened
|
CVE-2021-37657 (High) detected in tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
|
security vulnerability
|
## CVE-2021-37657 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl</b></p></summary>
<p>TensorFlow is an open source machine learning framework for everyone.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/2a/5c/f1d66de5dde6f3ff528f6ea1fd0757a0e594d17debb3ec7f82daa967ea9a/tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl">https://files.pythonhosted.org/packages/2a/5c/f1d66de5dde6f3ff528f6ea1fd0757a0e594d17debb3ec7f82daa967ea9a/tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl</a></p>
<p>Path to dependency file: rl-bakery/requirements.txt</p>
<p>Path to vulnerable library: rl-bakery/requirements.txt,rl-bakery</p>
<p>
Dependency Hierarchy:
- :x: **tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
TensorFlow is an end-to-end open source platform for machine learning. In affected versions an attacker can cause undefined behavior via binding a reference to null pointer in all operations of type `tf.raw_ops.MatrixDiagV*`. The [implementation](https://github.com/tensorflow/tensorflow/blob/84d053187cb80d975ef2b9684d4b61981bca0c41/tensorflow/core/kernels/linalg/matrix_diag_op.cc) has incomplete validation that the value of `k` is a valid tensor. We have check that this value is either a scalar or a vector, but there is no check for the number of elements. If this is an empty tensor, then code that accesses the first element of the tensor is wrong. We have patched the issue in GitHub commit f2a673bd34f0d64b8e40a551ac78989d16daad09. The fix will be included in TensorFlow 2.6.0. We will also cherrypick this commit on TensorFlow 2.5.1, TensorFlow 2.4.3, and TensorFlow 2.3.4, as these are also affected and still in supported range.
<p>Publish Date: 2021-08-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37657>CVE-2021-37657</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-5xwc-mrhx-5g3m">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-5xwc-mrhx-5g3m</a></p>
<p>Release Date: 2021-08-12</p>
<p>Fix Resolution: tensorflow - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-cpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-gpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"tensorflow","packageVersion":"2.0.0","packageFilePaths":["/requirements.txt","rl-bakery"],"isTransitiveDependency":false,"dependencyTree":"tensorflow:2.0.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tensorflow - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-cpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-gpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-37657","vulnerabilityDetails":"TensorFlow is an end-to-end open source platform for machine learning. In affected versions an attacker can cause undefined behavior via binding a reference to null pointer in all operations of type `tf.raw_ops.MatrixDiagV*`. The [implementation](https://github.com/tensorflow/tensorflow/blob/84d053187cb80d975ef2b9684d4b61981bca0c41/tensorflow/core/kernels/linalg/matrix_diag_op.cc) has incomplete validation that the value of `k` is a valid tensor. We have check that this value is either a scalar or a vector, but there is no check for the number of elements. If this is an empty tensor, then code that accesses the first element of the tensor is wrong. We have patched the issue in GitHub commit f2a673bd34f0d64b8e40a551ac78989d16daad09. The fix will be included in TensorFlow 2.6.0. We will also cherrypick this commit on TensorFlow 2.5.1, TensorFlow 2.4.3, and TensorFlow 2.3.4, as these are also affected and still in supported range.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37657","cvss3Severity":"high","cvss3Score":"7.1","cvss3Metrics":{"A":"High","AC":"Low","PR":"Low","S":"Unchanged","C":"None","UI":"None","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> -->
|
True
|
CVE-2021-37657 (High) detected in tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl - ## CVE-2021-37657 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl</b></p></summary>
<p>TensorFlow is an open source machine learning framework for everyone.</p>
<p>Library home page: <a href="https://files.pythonhosted.org/packages/2a/5c/f1d66de5dde6f3ff528f6ea1fd0757a0e594d17debb3ec7f82daa967ea9a/tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl">https://files.pythonhosted.org/packages/2a/5c/f1d66de5dde6f3ff528f6ea1fd0757a0e594d17debb3ec7f82daa967ea9a/tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl</a></p>
<p>Path to dependency file: rl-bakery/requirements.txt</p>
<p>Path to vulnerable library: rl-bakery/requirements.txt,rl-bakery</p>
<p>
Dependency Hierarchy:
- :x: **tensorflow-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
TensorFlow is an end-to-end open source platform for machine learning. In affected versions an attacker can cause undefined behavior via binding a reference to null pointer in all operations of type `tf.raw_ops.MatrixDiagV*`. The [implementation](https://github.com/tensorflow/tensorflow/blob/84d053187cb80d975ef2b9684d4b61981bca0c41/tensorflow/core/kernels/linalg/matrix_diag_op.cc) has incomplete validation that the value of `k` is a valid tensor. We have check that this value is either a scalar or a vector, but there is no check for the number of elements. If this is an empty tensor, then code that accesses the first element of the tensor is wrong. We have patched the issue in GitHub commit f2a673bd34f0d64b8e40a551ac78989d16daad09. The fix will be included in TensorFlow 2.6.0. We will also cherrypick this commit on TensorFlow 2.5.1, TensorFlow 2.4.3, and TensorFlow 2.3.4, as these are also affected and still in supported range.
<p>Publish Date: 2021-08-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37657>CVE-2021-37657</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-5xwc-mrhx-5g3m">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-5xwc-mrhx-5g3m</a></p>
<p>Release Date: 2021-08-12</p>
<p>Fix Resolution: tensorflow - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-cpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-gpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0</p>
</p>
</details>
<p></p>
***
:rescue_worker_helmet: Automatic Remediation is available for this issue
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"tensorflow","packageVersion":"2.0.0","packageFilePaths":["/requirements.txt","rl-bakery"],"isTransitiveDependency":false,"dependencyTree":"tensorflow:2.0.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tensorflow - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-cpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0, tensorflow-gpu - 2.3.4, 2.4.3, 2.5.1, 2.6.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-37657","vulnerabilityDetails":"TensorFlow is an end-to-end open source platform for machine learning. In affected versions an attacker can cause undefined behavior via binding a reference to null pointer in all operations of type `tf.raw_ops.MatrixDiagV*`. The [implementation](https://github.com/tensorflow/tensorflow/blob/84d053187cb80d975ef2b9684d4b61981bca0c41/tensorflow/core/kernels/linalg/matrix_diag_op.cc) has incomplete validation that the value of `k` is a valid tensor. We have check that this value is either a scalar or a vector, but there is no check for the number of elements. If this is an empty tensor, then code that accesses the first element of the tensor is wrong. We have patched the issue in GitHub commit f2a673bd34f0d64b8e40a551ac78989d16daad09. The fix will be included in TensorFlow 2.6.0. We will also cherrypick this commit on TensorFlow 2.5.1, TensorFlow 2.4.3, and TensorFlow 2.3.4, as these are also affected and still in supported range.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-37657","cvss3Severity":"high","cvss3Score":"7.1","cvss3Metrics":{"A":"High","AC":"Low","PR":"Low","S":"Unchanged","C":"None","UI":"None","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> -->
|
non_build
|
cve high detected in tensorflow whl cve high severity vulnerability vulnerable library tensorflow whl tensorflow is an open source machine learning framework for everyone library home page a href path to dependency file rl bakery requirements txt path to vulnerable library rl bakery requirements txt rl bakery dependency hierarchy x tensorflow whl vulnerable library found in base branch master vulnerability details tensorflow is an end to end open source platform for machine learning in affected versions an attacker can cause undefined behavior via binding a reference to null pointer in all operations of type tf raw ops matrixdiagv the has incomplete validation that the value of k is a valid tensor we have check that this value is either a scalar or a vector but there is no check for the number of elements if this is an empty tensor then code that accesses the first element of the tensor is wrong we have patched the issue in github commit the fix will be included in tensorflow we will also cherrypick this commit on tensorflow tensorflow and tensorflow as these are also affected and still in supported range publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tensorflow tensorflow cpu tensorflow gpu rescue worker helmet automatic remediation is available for this issue isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree tensorflow isminimumfixversionavailable true minimumfixversion tensorflow tensorflow cpu tensorflow gpu basebranches vulnerabilityidentifier cve vulnerabilitydetails tensorflow is an end to end open source platform for machine learning in affected versions an attacker can cause undefined behavior via binding a reference to null pointer in all operations of type tf raw ops matrixdiagv the has incomplete validation that the value of k is a valid tensor we have check that this value is either a scalar or a vector but there is no check for the number of elements if this is an empty tensor then code that accesses the first element of the tensor is wrong we have patched the issue in github commit the fix will be included in tensorflow we will also cherrypick this commit on tensorflow tensorflow and tensorflow as these are also affected and still in supported range vulnerabilityurl
| 0
|
267,962
| 28,565,203,703
|
IssuesEvent
|
2023-04-21 01:03:13
|
amaybaum-reachability2/vprofile-project
|
https://api.github.com/repos/amaybaum-reachability2/vprofile-project
|
closed
|
spring-webmvc-4.2.1.RELEASE.jar: 6 vulnerabilities (highest severity is: 9.6) reachable - autoclosed
|
Mend: dependency security vulnerability
|
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p></summary>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
</details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (spring-webmvc version) | Remediation Available | Reachability |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | --- |
| [CVE-2015-5211](https://www.mend.io/vulnerability-database/CVE-2015-5211) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 9.6 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.2.2.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20>](## 'The vulnerability is non-reachable.')</a></p> |
| [CVE-2016-5007](https://www.mend.io/vulnerability-database/CVE-2016-5007) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.3.0.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
| [CVE-2016-9878](https://www.mend.io/vulnerability-database/CVE-2016-9878) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.2.9.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20>](## 'The vulnerability is non-reachable.')</a></p> |
| [CVE-2022-22950](https://www.mend.io/vulnerability-database/CVE-2022-22950) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium | 6.5 | spring-expression-4.2.1.RELEASE.jar | Transitive | 5.2.21.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
| [CVE-2018-1271](https://www.mend.io/vulnerability-database/CVE-2018-1271) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium | 5.9 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.3.15.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
| [CVE-2021-22096](https://www.mend.io/vulnerability-database/CVE-2021-22096) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium | 4.3 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 5.2.18.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20> CVE-2015-5211</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
<p>The vulnerable code is not reachable.</p>
</p>
<p></p>
### Vulnerability Details
<p>
Under some situations, the Spring Framework 4.2.0 to 4.2.1, 4.0.0 to 4.1.7, 3.2.0 to 3.2.14 and older unsupported versions is vulnerable to a Reflected File Download (RFD) attack. The attack involves a malicious user crafting a URL with a batch script extension that results in the response being downloaded rather than rendered and also includes some input reflected in the response.
<p>Publish Date: 2017-05-25
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2015-5211>CVE-2015-5211</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>9.6</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-5211">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-5211</a></p>
<p>Release Date: 2017-05-25</p>
<p>Fix Resolution: 4.2.2.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2016-5007</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.validator.UserValidator (Application)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport$NoOpValidator (Extension)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport (Extension)
-> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping (Extension)
-> org.springframework.web.servlet.handler.AbstractDetectingUrlHandlerMapping (Extension)
-> ❌ org.springframework.web.servlet.handler.AbstractUrlHandlerMapping (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
Both Spring Security 3.2.x, 4.0.x, 4.1.0 and the Spring Framework 3.2.x, 4.0.x, 4.1.x, 4.2.x rely on URL pattern mappings for authorization and for mapping requests to controllers respectively. Differences in the strictness of the pattern matching mechanisms, for example with regards to space trimming in path segments, can lead Spring Security to not recognize certain paths as not protected that are in fact mapped to Spring MVC controllers that should be protected. The problem is compounded by the fact that the Spring Framework provides richer features with regards to pattern matching as well as by the fact that pattern matching in each Spring Security and the Spring Framework can easily be customized creating additional differences.
<p>Publish Date: 2017-05-25
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-5007>CVE-2016-5007</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://pivotal.io/security/cve-2016-5007">https://pivotal.io/security/cve-2016-5007</a></p>
<p>Release Date: 2017-05-25</p>
<p>Fix Resolution: 4.3.0.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20> CVE-2016-9878</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
<p>The vulnerable code is not reachable.</p>
</p>
<p></p>
### Vulnerability Details
<p>
An issue was discovered in Pivotal Spring Framework before 3.2.18, 4.2.x before 4.2.9, and 4.3.x before 4.3.5. Paths provided to the ResourceServlet were not properly sanitized and as a result exposed to directory traversal attacks.
<p>Publish Date: 2016-12-29
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-9878>CVE-2016-9878</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-9878">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-9878</a></p>
<p>Release Date: 2016-12-29</p>
<p>Fix Resolution: 4.2.9.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2022-22950</summary>
### Vulnerable Library - <b>spring-expression-4.2.1.RELEASE.jar</b></p>
<p>Spring Expression Language (SpEL)</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-expression/4.2.1.RELEASE/spring-expression-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- spring-webmvc-4.2.1.RELEASE.jar (Root Library)
- :x: **spring-expression-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.service.UserDetailsServiceImpl (Application)
-> org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter$UserDetailsServiceDelegator (Extension)
-> org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter (Extension)
-> org.springframework.context.event.EventListenerMethodProcessor (Extension)
...
-> org.springframework.expression.spel.standard.SpelExpressionParser (Extension)
-> org.springframework.expression.spel.standard.SpelExpression (Extension)
-> ❌ org.springframework.expression.spel.SpelMessage (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
n Spring Framework versions 5.3.0 - 5.3.16 and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial of service condition.
<p>Publish Date: 2022-04-01
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22950>CVE-2022-22950</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-22950">https://tanzu.vmware.com/security/cve-2022-22950</a></p>
<p>Release Date: 2022-04-01</p>
<p>Fix Resolution (org.springframework:spring-expression): 5.2.20.RELEASE</p>
<p>Direct dependency fix Resolution (org.springframework:spring-webmvc): 5.2.21.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2018-1271</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.validator.UserValidator (Application)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport$NoOpValidator (Extension)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport (Extension)
-> org.springframework.web.servlet.resource.ResourceUrlProvider (Extension)
-> org.springframework.web.servlet.resource.ResourceHttpRequestHandler (Extension)
-> ❌ org.springframework.web.servlet.resource.PathResourceResolver (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
Spring Framework, versions 5.0 prior to 5.0.5 and versions 4.3 prior to 4.3.15 and older unsupported versions, allow applications to configure Spring MVC to serve static resources (e.g. CSS, JS, images). When static resources are served from a file system on Windows (as opposed to the classpath, or the ServletContext), a malicious user can send a request using a specially crafted URL that can lead a directory traversal attack.
<p>Publish Date: 2018-04-06
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-1271>CVE-2018-1271</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>5.9</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1271">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1271</a></p>
<p>Release Date: 2018-04-05</p>
<p>Fix Resolution: 4.3.15.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2021-22096</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.validator.UserValidator (Application)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport$NoOpValidator (Extension)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport (Extension)
-> org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry (Extension)
-> ❌ org.springframework.web.servlet.resource.ResourceHttpRequestHandler (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
In Spring Framework versions 5.3.0 - 5.3.10, 5.2.0 - 5.2.17, and older unsupported versions, it is possible for a user to provide malicious input to cause the insertion of additional log entries.
<p>Publish Date: 2021-10-28
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-22096>CVE-2021-22096</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>4.3</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2021-22096">https://tanzu.vmware.com/security/cve-2021-22096</a></p>
<p>Release Date: 2021-10-28</p>
<p>Fix Resolution: 5.2.18.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details>
***
<p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
|
True
|
spring-webmvc-4.2.1.RELEASE.jar: 6 vulnerabilities (highest severity is: 9.6) reachable - autoclosed - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p></summary>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
</details>
## Vulnerabilities
| CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (spring-webmvc version) | Remediation Available | Reachability |
| ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | --- |
| [CVE-2015-5211](https://www.mend.io/vulnerability-database/CVE-2015-5211) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 9.6 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.2.2.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20>](## 'The vulnerability is non-reachable.')</a></p> |
| [CVE-2016-5007](https://www.mend.io/vulnerability-database/CVE-2016-5007) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.3.0.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
| [CVE-2016-9878](https://www.mend.io/vulnerability-database/CVE-2016-9878) | <img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> High | 7.5 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.2.9.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20>](## 'The vulnerability is non-reachable.')</a></p> |
| [CVE-2022-22950](https://www.mend.io/vulnerability-database/CVE-2022-22950) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium | 6.5 | spring-expression-4.2.1.RELEASE.jar | Transitive | 5.2.21.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
| [CVE-2018-1271](https://www.mend.io/vulnerability-database/CVE-2018-1271) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium | 5.9 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 4.3.15.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
| [CVE-2021-22096](https://www.mend.io/vulnerability-database/CVE-2021-22096) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Medium | 4.3 | spring-webmvc-4.2.1.RELEASE.jar | Direct | 5.2.18.RELEASE | ✅|<p align="center"><a href="#">[<img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20>](## 'The vulnerability is likely to be reachable.')</a></p> |
## Details
<details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20> CVE-2015-5211</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
<p>The vulnerable code is not reachable.</p>
</p>
<p></p>
### Vulnerability Details
<p>
Under some situations, the Spring Framework 4.2.0 to 4.2.1, 4.0.0 to 4.1.7, 3.2.0 to 3.2.14 and older unsupported versions is vulnerable to a Reflected File Download (RFD) attack. The attack involves a malicious user crafting a URL with a batch script extension that results in the response being downloaded rather than rendered and also includes some input reflected in the response.
<p>Publish Date: 2017-05-25
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2015-5211>CVE-2015-5211</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>9.6</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-5211">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-5211</a></p>
<p>Release Date: 2017-05-25</p>
<p>Fix Resolution: 4.2.2.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2016-5007</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.validator.UserValidator (Application)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport$NoOpValidator (Extension)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport (Extension)
-> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping (Extension)
-> org.springframework.web.servlet.handler.AbstractDetectingUrlHandlerMapping (Extension)
-> ❌ org.springframework.web.servlet.handler.AbstractUrlHandlerMapping (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
Both Spring Security 3.2.x, 4.0.x, 4.1.0 and the Spring Framework 3.2.x, 4.0.x, 4.1.x, 4.2.x rely on URL pattern mappings for authorization and for mapping requests to controllers respectively. Differences in the strictness of the pattern matching mechanisms, for example with regards to space trimming in path segments, can lead Spring Security to not recognize certain paths as not protected that are in fact mapped to Spring MVC controllers that should be protected. The problem is compounded by the fact that the Spring Framework provides richer features with regards to pattern matching as well as by the fact that pattern matching in each Spring Security and the Spring Framework can easily be customized creating additional differences.
<p>Publish Date: 2017-05-25
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-5007>CVE-2016-5007</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://pivotal.io/security/cve-2016-5007">https://pivotal.io/security/cve-2016-5007</a></p>
<p>Release Date: 2017-05-25</p>
<p>Fix Resolution: 4.3.0.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaGreen.png' width=19 height=20> CVE-2016-9878</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
<p>The vulnerable code is not reachable.</p>
</p>
<p></p>
### Vulnerability Details
<p>
An issue was discovered in Pivotal Spring Framework before 3.2.18, 4.2.x before 4.2.9, and 4.3.x before 4.3.5. Paths provided to the ResourceServlet were not properly sanitized and as a result exposed to directory traversal attacks.
<p>Publish Date: 2016-12-29
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-9878>CVE-2016-9878</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>7.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-9878">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-9878</a></p>
<p>Release Date: 2016-12-29</p>
<p>Fix Resolution: 4.2.9.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2022-22950</summary>
### Vulnerable Library - <b>spring-expression-4.2.1.RELEASE.jar</b></p>
<p>Spring Expression Language (SpEL)</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-expression/4.2.1.RELEASE/spring-expression-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- spring-webmvc-4.2.1.RELEASE.jar (Root Library)
- :x: **spring-expression-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.service.UserDetailsServiceImpl (Application)
-> org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter$UserDetailsServiceDelegator (Extension)
-> org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter (Extension)
-> org.springframework.context.event.EventListenerMethodProcessor (Extension)
...
-> org.springframework.expression.spel.standard.SpelExpressionParser (Extension)
-> org.springframework.expression.spel.standard.SpelExpression (Extension)
-> ❌ org.springframework.expression.spel.SpelMessage (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
n Spring Framework versions 5.3.0 - 5.3.16 and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial of service condition.
<p>Publish Date: 2022-04-01
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-22950>CVE-2022-22950</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>6.5</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2022-22950">https://tanzu.vmware.com/security/cve-2022-22950</a></p>
<p>Release Date: 2022-04-01</p>
<p>Fix Resolution (org.springframework:spring-expression): 5.2.20.RELEASE</p>
<p>Direct dependency fix Resolution (org.springframework:spring-webmvc): 5.2.21.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2018-1271</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.validator.UserValidator (Application)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport$NoOpValidator (Extension)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport (Extension)
-> org.springframework.web.servlet.resource.ResourceUrlProvider (Extension)
-> org.springframework.web.servlet.resource.ResourceHttpRequestHandler (Extension)
-> ❌ org.springframework.web.servlet.resource.PathResourceResolver (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
Spring Framework, versions 5.0 prior to 5.0.5 and versions 4.3 prior to 4.3.15 and older unsupported versions, allow applications to configure Spring MVC to serve static resources (e.g. CSS, JS, images). When static resources are served from a file system on Windows (as opposed to the classpath, or the ServletContext), a malicious user can send a request using a specially crafted URL that can lead a directory traversal attack.
<p>Publish Date: 2018-04-06
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2018-1271>CVE-2018-1271</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>5.9</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1271">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-1271</a></p>
<p>Release Date: 2018-04-05</p>
<p>Fix Resolution: 4.3.15.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details><details>
<summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> <img src='https://whitesource-resources.whitesourcesoftware.com/viaRed.png' width=19 height=20> CVE-2021-22096</summary>
### Vulnerable Library - <b>spring-webmvc-4.2.1.RELEASE.jar</b></p>
<p>Spring Web MVC</p>
<p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p>
<p>Path to dependency file: /pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-webmvc/4.2.1.RELEASE/spring-webmvc-4.2.1.RELEASE.jar</p>
<p>
Dependency Hierarchy:
- :x: **spring-webmvc-4.2.1.RELEASE.jar** (Vulnerable Library)
<p>Found in base branch: <b>vp-rem</b></p>
</p>
<p></p>
### Reachability Analysis
<p>
This vulnerability is potentially used
```
com.visualpathit.account.validator.UserValidator (Application)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport$NoOpValidator (Extension)
-> org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport (Extension)
-> org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry (Extension)
-> ❌ org.springframework.web.servlet.resource.ResourceHttpRequestHandler (Vulnerable Component)
```
</p>
<p></p>
### Vulnerability Details
<p>
In Spring Framework versions 5.3.0 - 5.3.10, 5.2.0 - 5.2.17, and older unsupported versions, it is possible for a user to provide malicious input to cause the insertion of additional log entries.
<p>Publish Date: 2021-10-28
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2021-22096>CVE-2021-22096</a></p>
</p>
<p></p>
### CVSS 3 Score Details (<b>4.3</b>)
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
<p></p>
### Suggested Fix
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://tanzu.vmware.com/security/cve-2021-22096">https://tanzu.vmware.com/security/cve-2021-22096</a></p>
<p>Release Date: 2021-10-28</p>
<p>Fix Resolution: 5.2.18.RELEASE</p>
</p>
<p></p>
:rescue_worker_helmet: Automatic Remediation is available for this issue
</details>
***
<p>:rescue_worker_helmet: Automatic Remediation is available for this issue.</p>
|
non_build
|
spring webmvc release jar vulnerabilities highest severity is reachable autoclosed vulnerable library spring webmvc release jar spring web mvc library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring webmvc release spring webmvc release jar vulnerabilities cve severity cvss dependency type fixed in spring webmvc version remediation available reachability high spring webmvc release jar direct release the vulnerability is non reachable high spring webmvc release jar direct release the vulnerability is likely to be reachable high spring webmvc release jar direct release the vulnerability is non reachable medium spring expression release jar transitive release the vulnerability is likely to be reachable medium spring webmvc release jar direct release the vulnerability is likely to be reachable medium spring webmvc release jar direct release the vulnerability is likely to be reachable details cve vulnerable library spring webmvc release jar spring web mvc library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring webmvc release spring webmvc release jar dependency hierarchy x spring webmvc release jar vulnerable library found in base branch vp rem reachability analysis the vulnerable code is not reachable vulnerability details under some situations the spring framework to to to and older unsupported versions is vulnerable to a reflected file download rfd attack the attack involves a malicious user crafting a url with a batch script extension that results in the response being downloaded rather than rendered and also includes some input reflected in the response publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution release rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring webmvc release jar spring web mvc library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring webmvc release spring webmvc release jar dependency hierarchy x spring webmvc release jar vulnerable library found in base branch vp rem reachability analysis this vulnerability is potentially used com visualpathit account validator uservalidator application org springframework web servlet config annotation webmvcconfigurationsupport noopvalidator extension org springframework web servlet config annotation webmvcconfigurationsupport extension org springframework web servlet handler beannameurlhandlermapping extension org springframework web servlet handler abstractdetectingurlhandlermapping extension ❌ org springframework web servlet handler abstracturlhandlermapping vulnerable component vulnerability details both spring security x x and the spring framework x x x x rely on url pattern mappings for authorization and for mapping requests to controllers respectively differences in the strictness of the pattern matching mechanisms for example with regards to space trimming in path segments can lead spring security to not recognize certain paths as not protected that are in fact mapped to spring mvc controllers that should be protected the problem is compounded by the fact that the spring framework provides richer features with regards to pattern matching as well as by the fact that pattern matching in each spring security and the spring framework can easily be customized creating additional differences publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution release rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring webmvc release jar spring web mvc library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring webmvc release spring webmvc release jar dependency hierarchy x spring webmvc release jar vulnerable library found in base branch vp rem reachability analysis the vulnerable code is not reachable vulnerability details an issue was discovered in pivotal spring framework before x before and x before paths provided to the resourceservlet were not properly sanitized and as a result exposed to directory traversal attacks publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution release rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring expression release jar spring expression language spel library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring expression release spring expression release jar dependency hierarchy spring webmvc release jar root library x spring expression release jar vulnerable library found in base branch vp rem reachability analysis this vulnerability is potentially used com visualpathit account service userdetailsserviceimpl application org springframework security config annotation web configuration websecurityconfigureradapter userdetailsservicedelegator extension org springframework security config annotation web configuration websecurityconfigureradapter extension org springframework context event eventlistenermethodprocessor extension org springframework expression spel standard spelexpressionparser extension org springframework expression spel standard spelexpression extension ❌ org springframework expression spel spelmessage vulnerable component vulnerability details n spring framework versions and older unsupported versions it is possible for a user to provide a specially crafted spel expression that may cause a denial of service condition publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring expression release direct dependency fix resolution org springframework spring webmvc release rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring webmvc release jar spring web mvc library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring webmvc release spring webmvc release jar dependency hierarchy x spring webmvc release jar vulnerable library found in base branch vp rem reachability analysis this vulnerability is potentially used com visualpathit account validator uservalidator application org springframework web servlet config annotation webmvcconfigurationsupport noopvalidator extension org springframework web servlet config annotation webmvcconfigurationsupport extension org springframework web servlet resource resourceurlprovider extension org springframework web servlet resource resourcehttprequesthandler extension ❌ org springframework web servlet resource pathresourceresolver vulnerable component vulnerability details spring framework versions prior to and versions prior to and older unsupported versions allow applications to configure spring mvc to serve static resources e g css js images when static resources are served from a file system on windows as opposed to the classpath or the servletcontext a malicious user can send a request using a specially crafted url that can lead a directory traversal attack publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution release rescue worker helmet automatic remediation is available for this issue cve vulnerable library spring webmvc release jar spring web mvc library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring webmvc release spring webmvc release jar dependency hierarchy x spring webmvc release jar vulnerable library found in base branch vp rem reachability analysis this vulnerability is potentially used com visualpathit account validator uservalidator application org springframework web servlet config annotation webmvcconfigurationsupport noopvalidator extension org springframework web servlet config annotation webmvcconfigurationsupport extension org springframework web servlet config annotation resourcehandlerregistry extension ❌ org springframework web servlet resource resourcehttprequesthandler vulnerable component vulnerability details in spring framework versions and older unsupported versions it is possible for a user to provide malicious input to cause the insertion of additional log entries publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution release rescue worker helmet automatic remediation is available for this issue rescue worker helmet automatic remediation is available for this issue
| 0
|
181,620
| 30,715,064,481
|
IssuesEvent
|
2023-07-27 12:31:25
|
nodejs/nodejs.org
|
https://api.github.com/repos/nodejs/nodejs.org
|
closed
|
Migrate the `Default` Layout from `nodejs.dev`
|
good first issue website redesign feature-request
|
Continuing the migration of components from `nodejs.dev` that we started [here](https://github.com/nodejs/nodejs.org/issues/5193), the `default` layout including.
This issue will be used to track the migration of the `Default` layout. Also, note that I want this issue to be available for newcomers and not existing contributors if possible!
### Migrating the `Default` layout
- The layout should reside on `layouts/NewDefault/index.tsx` with styles on `index.module.scss` of the same folder.
- The Layout should extend the `DefaultLayout` (like how we do with other legacy layouts, one layout extending another)
- The Layout should extend the `nodejs.dev` DefaultLayout and support a (Header, Footer, Container with default paddings and `children`).
|
1.0
|
Migrate the `Default` Layout from `nodejs.dev` - Continuing the migration of components from `nodejs.dev` that we started [here](https://github.com/nodejs/nodejs.org/issues/5193), the `default` layout including.
This issue will be used to track the migration of the `Default` layout. Also, note that I want this issue to be available for newcomers and not existing contributors if possible!
### Migrating the `Default` layout
- The layout should reside on `layouts/NewDefault/index.tsx` with styles on `index.module.scss` of the same folder.
- The Layout should extend the `DefaultLayout` (like how we do with other legacy layouts, one layout extending another)
- The Layout should extend the `nodejs.dev` DefaultLayout and support a (Header, Footer, Container with default paddings and `children`).
|
non_build
|
migrate the default layout from nodejs dev continuing the migration of components from nodejs dev that we started the default layout including this issue will be used to track the migration of the default layout also note that i want this issue to be available for newcomers and not existing contributors if possible migrating the default layout the layout should reside on layouts newdefault index tsx with styles on index module scss of the same folder the layout should extend the defaultlayout like how we do with other legacy layouts one layout extending another the layout should extend the nodejs dev defaultlayout and support a header footer container with default paddings and children
| 0
|
470,861
| 13,547,651,598
|
IssuesEvent
|
2020-09-17 04:44:00
|
ProjectSidewalk/SidewalkWebpage
|
https://api.github.com/repos/ProjectSidewalk/SidewalkWebpage
|
closed
|
Terms and conditions isn't showing up
|
EasyFix! Priority: High bug potential-intern-assignment
|
When clicking this link:


You get this as the result:

|
1.0
|
Terms and conditions isn't showing up - When clicking this link:


You get this as the result:

|
non_build
|
terms and conditions isn t showing up when clicking this link you get this as the result
| 0
|
34,492
| 9,381,958,293
|
IssuesEvent
|
2019-04-04 20:59:21
|
ethereum/solidity
|
https://api.github.com/repos/ethereum/solidity
|
opened
|
[ossfuzz] CI to run fuzzer regressions
|
build system :building_construction:
|
## Abstract
This is experimental.
Fuzzer regressions are regressions for fuzzer discovered bugs. We can use a new CI to check if a previously discovered bug is not reintroduced by a PR.
## Motivation
At a minimum
- we store fuzzer binaries created by the build ossfuzz job as artifacts
- clone the regressions from the solidity-fuzzing-corpus repo
- run fuzzer binary against all test inputs in the repo
Latency: Unknown
|
2.0
|
[ossfuzz] CI to run fuzzer regressions - ## Abstract
This is experimental.
Fuzzer regressions are regressions for fuzzer discovered bugs. We can use a new CI to check if a previously discovered bug is not reintroduced by a PR.
## Motivation
At a minimum
- we store fuzzer binaries created by the build ossfuzz job as artifacts
- clone the regressions from the solidity-fuzzing-corpus repo
- run fuzzer binary against all test inputs in the repo
Latency: Unknown
|
build
|
ci to run fuzzer regressions abstract this is experimental fuzzer regressions are regressions for fuzzer discovered bugs we can use a new ci to check if a previously discovered bug is not reintroduced by a pr motivation at a minimum we store fuzzer binaries created by the build ossfuzz job as artifacts clone the regressions from the solidity fuzzing corpus repo run fuzzer binary against all test inputs in the repo latency unknown
| 1
|
36,025
| 9,696,453,642
|
IssuesEvent
|
2019-05-25 07:40:52
|
paritytech/parity-ethereum
|
https://api.github.com/repos/paritytech/parity-ethereum
|
closed
|
Error with -ludev when cross compiling for ARMv7
|
M0-build 🏗 Z1-question 🙋♀️
|
- **Parity Ethereum version**: 2.2.7
- **Operating system**: Linux
- **Installation**: built from source
- **Description**: When I try to cross-compile the source for Raspberry Pi (armv7), I get an error saying that "-ludev" couldn't be found. This error occurs at the very end of the compiling process
- **Expected behavior**: The binaries get built correctly and work on a Raspberry Pi
- **Actual behavior**: The compilation process ends with an error
```
Compiling parity-ethereum v2.2.7 (/home/thevidoja/Desktop/parity-ethereum-2.2.7)
Building [=====================================================> ] 490/491: parity(bin)
error: linking with arm-linux-gnueabihf-gcc failed: exit code: 1
|
= note: "arm-linux-gnueabihf-gcc" "-Wl,--as-needed"
...
"/home/thevidoja/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libcompiler_builtins-d0572f7a936161bf.rlib" "-Wl,-Bdynamic" "-ludev" "-lstdc++" "-lstdc++" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil"
= note: /usr/lib/gcc-cross/arm-linux-gnueabihf/7/../../../../arm-linux-gnueabihf/bin/ld: cannot find -ludev
collect2: error: ld returned 1 exit status
error: aborting due to previous error
error: Could not compile parity-ethereum.
To learn more, run the command again with --verbose.
```
> The actual output is much longer, so I attached it as a file.
[output.txt](https://github.com/paritytech/parity-ethereum/files/2821263/output.txt)
- **Steps to reproduce**: `cargo build --release --features final --target=armv7-unknown-linux-gnueabihf`
|
1.0
|
Error with -ludev when cross compiling for ARMv7 - - **Parity Ethereum version**: 2.2.7
- **Operating system**: Linux
- **Installation**: built from source
- **Description**: When I try to cross-compile the source for Raspberry Pi (armv7), I get an error saying that "-ludev" couldn't be found. This error occurs at the very end of the compiling process
- **Expected behavior**: The binaries get built correctly and work on a Raspberry Pi
- **Actual behavior**: The compilation process ends with an error
```
Compiling parity-ethereum v2.2.7 (/home/thevidoja/Desktop/parity-ethereum-2.2.7)
Building [=====================================================> ] 490/491: parity(bin)
error: linking with arm-linux-gnueabihf-gcc failed: exit code: 1
|
= note: "arm-linux-gnueabihf-gcc" "-Wl,--as-needed"
...
"/home/thevidoja/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libcompiler_builtins-d0572f7a936161bf.rlib" "-Wl,-Bdynamic" "-ludev" "-lstdc++" "-lstdc++" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil"
= note: /usr/lib/gcc-cross/arm-linux-gnueabihf/7/../../../../arm-linux-gnueabihf/bin/ld: cannot find -ludev
collect2: error: ld returned 1 exit status
error: aborting due to previous error
error: Could not compile parity-ethereum.
To learn more, run the command again with --verbose.
```
> The actual output is much longer, so I attached it as a file.
[output.txt](https://github.com/paritytech/parity-ethereum/files/2821263/output.txt)
- **Steps to reproduce**: `cargo build --release --features final --target=armv7-unknown-linux-gnueabihf`
|
build
|
error with ludev when cross compiling for parity ethereum version operating system linux installation built from source description when i try to cross compile the source for raspberry pi i get an error saying that ludev couldn t be found this error occurs at the very end of the compiling process expected behavior the binaries get built correctly and work on a raspberry pi actual behavior the compilation process ends with an error compiling parity ethereum home thevidoja desktop parity ethereum building parity bin error linking with arm linux gnueabihf gcc failed exit code note arm linux gnueabihf gcc wl as needed home thevidoja rustup toolchains stable unknown linux gnu lib rustlib unknown linux gnueabihf lib libcompiler builtins rlib wl bdynamic ludev lstdc lstdc lutil lutil ldl lrt lpthread lgcc s lc lm lrt lpthread lutil lutil note usr lib gcc cross arm linux gnueabihf arm linux gnueabihf bin ld cannot find ludev error ld returned exit status error aborting due to previous error error could not compile parity ethereum to learn more run the command again with verbose the actual output is much longer so i attached it as a file steps to reproduce cargo build release features final target unknown linux gnueabihf
| 1
|
227,145
| 7,527,435,310
|
IssuesEvent
|
2018-04-13 17:02:49
|
openshift/origin
|
https://api.github.com/repos/openshift/origin
|
closed
|
Deployment config conditions follow-up work
|
component/apps lifecycle/rotten priority/P2
|
Currently the dc controller sets conditions based on the state of the rc that is set by the deployment controller. The following scenario can lead into missing progress report:
-- Deployer pod is created by the deployment controller, rc is set to Pending
-- Deployer pod runs and scales up the rc to 1
-- Deployment config controller sees the update to the rc but it is still tagged as Pending so it will continue showing the "Wating on deployer pod ..." message.
-- Deployment controller updates rc to Running
-- Deployment config controller sees the update but it doesn't see that it is progressing (it is already scaled to one, blocked on the pod becoming ready), the message in the status continues to be "Wating on deployer pod ..."
Happened in https://github.com/openshift/origin/issues/11685
The first implementation of conditions is conservative in that we set conditions based on the state of the RC that is set by the deployment controller. Progress should trump the state of the RC.
@mfojtik @smarterclayton
|
1.0
|
Deployment config conditions follow-up work - Currently the dc controller sets conditions based on the state of the rc that is set by the deployment controller. The following scenario can lead into missing progress report:
-- Deployer pod is created by the deployment controller, rc is set to Pending
-- Deployer pod runs and scales up the rc to 1
-- Deployment config controller sees the update to the rc but it is still tagged as Pending so it will continue showing the "Wating on deployer pod ..." message.
-- Deployment controller updates rc to Running
-- Deployment config controller sees the update but it doesn't see that it is progressing (it is already scaled to one, blocked on the pod becoming ready), the message in the status continues to be "Wating on deployer pod ..."
Happened in https://github.com/openshift/origin/issues/11685
The first implementation of conditions is conservative in that we set conditions based on the state of the RC that is set by the deployment controller. Progress should trump the state of the RC.
@mfojtik @smarterclayton
|
non_build
|
deployment config conditions follow up work currently the dc controller sets conditions based on the state of the rc that is set by the deployment controller the following scenario can lead into missing progress report deployer pod is created by the deployment controller rc is set to pending deployer pod runs and scales up the rc to deployment config controller sees the update to the rc but it is still tagged as pending so it will continue showing the wating on deployer pod message deployment controller updates rc to running deployment config controller sees the update but it doesn t see that it is progressing it is already scaled to one blocked on the pod becoming ready the message in the status continues to be wating on deployer pod happened in the first implementation of conditions is conservative in that we set conditions based on the state of the rc that is set by the deployment controller progress should trump the state of the rc mfojtik smarterclayton
| 0
|
83,794
| 24,147,390,315
|
IssuesEvent
|
2022-09-21 20:06:40
|
NVIDIA/spark-rapids
|
https://api.github.com/repos/NVIDIA/spark-rapids
|
closed
|
Parallelize tests using Spark packages feature
|
test build task
|
**Is your feature request related to a problem? Please describe.**
#6577 changed the tests using Spark's `packages` feature to avoid triggering a multiprocess Ivy cache update issue. We should look into ways to run the tests in parallel reliably.
**Describe the solution you'd like**
@gerashegalov noted that we might be able to override `spark.jars.ivySettings` to see if we can use `artifact-lock-nio`
**Describe alternatives you've considered**
- Use different ivy cache directories for separate test processes
- Run an Ant command up-front to download the dependencies serially to prime the Ivy cache before trying to go multithreaded (assuming that is safe)
|
1.0
|
Parallelize tests using Spark packages feature - **Is your feature request related to a problem? Please describe.**
#6577 changed the tests using Spark's `packages` feature to avoid triggering a multiprocess Ivy cache update issue. We should look into ways to run the tests in parallel reliably.
**Describe the solution you'd like**
@gerashegalov noted that we might be able to override `spark.jars.ivySettings` to see if we can use `artifact-lock-nio`
**Describe alternatives you've considered**
- Use different ivy cache directories for separate test processes
- Run an Ant command up-front to download the dependencies serially to prime the Ivy cache before trying to go multithreaded (assuming that is safe)
|
build
|
parallelize tests using spark packages feature is your feature request related to a problem please describe changed the tests using spark s packages feature to avoid triggering a multiprocess ivy cache update issue we should look into ways to run the tests in parallel reliably describe the solution you d like gerashegalov noted that we might be able to override spark jars ivysettings to see if we can use artifact lock nio describe alternatives you ve considered use different ivy cache directories for separate test processes run an ant command up front to download the dependencies serially to prime the ivy cache before trying to go multithreaded assuming that is safe
| 1
|
236,580
| 19,561,076,571
|
IssuesEvent
|
2022-01-03 16:17:21
|
backend-br/vagas
|
https://api.github.com/repos/backend-br/vagas
|
closed
|
[REMOTE Back-end Developer @Croct
|
PJ Pleno PHP TDD Java Remoto Especialista Testes Unitários startup
|
## Nossa empresa
Código excelente começa com pessoas incríveis. 🤓
Se você é da área de desenvolvimento, trabalha com Java ou PHP, e é uma pessoa fora da curva buscando uma startup com potencial global para trabalhar remotamente, você vai gostar do que temos para você.
Como Backend Engineer, você vai encontrar desafios relacionados ao desenvolvimento de um bom design e ao aprendizado da melhor forma de executar qualquer tarefa. Você vai ter contato direto com performance, otimização e escalabilidade de soluções, trabalhando diretamente com os fundadores da empresa.
Se você busca liberdade para trabalhar e contribuir com projetos opensource, essa vaga é para você.
Alguns links para entender mais:
https://braziljournal.com/croct-levanta-rodada-com-astella-ex-google
https://braziljournal.com/para-o-algoritmo-da-croct-tudo-e-muito-pessoal
https://cloud.google.com/customers/croct
https://github.com/croct-tech/plug-js/blob/master/docs/quick-start.md
## Descrição da vaga
- Garantir a entrega de projetos desafiadores de grande impacto no negócio, trabalhando lado a lado com founders da Croct
- Participar do planejamento de projetos para atender às necessidades de negócio atuais e futuros, antecipando e removendo barreiras
- Colaborar com demais área da empresa para entendimento dos problemas, análise de oportunidades e busca de soluções
- Desenvolver e implementar a área logada da plataforma, onde os clientes gerenciam suas experiências personalizadas
- Documentar e mapear os processos relacionados à área
## Local
Exemplo: Remoto ou Escritório, São Paulo
## Requisitos
- Conhecimento aprofundado em PHP e Java
- Habilidade com testes unitários, integração e end-to-end sempre que aplicável no processo de desenvolvimento
- Embasamento teórico, habilidade e preocupação com excelência técnica e boas práticas de desenvolvimento (TDD, BDD, design de código, arquitetura, etc.)
- Experiência com ferramentas de versionamento (GitHub)
- Experiência com Continuous Integration e Continuous Delivery
- Experiência com projetos open source são considerados como diferenciais
## Benefícios
- Contratação: PJ
- Liberdade para trabalhar de onde quiser
- Flexibilidade de horários
- Startup com potencial global e planos de internacionalização
- Flexibilidade para trabalhar com o stack que desejar
- Trabalho lado a lado dos founders e de um time com alta capacidade técnica
- Liberdade para trabalhar e contribuir com projetos opensource
## Como se candidatar
Para se candidatar basta se inscrever no link -> https://croct.com/careers/jobs/backend-engineer/
## Tempo médio de feedbacks
Costumamos enviar feedbacks em até 1 dia após cada processo.
E-mail para contato em caso de não haver resposta: felipe.pirovano@croct.com ou linkedin https://www.linkedin.com/in/felipe-pirovano-54732472/
#### Alocação
- Remoto
#### Regime
- PJ
#### Nível
- Pleno
- Sênior
- Especialista
|
1.0
|
[REMOTE Back-end Developer @Croct - ## Nossa empresa
Código excelente começa com pessoas incríveis. 🤓
Se você é da área de desenvolvimento, trabalha com Java ou PHP, e é uma pessoa fora da curva buscando uma startup com potencial global para trabalhar remotamente, você vai gostar do que temos para você.
Como Backend Engineer, você vai encontrar desafios relacionados ao desenvolvimento de um bom design e ao aprendizado da melhor forma de executar qualquer tarefa. Você vai ter contato direto com performance, otimização e escalabilidade de soluções, trabalhando diretamente com os fundadores da empresa.
Se você busca liberdade para trabalhar e contribuir com projetos opensource, essa vaga é para você.
Alguns links para entender mais:
https://braziljournal.com/croct-levanta-rodada-com-astella-ex-google
https://braziljournal.com/para-o-algoritmo-da-croct-tudo-e-muito-pessoal
https://cloud.google.com/customers/croct
https://github.com/croct-tech/plug-js/blob/master/docs/quick-start.md
## Descrição da vaga
- Garantir a entrega de projetos desafiadores de grande impacto no negócio, trabalhando lado a lado com founders da Croct
- Participar do planejamento de projetos para atender às necessidades de negócio atuais e futuros, antecipando e removendo barreiras
- Colaborar com demais área da empresa para entendimento dos problemas, análise de oportunidades e busca de soluções
- Desenvolver e implementar a área logada da plataforma, onde os clientes gerenciam suas experiências personalizadas
- Documentar e mapear os processos relacionados à área
## Local
Exemplo: Remoto ou Escritório, São Paulo
## Requisitos
- Conhecimento aprofundado em PHP e Java
- Habilidade com testes unitários, integração e end-to-end sempre que aplicável no processo de desenvolvimento
- Embasamento teórico, habilidade e preocupação com excelência técnica e boas práticas de desenvolvimento (TDD, BDD, design de código, arquitetura, etc.)
- Experiência com ferramentas de versionamento (GitHub)
- Experiência com Continuous Integration e Continuous Delivery
- Experiência com projetos open source são considerados como diferenciais
## Benefícios
- Contratação: PJ
- Liberdade para trabalhar de onde quiser
- Flexibilidade de horários
- Startup com potencial global e planos de internacionalização
- Flexibilidade para trabalhar com o stack que desejar
- Trabalho lado a lado dos founders e de um time com alta capacidade técnica
- Liberdade para trabalhar e contribuir com projetos opensource
## Como se candidatar
Para se candidatar basta se inscrever no link -> https://croct.com/careers/jobs/backend-engineer/
## Tempo médio de feedbacks
Costumamos enviar feedbacks em até 1 dia após cada processo.
E-mail para contato em caso de não haver resposta: felipe.pirovano@croct.com ou linkedin https://www.linkedin.com/in/felipe-pirovano-54732472/
#### Alocação
- Remoto
#### Regime
- PJ
#### Nível
- Pleno
- Sênior
- Especialista
|
non_build
|
remote back end developer croct nossa empresa código excelente começa com pessoas incríveis 🤓 se você é da área de desenvolvimento trabalha com java ou php e é uma pessoa fora da curva buscando uma startup com potencial global para trabalhar remotamente você vai gostar do que temos para você como backend engineer você vai encontrar desafios relacionados ao desenvolvimento de um bom design e ao aprendizado da melhor forma de executar qualquer tarefa você vai ter contato direto com performance otimização e escalabilidade de soluções trabalhando diretamente com os fundadores da empresa se você busca liberdade para trabalhar e contribuir com projetos opensource essa vaga é para você alguns links para entender mais descrição da vaga garantir a entrega de projetos desafiadores de grande impacto no negócio trabalhando lado a lado com founders da croct participar do planejamento de projetos para atender às necessidades de negócio atuais e futuros antecipando e removendo barreiras colaborar com demais área da empresa para entendimento dos problemas análise de oportunidades e busca de soluções desenvolver e implementar a área logada da plataforma onde os clientes gerenciam suas experiências personalizadas documentar e mapear os processos relacionados à área local exemplo remoto ou escritório são paulo requisitos conhecimento aprofundado em php e java habilidade com testes unitários integração e end to end sempre que aplicável no processo de desenvolvimento embasamento teórico habilidade e preocupação com excelência técnica e boas práticas de desenvolvimento tdd bdd design de código arquitetura etc experiência com ferramentas de versionamento github experiência com continuous integration e continuous delivery experiência com projetos open source são considerados como diferenciais benefícios contratação pj liberdade para trabalhar de onde quiser flexibilidade de horários startup com potencial global e planos de internacionalização flexibilidade para trabalhar com o stack que desejar trabalho lado a lado dos founders e de um time com alta capacidade técnica liberdade para trabalhar e contribuir com projetos opensource como se candidatar para se candidatar basta se inscrever no link tempo médio de feedbacks costumamos enviar feedbacks em até dia após cada processo e mail para contato em caso de não haver resposta felipe pirovano croct com ou linkedin alocação remoto regime pj nível pleno sênior especialista
| 0
|
51,230
| 6,502,028,858
|
IssuesEvent
|
2017-08-23 12:10:03
|
IMA-WorldHealth/bhima-2.X
|
https://api.github.com/repos/IMA-WorldHealth/bhima-2.X
|
opened
|
(proposal) Deleting financial entities
|
design needs discussion
|
The corner case of allowing a user to completely remove a financial transaction by removing all its rows during an editing session has recently been patched in the work on refactoring the journal tools #2006.
The method of deletion was not designed and didn't factor in many complexities to removing a transaction:
* What happens to transaction that either reference or are referenced by this transaction?
* What happens to the underlying financial document that BHIMA creates (invoice, cash payment, voucher etc.)
I propose that we allow and implement deleting of financial entities from a Transaction (journal writing) perspective.
**Proposed API:**
`HTTP DELETE` `/transactions/:uuid`
Because all invoices, cash payments and vouchers share the same UUID across BHIMA entities the entities UUID can be directly used from the respective modules - the journal will have direct access to the record UUID. This will allow:
`HTTP DELETE` `transactions/{{invoiceUuid}}`
`HTTP DELETE` `transactions/{{cashPaymentUuid}}`
`HTTP DELETE` `transactions/{{voucherUuid}}`
Each entity will provide its own helper method for safely being removed as each may involve different steps - these will be connected using the `identifiers.js` map.
1. Determine entity type from transaction id (record_uuid) (for example `IV.HSP.10`)
2. Queue BHIMA entity deletion from identifier map (`IV` -> `safelyDeleteInvoice(invoiceUuid)`)
3. Check for transactions referencing this transaction and transactions being referenced
4. Queue transaction deletion from the posting journal
5. Execute transaction - report to client on any issues returned by safely removing the entity or by removing the posting journal
**Rules: **
1. If a transaction has been posted (moved to the general ledger), entity deletion will not be allowed
2. If a transaction is referenced by other transactions, entity deletion will not be allowed
3. If a transaction references additional transactions, those entities may require updating (depending on the document type)
**Safely removing entity methods**
`safelyDeleteInvoice(uuid)`
* delete invoice items
* delete invoice
`safelyDeleteCashPayment(uuid)`
* delete cash payment items
* delete cash payment
`safelyRemoveVoucher(uuid)`
**Update entity methods**
If a transaction (for example a credit note) is delete and refers to another transaction (an invoice), the referred to entity should be updated indicating that it is no longer reversed.
We will need a reliable method of confirming that it was this credit note that reversed the invoice - the flag can be updated in this case.
@IMA-WorldHealth/bhima-core What do you think? This feature should be supported to reduce the number of noise in creating reversals for just badly created entities. Allowing the user to delete mistakes will help keep real reversals clear.
|
1.0
|
(proposal) Deleting financial entities - The corner case of allowing a user to completely remove a financial transaction by removing all its rows during an editing session has recently been patched in the work on refactoring the journal tools #2006.
The method of deletion was not designed and didn't factor in many complexities to removing a transaction:
* What happens to transaction that either reference or are referenced by this transaction?
* What happens to the underlying financial document that BHIMA creates (invoice, cash payment, voucher etc.)
I propose that we allow and implement deleting of financial entities from a Transaction (journal writing) perspective.
**Proposed API:**
`HTTP DELETE` `/transactions/:uuid`
Because all invoices, cash payments and vouchers share the same UUID across BHIMA entities the entities UUID can be directly used from the respective modules - the journal will have direct access to the record UUID. This will allow:
`HTTP DELETE` `transactions/{{invoiceUuid}}`
`HTTP DELETE` `transactions/{{cashPaymentUuid}}`
`HTTP DELETE` `transactions/{{voucherUuid}}`
Each entity will provide its own helper method for safely being removed as each may involve different steps - these will be connected using the `identifiers.js` map.
1. Determine entity type from transaction id (record_uuid) (for example `IV.HSP.10`)
2. Queue BHIMA entity deletion from identifier map (`IV` -> `safelyDeleteInvoice(invoiceUuid)`)
3. Check for transactions referencing this transaction and transactions being referenced
4. Queue transaction deletion from the posting journal
5. Execute transaction - report to client on any issues returned by safely removing the entity or by removing the posting journal
**Rules: **
1. If a transaction has been posted (moved to the general ledger), entity deletion will not be allowed
2. If a transaction is referenced by other transactions, entity deletion will not be allowed
3. If a transaction references additional transactions, those entities may require updating (depending on the document type)
**Safely removing entity methods**
`safelyDeleteInvoice(uuid)`
* delete invoice items
* delete invoice
`safelyDeleteCashPayment(uuid)`
* delete cash payment items
* delete cash payment
`safelyRemoveVoucher(uuid)`
**Update entity methods**
If a transaction (for example a credit note) is delete and refers to another transaction (an invoice), the referred to entity should be updated indicating that it is no longer reversed.
We will need a reliable method of confirming that it was this credit note that reversed the invoice - the flag can be updated in this case.
@IMA-WorldHealth/bhima-core What do you think? This feature should be supported to reduce the number of noise in creating reversals for just badly created entities. Allowing the user to delete mistakes will help keep real reversals clear.
|
non_build
|
proposal deleting financial entities the corner case of allowing a user to completely remove a financial transaction by removing all its rows during an editing session has recently been patched in the work on refactoring the journal tools the method of deletion was not designed and didn t factor in many complexities to removing a transaction what happens to transaction that either reference or are referenced by this transaction what happens to the underlying financial document that bhima creates invoice cash payment voucher etc i propose that we allow and implement deleting of financial entities from a transaction journal writing perspective proposed api http delete transactions uuid because all invoices cash payments and vouchers share the same uuid across bhima entities the entities uuid can be directly used from the respective modules the journal will have direct access to the record uuid this will allow http delete transactions invoiceuuid http delete transactions cashpaymentuuid http delete transactions voucheruuid each entity will provide its own helper method for safely being removed as each may involve different steps these will be connected using the identifiers js map determine entity type from transaction id record uuid for example iv hsp queue bhima entity deletion from identifier map iv safelydeleteinvoice invoiceuuid check for transactions referencing this transaction and transactions being referenced queue transaction deletion from the posting journal execute transaction report to client on any issues returned by safely removing the entity or by removing the posting journal rules if a transaction has been posted moved to the general ledger entity deletion will not be allowed if a transaction is referenced by other transactions entity deletion will not be allowed if a transaction references additional transactions those entities may require updating depending on the document type safely removing entity methods safelydeleteinvoice uuid delete invoice items delete invoice safelydeletecashpayment uuid delete cash payment items delete cash payment safelyremovevoucher uuid update entity methods if a transaction for example a credit note is delete and refers to another transaction an invoice the referred to entity should be updated indicating that it is no longer reversed we will need a reliable method of confirming that it was this credit note that reversed the invoice the flag can be updated in this case ima worldhealth bhima core what do you think this feature should be supported to reduce the number of noise in creating reversals for just badly created entities allowing the user to delete mistakes will help keep real reversals clear
| 0
|
157,789
| 12,391,455,524
|
IssuesEvent
|
2020-05-20 12:31:33
|
WoWManiaUK/Redemption
|
https://api.github.com/repos/WoWManiaUK/Redemption
|
closed
|
Bug for quest "I Work... For The Horde!"
|
Fix - Tester Confirmed
|
**Links:**
It's a quest in Hellfire Pennensula, obtained from Megzeg Nukklebust
**What is Happening:**
Nodes are not interactable, but indicate that they are.
**What Should happen:**
Should be able to loot the quest items, temporarily despawning the node and putting it on a cooldown timer.
|
1.0
|
Bug for quest "I Work... For The Horde!" - **Links:**
It's a quest in Hellfire Pennensula, obtained from Megzeg Nukklebust
**What is Happening:**
Nodes are not interactable, but indicate that they are.
**What Should happen:**
Should be able to loot the quest items, temporarily despawning the node and putting it on a cooldown timer.
|
non_build
|
bug for quest i work for the horde links it s a quest in hellfire pennensula obtained from megzeg nukklebust what is happening nodes are not interactable but indicate that they are what should happen should be able to loot the quest items temporarily despawning the node and putting it on a cooldown timer
| 0
|
36,078
| 14,930,352,271
|
IssuesEvent
|
2021-01-25 02:41:26
|
Azure/azure-cli-extensions
|
https://api.github.com/repos/Azure/azure-cli-extensions
|
closed
|
update to @autorest/python 5.x for vmware
|
Service Attention extension/vm-repair
|
### Extension name (the extension in question)
vmware
### Description of issue (in as much detail as possible)
The autorest python version needs to be updated. It is currently using [3.0.62](https://www.npmjs.com/package/@microsoft.azure/autorest.python/v/3.0.62), but it has a problem creating empty json Azure/autorest.python#653. Newer versions like [5.4.0](https://www.npmjs.com/package/@autorest/python/v/5.4.0) do not have that problem. A workaround was put in place to Swagger API spec, but that workaround causes problems with Swagger KPI correctness. The workaround Swagger API spec will be removed next week in the 2020-03-20 API when https://github.com/Azure/azure-rest-api-specs/pull/11486 is merged.
To be clear, the existing generated code that is committed will continue to work. Using autorest.python 3.x with the updated spec and new AVS specs will not work due to Azure/autorest.python#653 bug.
|
1.0
|
update to @autorest/python 5.x for vmware - ### Extension name (the extension in question)
vmware
### Description of issue (in as much detail as possible)
The autorest python version needs to be updated. It is currently using [3.0.62](https://www.npmjs.com/package/@microsoft.azure/autorest.python/v/3.0.62), but it has a problem creating empty json Azure/autorest.python#653. Newer versions like [5.4.0](https://www.npmjs.com/package/@autorest/python/v/5.4.0) do not have that problem. A workaround was put in place to Swagger API spec, but that workaround causes problems with Swagger KPI correctness. The workaround Swagger API spec will be removed next week in the 2020-03-20 API when https://github.com/Azure/azure-rest-api-specs/pull/11486 is merged.
To be clear, the existing generated code that is committed will continue to work. Using autorest.python 3.x with the updated spec and new AVS specs will not work due to Azure/autorest.python#653 bug.
|
non_build
|
update to autorest python x for vmware extension name the extension in question vmware description of issue in as much detail as possible the autorest python version needs to be updated it is currently using but it has a problem creating empty json azure autorest python newer versions like do not have that problem a workaround was put in place to swagger api spec but that workaround causes problems with swagger kpi correctness the workaround swagger api spec will be removed next week in the api when is merged to be clear the existing generated code that is committed will continue to work using autorest python x with the updated spec and new avs specs will not work due to azure autorest python bug
| 0
|
87,004
| 25,006,254,785
|
IssuesEvent
|
2022-11-03 12:06:29
|
mpi4py/mpi4py
|
https://api.github.com/repos/mpi4py/mpi4py
|
closed
|
Fails compilation on Python 3.11
|
build
|
```
/snip
204/venv-ls-py311/include -I/usr/include/python3.11 -c _configtest.c -o _configtest.o
success!
removing: _configtest.c _configtest.o
success!
checking for library 'dl' ...
/usr/bin/mpicc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/home/skyubu2204/venv-ls-py311/include -I/usr/include/python3.11 -c _configtest.c -o _configtest.o
/usr/bin/mpicc _configtest.o -L/usr/lib/x86_64-linux-gnu -Lbuild/temp.linux-x86_64-cpython-311 -Wl,--enable-new-dtags,-R/usr/lib/x86_64-linux-gnu -ldl -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
checking for function 'dlopen' ...
/usr/bin/mpicc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/home/skyubu2204/venv-ls-py311/include -I/usr/include/python3.11 -c _configtest.c -o _configtest.o
/usr/bin/mpicc _configtest.o -L/usr/lib/x86_64-linux-gnu -Lbuild/temp.linux-x86_64-cpython-311 -Wl,--enable-new-dtags,-R/usr/lib/x86_64-linux-gnu -ldl -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
building 'mpi4py.MPI' extension
/usr/bin/mpicc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DPyMPI_MISSING_MPI_LB=1 -DPyMPI_MISSING_MPI_UB=1 -DHAVE_DLFCN_H=1 -DHAVE_DLOPEN=1 -I/home/skyubu2204/venv-ls-py311/include -I/usr/include/python3.11 -c src/MPI.c -o build/temp.linux-x86_64-cpython-311/src/MPI.o
In file included from src/MPI.c:4:
src/mpi4py.MPI.c:198:12: fatal error: longintrepr.h: No such file or directory
198 | #include "longintrepr.h"
| ^~~~~~~~~~~~~~~
compilation terminated.
error: command '/usr/bin/mpicc' failed with exit code 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for mpi4py
```
Tested on Python 3.11.0 on Ubuntu 22.04 LTS.
|
1.0
|
Fails compilation on Python 3.11 - ```
/snip
204/venv-ls-py311/include -I/usr/include/python3.11 -c _configtest.c -o _configtest.o
success!
removing: _configtest.c _configtest.o
success!
checking for library 'dl' ...
/usr/bin/mpicc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/home/skyubu2204/venv-ls-py311/include -I/usr/include/python3.11 -c _configtest.c -o _configtest.o
/usr/bin/mpicc _configtest.o -L/usr/lib/x86_64-linux-gnu -Lbuild/temp.linux-x86_64-cpython-311 -Wl,--enable-new-dtags,-R/usr/lib/x86_64-linux-gnu -ldl -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
checking for function 'dlopen' ...
/usr/bin/mpicc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/home/skyubu2204/venv-ls-py311/include -I/usr/include/python3.11 -c _configtest.c -o _configtest.o
/usr/bin/mpicc _configtest.o -L/usr/lib/x86_64-linux-gnu -Lbuild/temp.linux-x86_64-cpython-311 -Wl,--enable-new-dtags,-R/usr/lib/x86_64-linux-gnu -ldl -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
building 'mpi4py.MPI' extension
/usr/bin/mpicc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DPyMPI_MISSING_MPI_LB=1 -DPyMPI_MISSING_MPI_UB=1 -DHAVE_DLFCN_H=1 -DHAVE_DLOPEN=1 -I/home/skyubu2204/venv-ls-py311/include -I/usr/include/python3.11 -c src/MPI.c -o build/temp.linux-x86_64-cpython-311/src/MPI.o
In file included from src/MPI.c:4:
src/mpi4py.MPI.c:198:12: fatal error: longintrepr.h: No such file or directory
198 | #include "longintrepr.h"
| ^~~~~~~~~~~~~~~
compilation terminated.
error: command '/usr/bin/mpicc' failed with exit code 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for mpi4py
```
Tested on Python 3.11.0 on Ubuntu 22.04 LTS.
|
build
|
fails compilation on python snip venv ls include i usr include c configtest c o configtest o success removing configtest c configtest o success checking for library dl usr bin mpicc wsign compare dndebug g fwrapv wall g fstack protector strong wformat werror format security g fwrapv fpic i home venv ls include i usr include c configtest c o configtest o usr bin mpicc configtest o l usr lib linux gnu lbuild temp linux cpython wl enable new dtags r usr lib linux gnu ldl o configtest success removing configtest c configtest o configtest checking for function dlopen usr bin mpicc wsign compare dndebug g fwrapv wall g fstack protector strong wformat werror format security g fwrapv fpic i home venv ls include i usr include c configtest c o configtest o usr bin mpicc configtest o l usr lib linux gnu lbuild temp linux cpython wl enable new dtags r usr lib linux gnu ldl o configtest success removing configtest c configtest o configtest building mpi extension usr bin mpicc wsign compare dndebug g fwrapv wall g fstack protector strong wformat werror format security g fwrapv fpic dpympi missing mpi lb dpympi missing mpi ub dhave dlfcn h dhave dlopen i home venv ls include i usr include c src mpi c o build temp linux cpython src mpi o in file included from src mpi c src mpi c fatal error longintrepr h no such file or directory include longintrepr h compilation terminated error command usr bin mpicc failed with exit code note this error originates from a subprocess and is likely not a problem with pip error failed building wheel for tested on python on ubuntu lts
| 1
|
161,761
| 25,396,584,826
|
IssuesEvent
|
2022-11-22 09:07:48
|
SafeKingMall/frontend
|
https://api.github.com/repos/SafeKingMall/frontend
|
closed
|
design/ItemDetail
|
Feature Design
|
## ⭐ 주요 기능
ItemDetail 디자인
## ⚙ 세부 기능
가격이 없는 아이템 가격부분 관리자 문의로 변경 되도록 설정
가격이 없는 아이템 구매하기버튼을 견적서 요청 버튼으로 변경 되도록 설정
description부분 디자인
## 📋 진행 사항
- [x] 가격이 없는 아이템 가격부분 관리자 문의로 변경 되도록 설정
- [x] 가격이 없는 아이템 구매하기버튼을 견적서 요청 버튼으로 변경 되도록 설정
- [x] description height가 1836px 보다 작은 경우 전체 내용을 보여준다.
- [x] description height가 1836px 보다 큰 경우 1836px의 크기로 자르고 상세페이지 더보기 버튼 생성
- [x] 상세페이지 더보기 버튼을 누르면 전체 내용을 다 보여주고 상세페이지 더보기 버튼은 display: none으로 설정
- [x] 상세페이지 버튼이 존재하면 description 맨 밑부분 그라데이션 투명도 설정
|
1.0
|
design/ItemDetail - ## ⭐ 주요 기능
ItemDetail 디자인
## ⚙ 세부 기능
가격이 없는 아이템 가격부분 관리자 문의로 변경 되도록 설정
가격이 없는 아이템 구매하기버튼을 견적서 요청 버튼으로 변경 되도록 설정
description부분 디자인
## 📋 진행 사항
- [x] 가격이 없는 아이템 가격부분 관리자 문의로 변경 되도록 설정
- [x] 가격이 없는 아이템 구매하기버튼을 견적서 요청 버튼으로 변경 되도록 설정
- [x] description height가 1836px 보다 작은 경우 전체 내용을 보여준다.
- [x] description height가 1836px 보다 큰 경우 1836px의 크기로 자르고 상세페이지 더보기 버튼 생성
- [x] 상세페이지 더보기 버튼을 누르면 전체 내용을 다 보여주고 상세페이지 더보기 버튼은 display: none으로 설정
- [x] 상세페이지 버튼이 존재하면 description 맨 밑부분 그라데이션 투명도 설정
|
non_build
|
design itemdetail ⭐ 주요 기능 itemdetail 디자인 ⚙ 세부 기능 가격이 없는 아이템 가격부분 관리자 문의로 변경 되도록 설정 가격이 없는 아이템 구매하기버튼을 견적서 요청 버튼으로 변경 되도록 설정 description부분 디자인 📋 진행 사항 가격이 없는 아이템 가격부분 관리자 문의로 변경 되도록 설정 가격이 없는 아이템 구매하기버튼을 견적서 요청 버튼으로 변경 되도록 설정 description height가 보다 작은 경우 전체 내용을 보여준다 description height가 보다 큰 경우 크기로 자르고 상세페이지 더보기 버튼 생성 상세페이지 더보기 버튼을 누르면 전체 내용을 다 보여주고 상세페이지 더보기 버튼은 display none으로 설정 상세페이지 버튼이 존재하면 description 맨 밑부분 그라데이션 투명도 설정
| 0
|
57,868
| 14,226,160,575
|
IssuesEvent
|
2020-11-17 22:28:57
|
MyEnroll/Prototypes
|
https://api.github.com/repos/MyEnroll/Prototypes
|
opened
|
CVE-2018-14042 (Medium) detected in bootstrap-3.3.6.min.js
|
security vulnerability
|
## CVE-2018-14042 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-3.3.6.min.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js</a></p>
<p>Path to dependency file: Prototypes/GetEmail/index.html</p>
<p>Path to vulnerable library: Prototypes/GetEmail/index.html</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.6.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/MyEnroll/Prototypes/commit/ca966e3e2dc52111bcbb4d16c9bbc0b48dec9f80">ca966e3e2dc52111bcbb4d16c9bbc0b48dec9f80</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14042>CVE-2018-14042</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/twbs/bootstrap/pull/26630">https://github.com/twbs/bootstrap/pull/26630</a></p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"twitter-bootstrap","packageVersion":"3.3.6","isTransitiveDependency":false,"dependencyTree":"twitter-bootstrap:3.3.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0"}],"vulnerabilityIdentifier":"CVE-2018-14042","vulnerabilityDetails":"In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14042","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
|
True
|
CVE-2018-14042 (Medium) detected in bootstrap-3.3.6.min.js - ## CVE-2018-14042 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>bootstrap-3.3.6.min.js</b></p></summary>
<p>The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js">https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js</a></p>
<p>Path to dependency file: Prototypes/GetEmail/index.html</p>
<p>Path to vulnerable library: Prototypes/GetEmail/index.html</p>
<p>
Dependency Hierarchy:
- :x: **bootstrap-3.3.6.min.js** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/MyEnroll/Prototypes/commit/ca966e3e2dc52111bcbb4d16c9bbc0b48dec9f80">ca966e3e2dc52111bcbb4d16c9bbc0b48dec9f80</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.
<p>Publish Date: 2018-07-13
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14042>CVE-2018-14042</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/twbs/bootstrap/pull/26630">https://github.com/twbs/bootstrap/pull/26630</a></p>
<p>Release Date: 2018-07-13</p>
<p>Fix Resolution: org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"JavaScript","packageName":"twitter-bootstrap","packageVersion":"3.3.6","isTransitiveDependency":false,"dependencyTree":"twitter-bootstrap:3.3.6","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.webjars.npm:bootstrap:4.1.2.org.webjars:bootstrap:3.4.0"}],"vulnerabilityIdentifier":"CVE-2018-14042","vulnerabilityDetails":"In Bootstrap before 4.1.2, XSS is possible in the data-container property of tooltip.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-14042","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> -->
|
non_build
|
cve medium detected in bootstrap min js cve medium severity vulnerability vulnerable library bootstrap min js the most popular front end framework for developing responsive mobile first projects on the web library home page a href path to dependency file prototypes getemail index html path to vulnerable library prototypes getemail index html dependency hierarchy x bootstrap min js vulnerable library found in head commit a href found in base branch master vulnerability details in bootstrap before xss is possible in the data container property of tooltip publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org webjars npm bootstrap org webjars bootstrap isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails in bootstrap before xss is possible in the data container property of tooltip vulnerabilityurl
| 0
|
236,179
| 18,073,974,321
|
IssuesEvent
|
2021-09-21 07:45:58
|
ita-social-projects/dokazovi-requirements
|
https://api.github.com/repos/ita-social-projects/dokazovi-requirements
|
opened
|
[Test for Story #188 ] Verify if system shows admin a warning message if the admin doesn’t fill in with information “Post Author field” and clicks on the “Опублікувати” button.
|
documentation test case
|
**Story link**
[#188 Story](https://jira.softserve.academy/browse/100)
### Status:
Not executed
### Title:
Verify if system shows admin a warning message if the admin doesn’t fill in with information “Post Author field” and clicks on the “Опублікувати” button.
### Description:
Verify if system shows admin a warning message “Заповніть поле автора” if the admin doesn’t fill in with information “Post Author field” and clicks on the “Опублікувати” button.
### Pre-conditions:
Go to the web application as admin
E-mail: admin@mail.com
Password: admin
Choose the type 'Стаття'/'Допис' in the dropdown list and press it.
Step № | Test Steps | Test data | Expected result | Status (Pass/Fail/Not executed) | Notes
------------ | ------------ | ------------ | ------------ | ------------ | ------------
1 | Fill all required fields except “Post Author field” | | | Not executed |
2 | Press "Опублікувати" button | | System shows a warning message “Заповніть поле автора” | Not executed |
### Dependencies:
link #188
### [Gantt Chart](https://docs.google.com/spreadsheets/d/1bgaEJDOf3OhfNRfP-WWPKmmZFW5C3blOUxamE3wSCbM/edit#gid=775577959)
|
1.0
|
[Test for Story #188 ] Verify if system shows admin a warning message if the admin doesn’t fill in with information “Post Author field” and clicks on the “Опублікувати” button. - **Story link**
[#188 Story](https://jira.softserve.academy/browse/100)
### Status:
Not executed
### Title:
Verify if system shows admin a warning message if the admin doesn’t fill in with information “Post Author field” and clicks on the “Опублікувати” button.
### Description:
Verify if system shows admin a warning message “Заповніть поле автора” if the admin doesn’t fill in with information “Post Author field” and clicks on the “Опублікувати” button.
### Pre-conditions:
Go to the web application as admin
E-mail: admin@mail.com
Password: admin
Choose the type 'Стаття'/'Допис' in the dropdown list and press it.
Step № | Test Steps | Test data | Expected result | Status (Pass/Fail/Not executed) | Notes
------------ | ------------ | ------------ | ------------ | ------------ | ------------
1 | Fill all required fields except “Post Author field” | | | Not executed |
2 | Press "Опублікувати" button | | System shows a warning message “Заповніть поле автора” | Not executed |
### Dependencies:
link #188
### [Gantt Chart](https://docs.google.com/spreadsheets/d/1bgaEJDOf3OhfNRfP-WWPKmmZFW5C3blOUxamE3wSCbM/edit#gid=775577959)
|
non_build
|
verify if system shows admin a warning message if the admin doesn’t fill in with information “post author field” and clicks on the “опублікувати” button story link status not executed title verify if system shows admin a warning message if the admin doesn’t fill in with information “post author field” and clicks on the “опублікувати” button description verify if system shows admin a warning message “заповніть поле автора” if the admin doesn’t fill in with information “post author field” and clicks on the “опублікувати” button pre conditions go to the web application as admin e mail admin mail com password admin choose the type стаття допис in the dropdown list and press it step № test steps test data expected result status pass fail not executed notes fill all required fields except “post author field” not executed press опублікувати button system shows a warning message “заповніть поле автора” not executed dependencies link
| 0
|
70,324
| 18,093,008,343
|
IssuesEvent
|
2021-09-22 05:24:11
|
tensorflow/tensorflow
|
https://api.github.com/repos/tensorflow/tensorflow
|
closed
|
Build fails with internal compiler error on file lstm_ops.cc
|
stat:awaiting response type:build/install stalled subtype:windows 2.6.0
|
**System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): windows 10
- TensorFlow installed from (source or binary): source
- TensorFlow version: 2.6.0
- Python version: 3.9
- Installed using virtualenv? pip? conda?: pip
- Bazel version (if compiling from source): 3.7.2
- GCC/Compiler version (if compiling from source): 10.2.0
- CUDA/cuDNN version: 11.4/8.2.2
- GPU model and memory: gtx 970 4GB
**Describe the problem**
Build failes after 4~ hours with error message
```
ERROR: C:/users/zaksm/source/repos/tensorflow/tensorflow/core/kernels/rnn/BUILD:42:18: C++ compilation of rule '//tensorflow/core/kernels/rnn:lstm_ops' failed (Exit -1): python.exe failed: error executing command
cd C:/users/zaksm/_bazel_zaksm/arvgy65w/execroot/org_tensorflow
SET CUDA_TOOLKIT_PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.4
SET GCC_HOST_COMPILER_PATH=C:/msys64/usr/bin/gcc.exe
SET INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt
SET LIB=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\um\x64
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\\Extensions\Microsoft\IntelliCode\CLI;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Team Tools\Performance Tools\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Team Tools\Performance Tools;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\vs2019\\x64;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\vs2019\;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\;;C:\WINDOWS\system32;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=C:/Users/zaksm/AppData/Local/Programs/Python/Python39/python.exe
SET PYTHON_LIB_PATH=C:/Users/zaksm/AppData/Local/Programs/Python/Python39/lib/site-packages
SET RUNFILES_MANIFEST_ONLY=1
SET TEMP=C:\Users\zaksm\AppData\Local\Temp
SET TF2_BEHAVIOR=1
SET TF_CUDA_COMPUTE_CAPABILITIES=5.2
SET TMP=C:\Users\zaksm\AppData\Local\Temp
C:/Users/zaksm/AppData/Local/Programs/Python/Python39/python.exe -B external/local_config_cuda/crosstool/windows/msvc_wrapper_for_nvcc.py /nologo /DCOMPILER_MSVC /DNOMINMAX /D_WIN32_WINNT=0x0600 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS /D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS /bigobj /Zm500 /J /Gy /GF /EHsc /wd4351 /wd4291 /wd4250 /wd4996 /I. /Ibazel-out/x64_windows-opt/bin /Iexternal/com_google_absl /Ibazel-out/x64_windows-opt/bin/external/com_google_absl /Iexternal/nsync /Ibazel-out/x64_windows-opt/bin/external/nsync /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif /Ibazel-out/x64_windows-opt/bin/external/gif /Iexternal/libjpeg_turbo /Ibazel-out/x64_windows-opt/bin/external/libjpeg_turbo /Iexternal/com_google_protobuf /Ibazel-out/x64_windows-opt/bin/external/com_google_protobuf /Iexternal/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/bin/external/com_googlesource_code_re2 /Iexternal/farmhash_archive /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive /Iexternal/fft2d /Ibazel-out/x64_windows-opt/bin/external/fft2d /Iexternal/highwayhash /Ibazel-out/x64_windows-opt/bin/external/highwayhash /Iexternal/zlib /Ibazel-out/x64_windows-opt/bin/external/zlib /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/snappy /Ibazel-out/x64_windows-opt/bin/external/snappy /Iexternal/local_config_cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda /Iexternal/local_config_rocm /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm /Iexternal/local_config_tensorrt /Ibazel-out/x64_windows-opt/bin/external/local_config_tensorrt /Iexternal/mkl_dnn_v1 /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1 /Iexternal/cudnn_frontend_archive /Ibazel-out/x64_windows-opt/bin/external/cudnn_frontend_archive /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual /Ibazel-out/x64_windows-opt/bin/external/local_config_tensorrt/_virtual_includes/tensorrt_headers /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cublas_headers_virtual /Ibazel-out/x64_windows-opt/bin/external/cudnn_frontend_archive/_virtual_includes/cudnn_frontend /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cufft_headers_virtual /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/curand_headers_virtual /Iexternal/nsync/public /Ibazel-out/x64_windows-opt/bin/external/nsync/public /Ithird_party/eigen3/mkl_include /Ibazel-out/x64_windows-opt/bin/third_party/eigen3/mkl_include /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif /Ibazel-out/x64_windows-opt/bin/external/gif /Iexternal/gif/windows /Ibazel-out/x64_windows-opt/bin/external/gif/windows /Iexternal/com_google_protobuf/src /Ibazel-out/x64_windows-opt/bin/external/com_google_protobuf/src /Iexternal/farmhash_archive/src /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive/src /Iexternal/zlib /Ibazel-out/x64_windows-opt/bin/external/zlib /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/local_config_cuda/cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda /Iexternal/local_config_cuda/cuda/cuda/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cuda/include /Iexternal/local_config_rocm/rocm /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm /Iexternal/local_config_rocm/rocm/rocm/include /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm/rocm/include /Iexternal/local_config_rocm/rocm/rocm/include/rocrand /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm/rocm/include/rocrand /Iexternal/local_config_rocm/rocm/rocm/include/roctracer /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm/rocm/include/roctracer /Iexternal/mkl_dnn_v1/include /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1/include /Iexternal/mkl_dnn_v1/src /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1/src /Iexternal/mkl_l_dnn_v1/src/cpu/x64/xbyak /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1/src/cpu/x64/xbyak /Iexternal/local_config_cuda/cuda/cublas/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cublas/include /Iexternal/local_config_cuda/cuda/cufft/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cufft/include /Iexternal/local_config_cuda/cuda/curand/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/curand/include /DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL /DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL /DTF_USE_SNAPPY /DEIGEN_MPL2_ONLY /DEIGEN_MAX_ALIGN_BYTES=64 /showIncludes /MD /O2 /DNDEBUG /W0 /D_USE_MATH_DEFINES -DWIN32_LEAN_AND_MEAN -DNOGDI /experimental:preprocessor /arch:AVX /std:c++14 -DGOOGLE_CUDA=1 -DTENSORFLOW_USE_NVCC=1 -DTENSORFLOW_USE_XLA=1 -DINTEL_MKL -DTENSORFLOW_MONOLITHIC_BUILD /DPLATFORM_WINDOWS /DEIGEN_HAS_C99_MATH /DTENSORFLOW_USE_EIGEN_THREADPOOL /DEIGEN_AVOID_STL_ARRAY /Iexternal/gemmlowp /wd4018 /wd4577 /DNOGDI /DTF_COMPILE_LIBRARY -DNV_CUDNN_DISABLE_EXCEPTION -DGOOGLE_CUDA=1 -DNV_CUDNN_DISABLE_EXCEPTION -DTENSORFLOW_USE_XLA=1 -DINTEL_MKL=1 /Fobazel-out/x64_windows-opt/bin/tensorflow/core/kernels/rnn/_objs/lstm_ops/lstm_ops.obj /c tensorflow/core/kernels/rnn/lstm_ops.cc
Execution platform: @local_execution_config_platform//:platform
cl : Command line warning D9035 : option 'experimental:preprocessor' has been deprecated and will be removed in a future release
cl : Command line warning D9036 : use 'Zc:preprocessor' instead of 'experimental:preprocessor'
C:\users\zaksm\_bazel_zaksm\arvgy65w\execroot\org_tensorflow\tensorflow\core\kernels\rnn\lstm_ops.cc(56) : fatal error C1001: Internal compiler error.
(compiler file 'd:\a01\_work\2\s\src\vctools\Compiler\Utc\src\p2\main.c', line 213)
To work around this problem, try simplifying or changing the program near the locations listed above.
If possible please provide a repro here: https://developercommunity.visualstudio.com
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Target //tensorflow:tensorflow.dll failed to build
INFO: Elapsed time: 13605.853s, Critical Path: 6621.50s
INFO: 11659 processes: 3915 internal, 7744 local.
FAILED: Build did NOT complete successfully
```
**Provide the exact sequence of commands / steps that you executed before running into the problem**
```
bazel build --config=opt --config=cuda tensorflow:tensorflow.dll
```
**Any other info / logs**
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.
|
1.0
|
Build fails with internal compiler error on file lstm_ops.cc - **System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): windows 10
- TensorFlow installed from (source or binary): source
- TensorFlow version: 2.6.0
- Python version: 3.9
- Installed using virtualenv? pip? conda?: pip
- Bazel version (if compiling from source): 3.7.2
- GCC/Compiler version (if compiling from source): 10.2.0
- CUDA/cuDNN version: 11.4/8.2.2
- GPU model and memory: gtx 970 4GB
**Describe the problem**
Build failes after 4~ hours with error message
```
ERROR: C:/users/zaksm/source/repos/tensorflow/tensorflow/core/kernels/rnn/BUILD:42:18: C++ compilation of rule '//tensorflow/core/kernels/rnn:lstm_ops' failed (Exit -1): python.exe failed: error executing command
cd C:/users/zaksm/_bazel_zaksm/arvgy65w/execroot/org_tensorflow
SET CUDA_TOOLKIT_PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.4
SET GCC_HOST_COMPILER_PATH=C:/msys64/usr/bin/gcc.exe
SET INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\include;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt
SET LIB=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\ATLMFC\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\um\x64
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\\Extensions\Microsoft\IntelliCode\CLI;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Team Tools\Performance Tools\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Team Tools\Performance Tools;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\vs2019\\x64;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\vs2019\;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\;;C:\WINDOWS\system32;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=C:/Users/zaksm/AppData/Local/Programs/Python/Python39/python.exe
SET PYTHON_LIB_PATH=C:/Users/zaksm/AppData/Local/Programs/Python/Python39/lib/site-packages
SET RUNFILES_MANIFEST_ONLY=1
SET TEMP=C:\Users\zaksm\AppData\Local\Temp
SET TF2_BEHAVIOR=1
SET TF_CUDA_COMPUTE_CAPABILITIES=5.2
SET TMP=C:\Users\zaksm\AppData\Local\Temp
C:/Users/zaksm/AppData/Local/Programs/Python/Python39/python.exe -B external/local_config_cuda/crosstool/windows/msvc_wrapper_for_nvcc.py /nologo /DCOMPILER_MSVC /DNOMINMAX /D_WIN32_WINNT=0x0600 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS /D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS /bigobj /Zm500 /J /Gy /GF /EHsc /wd4351 /wd4291 /wd4250 /wd4996 /I. /Ibazel-out/x64_windows-opt/bin /Iexternal/com_google_absl /Ibazel-out/x64_windows-opt/bin/external/com_google_absl /Iexternal/nsync /Ibazel-out/x64_windows-opt/bin/external/nsync /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif /Ibazel-out/x64_windows-opt/bin/external/gif /Iexternal/libjpeg_turbo /Ibazel-out/x64_windows-opt/bin/external/libjpeg_turbo /Iexternal/com_google_protobuf /Ibazel-out/x64_windows-opt/bin/external/com_google_protobuf /Iexternal/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/bin/external/com_googlesource_code_re2 /Iexternal/farmhash_archive /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive /Iexternal/fft2d /Ibazel-out/x64_windows-opt/bin/external/fft2d /Iexternal/highwayhash /Ibazel-out/x64_windows-opt/bin/external/highwayhash /Iexternal/zlib /Ibazel-out/x64_windows-opt/bin/external/zlib /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/snappy /Ibazel-out/x64_windows-opt/bin/external/snappy /Iexternal/local_config_cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda /Iexternal/local_config_rocm /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm /Iexternal/local_config_tensorrt /Ibazel-out/x64_windows-opt/bin/external/local_config_tensorrt /Iexternal/mkl_dnn_v1 /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1 /Iexternal/cudnn_frontend_archive /Ibazel-out/x64_windows-opt/bin/external/cudnn_frontend_archive /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cuda_headers_virtual /Ibazel-out/x64_windows-opt/bin/external/local_config_tensorrt/_virtual_includes/tensorrt_headers /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cudnn_header /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cublas_headers_virtual /Ibazel-out/x64_windows-opt/bin/external/cudnn_frontend_archive/_virtual_includes/cudnn_frontend /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/cufft_headers_virtual /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/_virtual_includes/curand_headers_virtual /Iexternal/nsync/public /Ibazel-out/x64_windows-opt/bin/external/nsync/public /Ithird_party/eigen3/mkl_include /Ibazel-out/x64_windows-opt/bin/third_party/eigen3/mkl_include /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif /Ibazel-out/x64_windows-opt/bin/external/gif /Iexternal/gif/windows /Ibazel-out/x64_windows-opt/bin/external/gif/windows /Iexternal/com_google_protobuf/src /Ibazel-out/x64_windows-opt/bin/external/com_google_protobuf/src /Iexternal/farmhash_archive/src /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive/src /Iexternal/zlib /Ibazel-out/x64_windows-opt/bin/external/zlib /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/local_config_cuda/cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda /Iexternal/local_config_cuda/cuda/cuda/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cuda/include /Iexternal/local_config_rocm/rocm /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm /Iexternal/local_config_rocm/rocm/rocm/include /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm/rocm/include /Iexternal/local_config_rocm/rocm/rocm/include/rocrand /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm/rocm/include/rocrand /Iexternal/local_config_rocm/rocm/rocm/include/roctracer /Ibazel-out/x64_windows-opt/bin/external/local_config_rocm/rocm/rocm/include/roctracer /Iexternal/mkl_dnn_v1/include /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1/include /Iexternal/mkl_dnn_v1/src /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1/src /Iexternal/mkl_l_dnn_v1/src/cpu/x64/xbyak /Ibazel-out/x64_windows-opt/bin/external/mkl_dnn_v1/src/cpu/x64/xbyak /Iexternal/local_config_cuda/cuda/cublas/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cublas/include /Iexternal/local_config_cuda/cuda/cufft/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cufft/include /Iexternal/local_config_cuda/cuda/curand/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/curand/include /DTENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL /DTENSORFLOW_USE_MKLDNN_CONTRACTION_KERNEL /DTF_USE_SNAPPY /DEIGEN_MPL2_ONLY /DEIGEN_MAX_ALIGN_BYTES=64 /showIncludes /MD /O2 /DNDEBUG /W0 /D_USE_MATH_DEFINES -DWIN32_LEAN_AND_MEAN -DNOGDI /experimental:preprocessor /arch:AVX /std:c++14 -DGOOGLE_CUDA=1 -DTENSORFLOW_USE_NVCC=1 -DTENSORFLOW_USE_XLA=1 -DINTEL_MKL -DTENSORFLOW_MONOLITHIC_BUILD /DPLATFORM_WINDOWS /DEIGEN_HAS_C99_MATH /DTENSORFLOW_USE_EIGEN_THREADPOOL /DEIGEN_AVOID_STL_ARRAY /Iexternal/gemmlowp /wd4018 /wd4577 /DNOGDI /DTF_COMPILE_LIBRARY -DNV_CUDNN_DISABLE_EXCEPTION -DGOOGLE_CUDA=1 -DNV_CUDNN_DISABLE_EXCEPTION -DTENSORFLOW_USE_XLA=1 -DINTEL_MKL=1 /Fobazel-out/x64_windows-opt/bin/tensorflow/core/kernels/rnn/_objs/lstm_ops/lstm_ops.obj /c tensorflow/core/kernels/rnn/lstm_ops.cc
Execution platform: @local_execution_config_platform//:platform
cl : Command line warning D9035 : option 'experimental:preprocessor' has been deprecated and will be removed in a future release
cl : Command line warning D9036 : use 'Zc:preprocessor' instead of 'experimental:preprocessor'
C:\users\zaksm\_bazel_zaksm\arvgy65w\execroot\org_tensorflow\tensorflow\core\kernels\rnn\lstm_ops.cc(56) : fatal error C1001: Internal compiler error.
(compiler file 'd:\a01\_work\2\s\src\vctools\Compiler\Utc\src\p2\main.c', line 213)
To work around this problem, try simplifying or changing the program near the locations listed above.
If possible please provide a repro here: https://developercommunity.visualstudio.com
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Target //tensorflow:tensorflow.dll failed to build
INFO: Elapsed time: 13605.853s, Critical Path: 6621.50s
INFO: 11659 processes: 3915 internal, 7744 local.
FAILED: Build did NOT complete successfully
```
**Provide the exact sequence of commands / steps that you executed before running into the problem**
```
bazel build --config=opt --config=cuda tensorflow:tensorflow.dll
```
**Any other info / logs**
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.
|
build
|
build fails with internal compiler error on file lstm ops cc system information os platform and distribution e g linux ubuntu windows tensorflow installed from source or binary source tensorflow version python version installed using virtualenv pip conda pip bazel version if compiling from source gcc compiler version if compiling from source cuda cudnn version gpu model and memory gtx describe the problem build failes after hours with error message error c users zaksm source repos tensorflow tensorflow core kernels rnn build c compilation of rule tensorflow core kernels rnn lstm ops failed exit python exe failed error executing command cd c users zaksm bazel zaksm execroot org tensorflow set cuda toolkit path c program files nvidia gpu computing toolkit cuda set gcc host compiler path c usr bin gcc exe set include c program files microsoft visual studio community vc tools msvc atlmfc include c program files microsoft visual studio community vc tools msvc include c program files windows kits include ucrt c program files windows kits include shared c program files windows kits include um c program files windows kits include winrt c program files windows kits include cppwinrt set lib c program files microsoft visual studio community vc tools msvc atlmfc lib c program files microsoft visual studio community vc tools msvc lib c program files windows kits lib ucrt c program files windows kits lib um set path c program files microsoft visual studio community ide extensions microsoft intellicode cli c program files microsoft visual studio community vc tools msvc bin c program files microsoft visual studio community ide vc vcpackages c program files microsoft visual studio community ide commonextensions microsoft testwindow c program files microsoft visual studio community ide commonextensions microsoft teamfoundation team explorer c program files microsoft visual studio community msbuild current bin roslyn c program files microsoft visual studio community team tools performance tools c program files microsoft visual studio community team tools performance tools c program files microsoft visual studio shared common vsperfcollectiontools c program files microsoft visual studio shared common vsperfcollectiontools c program files microsoft visual studio community tools devinit c program files windows kits bin c program files windows kits bin c program files microsoft visual studio community msbuild current bin c windows microsoft net c program files microsoft visual studio community ide c program files microsoft visual studio community tools c windows c program files microsoft visual studio community ide commonextensions microsoft cmake cmake bin c program files microsoft visual studio community ide commonextensions microsoft cmake ninja set pwd proc self cwd set python bin path c users zaksm appdata local programs python python exe set python lib path c users zaksm appdata local programs python lib site packages set runfiles manifest only set temp c users zaksm appdata local temp set behavior set tf cuda compute capabilities set tmp c users zaksm appdata local temp c users zaksm appdata local programs python python exe b external local config cuda crosstool windows msvc wrapper for nvcc py nologo dcompiler msvc dnominmax d winnt d crt secure no deprecate d crt secure no warnings d silence stdext hash deprecation warnings bigobj j gy gf ehsc i ibazel out windows opt bin iexternal com google absl ibazel out windows opt bin external com google absl iexternal nsync ibazel out windows opt bin external nsync iexternal eigen archive ibazel out windows opt bin external eigen archive iexternal gif ibazel out windows opt bin external gif iexternal libjpeg turbo ibazel out windows opt bin external libjpeg turbo iexternal com google protobuf ibazel out windows opt bin external com google protobuf iexternal com googlesource code ibazel out windows opt bin external com googlesource code iexternal farmhash archive ibazel out windows opt bin external farmhash archive iexternal ibazel out windows opt bin external iexternal highwayhash ibazel out windows opt bin external highwayhash iexternal zlib ibazel out windows opt bin external zlib iexternal double conversion ibazel out windows opt bin external double conversion iexternal snappy ibazel out windows opt bin external snappy iexternal local config cuda ibazel out windows opt bin external local config cuda iexternal local config rocm ibazel out windows opt bin external local config rocm iexternal local config tensorrt ibazel out windows opt bin external local config tensorrt iexternal mkl dnn ibazel out windows opt bin external mkl dnn iexternal cudnn frontend archive ibazel out windows opt bin external cudnn frontend archive ibazel out windows opt bin external local config cuda cuda virtual includes cuda headers virtual ibazel out windows opt bin external local config tensorrt virtual includes tensorrt headers ibazel out windows opt bin external local config cuda cuda virtual includes cudnn header ibazel out windows opt bin external local config cuda cuda virtual includes cublas headers virtual ibazel out windows opt bin external cudnn frontend archive virtual includes cudnn frontend ibazel out windows opt bin external local config cuda cuda virtual includes cufft headers virtual ibazel out windows opt bin external local config cuda cuda virtual includes curand headers virtual iexternal nsync public ibazel out windows opt bin external nsync public ithird party mkl include ibazel out windows opt bin third party mkl include iexternal eigen archive ibazel out windows opt bin external eigen archive iexternal gif ibazel out windows opt bin external gif iexternal gif windows ibazel out windows opt bin external gif windows iexternal com google protobuf src ibazel out windows opt bin external com google protobuf src iexternal farmhash archive src ibazel out windows opt bin external farmhash archive src iexternal zlib ibazel out windows opt bin external zlib iexternal double conversion ibazel out windows opt bin external double conversion iexternal local config cuda cuda ibazel out windows opt bin external local config cuda cuda iexternal local config cuda cuda cuda include ibazel out windows opt bin external local config cuda cuda cuda include iexternal local config rocm rocm ibazel out windows opt bin external local config rocm rocm iexternal local config rocm rocm rocm include ibazel out windows opt bin external local config rocm rocm rocm include iexternal local config rocm rocm rocm include rocrand ibazel out windows opt bin external local config rocm rocm rocm include rocrand iexternal local config rocm rocm rocm include roctracer ibazel out windows opt bin external local config rocm rocm rocm include roctracer iexternal mkl dnn include ibazel out windows opt bin external mkl dnn include iexternal mkl dnn src ibazel out windows opt bin external mkl dnn src iexternal mkl l dnn src cpu xbyak ibazel out windows opt bin external mkl dnn src cpu xbyak iexternal local config cuda cuda cublas include ibazel out windows opt bin external local config cuda cuda cublas include iexternal local config cuda cuda cufft include ibazel out windows opt bin external local config cuda cuda cufft include iexternal local config cuda cuda curand include ibazel out windows opt bin external local config cuda cuda curand include dtensorflow use custom contraction kernel dtensorflow use mkldnn contraction kernel dtf use snappy deigen only deigen max align bytes showincludes md dndebug d use math defines lean and mean dnogdi experimental preprocessor arch avx std c dgoogle cuda dtensorflow use nvcc dtensorflow use xla dintel mkl dtensorflow monolithic build dplatform windows deigen has math dtensorflow use eigen threadpool deigen avoid stl array iexternal gemmlowp dnogdi dtf compile library dnv cudnn disable exception dgoogle cuda dnv cudnn disable exception dtensorflow use xla dintel mkl fobazel out windows opt bin tensorflow core kernels rnn objs lstm ops lstm ops obj c tensorflow core kernels rnn lstm ops cc execution platform local execution config platform platform cl command line warning option experimental preprocessor has been deprecated and will be removed in a future release cl command line warning use zc preprocessor instead of experimental preprocessor c users zaksm bazel zaksm execroot org tensorflow tensorflow core kernels rnn lstm ops cc fatal error internal compiler error compiler file d work s src vctools compiler utc src main c line to work around this problem try simplifying or changing the program near the locations listed above if possible please provide a repro here please choose the technical support command on the visual c help menu or open the technical support help file for more information target tensorflow tensorflow dll failed to build info elapsed time critical path info processes internal local failed build did not complete successfully provide the exact sequence of commands steps that you executed before running into the problem bazel build config opt config cuda tensorflow tensorflow dll any other info logs include any logs or source code that would be helpful to diagnose the problem if including tracebacks please include the full traceback large logs and files should be attached
| 1
|
28,894
| 8,224,732,574
|
IssuesEvent
|
2018-09-06 14:27:10
|
eclipse/openj9
|
https://api.github.com/repos/eclipse/openj9
|
closed
|
Turn off all OpenJ9 JDK9 builds
|
comp:build
|
JDK9 is a short term release which has been out of support since April. JDK10 is available and supported by OpenJ9. The 0.9.0 release plan [1] doesn't include support for JDK9, and JDK9 is not included in the OpenJ9 support statement [2]. OpenJ9 doesn't have the machine capacity to keep testing JDK9 in addition to JDK8 and JDK10.
I suggest OpenJ9 turn off all JDK9 builds.
[1] https://projects.eclipse.org/projects/technology.openj9/releases/0.9.0
[2] https://github.com/eclipse/openj9-docs/blob/master/docs/openj9_support.md
|
1.0
|
Turn off all OpenJ9 JDK9 builds - JDK9 is a short term release which has been out of support since April. JDK10 is available and supported by OpenJ9. The 0.9.0 release plan [1] doesn't include support for JDK9, and JDK9 is not included in the OpenJ9 support statement [2]. OpenJ9 doesn't have the machine capacity to keep testing JDK9 in addition to JDK8 and JDK10.
I suggest OpenJ9 turn off all JDK9 builds.
[1] https://projects.eclipse.org/projects/technology.openj9/releases/0.9.0
[2] https://github.com/eclipse/openj9-docs/blob/master/docs/openj9_support.md
|
build
|
turn off all builds is a short term release which has been out of support since april is available and supported by the release plan doesn t include support for and is not included in the support statement doesn t have the machine capacity to keep testing in addition to and i suggest turn off all builds
| 1
|
87,295
| 25,081,582,666
|
IssuesEvent
|
2022-11-07 19:49:11
|
quicklisp/quicklisp-projects
|
https://api.github.com/repos/quicklisp/quicklisp-projects
|
closed
|
Please add Github-API-CL
|
canbuild
|
[Github-API-CL](https://github.com/ccqpein/Github-API-CL) is a wrapper rest api sdk of github rest API v3.
All dependencies can quickload via quicklisp. Hopefully it can add to quicklisp for easy to loading.
Thank you!
|
1.0
|
Please add Github-API-CL - [Github-API-CL](https://github.com/ccqpein/Github-API-CL) is a wrapper rest api sdk of github rest API v3.
All dependencies can quickload via quicklisp. Hopefully it can add to quicklisp for easy to loading.
Thank you!
|
build
|
please add github api cl is a wrapper rest api sdk of github rest api all dependencies can quickload via quicklisp hopefully it can add to quicklisp for easy to loading thank you
| 1
|
8,812
| 4,328,719,757
|
IssuesEvent
|
2016-07-26 14:49:54
|
ElektraInitiative/libelektra
|
https://api.github.com/repos/ElektraInitiative/libelektra
|
opened
|
Clang compile errror in backendparser.cpp
|
build
|
/home/peter/elektra-clang/src/libs/tools/src/backendparser.cpp:100:89: error: use of undeclared identifier 'c'
if (std::all_of (argument.begin (), argument.end (), [](char c) { return std::isspace (c) || c == ...
^
/home/peter/elektra-clang/src/libs/tools/src/backendparser.cpp:100:95: error: use of undeclared identifier 'c'
if (std::all_of (argument.begin (), argument.end (), [](char c) { return std::isspace (c) || c == ...
^
There seems so be a problem with clang. I ran the following commands directly on the build server:
cmake -DPLUGINS="cachefilter;ccode;conditionals;constants;counter;crypto_botan;crypto_gcrypt;crypto_openssl;csvstorage;doc;dpkg;dump;enum;error;filecheck;fstab;glob;hexcode;hidden;hosts;iconv;ini;iterate;keytometa;line;lineendings;list;logchange;mathcheck;network;ni;noresolver;null;path;profile;regexstore;rename;resolver_fm_b_b;resolver_fm_hb_b;resolver_fm_hp_b;resolver_fm_hpu_b;resolver_fm_pb_b;resolver_fm_ub_x;resolver_fm_uhb_xb;resolver_fm_xb_x;resolver_fm_xhp_x;resolver_fm_xp_x;semlock;shell;simpleini;spec;struct;sync;syslog;template;timeofday;tracer;type;uname;validation;wresolver" -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DKDB_DB_SYSTEM=/home/peter/elektra-clang/system -DCMAKE_INSTALL_PREFIX=/home/peter/elektra-clang -DBUILD_DOCUMENTATION=OFF ..
run-make
|
1.0
|
Clang compile errror in backendparser.cpp - /home/peter/elektra-clang/src/libs/tools/src/backendparser.cpp:100:89: error: use of undeclared identifier 'c'
if (std::all_of (argument.begin (), argument.end (), [](char c) { return std::isspace (c) || c == ...
^
/home/peter/elektra-clang/src/libs/tools/src/backendparser.cpp:100:95: error: use of undeclared identifier 'c'
if (std::all_of (argument.begin (), argument.end (), [](char c) { return std::isspace (c) || c == ...
^
There seems so be a problem with clang. I ran the following commands directly on the build server:
cmake -DPLUGINS="cachefilter;ccode;conditionals;constants;counter;crypto_botan;crypto_gcrypt;crypto_openssl;csvstorage;doc;dpkg;dump;enum;error;filecheck;fstab;glob;hexcode;hidden;hosts;iconv;ini;iterate;keytometa;line;lineendings;list;logchange;mathcheck;network;ni;noresolver;null;path;profile;regexstore;rename;resolver_fm_b_b;resolver_fm_hb_b;resolver_fm_hp_b;resolver_fm_hpu_b;resolver_fm_pb_b;resolver_fm_ub_x;resolver_fm_uhb_xb;resolver_fm_xb_x;resolver_fm_xhp_x;resolver_fm_xp_x;semlock;shell;simpleini;spec;struct;sync;syslog;template;timeofday;tracer;type;uname;validation;wresolver" -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DKDB_DB_SYSTEM=/home/peter/elektra-clang/system -DCMAKE_INSTALL_PREFIX=/home/peter/elektra-clang -DBUILD_DOCUMENTATION=OFF ..
run-make
|
build
|
clang compile errror in backendparser cpp home peter elektra clang src libs tools src backendparser cpp error use of undeclared identifier c if std all of argument begin argument end char c return std isspace c c home peter elektra clang src libs tools src backendparser cpp error use of undeclared identifier c if std all of argument begin argument end char c return std isspace c c there seems so be a problem with clang i ran the following commands directly on the build server cmake dplugins cachefilter ccode conditionals constants counter crypto botan crypto gcrypt crypto openssl csvstorage doc dpkg dump enum error filecheck fstab glob hexcode hidden hosts iconv ini iterate keytometa line lineendings list logchange mathcheck network ni noresolver null path profile regexstore rename resolver fm b b resolver fm hb b resolver fm hp b resolver fm hpu b resolver fm pb b resolver fm ub x resolver fm uhb xb resolver fm xb x resolver fm xhp x resolver fm xp x semlock shell simpleini spec struct sync syslog template timeofday tracer type uname validation wresolver dcmake c compiler clang dcmake cxx compiler clang dkdb db system home peter elektra clang system dcmake install prefix home peter elektra clang dbuild documentation off run make
| 1
|
90,236
| 26,017,636,956
|
IssuesEvent
|
2022-12-21 09:51:17
|
google/mediapipe
|
https://api.github.com/repos/google/mediapipe
|
closed
|
Linker error compiling MediaPipe face detection on Windows
|
type:build/install stat:awaiting response platform:windows framework solution:face detection stalled
|
Environment:
OS: Windows 11
Compiler: Visual Studio 2022
Programming language: C++, 64-bit build
Bazel version 5.3.2
OpenCV version 3.4.16
Python version 3.10
Build command:
bazel build -c opt --define MEDIAPIPE_DISABLE_GPU=1 --action_env PYTHON_BIN_PATH="C://Program Files//Python310//python.exe" mediapipe/examples/desktop/face_detection:face_detection_cpu
Problem:
face_detection_options_registry.lo.lib(face_detection_options_lib.obj) : error LNK2019: unresolved external symbol "private: static class RegistrationToken::RegistrationToken const mediapipe::tool::OptionsRegistry::registration_token<class mediapipe::FaceDetectionOptions>" (??$registration_token@VFaceDetectionOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@0VRegistrationToken@3@B) referenced in function "??__E?$registration_token@VFaceDetectionOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ" (??__E?$registration_token@VFaceDetectionOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ)
inference_calculator_options_registry.lo.lib(inference_calculator_options_lib.obj) : error LNK2019: unresolved external symbol "private: static class RegistrationToken::RegistrationToken const mediapipe::tool::OptionsRegistry::registration_token<class mediapipe::InferenceCalculatorOptions>" (??$registration_token@VInferenceCalculatorOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@0VRegistrationToken@3@B) referenced in function "??__E?$registration_token@VInferenceCalculatorOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ" (??__E?$registration_token@VInferenceCalculatorOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ)
bazel-out\x64_windows-opt\bin\mediapipe\examples\desktop\face_detection\face_detection_cpu.exe : fatal error LNK1120: 2 unresolved externals
|
1.0
|
Linker error compiling MediaPipe face detection on Windows - Environment:
OS: Windows 11
Compiler: Visual Studio 2022
Programming language: C++, 64-bit build
Bazel version 5.3.2
OpenCV version 3.4.16
Python version 3.10
Build command:
bazel build -c opt --define MEDIAPIPE_DISABLE_GPU=1 --action_env PYTHON_BIN_PATH="C://Program Files//Python310//python.exe" mediapipe/examples/desktop/face_detection:face_detection_cpu
Problem:
face_detection_options_registry.lo.lib(face_detection_options_lib.obj) : error LNK2019: unresolved external symbol "private: static class RegistrationToken::RegistrationToken const mediapipe::tool::OptionsRegistry::registration_token<class mediapipe::FaceDetectionOptions>" (??$registration_token@VFaceDetectionOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@0VRegistrationToken@3@B) referenced in function "??__E?$registration_token@VFaceDetectionOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ" (??__E?$registration_token@VFaceDetectionOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ)
inference_calculator_options_registry.lo.lib(inference_calculator_options_lib.obj) : error LNK2019: unresolved external symbol "private: static class RegistrationToken::RegistrationToken const mediapipe::tool::OptionsRegistry::registration_token<class mediapipe::InferenceCalculatorOptions>" (??$registration_token@VInferenceCalculatorOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@0VRegistrationToken@3@B) referenced in function "??__E?$registration_token@VInferenceCalculatorOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ" (??__E?$registration_token@VInferenceCalculatorOptions@mediapipe@@@OptionsRegistry@tool@mediapipe@@YAXXZ)
bazel-out\x64_windows-opt\bin\mediapipe\examples\desktop\face_detection\face_detection_cpu.exe : fatal error LNK1120: 2 unresolved externals
|
build
|
linker error compiling mediapipe face detection on windows environment os windows compiler visual studio programming language c bit build bazel version opencv version python version build command bazel build c opt define mediapipe disable gpu action env python bin path c program files python exe mediapipe examples desktop face detection face detection cpu problem face detection options registry lo lib face detection options lib obj error unresolved external symbol private static class registrationtoken registrationtoken const mediapipe tool optionsregistry registration token registration token vfacedetectionoptions mediapipe optionsregistry tool mediapipe b referenced in function e registration token vfacedetectionoptions mediapipe optionsregistry tool mediapipe yaxxz e registration token vfacedetectionoptions mediapipe optionsregistry tool mediapipe yaxxz inference calculator options registry lo lib inference calculator options lib obj error unresolved external symbol private static class registrationtoken registrationtoken const mediapipe tool optionsregistry registration token registration token vinferencecalculatoroptions mediapipe optionsregistry tool mediapipe b referenced in function e registration token vinferencecalculatoroptions mediapipe optionsregistry tool mediapipe yaxxz e registration token vinferencecalculatoroptions mediapipe optionsregistry tool mediapipe yaxxz bazel out windows opt bin mediapipe examples desktop face detection face detection cpu exe fatal error unresolved externals
| 1
|
123,163
| 10,256,027,338
|
IssuesEvent
|
2019-08-21 16:40:16
|
rancher/rancher
|
https://api.github.com/repos/rancher/rancher
|
closed
|
Node template - hyperlink on Access Token section does not work while adding a digital ocean node template
|
[zube]: To Test kind/bug-qa team/ui
|
**What kind of request is this (question/bug/enhancement/feature request):** bug
**Steps to reproduce (least amount of steps as possible):**
1. on `master-head`, Click on add a node template.
2. Select digital ocean.
**Expected Result:**
`Applications & API` hyperlink should navigate the user to the appropriate page.
**Actual Result:**
`Applications & API` hyperlink is not clickable/doesnt work.
<img width="1281" alt="Screen Shot 2019-08-19 at 10 42 33 AM" src="https://user-images.githubusercontent.com/26032343/63287111-62b91a80-c26e-11e9-9d33-693ec9b33efd.png">
**Other details that may be helpful:**
**Environment information**
- Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): rancher:master-head - latest
- Installation option (single install/HA): single
|
1.0
|
Node template - hyperlink on Access Token section does not work while adding a digital ocean node template - **What kind of request is this (question/bug/enhancement/feature request):** bug
**Steps to reproduce (least amount of steps as possible):**
1. on `master-head`, Click on add a node template.
2. Select digital ocean.
**Expected Result:**
`Applications & API` hyperlink should navigate the user to the appropriate page.
**Actual Result:**
`Applications & API` hyperlink is not clickable/doesnt work.
<img width="1281" alt="Screen Shot 2019-08-19 at 10 42 33 AM" src="https://user-images.githubusercontent.com/26032343/63287111-62b91a80-c26e-11e9-9d33-693ec9b33efd.png">
**Other details that may be helpful:**
**Environment information**
- Rancher version (`rancher/rancher`/`rancher/server` image tag or shown bottom left in the UI): rancher:master-head - latest
- Installation option (single install/HA): single
|
non_build
|
node template hyperlink on access token section does not work while adding a digital ocean node template what kind of request is this question bug enhancement feature request bug steps to reproduce least amount of steps as possible on master head click on add a node template select digital ocean expected result applications api hyperlink should navigate the user to the appropriate page actual result applications api hyperlink is not clickable doesnt work img width alt screen shot at am src other details that may be helpful environment information rancher version rancher rancher rancher server image tag or shown bottom left in the ui rancher master head latest installation option single install ha single
| 0
|
351,901
| 32,034,586,648
|
IssuesEvent
|
2023-09-22 14:30:21
|
python/cpython
|
https://api.github.com/repos/python/cpython
|
closed
|
tarfile doesn't set file modes correctly on FreeBSD: test_tarfile.test_modes() fails on FreeBSD
|
type-bug tests OS-freebsd
|
# Bug report
### Bug description:
The best example for this is given in the regression test suite. `TestExtractionFilters.test_modes` in `test_tarfiles` fails with `OSError: [Errno 79] Inappropriate file type or format` on FreeBSD.
The reason is that [chmod](https://man.freebsd.org/cgi/man.cgi?query=chmod&sektion=2&manpath=FreeBSD+14.0-STABLE) fails with EFTYPE (errno 79) when attempting to set the sticky bit (S_ISVTX) on a file when the effective user is not root. Most other platforms will just ignore the bit in chmod calls.
Tested on FreeBSD 13.2 but documentation suggests this is not a new behavior.
(Note that FreeBSD buildbots haven't been running for a while. This is probably why this issue, although it causes a test failure, hadn't been caught before)
### CPython versions tested on:
3.12
### Operating systems tested on:
Other
<!-- gh-linked-prs -->
### Linked PRs
* gh-108950
* gh-109697
* gh-109698
* gh-109699
<!-- /gh-linked-prs -->
|
1.0
|
tarfile doesn't set file modes correctly on FreeBSD: test_tarfile.test_modes() fails on FreeBSD - # Bug report
### Bug description:
The best example for this is given in the regression test suite. `TestExtractionFilters.test_modes` in `test_tarfiles` fails with `OSError: [Errno 79] Inappropriate file type or format` on FreeBSD.
The reason is that [chmod](https://man.freebsd.org/cgi/man.cgi?query=chmod&sektion=2&manpath=FreeBSD+14.0-STABLE) fails with EFTYPE (errno 79) when attempting to set the sticky bit (S_ISVTX) on a file when the effective user is not root. Most other platforms will just ignore the bit in chmod calls.
Tested on FreeBSD 13.2 but documentation suggests this is not a new behavior.
(Note that FreeBSD buildbots haven't been running for a while. This is probably why this issue, although it causes a test failure, hadn't been caught before)
### CPython versions tested on:
3.12
### Operating systems tested on:
Other
<!-- gh-linked-prs -->
### Linked PRs
* gh-108950
* gh-109697
* gh-109698
* gh-109699
<!-- /gh-linked-prs -->
|
non_build
|
tarfile doesn t set file modes correctly on freebsd test tarfile test modes fails on freebsd bug report bug description the best example for this is given in the regression test suite testextractionfilters test modes in test tarfiles fails with oserror inappropriate file type or format on freebsd the reason is that fails with eftype errno when attempting to set the sticky bit s isvtx on a file when the effective user is not root most other platforms will just ignore the bit in chmod calls tested on freebsd but documentation suggests this is not a new behavior note that freebsd buildbots haven t been running for a while this is probably why this issue although it causes a test failure hadn t been caught before cpython versions tested on operating systems tested on other linked prs gh gh gh gh
| 0
|
18,086
| 6,546,707,327
|
IssuesEvent
|
2017-09-04 11:34:39
|
jaagr/polybar
|
https://api.github.com/repos/jaagr/polybar
|
closed
|
Installation fails on Fedora 26
|
build
|
Hello, I'm trying to install polybar on Fedora 26, stable release after a handful of days. I'm not at all experienced to compiling open source software in this manual fashion so bear with me. I'm more than happy to provide further info if necessary.
Do note that I'm using this script: https://gist.github.com/nathanchere/22491daf4f917b100a35e5c284a5fec5/8221d5378c7f92247298817bb5ac4edf3a6487ad
The installation fails with the following error:
```
HEAD is now at 4e2e2a7... build: Bump version to 3.0.5
** Fetching submodules
** Setting build options
** Include support for "internal/i3" (requires i3) ------------------- [Y/n]:
** Include support for "internal/volume" (requires alsalib) ---------- [Y/n]:
** Include support for "internal/network" (requires wireless_tools) -- [Y/n]:
** Include support for "internal/mpd" (requires libmpdclient) -------- [Y/n]:
** Include support for "internal/github" (requires libcurl) ---------- [Y/n]:
** Build "polybar-msg" used to send ipc messages --------------------- [Y/n]:
** Using compiler: g++/gcc
** Executing cmake command
-- The C compiler identification is GNU 7.1.1
-- The CXX compiler identification is GNU 7.1.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- No build type specified; using RelWithDebInfo
-- Using supported compiler GNU-7.1.1
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.3.7")
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Checking for module 'cairo-fc'
-- Found cairo-fc, version 1.14.10
-- Checking for module 'xcb-xkb'
-- Found xcb-xkb, version 1.12
-- Checking for module 'xcb-randr'
-- Found xcb-randr, version 1.12
-- Checking for module 'xcb-randr>=1.12'
-- Found xcb-randr, version 1.12
-- Build:
-- Type: RelWithDebInfo
-- CC: /usr/bin/gcc -O2 -g -DNDEBUG
-- CXX: /usr/bin/g++ -Wall -Wextra -Werror -O2 -pedantic -pedantic-errors -O2 -g -DNDEBUG
-- LD: /usr/bin/ld
-- Targets:
-- polybar-msg
-- testsuite
-- Module support:
-- alsa
-- curl
-- i3
-- mpd
-- network
-- X extensions:
-- xcb-randr
-- xcb-randr (monitor support)
-- xcb-render
-- xcb-damage
-- xcb-sync
-- xcb-composite
-- xcb-xkb
-- xcb-xrm
-- Font not found: fixed:pixelsize=10
-- Font not found: unifont:fontformat=truetype
-- Font not found: siji:pixelsize=10
-- Checking for module 'xcb-proto'
-- Found xcb-proto, version 1.12
-- Found PythonInterp: /usr/bin/python2.7 (found suitable version "2.7.13", minimum required is "2.7")
-- XCB[XCB]: Found component XCB
-- Found XCB_XCB: /usr/lib64/libxcb.so
-- XCB[ICCCM]: Found component ICCCM
-- Found XCB_ICCCM: /usr/lib64/libxcb-icccm.so
-- XCB[EWMH]: Found component EWMH
-- Found XCB_EWMH: /usr/lib64/libxcb-ewmh.so
-- XCB[UTIL]: Found component UTIL
-- Found XCB_UTIL: /usr/lib64/libxcb-util.so
-- XCB[IMAGE]: Found component IMAGE
-- Found XCB_IMAGE: /usr/lib64/libxcb-image.so
-- Found XCB: /usr/lib64/libxcb.so;/usr/lib64/libxcb-icccm.so;/usr/lib64/libxcb-ewmh.so;/usr/lib64/libxcb-util.so;/usr/lib64/libxcb-image.so
-- Searching for xcbgen with python2
-- Found xcbgen in /usr/lib/python2.7/site-packages
-- XCB[RANDR]: Found component RANDR
-- Found XCB_RANDR: /usr/lib64/libxcb-randr.so
-- Found XCB: /usr/lib64/libxcb.so;/usr/lib64/libxcb-icccm.so;/usr/lib64/libxcb-ewmh.so;/usr/lib64/libxcb-util.so;/usr/lib64/libxcb-image.so;/usr/lib64/libxcb-randr.so
-- XCB[XKB]: Found component XKB
-- Found XCB_XKB: /usr/lib64/libxcb-xkb.so
-- Found XCB: /usr/lib64/libxcb.so;/usr/lib64/libxcb-icccm.so;/usr/lib64/libxcb-ewmh.so;/usr/lib64/libxcb-util.so;/usr/lib64/libxcb-image.so;/usr/lib64/libxcb-randr.so;/usr/lib64/libxcb-xkb.so
-- xpp: including xcb proto randr.xml
-- xpp: including xcb proto xkb.xml
-- xpp: including xcb proto xproto.xml
-- Configuring done
-- Generating done
-- Build files have been written to: /tmp/polybar/build
** Building project
Scanning dependencies of target xpp
[ 1%] Linking CXX static library libxpp.a
list: size, ['red', 'green', 'blue']
list: size, ['red', 'green', 'blue']
[ 1%] Built target xpp
Scanning dependencies of target polybar
[ 3%] Building CXX object bin/CMakeFiles/polybar.dir/cairo/utils.cpp.o
[ 4%] Building CXX object bin/CMakeFiles/polybar.dir/components/bar.cpp.o
In file included from /tmp/polybar/lib/xpp/include/xpp/proto/../generic.hpp:11:0,
from /tmp/polybar/lib/xpp/include/xpp/proto/x.hpp:9,
from /tmp/polybar/lib/xpp/include/xpp/event.hpp:9,
from /tmp/polybar/include/x11/types.hpp:3,
from /tmp/polybar/include/components/bar.hpp:12,
from /tmp/polybar/src/components/bar.cpp:3:
/tmp/polybar/lib/xpp/include/xpp/proto/../generic/reply_iterator.hpp:89:11: error: specialization of ‘template<class Data, class> class xpp::generic::iterator<Connection, Object, xpp::generic::signature<void(XcbIterator*), Next>, xpp::generic::signature<int(const void*), (* & *(int (*)(const void*))SizeOf)>, xpp::generic::signature<XcbIterator(const Reply*), GetIterator> >::get<Data, <template-parameter-1-2> >’ must appear at namespace scope
class get<xcb_str_t, Dummy>
^~~~~~~~~~~~~~~~~~~~~
make[2]: *** [bin/CMakeFiles/polybar.dir/build.make:87: bin/CMakeFiles/polybar.dir/components/bar.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:455: bin/CMakeFiles/polybar.dir/all] Error 2
make: *** [Makefile:130: all] Error 2
** Failed to build project
```
|
1.0
|
Installation fails on Fedora 26 - Hello, I'm trying to install polybar on Fedora 26, stable release after a handful of days. I'm not at all experienced to compiling open source software in this manual fashion so bear with me. I'm more than happy to provide further info if necessary.
Do note that I'm using this script: https://gist.github.com/nathanchere/22491daf4f917b100a35e5c284a5fec5/8221d5378c7f92247298817bb5ac4edf3a6487ad
The installation fails with the following error:
```
HEAD is now at 4e2e2a7... build: Bump version to 3.0.5
** Fetching submodules
** Setting build options
** Include support for "internal/i3" (requires i3) ------------------- [Y/n]:
** Include support for "internal/volume" (requires alsalib) ---------- [Y/n]:
** Include support for "internal/network" (requires wireless_tools) -- [Y/n]:
** Include support for "internal/mpd" (requires libmpdclient) -------- [Y/n]:
** Include support for "internal/github" (requires libcurl) ---------- [Y/n]:
** Build "polybar-msg" used to send ipc messages --------------------- [Y/n]:
** Using compiler: g++/gcc
** Executing cmake command
-- The C compiler identification is GNU 7.1.1
-- The CXX compiler identification is GNU 7.1.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- No build type specified; using RelWithDebInfo
-- Using supported compiler GNU-7.1.1
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.3.7")
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Checking for module 'cairo-fc'
-- Found cairo-fc, version 1.14.10
-- Checking for module 'xcb-xkb'
-- Found xcb-xkb, version 1.12
-- Checking for module 'xcb-randr'
-- Found xcb-randr, version 1.12
-- Checking for module 'xcb-randr>=1.12'
-- Found xcb-randr, version 1.12
-- Build:
-- Type: RelWithDebInfo
-- CC: /usr/bin/gcc -O2 -g -DNDEBUG
-- CXX: /usr/bin/g++ -Wall -Wextra -Werror -O2 -pedantic -pedantic-errors -O2 -g -DNDEBUG
-- LD: /usr/bin/ld
-- Targets:
-- polybar-msg
-- testsuite
-- Module support:
-- alsa
-- curl
-- i3
-- mpd
-- network
-- X extensions:
-- xcb-randr
-- xcb-randr (monitor support)
-- xcb-render
-- xcb-damage
-- xcb-sync
-- xcb-composite
-- xcb-xkb
-- xcb-xrm
-- Font not found: fixed:pixelsize=10
-- Font not found: unifont:fontformat=truetype
-- Font not found: siji:pixelsize=10
-- Checking for module 'xcb-proto'
-- Found xcb-proto, version 1.12
-- Found PythonInterp: /usr/bin/python2.7 (found suitable version "2.7.13", minimum required is "2.7")
-- XCB[XCB]: Found component XCB
-- Found XCB_XCB: /usr/lib64/libxcb.so
-- XCB[ICCCM]: Found component ICCCM
-- Found XCB_ICCCM: /usr/lib64/libxcb-icccm.so
-- XCB[EWMH]: Found component EWMH
-- Found XCB_EWMH: /usr/lib64/libxcb-ewmh.so
-- XCB[UTIL]: Found component UTIL
-- Found XCB_UTIL: /usr/lib64/libxcb-util.so
-- XCB[IMAGE]: Found component IMAGE
-- Found XCB_IMAGE: /usr/lib64/libxcb-image.so
-- Found XCB: /usr/lib64/libxcb.so;/usr/lib64/libxcb-icccm.so;/usr/lib64/libxcb-ewmh.so;/usr/lib64/libxcb-util.so;/usr/lib64/libxcb-image.so
-- Searching for xcbgen with python2
-- Found xcbgen in /usr/lib/python2.7/site-packages
-- XCB[RANDR]: Found component RANDR
-- Found XCB_RANDR: /usr/lib64/libxcb-randr.so
-- Found XCB: /usr/lib64/libxcb.so;/usr/lib64/libxcb-icccm.so;/usr/lib64/libxcb-ewmh.so;/usr/lib64/libxcb-util.so;/usr/lib64/libxcb-image.so;/usr/lib64/libxcb-randr.so
-- XCB[XKB]: Found component XKB
-- Found XCB_XKB: /usr/lib64/libxcb-xkb.so
-- Found XCB: /usr/lib64/libxcb.so;/usr/lib64/libxcb-icccm.so;/usr/lib64/libxcb-ewmh.so;/usr/lib64/libxcb-util.so;/usr/lib64/libxcb-image.so;/usr/lib64/libxcb-randr.so;/usr/lib64/libxcb-xkb.so
-- xpp: including xcb proto randr.xml
-- xpp: including xcb proto xkb.xml
-- xpp: including xcb proto xproto.xml
-- Configuring done
-- Generating done
-- Build files have been written to: /tmp/polybar/build
** Building project
Scanning dependencies of target xpp
[ 1%] Linking CXX static library libxpp.a
list: size, ['red', 'green', 'blue']
list: size, ['red', 'green', 'blue']
[ 1%] Built target xpp
Scanning dependencies of target polybar
[ 3%] Building CXX object bin/CMakeFiles/polybar.dir/cairo/utils.cpp.o
[ 4%] Building CXX object bin/CMakeFiles/polybar.dir/components/bar.cpp.o
In file included from /tmp/polybar/lib/xpp/include/xpp/proto/../generic.hpp:11:0,
from /tmp/polybar/lib/xpp/include/xpp/proto/x.hpp:9,
from /tmp/polybar/lib/xpp/include/xpp/event.hpp:9,
from /tmp/polybar/include/x11/types.hpp:3,
from /tmp/polybar/include/components/bar.hpp:12,
from /tmp/polybar/src/components/bar.cpp:3:
/tmp/polybar/lib/xpp/include/xpp/proto/../generic/reply_iterator.hpp:89:11: error: specialization of ‘template<class Data, class> class xpp::generic::iterator<Connection, Object, xpp::generic::signature<void(XcbIterator*), Next>, xpp::generic::signature<int(const void*), (* & *(int (*)(const void*))SizeOf)>, xpp::generic::signature<XcbIterator(const Reply*), GetIterator> >::get<Data, <template-parameter-1-2> >’ must appear at namespace scope
class get<xcb_str_t, Dummy>
^~~~~~~~~~~~~~~~~~~~~
make[2]: *** [bin/CMakeFiles/polybar.dir/build.make:87: bin/CMakeFiles/polybar.dir/components/bar.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:455: bin/CMakeFiles/polybar.dir/all] Error 2
make: *** [Makefile:130: all] Error 2
** Failed to build project
```
|
build
|
installation fails on fedora hello i m trying to install polybar on fedora stable release after a handful of days i m not at all experienced to compiling open source software in this manual fashion so bear with me i m more than happy to provide further info if necessary do note that i m using this script the installation fails with the following error head is now at build bump version to fetching submodules setting build options include support for internal requires include support for internal volume requires alsalib include support for internal network requires wireless tools include support for internal mpd requires libmpdclient include support for internal github requires libcurl build polybar msg used to send ipc messages using compiler g gcc executing cmake command the c compiler identification is gnu the cxx compiler identification is gnu check for working c compiler usr bin gcc check for working c compiler usr bin gcc works detecting c compiler abi info detecting c compiler abi info done detecting c compile features detecting c compile features done check for working cxx compiler usr bin g check for working cxx compiler usr bin g works detecting cxx compiler abi info detecting cxx compiler abi info done detecting cxx compile features detecting cxx compile features done no build type specified using relwithdebinfo using supported compiler gnu found pkgconfig usr bin pkg config found version looking for pthread h looking for pthread h found looking for pthread create looking for pthread create not found check if compiler accepts pthread check if compiler accepts pthread yes found threads true checking for module cairo fc found cairo fc version checking for module xcb xkb found xcb xkb version checking for module xcb randr found xcb randr version checking for module xcb randr found xcb randr version build type relwithdebinfo cc usr bin gcc g dndebug cxx usr bin g wall wextra werror pedantic pedantic errors g dndebug ld usr bin ld targets polybar msg testsuite module support alsa curl mpd network x extensions xcb randr xcb randr monitor support xcb render xcb damage xcb sync xcb composite xcb xkb xcb xrm font not found fixed pixelsize font not found unifont fontformat truetype font not found siji pixelsize checking for module xcb proto found xcb proto version found pythoninterp usr bin found suitable version minimum required is xcb found component xcb found xcb xcb usr libxcb so xcb found component icccm found xcb icccm usr libxcb icccm so xcb found component ewmh found xcb ewmh usr libxcb ewmh so xcb found component util found xcb util usr libxcb util so xcb found component image found xcb image usr libxcb image so found xcb usr libxcb so usr libxcb icccm so usr libxcb ewmh so usr libxcb util so usr libxcb image so searching for xcbgen with found xcbgen in usr lib site packages xcb found component randr found xcb randr usr libxcb randr so found xcb usr libxcb so usr libxcb icccm so usr libxcb ewmh so usr libxcb util so usr libxcb image so usr libxcb randr so xcb found component xkb found xcb xkb usr libxcb xkb so found xcb usr libxcb so usr libxcb icccm so usr libxcb ewmh so usr libxcb util so usr libxcb image so usr libxcb randr so usr libxcb xkb so xpp including xcb proto randr xml xpp including xcb proto xkb xml xpp including xcb proto xproto xml configuring done generating done build files have been written to tmp polybar build building project scanning dependencies of target xpp linking cxx static library libxpp a list size list size built target xpp scanning dependencies of target polybar building cxx object bin cmakefiles polybar dir cairo utils cpp o building cxx object bin cmakefiles polybar dir components bar cpp o in file included from tmp polybar lib xpp include xpp proto generic hpp from tmp polybar lib xpp include xpp proto x hpp from tmp polybar lib xpp include xpp event hpp from tmp polybar include types hpp from tmp polybar include components bar hpp from tmp polybar src components bar cpp tmp polybar lib xpp include xpp proto generic reply iterator hpp error specialization of ‘template class xpp generic iterator xpp generic signature xpp generic signature get ’ must appear at namespace scope class get make error make error make error failed to build project
| 1
|
96,480
| 27,863,401,646
|
IssuesEvent
|
2023-03-21 08:31:48
|
llvm/llvm-project
|
https://api.github.com/repos/llvm/llvm-project
|
closed
|
clang crash: terminate called after throwing an instance of 'std::system_error' what(): Resource temporarily unavailable
|
llvm-tools build-problem
|
I was trying to compile LLVM with source at https://github.com/llvm/llvm-project/commit/f90103851f9a381bbf7ed6da250217577afd00d2 But i get the below attached errors.
Error:
```console
FAILED: bin/llvm-mc
: && /usr/bin/clang++ -O3 -march=native -mtune=native -ffunction-sections -fdata-sections -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -w -fdiagnostics-color -ffunction-sections -fdata-sections -flto=thin -O3 -DNDEBUG -Wl,-O3,--sort-common,--as-needed,-z,now -fuse-ld=/usr/bin/ld.lld -fuse-ld=/usr/bin/ld.lld -Wl,--color-diagnostics -flto=thin -Wl,--gc-sections tools/llvm-mc/CMakeFiles/llvm-mc.dir/llvm-mc.cpp.o tools/llvm-mc/CMakeFiles/llvm-mc.dir/Disassembler.cpp.o -o bin/llvm-mc -Wl,-rpath,"\$ORIGIN/../lib" lib/libLLVMX86AsmParser.a lib/libLLVMX86Desc.a lib/libLLVMX86Disassembler.a lib/libLLVMX86Info.a lib/libLLVMMC.a lib/libLLVMMCParser.a lib/libLLVMSupport.a lib/libLLVMTargetParser.a lib/libLLVMMCDisassembler.a lib/libLLVMMC.a lib/libLLVMBinaryFormat.a lib/libLLVMDebugInfoCodeView.a lib/libLLVMTargetParser.a lib/libLLVMSupport.a -lrt -ldl -lm /usr/lib64/libz.so /usr/lib64/libzstd.so lib/libLLVMDemangle.a && :
terminate called after throwing an instance of 'std::system_error'
what(): Resource temporarily unavailable
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace.
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/lib64/libLLVM-15.so(_ZN4llvm3sys15PrintStackTraceERNS_11raw_ostreamEi+0x35)[0x7f5bd95528c5]
/lib64/libLLVM-15.so(+0xc52b4c)[0x7f5bd9552b4c]
/lib64/libLLVM-15.so(_ZN4llvm3sys17RunSignalHandlersEv+0x54)[0x7f5bd95501e4]
/lib64/libLLVM-15.so(+0xc5317d)[0x7f5bd955317d]
/lib64/libc.so.6(+0x3cb20)[0x7f5bd852bb20]
/lib64/libc.so.6(+0x8ce5c)[0x7f5bd857be5c]
/lib64/libc.so.6(gsignal+0x16)[0x7f5bd852ba76]
/lib64/libc.so.6(abort+0xd7)[0x7f5bd85157fc]
/lib64/libstdc++.so.6(+0xa2b97)[0x7f5bd876eb97]
/lib64/libstdc++.so.6(+0xae48c)[0x7f5bd877a48c]
/lib64/libstdc++.so.6(+0xae4f7)[0x7f5bd877a4f7]
/lib64/libstdc++.so.6(+0xae758)[0x7f5bd877a758]
/lib64/libstdc++.so.6(_ZSt20__throw_system_errori+0x85)[0x7f5bd877193a]
/lib64/libstdc++.so.6(+0xdbced)[0x7f5bd87a7ced]
/lib64/libLLVM-15.so(+0xbbb00c)[0x7f5bd94bb00c]
/lib64/libstdc++.so.6(+0xdbc03)[0x7f5bd87a7c03]
/lib64/libc.so.6(+0x8b12d)[0x7f5bd857a12d]
/lib64/libc.so.6(+0x10cbc0)[0x7f5bd85fbbc0]
clang-15: error: unable to execute command: Aborted
clang-15: error: linker command failed due to signal (use -v to see invocation)
[3953/5127] Building CXX object tools/llvm-jitlink/CMakeFiles/llvm-jitlink.dir/llvm-jitlink-macho.cpp.o
[3954/5127] Linking CXX executable bin/llvm-gsymutil
FAILED: bin/llvm-gsymutil
: && /usr/bin/clang++ -O3 -march=native -mtune=native -ffunction-sections -fdata-sections -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -w -fdiagnostics-color -ffunction-sections -fdata-sections -flto=thin -O3 -DNDEBUG -Wl,-O3,--sort-common,--as-needed,-z,now -fuse-ld=/usr/bin/ld.lld -fuse-ld=/usr/bin/ld.lld -Wl,--color-diagnostics -flto=thin -Wl,--gc-sections tools/llvm-gsymutil/CMakeFiles/llvm-gsymutil.dir/llvm-gsymutil.cpp.o -o bin/llvm-gsymutil -Wl,-rpath,"\$ORIGIN/../lib" lib/libLLVMX86CodeGen.a lib/libLLVMX86AsmParser.a lib/libLLVMX86Desc.a lib/libLLVMX86Disassembler.a lib/libLLVMX86Info.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMDebugInfoGSYM.a lib/libLLVMMC.a lib/libLLVMObject.a lib/libLLVMSupport.a lib/libLLVMTarget.a lib/libLLVMTargetParser.a lib/libLLVMAsmPrinter.a lib/libLLVMInstrumentation.a lib/libLLVMGlobalISel.a lib/libLLVMSelectionDAG.a lib/libLLVMCodeGen.a lib/libLLVMTarget.a lib/libLLVMBitWriter.a lib/libLLVMObjCARCOpts.a lib/libLLVMScalarOpts.a lib/libLLVMAggressiveInstCombine.a lib/libLLVMInstCombine.a lib/libLLVMTransformUtils.a lib/libLLVMAnalysis.a lib/libLLVMProfileData.a lib/libLLVMSymbolize.a lib/libLLVMDebugInfoPDB.a lib/libLLVMDebugInfoMSF.a lib/libLLVMCFGuard.a lib/libLLVMMCDisassembler.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMObject.a lib/libLLVMMCParser.a lib/libLLVMMC.a lib/libLLVMDebugInfoCodeView.a lib/libLLVMIRReader.a lib/libLLVMBitReader.a lib/libLLVMAsmParser.a lib/libLLVMCore.a lib/libLLVMRemarks.a lib/libLLVMBitstreamReader.a lib/libLLVMTextAPI.a lib/libLLVMBinaryFormat.a lib/libLLVMTargetParser.a lib/libLLVMSupport.a -lrt -ldl -lm /usr/lib64/libz.so /usr/lib64/libzstd.so lib/libLLVMDemangle.a && :
LLVM ERROR: pthread_create failed: Resource temporarily unavailable
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace.
Stack dump:
0. Program arguments: /usr/bin/ld.lld --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o bin/llvm-gsymutil /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64/crt1.o /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64/crti.o /usr/bin/../lib/gcc/x86_64-redhat-linux/12/crtbegin.o -L/usr/bin/../lib/gcc/x86_64-redhat-linux/12 -L/usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/lib -L/usr/lib -plugin-opt=mcpu=znver2 -plugin-opt=O3 -plugin-opt=thinlto -plugin-opt=-function-sections -plugin-opt=-data-sections -O3 --sort-common --as-needed -z now --color-diagnostics --gc-sections tools/llvm-gsymutil/CMakeFiles/llvm-gsymutil.dir/llvm-gsymutil.cpp.o -rpath $ORIGIN/../lib lib/libLLVMX86CodeGen.a lib/libLLVMX86AsmParser.a lib/libLLVMX86Desc.a lib/libLLVMX86Disassembler.a lib/libLLVMX86Info.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMDebugInfoGSYM.a lib/libLLVMMC.a lib/libLLVMObject.a lib/libLLVMSupport.a lib/libLLVMTarget.a lib/libLLVMTargetParser.a lib/libLLVMAsmPrinter.a lib/libLLVMInstrumentation.a lib/libLLVMGlobalISel.a lib/libLLVMSelectionDAG.a lib/libLLVMCodeGen.a lib/libLLVMTarget.a lib/libLLVMBitWriter.a lib/libLLVMObjCARCOpts.a lib/libLLVMScalarOpts.a lib/libLLVMAggressiveInstCombine.a lib/libLLVMInstCombine.a lib/libLLVMTransformUtils.a lib/libLLVMAnalysis.a lib/libLLVMProfileData.a lib/libLLVMSymbolize.a lib/libLLVMDebugInfoPDB.a lib/libLLVMDebugInfoMSF.a lib/libLLVMCFGuard.a lib/libLLVMMCDisassembler.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMObject.a lib/libLLVMMCParser.a lib/libLLVMMC.a lib/libLLVMDebugInfoCodeView.a lib/libLLVMIRReader.a lib/libLLVMBitReader.a lib/libLLVMAsmParser.a lib/libLLVMCore.a lib/libLLVMRemarks.a lib/libLLVMBitstreamReader.a lib/libLLVMTextAPI.a lib/libLLVMBinaryFormat.a lib/libLLVMTargetParser.a lib/libLLVMSupport.a -lrt -ldl -lm /usr/lib64/libz.so /usr/lib64/libzstd.so lib/libLLVMDemangle.a -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/bin/../lib/gcc/x86_64-redhat-linux/12/crtend.o /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64/crtn.o
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/lib64/libLLVM-15.so(_ZN4llvm3sys15PrintStackTraceERNS_11raw_ostreamEi+0x35)[0x7f52aa2dd8c5]
/lib64/libLLVM-15.so(+0xc52b4c)[0x7f52aa2ddb4c]
/lib64/libLLVM-15.so(_ZN4llvm3sys17RunSignalHandlersEv+0x54)[0x7f52aa2db1e4]
/lib64/libLLVM-15.so(+0xc5317d)[0x7f52aa2de17d]
/lib64/libc.so.6(+0x3cb20)[0x7f52a92b6b20]
/lib64/libc.so.6(+0x8ce5c)[0x7f52a9306e5c]
/lib64/libc.so.6(gsignal+0x16)[0x7f52a92b6a76]
/lib64/libc.so.6(abort+0xd7)[0x7f52a92a07fc]
/lib64/libLLVM-15.so(_ZN4llvm18report_fatal_errorERKNS_5TwineEb+0x1b9)[0x7f52aa1f85a9]
/lib64/libLLVM-15.so(+0xc53dce)[0x7f52aa2dedce]
/lib64/libLLVM-15.so(_ZN4llvm27llvm_execute_on_thread_implEPFPvS0_ES0_NS_8OptionalIjEE+0xb2)[0x7f52aa2ded32]
/lib64/libLLVM-15.so(_ZN4llvm10ThreadPool4growEi+0x195)[0x7f52aa273605]
/lib64/libLLVM-15.so(+0x1141e5b)[0x7f52aa7cce5b]
/lib64/libLLVM-15.so(+0x23b3a8d)[0x7f52aba3ea8d]
/lib64/libLLVM-15.so(_ZN4llvm3lto3LTO10runThinLTOESt8functionIFNS_8ExpectedISt10unique_ptrINS_16CachedFileStreamESt14default_deleteIS5_EEEEjEES2_IFNS3_ISB_EEjNS_9StringRefEEERKNS_8DenseSetImNS_12DenseMapInfoImvEEEE+0x1258)[0x7f52aba3af98]
/lib64/libLLVM-15.so(_ZN4llvm3lto3LTO3runESt8functionIFNS_8ExpectedISt10unique_ptrINS_16CachedFileStreamESt14default_deleteIS5_EEEEjEES2_IFNS3_ISB_EEjNS_9StringRefEEE+0x5dd)[0x7f52aba38f7d]
/lib64/liblldELF.so.15(_ZN3lld3elf15BitcodeCompiler7compileEv+0x480)[0x7f52b064c2d0]
/lib64/liblldELF.so.15(_ZN3lld3elf12LinkerDriver19compileBitcodeFilesIN4llvm6object7ELFTypeILNS3_7support10endiannessE1ELb1EEEEEvb+0xdf)[0x7f52b05cd5bf]
/lib64/liblldELF.so.15(_ZN3lld3elf12LinkerDriver4linkERN4llvm3opt12InputArgListE+0x17ac)[0x7f52b05c924c]
/lib64/liblldELF.so.15(_ZN3lld3elf12LinkerDriver10linkerMainEN4llvm8ArrayRefIPKcEE+0x12f5)[0x7f52b05bf645]
/lib64/liblldELF.so.15(_ZN3lld3elf4linkEN4llvm8ArrayRefIPKcEERNS1_11raw_ostreamES7_bb+0x6ca)[0x7f52b05be31a]
/usr/bin/ld.lld[0x404291]
/usr/bin/ld.lld(main+0x10e)[0x403b1e]
/lib64/libc.so.6(+0x27510)[0x7f52a92a1510]
/lib64/libc.so.6(__libc_start_main+0x89)[0x7f52a92a15c9]
/usr/bin/ld.lld(_start+0x25)[0x403655]
clang-15: error: unable to execute command: Aborted
clang-15: error: linker command failed due to signal (use -v to see invocation)
[3955/5127] Building CXX object tools/llvm-modextract/CMakeFiles/llvm-modextract.dir/llvm-modextract.cpp.o
[3956/5127] Linking CXX executable bin/llvm-mt
[3957/5127] Linking CXX executable bin/llvm-as
```
Build configuration:
```shell
$ LLVM_BIN_DIR="/usr/bin"
$ OPT_FLAGS="-O3 -march=native -mtune=native -ffunction-sections -fdata-sections"
$ OPT_FLAGS_LD="-Wl,-O3,--sort-common,--as-needed,-z,now -fuse-ld=$LLVM_BIN_DIR/ld.lld"
$ cmake -G Ninja -Wno-dev --log-level=NOTICE \
-DLLVM_TARGETS_TO_BUILD="X86" \
-DLLVM_ENABLE_PROJECTS="clang;lld;compiler-rt;polly;openmp;bolt" \
-DCMAKE_BUILD_TYPE=Release \
-DCLANG_ENABLE_ARCMT=OFF \
-DCLANG_ENABLE_STATIC_ANALYZER=OFF \
-DCLANG_PLUGIN_SUPPORT=OFF \
-DLLVM_ENABLE_BINDINGS=OFF \
-DLLVM_ENABLE_OCAMLDOC=OFF \
-DLLVM_INCLUDE_EXAMPLES=OFF \
-DLLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR= \
-DLLVM_INCLUDE_TESTS=OFF \
-DLLVM_INCLUDE_DOCS=OFF \
-DLLVM_ENABLE_TERMINFO=OFF \
-DCOMPILER_RT_BUILD_CRT=OFF \
-DCOMPILER_RT_BUILD_SANITIZERS=OFF \
-DCOMPILER_RT_BUILD_XRAY=OFF \
-DCOMPILER_RT_BUILD_LIBFUZZER=OFF \
-DCLANG_VENDOR="Neutron" \
-DLLVM_ENABLE_BACKTRACES=OFF \
-DLLVM_ENABLE_WARNINGS=OFF \
-DLLVM_ENABLE_LTO=Thin \
-DLLVM_CCACHE_BUILD=ON \
-DCMAKE_C_COMPILER="${LLVM_BIN_DIR}"/clang \
-DCMAKE_CXX_COMPILER="${LLVM_BIN_DIR}"/clang++ \
-DCMAKE_AR="${LLVM_BIN_DIR}"/llvm-ar \
-DCMAKE_NM="${LLVM_BIN_DIR}"/llvm-nm \
-DCMAKE_STRIP="${LLVM_BIN_DIR}"/llvm-strip \
-DLLVM_USE_LINKER="${LINKER_DIR}/${LINKER}" \
-DCMAKE_LINKER="${LINKER_DIR}/${LINKER}" \
-DCMAKE_OBJCOPY="${LLVM_BIN_DIR}"/llvm-objcopy \
-DCMAKE_OBJDUMP="${LLVM_BIN_DIR}"/llvm-objdump \
-DCMAKE_RANLIB="${LLVM_BIN_DIR}"/llvm-ranlib \
-DCMAKE_READELF="${LLVM_BIN_DIR}"/llvm-readelf \
-DCMAKE_ADDR2LINE="${LLVM_BIN_DIR}"/llvm-addr2line \
-DLLVM_PARALLEL_COMPILE_JOBS="$(getconf _NPROCESSORS_ONLN)" \
-DLLVM_PARALLEL_LINK_JOBS="$(getconf _NPROCESSORS_ONLN)" \
-DCMAKE_C_FLAGS="${OPT_FLAGS}" \
-DCMAKE_ASM_FLAGS="${OPT_FLAGS}" \
-DCMAKE_CXX_FLAGS="${OPT_FLAGS}" \
-DCMAKE_EXE_LINKER_FLAGS="${OPT_FLAGS_LD}" \
-DCMAKE_MODULE_LINKER_FLAGS="${OPT_FLAGS_LD}" \
-DCMAKE_SHARED_LINKER_FLAGS="${OPT_FLAGS_LD}" \
"${LLVM_PROJECT}"
```
|
1.0
|
clang crash: terminate called after throwing an instance of 'std::system_error' what(): Resource temporarily unavailable - I was trying to compile LLVM with source at https://github.com/llvm/llvm-project/commit/f90103851f9a381bbf7ed6da250217577afd00d2 But i get the below attached errors.
Error:
```console
FAILED: bin/llvm-mc
: && /usr/bin/clang++ -O3 -march=native -mtune=native -ffunction-sections -fdata-sections -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -w -fdiagnostics-color -ffunction-sections -fdata-sections -flto=thin -O3 -DNDEBUG -Wl,-O3,--sort-common,--as-needed,-z,now -fuse-ld=/usr/bin/ld.lld -fuse-ld=/usr/bin/ld.lld -Wl,--color-diagnostics -flto=thin -Wl,--gc-sections tools/llvm-mc/CMakeFiles/llvm-mc.dir/llvm-mc.cpp.o tools/llvm-mc/CMakeFiles/llvm-mc.dir/Disassembler.cpp.o -o bin/llvm-mc -Wl,-rpath,"\$ORIGIN/../lib" lib/libLLVMX86AsmParser.a lib/libLLVMX86Desc.a lib/libLLVMX86Disassembler.a lib/libLLVMX86Info.a lib/libLLVMMC.a lib/libLLVMMCParser.a lib/libLLVMSupport.a lib/libLLVMTargetParser.a lib/libLLVMMCDisassembler.a lib/libLLVMMC.a lib/libLLVMBinaryFormat.a lib/libLLVMDebugInfoCodeView.a lib/libLLVMTargetParser.a lib/libLLVMSupport.a -lrt -ldl -lm /usr/lib64/libz.so /usr/lib64/libzstd.so lib/libLLVMDemangle.a && :
terminate called after throwing an instance of 'std::system_error'
what(): Resource temporarily unavailable
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace.
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/lib64/libLLVM-15.so(_ZN4llvm3sys15PrintStackTraceERNS_11raw_ostreamEi+0x35)[0x7f5bd95528c5]
/lib64/libLLVM-15.so(+0xc52b4c)[0x7f5bd9552b4c]
/lib64/libLLVM-15.so(_ZN4llvm3sys17RunSignalHandlersEv+0x54)[0x7f5bd95501e4]
/lib64/libLLVM-15.so(+0xc5317d)[0x7f5bd955317d]
/lib64/libc.so.6(+0x3cb20)[0x7f5bd852bb20]
/lib64/libc.so.6(+0x8ce5c)[0x7f5bd857be5c]
/lib64/libc.so.6(gsignal+0x16)[0x7f5bd852ba76]
/lib64/libc.so.6(abort+0xd7)[0x7f5bd85157fc]
/lib64/libstdc++.so.6(+0xa2b97)[0x7f5bd876eb97]
/lib64/libstdc++.so.6(+0xae48c)[0x7f5bd877a48c]
/lib64/libstdc++.so.6(+0xae4f7)[0x7f5bd877a4f7]
/lib64/libstdc++.so.6(+0xae758)[0x7f5bd877a758]
/lib64/libstdc++.so.6(_ZSt20__throw_system_errori+0x85)[0x7f5bd877193a]
/lib64/libstdc++.so.6(+0xdbced)[0x7f5bd87a7ced]
/lib64/libLLVM-15.so(+0xbbb00c)[0x7f5bd94bb00c]
/lib64/libstdc++.so.6(+0xdbc03)[0x7f5bd87a7c03]
/lib64/libc.so.6(+0x8b12d)[0x7f5bd857a12d]
/lib64/libc.so.6(+0x10cbc0)[0x7f5bd85fbbc0]
clang-15: error: unable to execute command: Aborted
clang-15: error: linker command failed due to signal (use -v to see invocation)
[3953/5127] Building CXX object tools/llvm-jitlink/CMakeFiles/llvm-jitlink.dir/llvm-jitlink-macho.cpp.o
[3954/5127] Linking CXX executable bin/llvm-gsymutil
FAILED: bin/llvm-gsymutil
: && /usr/bin/clang++ -O3 -march=native -mtune=native -ffunction-sections -fdata-sections -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -w -fdiagnostics-color -ffunction-sections -fdata-sections -flto=thin -O3 -DNDEBUG -Wl,-O3,--sort-common,--as-needed,-z,now -fuse-ld=/usr/bin/ld.lld -fuse-ld=/usr/bin/ld.lld -Wl,--color-diagnostics -flto=thin -Wl,--gc-sections tools/llvm-gsymutil/CMakeFiles/llvm-gsymutil.dir/llvm-gsymutil.cpp.o -o bin/llvm-gsymutil -Wl,-rpath,"\$ORIGIN/../lib" lib/libLLVMX86CodeGen.a lib/libLLVMX86AsmParser.a lib/libLLVMX86Desc.a lib/libLLVMX86Disassembler.a lib/libLLVMX86Info.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMDebugInfoGSYM.a lib/libLLVMMC.a lib/libLLVMObject.a lib/libLLVMSupport.a lib/libLLVMTarget.a lib/libLLVMTargetParser.a lib/libLLVMAsmPrinter.a lib/libLLVMInstrumentation.a lib/libLLVMGlobalISel.a lib/libLLVMSelectionDAG.a lib/libLLVMCodeGen.a lib/libLLVMTarget.a lib/libLLVMBitWriter.a lib/libLLVMObjCARCOpts.a lib/libLLVMScalarOpts.a lib/libLLVMAggressiveInstCombine.a lib/libLLVMInstCombine.a lib/libLLVMTransformUtils.a lib/libLLVMAnalysis.a lib/libLLVMProfileData.a lib/libLLVMSymbolize.a lib/libLLVMDebugInfoPDB.a lib/libLLVMDebugInfoMSF.a lib/libLLVMCFGuard.a lib/libLLVMMCDisassembler.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMObject.a lib/libLLVMMCParser.a lib/libLLVMMC.a lib/libLLVMDebugInfoCodeView.a lib/libLLVMIRReader.a lib/libLLVMBitReader.a lib/libLLVMAsmParser.a lib/libLLVMCore.a lib/libLLVMRemarks.a lib/libLLVMBitstreamReader.a lib/libLLVMTextAPI.a lib/libLLVMBinaryFormat.a lib/libLLVMTargetParser.a lib/libLLVMSupport.a -lrt -ldl -lm /usr/lib64/libz.so /usr/lib64/libzstd.so lib/libLLVMDemangle.a && :
LLVM ERROR: pthread_create failed: Resource temporarily unavailable
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace.
Stack dump:
0. Program arguments: /usr/bin/ld.lld --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o bin/llvm-gsymutil /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64/crt1.o /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64/crti.o /usr/bin/../lib/gcc/x86_64-redhat-linux/12/crtbegin.o -L/usr/bin/../lib/gcc/x86_64-redhat-linux/12 -L/usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/lib -L/usr/lib -plugin-opt=mcpu=znver2 -plugin-opt=O3 -plugin-opt=thinlto -plugin-opt=-function-sections -plugin-opt=-data-sections -O3 --sort-common --as-needed -z now --color-diagnostics --gc-sections tools/llvm-gsymutil/CMakeFiles/llvm-gsymutil.dir/llvm-gsymutil.cpp.o -rpath $ORIGIN/../lib lib/libLLVMX86CodeGen.a lib/libLLVMX86AsmParser.a lib/libLLVMX86Desc.a lib/libLLVMX86Disassembler.a lib/libLLVMX86Info.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMDebugInfoGSYM.a lib/libLLVMMC.a lib/libLLVMObject.a lib/libLLVMSupport.a lib/libLLVMTarget.a lib/libLLVMTargetParser.a lib/libLLVMAsmPrinter.a lib/libLLVMInstrumentation.a lib/libLLVMGlobalISel.a lib/libLLVMSelectionDAG.a lib/libLLVMCodeGen.a lib/libLLVMTarget.a lib/libLLVMBitWriter.a lib/libLLVMObjCARCOpts.a lib/libLLVMScalarOpts.a lib/libLLVMAggressiveInstCombine.a lib/libLLVMInstCombine.a lib/libLLVMTransformUtils.a lib/libLLVMAnalysis.a lib/libLLVMProfileData.a lib/libLLVMSymbolize.a lib/libLLVMDebugInfoPDB.a lib/libLLVMDebugInfoMSF.a lib/libLLVMCFGuard.a lib/libLLVMMCDisassembler.a lib/libLLVMDebugInfoDWARF.a lib/libLLVMObject.a lib/libLLVMMCParser.a lib/libLLVMMC.a lib/libLLVMDebugInfoCodeView.a lib/libLLVMIRReader.a lib/libLLVMBitReader.a lib/libLLVMAsmParser.a lib/libLLVMCore.a lib/libLLVMRemarks.a lib/libLLVMBitstreamReader.a lib/libLLVMTextAPI.a lib/libLLVMBinaryFormat.a lib/libLLVMTargetParser.a lib/libLLVMSupport.a -lrt -ldl -lm /usr/lib64/libz.so /usr/lib64/libzstd.so lib/libLLVMDemangle.a -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/bin/../lib/gcc/x86_64-redhat-linux/12/crtend.o /usr/bin/../lib/gcc/x86_64-redhat-linux/12/../../../../lib64/crtn.o
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/lib64/libLLVM-15.so(_ZN4llvm3sys15PrintStackTraceERNS_11raw_ostreamEi+0x35)[0x7f52aa2dd8c5]
/lib64/libLLVM-15.so(+0xc52b4c)[0x7f52aa2ddb4c]
/lib64/libLLVM-15.so(_ZN4llvm3sys17RunSignalHandlersEv+0x54)[0x7f52aa2db1e4]
/lib64/libLLVM-15.so(+0xc5317d)[0x7f52aa2de17d]
/lib64/libc.so.6(+0x3cb20)[0x7f52a92b6b20]
/lib64/libc.so.6(+0x8ce5c)[0x7f52a9306e5c]
/lib64/libc.so.6(gsignal+0x16)[0x7f52a92b6a76]
/lib64/libc.so.6(abort+0xd7)[0x7f52a92a07fc]
/lib64/libLLVM-15.so(_ZN4llvm18report_fatal_errorERKNS_5TwineEb+0x1b9)[0x7f52aa1f85a9]
/lib64/libLLVM-15.so(+0xc53dce)[0x7f52aa2dedce]
/lib64/libLLVM-15.so(_ZN4llvm27llvm_execute_on_thread_implEPFPvS0_ES0_NS_8OptionalIjEE+0xb2)[0x7f52aa2ded32]
/lib64/libLLVM-15.so(_ZN4llvm10ThreadPool4growEi+0x195)[0x7f52aa273605]
/lib64/libLLVM-15.so(+0x1141e5b)[0x7f52aa7cce5b]
/lib64/libLLVM-15.so(+0x23b3a8d)[0x7f52aba3ea8d]
/lib64/libLLVM-15.so(_ZN4llvm3lto3LTO10runThinLTOESt8functionIFNS_8ExpectedISt10unique_ptrINS_16CachedFileStreamESt14default_deleteIS5_EEEEjEES2_IFNS3_ISB_EEjNS_9StringRefEEERKNS_8DenseSetImNS_12DenseMapInfoImvEEEE+0x1258)[0x7f52aba3af98]
/lib64/libLLVM-15.so(_ZN4llvm3lto3LTO3runESt8functionIFNS_8ExpectedISt10unique_ptrINS_16CachedFileStreamESt14default_deleteIS5_EEEEjEES2_IFNS3_ISB_EEjNS_9StringRefEEE+0x5dd)[0x7f52aba38f7d]
/lib64/liblldELF.so.15(_ZN3lld3elf15BitcodeCompiler7compileEv+0x480)[0x7f52b064c2d0]
/lib64/liblldELF.so.15(_ZN3lld3elf12LinkerDriver19compileBitcodeFilesIN4llvm6object7ELFTypeILNS3_7support10endiannessE1ELb1EEEEEvb+0xdf)[0x7f52b05cd5bf]
/lib64/liblldELF.so.15(_ZN3lld3elf12LinkerDriver4linkERN4llvm3opt12InputArgListE+0x17ac)[0x7f52b05c924c]
/lib64/liblldELF.so.15(_ZN3lld3elf12LinkerDriver10linkerMainEN4llvm8ArrayRefIPKcEE+0x12f5)[0x7f52b05bf645]
/lib64/liblldELF.so.15(_ZN3lld3elf4linkEN4llvm8ArrayRefIPKcEERNS1_11raw_ostreamES7_bb+0x6ca)[0x7f52b05be31a]
/usr/bin/ld.lld[0x404291]
/usr/bin/ld.lld(main+0x10e)[0x403b1e]
/lib64/libc.so.6(+0x27510)[0x7f52a92a1510]
/lib64/libc.so.6(__libc_start_main+0x89)[0x7f52a92a15c9]
/usr/bin/ld.lld(_start+0x25)[0x403655]
clang-15: error: unable to execute command: Aborted
clang-15: error: linker command failed due to signal (use -v to see invocation)
[3955/5127] Building CXX object tools/llvm-modextract/CMakeFiles/llvm-modextract.dir/llvm-modextract.cpp.o
[3956/5127] Linking CXX executable bin/llvm-mt
[3957/5127] Linking CXX executable bin/llvm-as
```
Build configuration:
```shell
$ LLVM_BIN_DIR="/usr/bin"
$ OPT_FLAGS="-O3 -march=native -mtune=native -ffunction-sections -fdata-sections"
$ OPT_FLAGS_LD="-Wl,-O3,--sort-common,--as-needed,-z,now -fuse-ld=$LLVM_BIN_DIR/ld.lld"
$ cmake -G Ninja -Wno-dev --log-level=NOTICE \
-DLLVM_TARGETS_TO_BUILD="X86" \
-DLLVM_ENABLE_PROJECTS="clang;lld;compiler-rt;polly;openmp;bolt" \
-DCMAKE_BUILD_TYPE=Release \
-DCLANG_ENABLE_ARCMT=OFF \
-DCLANG_ENABLE_STATIC_ANALYZER=OFF \
-DCLANG_PLUGIN_SUPPORT=OFF \
-DLLVM_ENABLE_BINDINGS=OFF \
-DLLVM_ENABLE_OCAMLDOC=OFF \
-DLLVM_INCLUDE_EXAMPLES=OFF \
-DLLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR= \
-DLLVM_INCLUDE_TESTS=OFF \
-DLLVM_INCLUDE_DOCS=OFF \
-DLLVM_ENABLE_TERMINFO=OFF \
-DCOMPILER_RT_BUILD_CRT=OFF \
-DCOMPILER_RT_BUILD_SANITIZERS=OFF \
-DCOMPILER_RT_BUILD_XRAY=OFF \
-DCOMPILER_RT_BUILD_LIBFUZZER=OFF \
-DCLANG_VENDOR="Neutron" \
-DLLVM_ENABLE_BACKTRACES=OFF \
-DLLVM_ENABLE_WARNINGS=OFF \
-DLLVM_ENABLE_LTO=Thin \
-DLLVM_CCACHE_BUILD=ON \
-DCMAKE_C_COMPILER="${LLVM_BIN_DIR}"/clang \
-DCMAKE_CXX_COMPILER="${LLVM_BIN_DIR}"/clang++ \
-DCMAKE_AR="${LLVM_BIN_DIR}"/llvm-ar \
-DCMAKE_NM="${LLVM_BIN_DIR}"/llvm-nm \
-DCMAKE_STRIP="${LLVM_BIN_DIR}"/llvm-strip \
-DLLVM_USE_LINKER="${LINKER_DIR}/${LINKER}" \
-DCMAKE_LINKER="${LINKER_DIR}/${LINKER}" \
-DCMAKE_OBJCOPY="${LLVM_BIN_DIR}"/llvm-objcopy \
-DCMAKE_OBJDUMP="${LLVM_BIN_DIR}"/llvm-objdump \
-DCMAKE_RANLIB="${LLVM_BIN_DIR}"/llvm-ranlib \
-DCMAKE_READELF="${LLVM_BIN_DIR}"/llvm-readelf \
-DCMAKE_ADDR2LINE="${LLVM_BIN_DIR}"/llvm-addr2line \
-DLLVM_PARALLEL_COMPILE_JOBS="$(getconf _NPROCESSORS_ONLN)" \
-DLLVM_PARALLEL_LINK_JOBS="$(getconf _NPROCESSORS_ONLN)" \
-DCMAKE_C_FLAGS="${OPT_FLAGS}" \
-DCMAKE_ASM_FLAGS="${OPT_FLAGS}" \
-DCMAKE_CXX_FLAGS="${OPT_FLAGS}" \
-DCMAKE_EXE_LINKER_FLAGS="${OPT_FLAGS_LD}" \
-DCMAKE_MODULE_LINKER_FLAGS="${OPT_FLAGS_LD}" \
-DCMAKE_SHARED_LINKER_FLAGS="${OPT_FLAGS_LD}" \
"${LLVM_PROJECT}"
```
|
build
|
clang crash terminate called after throwing an instance of std system error what resource temporarily unavailable i was trying to compile llvm with source at but i get the below attached errors error console failed bin llvm mc usr bin clang march native mtune native ffunction sections fdata sections fpic fno semantic interposition fvisibility inlines hidden werror date time werror unguarded availability new w fdiagnostics color ffunction sections fdata sections flto thin dndebug wl sort common as needed z now fuse ld usr bin ld lld fuse ld usr bin ld lld wl color diagnostics flto thin wl gc sections tools llvm mc cmakefiles llvm mc dir llvm mc cpp o tools llvm mc cmakefiles llvm mc dir disassembler cpp o o bin llvm mc wl rpath origin lib lib a lib a lib a lib a lib libllvmmc a lib libllvmmcparser a lib libllvmsupport a lib libllvmtargetparser a lib libllvmmcdisassembler a lib libllvmmc a lib libllvmbinaryformat a lib libllvmdebuginfocodeview a lib libllvmtargetparser a lib libllvmsupport a lrt ldl lm usr libz so usr libzstd so lib libllvmdemangle a terminate called after throwing an instance of std system error what resource temporarily unavailable please submit a bug report to and include the crash backtrace stack dump without symbol names ensure you have llvm symbolizer in your path or set the environment var llvm symbolizer path to point to it libllvm so ostreamei libllvm so libllvm so libllvm so libc so libc so libc so gsignal libc so abort libstdc so libstdc so libstdc so libstdc so libstdc so throw system errori libstdc so libllvm so libstdc so libc so libc so clang error unable to execute command aborted clang error linker command failed due to signal use v to see invocation building cxx object tools llvm jitlink cmakefiles llvm jitlink dir llvm jitlink macho cpp o linking cxx executable bin llvm gsymutil failed bin llvm gsymutil usr bin clang march native mtune native ffunction sections fdata sections fpic fno semantic interposition fvisibility inlines hidden werror date time werror unguarded availability new w fdiagnostics color ffunction sections fdata sections flto thin dndebug wl sort common as needed z now fuse ld usr bin ld lld fuse ld usr bin ld lld wl color diagnostics flto thin wl gc sections tools llvm gsymutil cmakefiles llvm gsymutil dir llvm gsymutil cpp o o bin llvm gsymutil wl rpath origin lib lib a lib a lib a lib a lib a lib libllvmdebuginfodwarf a lib libllvmdebuginfogsym a lib libllvmmc a lib libllvmobject a lib libllvmsupport a lib libllvmtarget a lib libllvmtargetparser a lib libllvmasmprinter a lib libllvminstrumentation a lib libllvmglobalisel a lib libllvmselectiondag a lib libllvmcodegen a lib libllvmtarget a lib libllvmbitwriter a lib libllvmobjcarcopts a lib libllvmscalaropts a lib libllvmaggressiveinstcombine a lib libllvminstcombine a lib libllvmtransformutils a lib libllvmanalysis a lib libllvmprofiledata a lib libllvmsymbolize a lib libllvmdebuginfopdb a lib libllvmdebuginfomsf a lib libllvmcfguard a lib libllvmmcdisassembler a lib libllvmdebuginfodwarf a lib libllvmobject a lib libllvmmcparser a lib libllvmmc a lib libllvmdebuginfocodeview a lib libllvmirreader a lib libllvmbitreader a lib libllvmasmparser a lib libllvmcore a lib libllvmremarks a lib libllvmbitstreamreader a lib libllvmtextapi a lib libllvmbinaryformat a lib libllvmtargetparser a lib libllvmsupport a lrt ldl lm usr libz so usr libzstd so lib libllvmdemangle a llvm error pthread create failed resource temporarily unavailable please submit a bug report to and include the crash backtrace stack dump program arguments usr bin ld lld hash style gnu build id eh frame hdr m elf dynamic linker ld linux so o bin llvm gsymutil usr bin lib gcc redhat linux o usr bin lib gcc redhat linux crti o usr bin lib gcc redhat linux crtbegin o l usr bin lib gcc redhat linux l usr bin lib gcc redhat linux l lib l usr lib l lib l usr lib plugin opt mcpu plugin opt plugin opt thinlto plugin opt function sections plugin opt data sections sort common as needed z now color diagnostics gc sections tools llvm gsymutil cmakefiles llvm gsymutil dir llvm gsymutil cpp o rpath origin lib lib a lib a lib a lib a lib a lib libllvmdebuginfodwarf a lib libllvmdebuginfogsym a lib libllvmmc a lib libllvmobject a lib libllvmsupport a lib libllvmtarget a lib libllvmtargetparser a lib libllvmasmprinter a lib libllvminstrumentation a lib libllvmglobalisel a lib libllvmselectiondag a lib libllvmcodegen a lib libllvmtarget a lib libllvmbitwriter a lib libllvmobjcarcopts a lib libllvmscalaropts a lib libllvmaggressiveinstcombine a lib libllvminstcombine a lib libllvmtransformutils a lib libllvmanalysis a lib libllvmprofiledata a lib libllvmsymbolize a lib libllvmdebuginfopdb a lib libllvmdebuginfomsf a lib libllvmcfguard a lib libllvmmcdisassembler a lib libllvmdebuginfodwarf a lib libllvmobject a lib libllvmmcparser a lib libllvmmc a lib libllvmdebuginfocodeview a lib libllvmirreader a lib libllvmbitreader a lib libllvmasmparser a lib libllvmcore a lib libllvmremarks a lib libllvmbitstreamreader a lib libllvmtextapi a lib libllvmbinaryformat a lib libllvmtargetparser a lib libllvmsupport a lrt ldl lm usr libz so usr libzstd so lib libllvmdemangle a lstdc lm lgcc s lgcc lc lgcc s lgcc usr bin lib gcc redhat linux crtend o usr bin lib gcc redhat linux crtn o stack dump without symbol names ensure you have llvm symbolizer in your path or set the environment var llvm symbolizer path to point to it libllvm so ostreamei libllvm so libllvm so libllvm so libc so libc so libc so gsignal libc so abort libllvm so fatal errorerkns libllvm so libllvm so execute on thread ns libllvm so libllvm so libllvm so libllvm so ptrins isb eejns libllvm so ptrins isb eejns liblldelf so liblldelf so liblldelf so liblldelf so liblldelf so bb usr bin ld lld usr bin ld lld main libc so libc so libc start main usr bin ld lld start clang error unable to execute command aborted clang error linker command failed due to signal use v to see invocation building cxx object tools llvm modextract cmakefiles llvm modextract dir llvm modextract cpp o linking cxx executable bin llvm mt linking cxx executable bin llvm as build configuration shell llvm bin dir usr bin opt flags march native mtune native ffunction sections fdata sections opt flags ld wl sort common as needed z now fuse ld llvm bin dir ld lld cmake g ninja wno dev log level notice dllvm targets to build dllvm enable projects clang lld compiler rt polly openmp bolt dcmake build type release dclang enable arcmt off dclang enable static analyzer off dclang plugin support off dllvm enable bindings off dllvm enable ocamldoc off dllvm include examples off dllvm external clang tools extra source dir dllvm include tests off dllvm include docs off dllvm enable terminfo off dcompiler rt build crt off dcompiler rt build sanitizers off dcompiler rt build xray off dcompiler rt build libfuzzer off dclang vendor neutron dllvm enable backtraces off dllvm enable warnings off dllvm enable lto thin dllvm ccache build on dcmake c compiler llvm bin dir clang dcmake cxx compiler llvm bin dir clang dcmake ar llvm bin dir llvm ar dcmake nm llvm bin dir llvm nm dcmake strip llvm bin dir llvm strip dllvm use linker linker dir linker dcmake linker linker dir linker dcmake objcopy llvm bin dir llvm objcopy dcmake objdump llvm bin dir llvm objdump dcmake ranlib llvm bin dir llvm ranlib dcmake readelf llvm bin dir llvm readelf dcmake llvm bin dir llvm dllvm parallel compile jobs getconf nprocessors onln dllvm parallel link jobs getconf nprocessors onln dcmake c flags opt flags dcmake asm flags opt flags dcmake cxx flags opt flags dcmake exe linker flags opt flags ld dcmake module linker flags opt flags ld dcmake shared linker flags opt flags ld llvm project
| 1
|
75,331
| 20,766,879,603
|
IssuesEvent
|
2022-03-15 21:38:15
|
arfc/moltres
|
https://api.github.com/repos/arfc/moltres
|
opened
|
Add additional installation instructions
|
Comp:Build Difficulty:1-Beginner Priority:2-Normal Status:1-New Type:Docs
|
The current installation instructions are inadequate for new users who are less familiar with the relationship between Moltres and MOOSE.
This issue can be closed when the installation instructions state:
- [ ] there is no need to compile MOOSE separately;
- [ ] the `moose-tools` and `moose-libmesh` versions that are compatible with the MOOSE submodule in the Moltres repository.
|
1.0
|
Add additional installation instructions - The current installation instructions are inadequate for new users who are less familiar with the relationship between Moltres and MOOSE.
This issue can be closed when the installation instructions state:
- [ ] there is no need to compile MOOSE separately;
- [ ] the `moose-tools` and `moose-libmesh` versions that are compatible with the MOOSE submodule in the Moltres repository.
|
build
|
add additional installation instructions the current installation instructions are inadequate for new users who are less familiar with the relationship between moltres and moose this issue can be closed when the installation instructions state there is no need to compile moose separately the moose tools and moose libmesh versions that are compatible with the moose submodule in the moltres repository
| 1
|
40,416
| 10,521,740,951
|
IssuesEvent
|
2019-09-30 07:00:36
|
elastic/elasticsearch
|
https://api.github.com/repos/elastic/elasticsearch
|
closed
|
How to build es v6.6.1 with java1.8.0_60?
|
:Core/Infra/Build
|
I want to build es v6.6.1 with java 1.8.0_60 ,gradle v5.6.2. but failed .
|
1.0
|
How to build es v6.6.1 with java1.8.0_60? - I want to build es v6.6.1 with java 1.8.0_60 ,gradle v5.6.2. but failed .
|
build
|
how to build es with i want to build es with java gradle but failed
| 1
|
98,945
| 30,229,579,236
|
IssuesEvent
|
2023-07-06 05:30:50
|
NixOS/nixpkgs
|
https://api.github.com/repos/NixOS/nixpkgs
|
opened
|
Build failure: Filebot
|
0.kind: build failure
|
### Steps To Reproduce
Steps to reproduce the behavior:
1. build filebot
### Build log
```
trying https://web.archive.org/web/20230418205553/https://get.filebot.net/filebot/FileBot_5.0.3/FileBot_5.0.3-portable.tar.xz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 503
Warning: Problem : HTTP error. Will retry in 1 seconds. 3 retries left.
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 503
Warning: Problem : HTTP error. Will retry in 2 seconds. 2 retries left.
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0
curl: (22) The requested URL returned error: 503
Warning: Problem : HTTP error. Will retry in 4 seconds. 1 retries left.
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 503
error: cannot download FileBot_5.0.3-portable.tar.xz from any mirror
```
### Additional context
Tried building my system after upgrading to 23.05 and realize the internet archive was down -
Curious if we could add a conditional to fetch the package directly from filebot and use internet archive as a backup:
`https://get.filebot.net/filebot/FileBot_5.0.3/FileBot_5.0.3-portable.tar.xz`
I think it makes sense to use the internet archive if the source is down but adding additional usage to their infrastructure is unnecessary if the source is up. Just my 2 cents.
### Notify maintainers
@gleber @felschr
|
1.0
|
Build failure: Filebot - ### Steps To Reproduce
Steps to reproduce the behavior:
1. build filebot
### Build log
```
trying https://web.archive.org/web/20230418205553/https://get.filebot.net/filebot/FileBot_5.0.3/FileBot_5.0.3-portable.tar.xz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 503
Warning: Problem : HTTP error. Will retry in 1 seconds. 3 retries left.
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 503
Warning: Problem : HTTP error. Will retry in 2 seconds. 2 retries left.
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0
curl: (22) The requested URL returned error: 503
Warning: Problem : HTTP error. Will retry in 4 seconds. 1 retries left.
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 11650 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 503
error: cannot download FileBot_5.0.3-portable.tar.xz from any mirror
```
### Additional context
Tried building my system after upgrading to 23.05 and realize the internet archive was down -
Curious if we could add a conditional to fetch the package directly from filebot and use internet archive as a backup:
`https://get.filebot.net/filebot/FileBot_5.0.3/FileBot_5.0.3-portable.tar.xz`
I think it makes sense to use the internet archive if the source is down but adding additional usage to their infrastructure is unnecessary if the source is up. Just my 2 cents.
### Notify maintainers
@gleber @felschr
|
build
|
build failure filebot steps to reproduce steps to reproduce the behavior build filebot build log trying total received xferd average speed time time time current dload upload total spent left speed m m curl the requested url returned error warning problem http error will retry in seconds retries left m m curl the requested url returned error warning problem http error will retry in seconds retries left m m m m m m m m m curl the requested url returned error warning problem http error will retry in seconds retries left m m m curl the requested url returned error error cannot download filebot portable tar xz from any mirror additional context tried building my system after upgrading to and realize the internet archive was down curious if we could add a conditional to fetch the package directly from filebot and use internet archive as a backup i think it makes sense to use the internet archive if the source is down but adding additional usage to their infrastructure is unnecessary if the source is up just my cents notify maintainers gleber felschr
| 1
|
255,996
| 19,349,944,612
|
IssuesEvent
|
2021-12-15 14:44:14
|
alphagov/govuk-prototype-kit
|
https://api.github.com/repos/alphagov/govuk-prototype-kit
|
closed
|
Update guidance to updating Prototype Kit to v12.0.0
|
documentation 🕔 hours
|
## What
Update guidance for [updating your Prototype Kit](https://govuk-prototype-kit.herokuapp.com/docs/updating-the-kit) following the v12 release.
## Tasks
- [x] Draft amends to content
- [x] Team review of content
- [x] Publish content on 15 December
|
1.0
|
Update guidance to updating Prototype Kit to v12.0.0 - ## What
Update guidance for [updating your Prototype Kit](https://govuk-prototype-kit.herokuapp.com/docs/updating-the-kit) following the v12 release.
## Tasks
- [x] Draft amends to content
- [x] Team review of content
- [x] Publish content on 15 December
|
non_build
|
update guidance to updating prototype kit to what update guidance for following the release tasks draft amends to content team review of content publish content on december
| 0
|
4,277
| 3,343,431,292
|
IssuesEvent
|
2015-11-15 14:04:40
|
jgirald/ES2015C
|
https://api.github.com/repos/jgirald/ES2015C
|
closed
|
Testear e integrar YTCC
|
Building Sprint4 Team B Testing Yamato
|
**Descripción:** Testear e integrar YTCC. Crear el prefab en unity del edicio
**Estimación de esfuerzo por horas:** 0,2h
**Definición de DONE:** El edificio se ve con todos sus texturas , las medidas son proporcionales. El prefab esta creado.
**Responsable:** Arnau Sánchez, TeamB
|
1.0
|
Testear e integrar YTCC - **Descripción:** Testear e integrar YTCC. Crear el prefab en unity del edicio
**Estimación de esfuerzo por horas:** 0,2h
**Definición de DONE:** El edificio se ve con todos sus texturas , las medidas son proporcionales. El prefab esta creado.
**Responsable:** Arnau Sánchez, TeamB
|
build
|
testear e integrar ytcc descripción testear e integrar ytcc crear el prefab en unity del edicio estimación de esfuerzo por horas definición de done el edificio se ve con todos sus texturas las medidas son proporcionales el prefab esta creado responsable arnau sánchez teamb
| 1
|
789,025
| 27,776,250,416
|
IssuesEvent
|
2023-03-16 17:25:15
|
googleapis/google-cloud-go
|
https://api.github.com/repos/googleapis/google-cloud-go
|
closed
|
bigquery/storage/managedwriter: TestFlowControllerCancel failed
|
type: bug api: bigquery priority: p1 flakybot: issue
|
Note: #6527 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky.
----
commit: 2b9b77d3371feccff9b5900f37a21f6920bf8853
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/305a78f6-d6ff-4c2e-8870-15c31b7003b2), [Sponge](http://sponge2/305a78f6-d6ff-4c2e-8870-15c31b7003b2)
status: failed
|
1.0
|
bigquery/storage/managedwriter: TestFlowControllerCancel failed - Note: #6527 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky.
----
commit: 2b9b77d3371feccff9b5900f37a21f6920bf8853
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/305a78f6-d6ff-4c2e-8870-15c31b7003b2), [Sponge](http://sponge2/305a78f6-d6ff-4c2e-8870-15c31b7003b2)
status: failed
|
non_build
|
bigquery storage managedwriter testflowcontrollercancel failed note was also for this test but it was closed more than days ago so i didn t mark it flaky commit buildurl status failed
| 0
|
410,288
| 11,985,934,930
|
IssuesEvent
|
2020-04-07 18:23:57
|
inverse-inc/packetfence
|
https://api.github.com/repos/inverse-inc/packetfence
|
closed
|
Error when you try to save an already created radius filter.
|
Priority: High Type: Bug
|
**Describe the bug**
A radius filter with:

Save it then edit it:

As you can see the reply is in lower case and it in the request.

|
1.0
|
Error when you try to save an already created radius filter. - **Describe the bug**
A radius filter with:

Save it then edit it:

As you can see the reply is in lower case and it in the request.

|
non_build
|
error when you try to save an already created radius filter describe the bug a radius filter with save it then edit it as you can see the reply is in lower case and it in the request
| 0
|
173,604
| 21,176,959,271
|
IssuesEvent
|
2022-04-08 01:41:03
|
kapseliboi/WeiPay
|
https://api.github.com/repos/kapseliboi/WeiPay
|
opened
|
CVE-2022-24785 (High) detected in moment-2.24.0.tgz
|
security vulnerability
|
## CVE-2022-24785 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-2.24.0.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.24.0.tgz">https://registry.npmjs.org/moment/-/moment-2.24.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- :x: **moment-2.24.0.tgz** (Vulnerable Library)
<p>Found in base branch: <b>stable</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Moment.js is a JavaScript date library for parsing, validating, manipulating, and formatting dates. A path traversal vulnerability impacts npm (server) users of Moment.js between versions 1.0.1 and 2.29.1, especially if a user-provided locale string is directly used to switch moment locale. This problem is patched in 2.29.2, and the patch can be applied to all affected versions. As a workaround, sanitize the user-provided locale name before passing it to Moment.js.
<p>Publish Date: 2022-04-04
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-24785>CVE-2022-24785</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/moment/moment/security/advisories/GHSA-8hfj-j24r-96c4">https://github.com/moment/moment/security/advisories/GHSA-8hfj-j24r-96c4</a></p>
<p>Release Date: 2022-04-04</p>
<p>Fix Resolution: moment - 2.29.2,Moment.js - 2.29.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2022-24785 (High) detected in moment-2.24.0.tgz - ## CVE-2022-24785 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>moment-2.24.0.tgz</b></p></summary>
<p>Parse, validate, manipulate, and display dates</p>
<p>Library home page: <a href="https://registry.npmjs.org/moment/-/moment-2.24.0.tgz">https://registry.npmjs.org/moment/-/moment-2.24.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/moment/package.json</p>
<p>
Dependency Hierarchy:
- :x: **moment-2.24.0.tgz** (Vulnerable Library)
<p>Found in base branch: <b>stable</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Moment.js is a JavaScript date library for parsing, validating, manipulating, and formatting dates. A path traversal vulnerability impacts npm (server) users of Moment.js between versions 1.0.1 and 2.29.1, especially if a user-provided locale string is directly used to switch moment locale. This problem is patched in 2.29.2, and the patch can be applied to all affected versions. As a workaround, sanitize the user-provided locale name before passing it to Moment.js.
<p>Publish Date: 2022-04-04
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-24785>CVE-2022-24785</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: High
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/moment/moment/security/advisories/GHSA-8hfj-j24r-96c4">https://github.com/moment/moment/security/advisories/GHSA-8hfj-j24r-96c4</a></p>
<p>Release Date: 2022-04-04</p>
<p>Fix Resolution: moment - 2.29.2,Moment.js - 2.29.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_build
|
cve high detected in moment tgz cve high severity vulnerability vulnerable library moment tgz parse validate manipulate and display dates library home page a href path to dependency file package json path to vulnerable library node modules moment package json dependency hierarchy x moment tgz vulnerable library found in base branch stable vulnerability details moment js is a javascript date library for parsing validating manipulating and formatting dates a path traversal vulnerability impacts npm server users of moment js between versions and especially if a user provided locale string is directly used to switch moment locale this problem is patched in and the patch can be applied to all affected versions as a workaround sanitize the user provided locale name before passing it to moment js publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution moment moment js step up your open source security game with whitesource
| 0
|
66,938
| 16,761,380,139
|
IssuesEvent
|
2021-06-13 21:22:00
|
ClickHouse/ClickHouse
|
https://api.github.com/repos/ClickHouse/ClickHouse
|
closed
|
Use https://www.cyrusimap.org/sasl/ instead of https://www.gnu.org/software/gsasl/
|
altinity build feature help wanted minor st-accepted
|
Hello,
CH now uses https://www.gnu.org/software/gsasl/ which has LGPL license. Can you consider using https://www.cyrusimap.org/sasl/ instead that has a better license?
|
1.0
|
Use https://www.cyrusimap.org/sasl/ instead of https://www.gnu.org/software/gsasl/ - Hello,
CH now uses https://www.gnu.org/software/gsasl/ which has LGPL license. Can you consider using https://www.cyrusimap.org/sasl/ instead that has a better license?
|
build
|
use instead of hello ch now uses which has lgpl license can you consider using instead that has a better license
| 1
|
72,325
| 19,180,283,829
|
IssuesEvent
|
2021-12-04 09:00:33
|
Legrandin/pycryptodome
|
https://api.github.com/repos/Legrandin/pycryptodome
|
closed
|
Building of testsuite failed, because of function parameter mismatch.
|
bug build fix_available
|
This function is declared with different parameter type.
https://github.com/Legrandin/pycryptodome/blob/b7ff5f1959045d0e6a7b6af98fe777ea87cee869/src/mont.c#L260
https://github.com/Legrandin/pycryptodome/blob/b7ff5f1959045d0e6a7b6af98fe777ea87cee869/src/test/test_mont.c#L8
Which generated this output.
```
cc -g -O2 -ffile-prefix-map=/<<BUILDDIR>>/pycryptodome-3.11.0+dfsg1=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -O3 -g -fstrict-aliasing -Wall -Werror -msse2 -Wdate-time -D_FORTIFY_SOURCE=2 -I.. -DPYCRYPTO_LITTLE_ENDIAN -DHAVE_POSIX_MEMALIGN -DHAVE_STDINT_H -DSTATIC="" -DHAVE_X86INTRIN_H -DUSE_SSE2 -DHAVE_WMMINTRIN_H -DHAVE_TMMINTRIN_H -DHAVE_UINT128 -o build/test_mont test_mont.c build/mont_32.o build/modexp_utils.o build/siphash.o
test_mont.c:8:5: error: type of ‘mont_select’ does not match original declaration [-Werror=lto-type-mismatch]
8 | int mont_select(uint64_t *out, const uint64_t *a, const uint64_t *b, unsigned cond, unsigned words);
| ^
../mont.c:260:22: note: type mismatch in parameter 5
260 | STATIC FUNC_SSE2 int mont_select(uint64_t *out, const uint64_t *a, const uint64_t *b, unsigned cond, size_t words)
| ^
../mont.c:260:22: note: type ‘size_t’ should match type ‘unsigned int’
../mont.c:260:22: note: ‘mont_select’ was previously declared here
../mont.c:260:22: note: code may be misoptimized unless ‘-fno-strict-aliasing’ is used
lto1: all warnings being treated as errors
lto-wrapper: fatal error: cc returned 1 exit status
compilation terminated.
```
|
1.0
|
Building of testsuite failed, because of function parameter mismatch. - This function is declared with different parameter type.
https://github.com/Legrandin/pycryptodome/blob/b7ff5f1959045d0e6a7b6af98fe777ea87cee869/src/mont.c#L260
https://github.com/Legrandin/pycryptodome/blob/b7ff5f1959045d0e6a7b6af98fe777ea87cee869/src/test/test_mont.c#L8
Which generated this output.
```
cc -g -O2 -ffile-prefix-map=/<<BUILDDIR>>/pycryptodome-3.11.0+dfsg1=. -flto=auto -ffat-lto-objects -fstack-protector-strong -Wformat -Werror=format-security -O3 -g -fstrict-aliasing -Wall -Werror -msse2 -Wdate-time -D_FORTIFY_SOURCE=2 -I.. -DPYCRYPTO_LITTLE_ENDIAN -DHAVE_POSIX_MEMALIGN -DHAVE_STDINT_H -DSTATIC="" -DHAVE_X86INTRIN_H -DUSE_SSE2 -DHAVE_WMMINTRIN_H -DHAVE_TMMINTRIN_H -DHAVE_UINT128 -o build/test_mont test_mont.c build/mont_32.o build/modexp_utils.o build/siphash.o
test_mont.c:8:5: error: type of ‘mont_select’ does not match original declaration [-Werror=lto-type-mismatch]
8 | int mont_select(uint64_t *out, const uint64_t *a, const uint64_t *b, unsigned cond, unsigned words);
| ^
../mont.c:260:22: note: type mismatch in parameter 5
260 | STATIC FUNC_SSE2 int mont_select(uint64_t *out, const uint64_t *a, const uint64_t *b, unsigned cond, size_t words)
| ^
../mont.c:260:22: note: type ‘size_t’ should match type ‘unsigned int’
../mont.c:260:22: note: ‘mont_select’ was previously declared here
../mont.c:260:22: note: code may be misoptimized unless ‘-fno-strict-aliasing’ is used
lto1: all warnings being treated as errors
lto-wrapper: fatal error: cc returned 1 exit status
compilation terminated.
```
|
build
|
building of testsuite failed because of function parameter mismatch this function is declared with different parameter type which generated this output cc g ffile prefix map pycryptodome flto auto ffat lto objects fstack protector strong wformat werror format security g fstrict aliasing wall werror wdate time d fortify source i dpycrypto little endian dhave posix memalign dhave stdint h dstatic dhave h duse dhave wmmintrin h dhave tmmintrin h dhave o build test mont test mont c build mont o build modexp utils o build siphash o test mont c error type of ‘mont select’ does not match original declaration int mont select t out const t a const t b unsigned cond unsigned words mont c note type mismatch in parameter static func int mont select t out const t a const t b unsigned cond size t words mont c note type ‘size t’ should match type ‘unsigned int’ mont c note ‘mont select’ was previously declared here mont c note code may be misoptimized unless ‘ fno strict aliasing’ is used all warnings being treated as errors lto wrapper fatal error cc returned exit status compilation terminated
| 1
|
21,606
| 7,047,896,554
|
IssuesEvent
|
2018-01-02 15:31:08
|
spring-projects/spring-security
|
https://api.github.com/repos/spring-projects/spring-security
|
opened
|
Migrate Groovy to Java
|
Build and Admin Improvement
|
### Summary
The tests that are written in Groovy are very convenient and easy to read, but place an unnecessary burden on contributors unfamiliar with Groovy. We should migrate the Groovy tests to Java.
|
1.0
|
Migrate Groovy to Java - ### Summary
The tests that are written in Groovy are very convenient and easy to read, but place an unnecessary burden on contributors unfamiliar with Groovy. We should migrate the Groovy tests to Java.
|
build
|
migrate groovy to java summary the tests that are written in groovy are very convenient and easy to read but place an unnecessary burden on contributors unfamiliar with groovy we should migrate the groovy tests to java
| 1
|
94,735
| 16,021,691,124
|
IssuesEvent
|
2021-04-21 01:03:00
|
TIBCOSoftware/labs-discover
|
https://api.github.com/repos/TIBCOSoftware/labs-discover
|
opened
|
CVE-2020-28500 (Medium) detected in lodash-4.17.20.tgz
|
security vulnerability
|
## CVE-2020-28500 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-4.17.20.tgz</b></p></summary>
<p>Lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz</a></p>
<p>
Dependency Hierarchy:
- karma-5.2.3.tgz (Root Library)
- :x: **lodash-4.17.20.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Lodash versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.
<p>Publish Date: 2021-02-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500>CVE-2020-28500</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500</a></p>
<p>Release Date: 2021-02-15</p>
<p>Fix Resolution: lodash-4.17.21</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.20","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"karma:5.2.3;lodash:4.17.20","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lodash-4.17.21"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-28500","vulnerabilityDetails":"Lodash versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
|
True
|
CVE-2020-28500 (Medium) detected in lodash-4.17.20.tgz - ## CVE-2020-28500 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-4.17.20.tgz</b></p></summary>
<p>Lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz</a></p>
<p>
Dependency Hierarchy:
- karma-5.2.3.tgz (Root Library)
- :x: **lodash-4.17.20.tgz** (Vulnerable Library)
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Lodash versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.
<p>Publish Date: 2021-02-15
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500>CVE-2020-28500</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28500</a></p>
<p>Release Date: 2021-02-15</p>
<p>Fix Resolution: lodash-4.17.21</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.20","packageFilePaths":[],"isTransitiveDependency":true,"dependencyTree":"karma:5.2.3;lodash:4.17.20","isMinimumFixVersionAvailable":true,"minimumFixVersion":"lodash-4.17.21"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2020-28500","vulnerabilityDetails":"Lodash versions prior to 4.17.21 are vulnerable to Regular Expression Denial of Service (ReDoS) via the toNumber, trim and trimEnd functions.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28500","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"Low","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
|
non_build
|
cve medium detected in lodash tgz cve medium severity vulnerability vulnerable library lodash tgz lodash modular utilities library home page a href dependency hierarchy karma tgz root library x lodash tgz vulnerable library found in base branch master vulnerability details lodash versions prior to are vulnerable to regular expression denial of service redos via the tonumber trim and trimend functions publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution lodash isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree karma lodash isminimumfixversionavailable true minimumfixversion lodash basebranches vulnerabilityidentifier cve vulnerabilitydetails lodash versions prior to are vulnerable to regular expression denial of service redos via the tonumber trim and trimend functions vulnerabilityurl
| 0
|
315,560
| 23,586,974,315
|
IssuesEvent
|
2022-08-23 12:27:17
|
alphagov/govuk-prototype-kit
|
https://api.github.com/repos/alphagov/govuk-prototype-kit
|
closed
|
Draft release notes for v12.2.0
|
documentation 🕔 days release
|
## What
Draft release notes for [GOV.UK Prototype v12.2.0 (feature release)](https://github.com/alphagov/govuk-prototype-kit/milestone/24).
## Why
To tell users about:
- GOV.UK Frontend v4.3.0 release
- update to step by step (as an extension)
## Who needs to work on this
Content designer-technical writer, developer
## Who needs to review this
1. team, 2. Product manager
## Done when
This will be done when the release notes:
- [x] have been drafted in a Google Doc
- [x] team has reviewed
- [x] release notes pass 2i
- [x] have been signed off by product manager
- [x] PR raised for updating the release notes in the Changelog
|
1.0
|
Draft release notes for v12.2.0 -
## What
Draft release notes for [GOV.UK Prototype v12.2.0 (feature release)](https://github.com/alphagov/govuk-prototype-kit/milestone/24).
## Why
To tell users about:
- GOV.UK Frontend v4.3.0 release
- update to step by step (as an extension)
## Who needs to work on this
Content designer-technical writer, developer
## Who needs to review this
1. team, 2. Product manager
## Done when
This will be done when the release notes:
- [x] have been drafted in a Google Doc
- [x] team has reviewed
- [x] release notes pass 2i
- [x] have been signed off by product manager
- [x] PR raised for updating the release notes in the Changelog
|
non_build
|
draft release notes for what draft release notes for why to tell users about gov uk frontend release update to step by step as an extension who needs to work on this content designer technical writer developer who needs to review this team product manager done when this will be done when the release notes have been drafted in a google doc team has reviewed release notes pass have been signed off by product manager pr raised for updating the release notes in the changelog
| 0
|
32,749
| 12,146,888,054
|
IssuesEvent
|
2020-04-24 12:02:49
|
openlawlibrary/taf
|
https://api.github.com/repos/openlawlibrary/taf
|
closed
|
Update `add_signing_key` to support delegations
|
security
|
Adding new signing key to a delegated role does not work due to TUF not fully supporting delegated roles, so we need a workaround
|
True
|
Update `add_signing_key` to support delegations - Adding new signing key to a delegated role does not work due to TUF not fully supporting delegated roles, so we need a workaround
|
non_build
|
update add signing key to support delegations adding new signing key to a delegated role does not work due to tuf not fully supporting delegated roles so we need a workaround
| 0
|
71,946
| 18,944,369,153
|
IssuesEvent
|
2021-11-18 08:33:09
|
Gelio/CAL-web
|
https://api.github.com/repos/Gelio/CAL-web
|
opened
|
Run `mvn test` in CI
|
scope: CI scope: build P3 scope: tests complexity: low scope: quality
|
Some coding rules tests report more violations when they are run with `mvn test` and not `mvn verify`.
Let's add a new CI job that runs `mvn test`. It should probably run in parallel to the existing job that runs `mvn verify` to keep the build time low.
See https://github.com/Gelio/CAL-web/issues/62 and https://github.com/eclipse-sirius/sirius-web/pull/135 (maybe the root problem of some tests not running in `mvn verify` is fixed upstream).
|
1.0
|
Run `mvn test` in CI - Some coding rules tests report more violations when they are run with `mvn test` and not `mvn verify`.
Let's add a new CI job that runs `mvn test`. It should probably run in parallel to the existing job that runs `mvn verify` to keep the build time low.
See https://github.com/Gelio/CAL-web/issues/62 and https://github.com/eclipse-sirius/sirius-web/pull/135 (maybe the root problem of some tests not running in `mvn verify` is fixed upstream).
|
build
|
run mvn test in ci some coding rules tests report more violations when they are run with mvn test and not mvn verify let s add a new ci job that runs mvn test it should probably run in parallel to the existing job that runs mvn verify to keep the build time low see and maybe the root problem of some tests not running in mvn verify is fixed upstream
| 1
|
542,118
| 15,839,276,138
|
IssuesEvent
|
2021-04-07 00:27:00
|
almulalic/nrs20-tim7
|
https://api.github.com/repos/almulalic/nrs20-tim7
|
closed
|
Kreirati lokalni Web Server
|
Priority: Important Task: Initialization
|
**Ime zadatka:** Kreirati lokalni Web Server
**Opis zadatka:** Uz pomoć entity manager framework napraviti dotnet aplikaciju koja će se nakandno povezati sa repozitorijem, aplikacija trenutno može služiti za testing dok će se prava aplikacija pushati bez koda (osim onog koji ga inicijalizira), istražiti najbolje prakse za web servis ove vrste, razmisliti o načinu verifikacije i validacije i načinima filtriranje i samog optimizovanja kompleksnijeg koda. Razmisliti o potencijalnim rutama i arhitekturi projekta.
**UML dijagram:** _Nije potreban_
|
1.0
|
Kreirati lokalni Web Server - **Ime zadatka:** Kreirati lokalni Web Server
**Opis zadatka:** Uz pomoć entity manager framework napraviti dotnet aplikaciju koja će se nakandno povezati sa repozitorijem, aplikacija trenutno može služiti za testing dok će se prava aplikacija pushati bez koda (osim onog koji ga inicijalizira), istražiti najbolje prakse za web servis ove vrste, razmisliti o načinu verifikacije i validacije i načinima filtriranje i samog optimizovanja kompleksnijeg koda. Razmisliti o potencijalnim rutama i arhitekturi projekta.
**UML dijagram:** _Nije potreban_
|
non_build
|
kreirati lokalni web server ime zadatka kreirati lokalni web server opis zadatka uz pomoć entity manager framework napraviti dotnet aplikaciju koja će se nakandno povezati sa repozitorijem aplikacija trenutno može služiti za testing dok će se prava aplikacija pushati bez koda osim onog koji ga inicijalizira istražiti najbolje prakse za web servis ove vrste razmisliti o načinu verifikacije i validacije i načinima filtriranje i samog optimizovanja kompleksnijeg koda razmisliti o potencijalnim rutama i arhitekturi projekta uml dijagram nije potreban
| 0
|
80,319
| 23,169,539,468
|
IssuesEvent
|
2022-07-30 13:42:11
|
woocommerce/woocommerce-blocks
|
https://api.github.com/repos/woocommerce/woocommerce-blocks
|
opened
|
Windows development issue - `SassError: This file is already being loaded.`
|
type: bug type: build type: compatibility
|
## Describe the bug
When running `npm run build` on Windows 10, it shows ` SassError: This file is already being loaded.` and the project annot build.
This was also reported here (https://github.com/woocommerce/woocommerce-blocks/issues/6029#issuecomment-1067905345) but the user who found the issue didn't make the follow up ticket.
## To reproduce
Steps to reproduce the behavior:
1. Load Windows 10 or 11.
2. Clone the repo, ensure you're using node v16 and run `npm install`
3. Next run `npm run build`
4. See error.
## Expected behavior
Project should build regardless of platform.
|
1.0
|
Windows development issue - `SassError: This file is already being loaded.` - ## Describe the bug
When running `npm run build` on Windows 10, it shows ` SassError: This file is already being loaded.` and the project annot build.
This was also reported here (https://github.com/woocommerce/woocommerce-blocks/issues/6029#issuecomment-1067905345) but the user who found the issue didn't make the follow up ticket.
## To reproduce
Steps to reproduce the behavior:
1. Load Windows 10 or 11.
2. Clone the repo, ensure you're using node v16 and run `npm install`
3. Next run `npm run build`
4. See error.
## Expected behavior
Project should build regardless of platform.
|
build
|
windows development issue sasserror this file is already being loaded describe the bug when running npm run build on windows it shows sasserror this file is already being loaded and the project annot build this was also reported here but the user who found the issue didn t make the follow up ticket to reproduce steps to reproduce the behavior load windows or clone the repo ensure you re using node and run npm install next run npm run build see error expected behavior project should build regardless of platform
| 1
|
72,882
| 19,525,768,142
|
IssuesEvent
|
2021-12-30 07:21:42
|
appsmithorg/appsmith
|
https://api.github.com/repos/appsmithorg/appsmith
|
closed
|
[Feature]: horizontal list
|
Enhancement App Viewers Pod UI Building Pod community List Widget
|
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Summary
for now list is only vertical, I wish for horizontal list also
### Why should this be worked on?
this would add much more possibilities to create different ui cases. For now it is not possible to make horizontal list of controls when data comes from backend as it is dynamic.
|
1.0
|
[Feature]: horizontal list - ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Summary
for now list is only vertical, I wish for horizontal list also
### Why should this be worked on?
this would add much more possibilities to create different ui cases. For now it is not possible to make horizontal list of controls when data comes from backend as it is dynamic.
|
build
|
horizontal list is there an existing issue for this i have searched the existing issues summary for now list is only vertical i wish for horizontal list also why should this be worked on this would add much more possibilities to create different ui cases for now it is not possible to make horizontal list of controls when data comes from backend as it is dynamic
| 1
|
61,622
| 15,036,846,027
|
IssuesEvent
|
2021-02-02 15:41:55
|
sandboxie-plus/Sandboxie
|
https://api.github.com/repos/sandboxie-plus/Sandboxie
|
closed
|
Localization support for hooks list title
|
added in nextbuild
|
Add localization support for hooks list in sbie-english-1033:
https://github.com/sandboxie-plus/Sandboxie/blob/e88b739bd230d48608ae7b7926310dfaa6af9b37/Sandboxie/install/Templates.ini#L2794
|
1.0
|
Localization support for hooks list title - Add localization support for hooks list in sbie-english-1033:
https://github.com/sandboxie-plus/Sandboxie/blob/e88b739bd230d48608ae7b7926310dfaa6af9b37/Sandboxie/install/Templates.ini#L2794
|
build
|
localization support for hooks list title add localization support for hooks list in sbie english
| 1
|
79,141
| 22,622,262,858
|
IssuesEvent
|
2022-06-30 07:36:30
|
tarantool/tarantool
|
https://api.github.com/repos/tarantool/tarantool
|
closed
|
Release build warning
|
build
|
```
/home/ubuntu/tarantool/src/lib/bitset/bitset.c:169:9: warning: variable 'cardinality_check' set but not used [-Wunused-but-set-variable]
size_t cardinality_check = 0;
```
|
1.0
|
Release build warning - ```
/home/ubuntu/tarantool/src/lib/bitset/bitset.c:169:9: warning: variable 'cardinality_check' set but not used [-Wunused-but-set-variable]
size_t cardinality_check = 0;
```
|
build
|
release build warning home ubuntu tarantool src lib bitset bitset c warning variable cardinality check set but not used size t cardinality check
| 1
|
135,924
| 11,029,581,097
|
IssuesEvent
|
2019-12-06 14:11:26
|
mdlayher/netlink
|
https://api.github.com/repos/mdlayher/netlink
|
opened
|
netlink: flappy test TestIntegrationConnTimeout
|
bug netlink tests
|
```
--- FAIL: TestIntegrationConnTimeout (0.00s)
conn_linux_gteq_1.12_integration_test.go:43: timeout did not fire
```
Should be easy enough to investigate, but this is a nuisance and should be fixed.
|
1.0
|
netlink: flappy test TestIntegrationConnTimeout - ```
--- FAIL: TestIntegrationConnTimeout (0.00s)
conn_linux_gteq_1.12_integration_test.go:43: timeout did not fire
```
Should be easy enough to investigate, but this is a nuisance and should be fixed.
|
non_build
|
netlink flappy test testintegrationconntimeout fail testintegrationconntimeout conn linux gteq integration test go timeout did not fire should be easy enough to investigate but this is a nuisance and should be fixed
| 0
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.