Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
757
labels
stringlengths
4
664
body
stringlengths
3
261k
index
stringclasses
10 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
232k
binary_label
int64
0
1
252,738
19,061,625,758
IssuesEvent
2021-11-26 08:36:12
emdgroup-liquid/liquid
https://api.github.com/repos/emdgroup-liquid/liquid
closed
ld-icon does not support colorisation via currentColor anymore
bug documentation
**Bug description** ld-icon used to support colorisation via currentColor. Since the refactoring to shadow DOM this seems to have broken. We had no tests and so this one slipped through. **Steps to reproduce the behavior** 1. Go to https://emdgroup-liquid.github.io/liquid/components/ld-icon/#color **Expected behavior** The icons should be colored. **Actual behavior** The icons are black. **Screenshots** <img width="856" alt="Screenshot 2021-11-25 at 17 36 15" src="https://user-images.githubusercontent.com/527049/143477372-c0615acd-84ae-473b-887b-e2ac4a8fed6c.png">
1.0
ld-icon does not support colorisation via currentColor anymore - **Bug description** ld-icon used to support colorisation via currentColor. Since the refactoring to shadow DOM this seems to have broken. We had no tests and so this one slipped through. **Steps to reproduce the behavior** 1. Go to https://emdgroup-liquid.github.io/liquid/components/ld-icon/#color **Expected behavior** The icons should be colored. **Actual behavior** The icons are black. **Screenshots** <img width="856" alt="Screenshot 2021-11-25 at 17 36 15" src="https://user-images.githubusercontent.com/527049/143477372-c0615acd-84ae-473b-887b-e2ac4a8fed6c.png">
non_defect
ld icon does not support colorisation via currentcolor anymore bug description ld icon used to support colorisation via currentcolor since the refactoring to shadow dom this seems to have broken we had no tests and so this one slipped through steps to reproduce the behavior go to expected behavior the icons should be colored actual behavior the icons are black screenshots img width alt screenshot at src
0
54,940
14,076,773,389
IssuesEvent
2020-11-04 10:58:47
openzfs/zfs
https://api.github.com/repos/openzfs/zfs
opened
copy_file_range regression detected in ZFS 2.0 (tip) with 5.10-rc2 (and not 5.9)
Status: Triage Needed Type: Defect
<!-- Please fill out the following template, which will help other contributors address your issue. --> <!-- Thank you for reporting an issue. *IMPORTANT* - Please check our issue tracker before opening a new issue. Additional valuable information can be found in the OpenZFS documentation and mailing list archives. Please fill in as much of the template as possible. --> ### System information <!-- add version after "|" character --> Type | Version/Name --- | --- Distribution Name | Ubuntu Distribution Version | Hirsute (development) Linux Kernel | 5.10-rc2 Architecture | x86-64 ZFS Version | ZFS 2.0 (tip, on commit 71ae6a9d232de59534e4337efb0dc85c7d6906bd) SPL Version | as above ### Describe the problem you're observing Running xfs test 075 I'm seeing a regression just on the 5.10-rc2 kernel (and not on the 5.9 stable kernel) with ZFS. The failure is in copy_file_range returning -EINVAL with the 5.10-rc2 kernel where as in 5.9 it works fine. ### Describe how to reproduce the problem Run the current xfs tests on ZFS, test 075. I've distilled this down to a reproducer script: ``` #!/bin/bash TEST=075 VDEV_PATH=${PWD} POOL=testpool TESTDIR=test SCRATCHDIR=scratch export TEST_DIR=/mnt/$TESTDIR export TEST_DEV=$POOL/$TESTDIR export SCRATCH_MNT=/mnt/$SCRATCHDIR export SCRATCH_DEV=$POOL/$SCRATCHDIR export FSTYP=zfs vdev0=${VDEV_PATH}/block-dev-0 truncate -s 1G ${vdev0} zpool destroy $POOL &> /dev/null || true zpool create $POOL $vdev0 -f zfs create $POOL/$TESTDIR zfs create $POOL/$SCRATCHDIR zfs set acltype=posixacl $POOL/$TESTDIR zfs set acltype=posixacl $POOL/$SCRATCHDIR zfs set compression=on $POOL/$TESTDIR zfs set mountpoint=legacy $POOL/$TESTDIR zfs set mountpoint=legacy $POOL/$SCRATCHDIR mkdir /mnt/$TESTDIR /mnt/$SCRATCHDIR strace -f ./xfstests-bld/xfstests-dev/ltp/fsx -d -N 10000 -l 10485760 -S 0 -x /$POOL/$TESTDIR rmdir /mnt/$TESTDIR /mnt/$SCRATCHDIR echo "Destroying zfs pool $POOL" echo "Removing VDEVs in ${VDEV_PATH}" rm -rf $vdev0 ``` With 5.10-rc2, the failure is as follows: ``` Creating zfs pool testpool.. Creating zfs file systems test and scratch in testpool.. VDEVs in /home/cking execve("./xfstests-bld/xfstests-dev/ltp/fsx", ["./xfstests-bld/xfstests-dev/ltp/"..., "-d", "-N", "10000", "-l", "10485760", "-S", "0", "-x", "/testpool/test"], 0x7ffcb5ab6a30 /* 21 vars */) = 0 brk(NULL) = 0x55af65736000 arch_prctl(0x3001 /* ARCH_??? */, 0x7ffe171e9b40) = -1 EINVAL (Invalid argument) access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=43079, ...}) = 0 mmap(NULL, 43079, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f9a5d23a000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\201\0\0\0\0\0\0"..., 832) = 832 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0{\324M\31\306%'\265\343\356k%\214\217\2035"..., 68, 824) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=151232, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d238000 mmap(NULL, 136272, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9a5d216000 mmap(0x7f9a5d21d000, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f9a5d21d000 mmap(0x7f9a5d22d000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f9a5d22d000 mmap(0x7f9a5d232000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f9a5d232000 mmap(0x7f9a5d234000, 13392, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d234000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\215\2\0\0\0\0\0"..., 832) = 832 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 pread64(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32, 848) = 32 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0~\303\347M\250B\312<j\233\242\v!0<\341"..., 68, 880) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=1995896, ...}) = 0 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 mmap(NULL, 2004064, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9a5d02c000 mprotect(0x7f9a5d052000, 1810432, PROT_NONE) = 0 mmap(0x7f9a5d052000, 1495040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f9a5d052000 mmap(0x7f9a5d1bf000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x193000) = 0x7f9a5d1bf000 mmap(0x7f9a5d20c000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1df000) = 0x7f9a5d20c000 mmap(0x7f9a5d212000, 13408, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d212000 close(3) = 0 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d029000 arch_prctl(ARCH_SET_FS, 0x7f9a5d029740) = 0 mprotect(0x7f9a5d20c000, 12288, PROT_READ) = 0 mprotect(0x7f9a5d232000, 4096, PROT_READ) = 0 mprotect(0x55af63f03000, 4096, PROT_READ) = 0 mprotect(0x7f9a5d273000, 4096, PROT_READ) = 0 munmap(0x7f9a5d23a000, 43079) = 0 set_tid_address(0x7f9a5d029a10) = 119202 set_robust_list(0x7f9a5d029a20, 24) = 0 rt_sigaction(SIGRTMIN, {sa_handler=0x7f9a5d21db90, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f9a5d22abb0}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {sa_handler=0x7f9a5d21dc30, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f9a5d22abb0}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 getpid() = 119202 brk(NULL) = 0x55af65736000 brk(0x55af65757000) = 0x55af65757000 rt_sigaction(SIGHUP, {sa_handler=0x55af63ef89b0, sa_mask=[HUP], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGINT, {sa_handler=0x55af63ef89b0, sa_mask=[INT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGPIPE, {sa_handler=0x55af63ef89b0, sa_mask=[PIPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGALRM, {sa_handler=0x55af63ef89b0, sa_mask=[ALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGTERM, {sa_handler=0x55af63ef89b0, sa_mask=[TERM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXCPU, {sa_handler=0x55af63ef89b0, sa_mask=[XCPU], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXFSZ, {sa_handler=0x55af63ef89b0, sa_mask=[XFSZ], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGVTALRM, {sa_handler=0x55af63ef89b0, sa_mask=[VTALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR1, {sa_handler=0x55af63ef89b0, sa_mask=[USR1], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR2, {sa_handler=0x55af63ef89b0, sa_mask=[USR2], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 fstat(1, {st_mode=S_IFREG|0664, st_size=5840, ...}) = 0 write(1, "Seed set to 124541\n", 19Seed set to 124541 ) = 19 openat(AT_FDCWD, "/testpool/test", O_RDWR|O_CREAT|O_TRUNC, 0666) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ioctl(3, _IOC(_IOC_WRITE, 0x58, 0x28, 0x30), 0x7ffe171e8a30) = 0 openat(AT_FDCWD, "/testpool/test.fsxgood", O_RDWR|O_CREAT|O_TRUNC, 0666) = 4 openat(AT_FDCWD, "/testpool/test.fsxlog", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 5 unlink("/testpool/test.fsxops") = -1 ENOENT (No such file or directory) mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5c628000 mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5bc27000 ftruncate(3, 0) = 0 ftruncate(3, 100000) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=100000, ...}) = 0 ftruncate(3, 0) = 0 fallocate(3, 0, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE|FALLOC_FL_PUNCH_HOLE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_ZERO_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 82main: filesystem does not support fallocate mode FALLOC_FL_ZERO_RANGE, disabling! ) = 82 fallocate(3, FALLOC_FL_COLLAPSE_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 86main: filesystem does not support fallocate mode FALLOC_FL_COLLAPSE_RANGE, disabling! ) = 86 fallocate(3, FALLOC_FL_INSERT_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 84main: filesystem does not support fallocate mode FALLOC_FL_INSERT_RANGE, disabling! ) = 84 ioctl(3, BTRFS_IOC_CLONE_RANGE or FICLONERANGE, {src_fd=3, src_offset=0, src_length=0, dest_offset=0}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 58main: filesystem does not support clone range, disabling! ) = 58 ftruncate(3, 262144) = 0 ioctl(3, BTRFS_IOC_FILE_EXTENT_SAME or FIDEDUPERANGE, {src_offset=0, src_length=131072, dest_count=1, info=[{dest_fd=3, dest_offset=131072}]}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 59main: filesystem does not support dedupe range, disabling! ) = 59 ftruncate(3, 0) = 0 copy_file_range(3, [0], 3, [1], 1, 0) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 lseek(3, 0, SEEK_END) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 lseek(3, 0, SEEK_END) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 lseek(3, 0, SEEK_END) = 0 write(1, "4 mapwrite\t0x1cdee7 thru\t0x1ce37"..., 484 mapwrite 0x1cdee7 thru 0x1ce375 (0x48f bytes) ) = 48 fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ftruncate(3, 1893238) = 0 mmap(NULL, 4982, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x1cd000) = 0x7f9a5d243000 msync(0x7f9a5d243000, 4982, MS_SYNC) = 0 munmap(0x7f9a5d243000, 4982) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 write(1, "7 mapread\t0x9f177 thru\t0xaa531\t("..., 467 mapread 0x9f177 thru 0xaa531 (0xb3bb bytes) ) = 46 mmap(NULL, 46386, PROT_READ, MAP_SHARED, 3, 0x9f000) = 0x7f9a5bc1b000 munmap(0x7f9a5bc1b000, 46386) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 write(1, "fallocating to largest ever: 0x4"..., 38fallocating to largest ever: 0x476a84 ) = 38 write(1, "8 falloc\tfrom 0x468526 to 0x476a"..., 508 falloc from 0x468526 to 0x476a84 (0xe55e bytes) ) = 50 fallocate(3, 0, 4621606, 58718) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4680324, ...}) = 0 lseek(3, 0, SEEK_END) = 4680324 write(1, "copying to largest ever: 0x82f7b"..., 34copying to largest ever: 0x82f7b9 ) = 34 write(1, "9 copy\tfrom 0x1a6cd to 0x1ead9, "..., 599 copy from 0x1a6cd to 0x1ead9, (0x440c bytes) at 0x82b3ad ) = 59 copy_file_range(3, [108237], 3, [8565677], 17420, 0) = -1 EINVAL (Invalid argument) write(1, "copy range: 0x1a6cd to 0x1ead9 a"..., 43copy range: 0x1a6cd to 0x1ead9 at 0x82b3ad ) = 43 write(1, "do_copy_range:: Invalid argument"..., 33do_copy_range:: Invalid argument ) = 33 write(1, "LOG DUMP (9 total operations):\n", 31LOG DUMP (9 total operations): ) = 31 openat(AT_FDCWD, "/testpool/test.fsxops", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 6 write(1, "1( 1 mod 256): SKIPPED (no oper"..., 391( 1 mod 256): SKIPPED (no operation) ) = 39 fstat(6, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 write(1, "2( 2 mod 256): SKIPPED (no oper"..., 392( 2 mod 256): SKIPPED (no operation) ) = 39 write(1, "3( 3 mod 256): SKIPPED (no oper"..., 393( 3 mod 256): SKIPPED (no operation) ) = 39 write(1, "4( 4 mod 256): MAPWRITE 0x1cdee"..., 624( 4 mod 256): MAPWRITE 0x1cdee7 thru 0x1ce375 (0x48f bytes) ) = 62 write(1, "5( 5 mod 256): SKIPPED (no oper"..., 395( 5 mod 256): SKIPPED (no operation) ) = 39 write(1, "6( 6 mod 256): SKIPPED (no oper"..., 396( 6 mod 256): SKIPPED (no operation) ) = 39 write(1, "7( 7 mod 256): MAPREAD 0x9f177"..., 617( 7 mod 256): MAPREAD 0x9f177 thru 0xaa531 (0xb3bb bytes) ) = 61 write(1, "8( 8 mod 256): FALLOC 0x46852"..., 738( 8 mod 256): FALLOC 0x468526 thru 0x476a84 (0xe55e bytes) EXTENDING ) = 73 write(1, "9( 9 mod 256): COPY 0x1a6cd thr"..., 839( 9 mod 256): COPY 0x1a6cd thru 0x1ead8 (0x440c bytes) to 0x82b3ad thru 0x82f7b8 ) = 83 write(6, "skip dedupe_range 0x0 0x0 0x0 0x"..., 347) = 347 close(6) = 0 write(1, "Log of operations saved to \"/tes"..., 77Log of operations saved to "/testpool/test.fsxops"; replay with --replay-ops ) = 77 lseek(4, 0, SEEK_SET) = 0 write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4680324) = 4680324 write(1, "Correct content saved for compar"..., 37Correct content saved for comparison ) = 37 write(1, "(maybe hexdump \"/testpool/test\" "..., 61(maybe hexdump "/testpool/test" vs "/testpool/test.fsxgood") ) = 61 close(4) = 0 write(5, "4 mapwrite\t0x1cdee7 thru\t0x1ce37"..., 1031) = 1031 exit_group(161) = ? +++ exited with 161 +++ Destroying zfs pool testpool Removing VDEVs in /home/cking ``` Where as with 5.9 it runs successfully, there are multiple copy_file_range calls that work fine. ``` Creating zfs pool testpool.. Creating zfs file systems test and scratch in testpool.. VDEVs in /home/cking mkdir: cannot create directory ‘/mnt/test’: File exists mkdir: cannot create directory ‘/mnt/scratch’: File exists execve("./xfstests-bld/xfstests-dev/ltp/fsx", ["./xfstests-bld/xfstests-dev/ltp/"..., "-d", "-N", "10000", "-l", "10485760", "-S", "0", "-x", "/testpool/test"], 0x7ffe68daab40 /* 21 vars */) = 0 brk(NULL) = 0x559870e9d000 arch_prctl(0x3001 /* ARCH_??? */, 0x7fffa1512760) = -1 EINVAL (Invalid argument) access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=43079, ...}) = 0 mmap(NULL, 43079, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6c0b333000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\201\0\0\0\0\0\0"..., 832) = 832 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0{\324M\31\306%'\265\343\356k%\214\217\2035"..., 68, 824) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=151232, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b331000 mmap(NULL, 136272, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6c0b30f000 mmap(0x7f6c0b316000, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f6c0b316000 mmap(0x7f6c0b326000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f6c0b326000 mmap(0x7f6c0b32b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f6c0b32b000 mmap(0x7f6c0b32d000, 13392, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b32d000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\215\2\0\0\0\0\0"..., 832) = 832 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 pread64(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32, 848) = 32 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0~\303\347M\250B\312<j\233\242\v!0<\341"..., 68, 880) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=1995896, ...}) = 0 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 mmap(NULL, 2004064, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6c0b125000 mprotect(0x7f6c0b14b000, 1810432, PROT_NONE) = 0 mmap(0x7f6c0b14b000, 1495040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f6c0b14b000 mmap(0x7f6c0b2b8000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x193000) = 0x7f6c0b2b8000 mmap(0x7f6c0b305000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1df000) = 0x7f6c0b305000 mmap(0x7f6c0b30b000, 13408, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b30b000 close(3) = 0 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b122000 arch_prctl(ARCH_SET_FS, 0x7f6c0b122740) = 0 mprotect(0x7f6c0b305000, 12288, PROT_READ) = 0 mprotect(0x7f6c0b32b000, 4096, PROT_READ) = 0 mprotect(0x55986f0d0000, 4096, PROT_READ) = 0 mprotect(0x7f6c0b36c000, 4096, PROT_READ) = 0 munmap(0x7f6c0b333000, 43079) = 0 set_tid_address(0x7f6c0b122a10) = 80648 set_robust_list(0x7f6c0b122a20, 24) = 0 rt_sigaction(SIGRTMIN, {sa_handler=0x7f6c0b316b90, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f6c0b323bb0}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {sa_handler=0x7f6c0b316c30, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f6c0b323bb0}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 getpid() = 80648 brk(NULL) = 0x559870e9d000 brk(0x559870ebe000) = 0x559870ebe000 rt_sigaction(SIGHUP, {sa_handler=0x55986f0c59b0, sa_mask=[HUP], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGINT, {sa_handler=0x55986f0c59b0, sa_mask=[INT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGPIPE, {sa_handler=0x55986f0c59b0, sa_mask=[PIPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGALRM, {sa_handler=0x55986f0c59b0, sa_mask=[ALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGTERM, {sa_handler=0x55986f0c59b0, sa_mask=[TERM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXCPU, {sa_handler=0x55986f0c59b0, sa_mask=[XCPU], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXFSZ, {sa_handler=0x55986f0c59b0, sa_mask=[XFSZ], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGVTALRM, {sa_handler=0x55986f0c59b0, sa_mask=[VTALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR1, {sa_handler=0x55986f0c59b0, sa_mask=[USR1], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR2, {sa_handler=0x55986f0c59b0, sa_mask=[USR2], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 fstat(1, {st_mode=S_IFREG|0664, st_size=5961, ...}) = 0 write(1, "Seed set to 86955\n", 18Seed set to 86955 ) = 18 openat(AT_FDCWD, "/testpool/test", O_RDWR|O_CREAT|O_TRUNC, 0666) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ioctl(3, _IOC(_IOC_WRITE, 0x58, 0x28, 0x30), 0x7fffa1511650) = 0 openat(AT_FDCWD, "/testpool/test.fsxgood", O_RDWR|O_CREAT|O_TRUNC, 0666) = 4 openat(AT_FDCWD, "/testpool/test.fsxlog", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 5 unlink("/testpool/test.fsxops") = -1 ENOENT (No such file or directory) mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c0a721000 mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c09d20000 ftruncate(3, 0) = 0 ftruncate(3, 100000) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=100000, ...}) = 0 ftruncate(3, 0) = 0 fallocate(3, 0, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE|FALLOC_FL_PUNCH_HOLE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_ZERO_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 82main: filesystem does not support fallocate mode FALLOC_FL_ZERO_RANGE, disabling! ) = 82 fallocate(3, FALLOC_FL_COLLAPSE_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 86main: filesystem does not support fallocate mode FALLOC_FL_COLLAPSE_RANGE, disabling! ) = 86 fallocate(3, FALLOC_FL_INSERT_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 84main: filesystem does not support fallocate mode FALLOC_FL_INSERT_RANGE, disabling! ) = 84 ioctl(3, BTRFS_IOC_CLONE_RANGE or FICLONERANGE, {src_fd=3, src_offset=0, src_length=0, dest_offset=0}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 58main: filesystem does not support clone range, disabling! ) = 58 ftruncate(3, 262144) = 0 ioctl(3, BTRFS_IOC_FILE_EXTENT_SAME or FIDEDUPERANGE, {src_offset=0, src_length=131072, dest_count=1, info=[{dest_fd=3, dest_offset=131072}]}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 59main: filesystem does not support dedupe range, disabling! ) = 59 ftruncate(3, 0) = 0 copy_file_range(3, [0], 3, [1], 1, 0) = 0 write(1, "1 mapwrite\t0x402969 thru\t0x40b3b"..., 491 mapwrite 0x402969 thru 0x40b3b0 (0x8a48 bytes) ) = 49 fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ftruncate(3, 4240305) = 0 mmap(NULL, 37809, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x402000) = 0x7f6c0b334000 msync(0x7f6c0b334000, 37809, MS_SYNC) = 0 munmap(0x7f6c0b334000, 37809) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "3 mapwrite\t0x225815 thru\t0x225d9"..., 483 mapwrite 0x225815 thru 0x225d9d (0x589 bytes) ) = 48 mmap(NULL, 3486, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x225000) = 0x7f6c0b33d000 msync(0x7f6c0b33d000, 3486, MS_SYNC) = 0 munmap(0x7f6c0b33d000, 3486) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "4 punch\tfrom 0x3c6257 to 0x3ce79"..., 504 punch from 0x3c6257 to 0x3ce791, (0x853a bytes) ) = 50 fallocate(3, FALLOC_FL_KEEP_SIZE|FALLOC_FL_PUNCH_HOLE, 3957335, 34106) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "5 mapwrite\t0x2146 thru\t0xce2d\t(0"..., 455 mapwrite 0x2146 thru 0xce2d (0xace8 bytes) ) = 45 mmap(NULL, 44590, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x2000) = 0x7f6c0b333000 msync(0x7f6c0b333000, 44590, MS_SYNC) = 0 munmap(0x7f6c0b333000, 44590) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "6 mapwrite\t0x2c6295 thru\t0x2ce60"..., 496 mapwrite 0x2c6295 thru 0x2ce602 (0x836e bytes) ) = 49 mmap(NULL, 34307, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x2c6000) = 0x7f6c0b335000 msync(0x7f6c0b335000, 34307, MS_SYNC) = 0 munmap(0x7f6c0b335000, 34307) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "copying to largest ever: 0x9b9d8"..., 34copying to largest ever: 0x9b9d8f ) = 34 write(1, "7 copy\tfrom 0x164bd3 to 0x16b06b"..., 617 copy from 0x164bd3 to 0x16b06b, (0x6498 bytes) at 0x9b38f7 ) = 61 copy_file_range(3, [1461203], 3, [10172663], 25752, 0) = 25752 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "9 copy\tfrom 0x6f9672 to 0x701c55"..., 619 copy from 0x6f9672 to 0x701c55, (0x85e3 bytes) at 0x3c14a9 ) = 61 copy_file_range(3, [7313010], 3, [3937449], 34275, 0) = 34275 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "11 write\t0x1a1d88 thru\t0x1aa747\t"..., 4711 write 0x1a1d88 thru 0x1aa747 (0x89c0 bytes) ) = 47 lseek(3, 1711496, SEEK_SET) = 1711496 write(3, "\v\36\vd\v\312\v\1\v\24\v\342\v\252\vz\v\317\v8\v\222\v\312\v\24\vd\v8\v\273"..., 35264) = 35264 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "12 mapwrite\t0x5c9679 thru\t0x5cd3"..., 5012 mapwrite 0x5c9679 thru 0x5cd330 (0x3cb8 bytes) ) = 50 mmap(NULL, 17201, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x5c9000) = 0x7f6c0b339000 msync(0x7f6c0b339000, 17201, MS_SYNC) = 0 munmap(0x7f6c0b339000, 17201) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "13 mapwrite\t0x940c32 thru\t0x9419"..., 4913 mapwrite 0x940c32 thru 0x941926 (0xcf5 bytes) ) = 49 mmap(NULL, 6439, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x940000) = 0x7f6c0b33c000 msync(0x7f6c0b33c000, 6439, MS_SYNC) = 0 munmap(0x7f6c0b33c000, 6439) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "15 mapread\t0x81f4b8 thru\t0x8241e"..., 4915 mapread 0x81f4b8 thru 0x8241ed (0x4d36 bytes) ) = 49 mmap(NULL, 20974, PROT_READ, MAP_SHARED, 3, 0x81f000) = 0x7f6c0b338000 munmap(0x7f6c0b338000, 20974) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "19 falloc\tfrom 0x7d4dc4 to 0x7da"..., 5119 falloc from 0x7d4dc4 to 0x7daf84 (0x61c0 bytes) ) = 51 fallocate(3, 0, 8211908, 25024) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "20 falloc\tfrom 0x1a6832 to 0x1b3"..., 5120 falloc from 0x1a6832 to 0x1b3141 (0xc90f bytes) ) = 51 fallocate(3, 0, 1730610, 51471) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "21 read\t0x9131c thru\t0x9da4d\t(0x"..., 4421 read 0x9131c thru 0x9da4d (0xc732 bytes) ) = 44 lseek(3, 594716, SEEK_SET) = 594716 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 50994) = 50994 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "22 mapread\t0x99a529 thru\t0x99c28"..., 4922 mapread 0x99a529 thru 0x99c284 (0x1d5c bytes) ) = 49 mmap(NULL, 8837, PROT_READ, MAP_SHARED, 3, 0x99a000) = 0x7f6c0b33b000 munmap(0x7f6c0b33b000, 8837) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "23 copy\tfrom 0x6d0c8a to 0x6d7f4"..., 6223 copy from 0x6d0c8a to 0x6d7f42, (0x72b8 bytes) at 0x6a5be1 ) = 62 copy_file_range(3, [7146634], 3, [6970337], 29368, 0) = 29368 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "24 write\t0x1324fa thru\t0x13ddb6\t"..., 4724 write 0x1324fa thru 0x13ddb6 (0xb8bd bytes) ) = 47 lseek(3, 1254650, SEEK_SET) = 1254650 write(3, "\30\235\30,\30\20\30\307\30W\30\356\30\247\30R\30\253\30\205\30O\30\36\30z\30D\30\332\30\177"..., 47293) = 47293 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "25 falloc\tfrom 0x13b8a3 to 0x144"..., 5125 falloc from 0x13b8a3 to 0x14432e (0x8a8b bytes) ) = 51 fallocate(3, 0, 1292451, 35467) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "28 copy\tfrom 0x802aa9 to 0x80fd5"..., 6228 copy from 0x802aa9 to 0x80fd57, (0xd2ae bytes) at 0x29ee5c ) = 62 copy_file_range(3, [8399529], 3, [2747996], 53934, 0) = 53934 ..etc ```
1.0
copy_file_range regression detected in ZFS 2.0 (tip) with 5.10-rc2 (and not 5.9) - <!-- Please fill out the following template, which will help other contributors address your issue. --> <!-- Thank you for reporting an issue. *IMPORTANT* - Please check our issue tracker before opening a new issue. Additional valuable information can be found in the OpenZFS documentation and mailing list archives. Please fill in as much of the template as possible. --> ### System information <!-- add version after "|" character --> Type | Version/Name --- | --- Distribution Name | Ubuntu Distribution Version | Hirsute (development) Linux Kernel | 5.10-rc2 Architecture | x86-64 ZFS Version | ZFS 2.0 (tip, on commit 71ae6a9d232de59534e4337efb0dc85c7d6906bd) SPL Version | as above ### Describe the problem you're observing Running xfs test 075 I'm seeing a regression just on the 5.10-rc2 kernel (and not on the 5.9 stable kernel) with ZFS. The failure is in copy_file_range returning -EINVAL with the 5.10-rc2 kernel where as in 5.9 it works fine. ### Describe how to reproduce the problem Run the current xfs tests on ZFS, test 075. I've distilled this down to a reproducer script: ``` #!/bin/bash TEST=075 VDEV_PATH=${PWD} POOL=testpool TESTDIR=test SCRATCHDIR=scratch export TEST_DIR=/mnt/$TESTDIR export TEST_DEV=$POOL/$TESTDIR export SCRATCH_MNT=/mnt/$SCRATCHDIR export SCRATCH_DEV=$POOL/$SCRATCHDIR export FSTYP=zfs vdev0=${VDEV_PATH}/block-dev-0 truncate -s 1G ${vdev0} zpool destroy $POOL &> /dev/null || true zpool create $POOL $vdev0 -f zfs create $POOL/$TESTDIR zfs create $POOL/$SCRATCHDIR zfs set acltype=posixacl $POOL/$TESTDIR zfs set acltype=posixacl $POOL/$SCRATCHDIR zfs set compression=on $POOL/$TESTDIR zfs set mountpoint=legacy $POOL/$TESTDIR zfs set mountpoint=legacy $POOL/$SCRATCHDIR mkdir /mnt/$TESTDIR /mnt/$SCRATCHDIR strace -f ./xfstests-bld/xfstests-dev/ltp/fsx -d -N 10000 -l 10485760 -S 0 -x /$POOL/$TESTDIR rmdir /mnt/$TESTDIR /mnt/$SCRATCHDIR echo "Destroying zfs pool $POOL" echo "Removing VDEVs in ${VDEV_PATH}" rm -rf $vdev0 ``` With 5.10-rc2, the failure is as follows: ``` Creating zfs pool testpool.. Creating zfs file systems test and scratch in testpool.. VDEVs in /home/cking execve("./xfstests-bld/xfstests-dev/ltp/fsx", ["./xfstests-bld/xfstests-dev/ltp/"..., "-d", "-N", "10000", "-l", "10485760", "-S", "0", "-x", "/testpool/test"], 0x7ffcb5ab6a30 /* 21 vars */) = 0 brk(NULL) = 0x55af65736000 arch_prctl(0x3001 /* ARCH_??? */, 0x7ffe171e9b40) = -1 EINVAL (Invalid argument) access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=43079, ...}) = 0 mmap(NULL, 43079, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f9a5d23a000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\201\0\0\0\0\0\0"..., 832) = 832 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0{\324M\31\306%'\265\343\356k%\214\217\2035"..., 68, 824) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=151232, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d238000 mmap(NULL, 136272, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9a5d216000 mmap(0x7f9a5d21d000, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f9a5d21d000 mmap(0x7f9a5d22d000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f9a5d22d000 mmap(0x7f9a5d232000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f9a5d232000 mmap(0x7f9a5d234000, 13392, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d234000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\215\2\0\0\0\0\0"..., 832) = 832 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 pread64(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32, 848) = 32 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0~\303\347M\250B\312<j\233\242\v!0<\341"..., 68, 880) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=1995896, ...}) = 0 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 mmap(NULL, 2004064, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9a5d02c000 mprotect(0x7f9a5d052000, 1810432, PROT_NONE) = 0 mmap(0x7f9a5d052000, 1495040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f9a5d052000 mmap(0x7f9a5d1bf000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x193000) = 0x7f9a5d1bf000 mmap(0x7f9a5d20c000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1df000) = 0x7f9a5d20c000 mmap(0x7f9a5d212000, 13408, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d212000 close(3) = 0 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5d029000 arch_prctl(ARCH_SET_FS, 0x7f9a5d029740) = 0 mprotect(0x7f9a5d20c000, 12288, PROT_READ) = 0 mprotect(0x7f9a5d232000, 4096, PROT_READ) = 0 mprotect(0x55af63f03000, 4096, PROT_READ) = 0 mprotect(0x7f9a5d273000, 4096, PROT_READ) = 0 munmap(0x7f9a5d23a000, 43079) = 0 set_tid_address(0x7f9a5d029a10) = 119202 set_robust_list(0x7f9a5d029a20, 24) = 0 rt_sigaction(SIGRTMIN, {sa_handler=0x7f9a5d21db90, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f9a5d22abb0}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {sa_handler=0x7f9a5d21dc30, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f9a5d22abb0}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 getpid() = 119202 brk(NULL) = 0x55af65736000 brk(0x55af65757000) = 0x55af65757000 rt_sigaction(SIGHUP, {sa_handler=0x55af63ef89b0, sa_mask=[HUP], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGINT, {sa_handler=0x55af63ef89b0, sa_mask=[INT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGPIPE, {sa_handler=0x55af63ef89b0, sa_mask=[PIPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGALRM, {sa_handler=0x55af63ef89b0, sa_mask=[ALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGTERM, {sa_handler=0x55af63ef89b0, sa_mask=[TERM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXCPU, {sa_handler=0x55af63ef89b0, sa_mask=[XCPU], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXFSZ, {sa_handler=0x55af63ef89b0, sa_mask=[XFSZ], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGVTALRM, {sa_handler=0x55af63ef89b0, sa_mask=[VTALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR1, {sa_handler=0x55af63ef89b0, sa_mask=[USR1], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR2, {sa_handler=0x55af63ef89b0, sa_mask=[USR2], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f9a5d06d950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 fstat(1, {st_mode=S_IFREG|0664, st_size=5840, ...}) = 0 write(1, "Seed set to 124541\n", 19Seed set to 124541 ) = 19 openat(AT_FDCWD, "/testpool/test", O_RDWR|O_CREAT|O_TRUNC, 0666) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ioctl(3, _IOC(_IOC_WRITE, 0x58, 0x28, 0x30), 0x7ffe171e8a30) = 0 openat(AT_FDCWD, "/testpool/test.fsxgood", O_RDWR|O_CREAT|O_TRUNC, 0666) = 4 openat(AT_FDCWD, "/testpool/test.fsxlog", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 5 unlink("/testpool/test.fsxops") = -1 ENOENT (No such file or directory) mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5c628000 mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9a5bc27000 ftruncate(3, 0) = 0 ftruncate(3, 100000) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=100000, ...}) = 0 ftruncate(3, 0) = 0 fallocate(3, 0, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE|FALLOC_FL_PUNCH_HOLE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_ZERO_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 82main: filesystem does not support fallocate mode FALLOC_FL_ZERO_RANGE, disabling! ) = 82 fallocate(3, FALLOC_FL_COLLAPSE_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 86main: filesystem does not support fallocate mode FALLOC_FL_COLLAPSE_RANGE, disabling! ) = 86 fallocate(3, FALLOC_FL_INSERT_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 84main: filesystem does not support fallocate mode FALLOC_FL_INSERT_RANGE, disabling! ) = 84 ioctl(3, BTRFS_IOC_CLONE_RANGE or FICLONERANGE, {src_fd=3, src_offset=0, src_length=0, dest_offset=0}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 58main: filesystem does not support clone range, disabling! ) = 58 ftruncate(3, 262144) = 0 ioctl(3, BTRFS_IOC_FILE_EXTENT_SAME or FIDEDUPERANGE, {src_offset=0, src_length=131072, dest_count=1, info=[{dest_fd=3, dest_offset=131072}]}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 59main: filesystem does not support dedupe range, disabling! ) = 59 ftruncate(3, 0) = 0 copy_file_range(3, [0], 3, [1], 1, 0) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 lseek(3, 0, SEEK_END) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 lseek(3, 0, SEEK_END) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 lseek(3, 0, SEEK_END) = 0 write(1, "4 mapwrite\t0x1cdee7 thru\t0x1ce37"..., 484 mapwrite 0x1cdee7 thru 0x1ce375 (0x48f bytes) ) = 48 fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ftruncate(3, 1893238) = 0 mmap(NULL, 4982, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x1cd000) = 0x7f9a5d243000 msync(0x7f9a5d243000, 4982, MS_SYNC) = 0 munmap(0x7f9a5d243000, 4982) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 write(1, "7 mapread\t0x9f177 thru\t0xaa531\t("..., 467 mapread 0x9f177 thru 0xaa531 (0xb3bb bytes) ) = 46 mmap(NULL, 46386, PROT_READ, MAP_SHARED, 3, 0x9f000) = 0x7f9a5bc1b000 munmap(0x7f9a5bc1b000, 46386) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=1893238, ...}) = 0 lseek(3, 0, SEEK_END) = 1893238 write(1, "fallocating to largest ever: 0x4"..., 38fallocating to largest ever: 0x476a84 ) = 38 write(1, "8 falloc\tfrom 0x468526 to 0x476a"..., 508 falloc from 0x468526 to 0x476a84 (0xe55e bytes) ) = 50 fallocate(3, 0, 4621606, 58718) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4680324, ...}) = 0 lseek(3, 0, SEEK_END) = 4680324 write(1, "copying to largest ever: 0x82f7b"..., 34copying to largest ever: 0x82f7b9 ) = 34 write(1, "9 copy\tfrom 0x1a6cd to 0x1ead9, "..., 599 copy from 0x1a6cd to 0x1ead9, (0x440c bytes) at 0x82b3ad ) = 59 copy_file_range(3, [108237], 3, [8565677], 17420, 0) = -1 EINVAL (Invalid argument) write(1, "copy range: 0x1a6cd to 0x1ead9 a"..., 43copy range: 0x1a6cd to 0x1ead9 at 0x82b3ad ) = 43 write(1, "do_copy_range:: Invalid argument"..., 33do_copy_range:: Invalid argument ) = 33 write(1, "LOG DUMP (9 total operations):\n", 31LOG DUMP (9 total operations): ) = 31 openat(AT_FDCWD, "/testpool/test.fsxops", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 6 write(1, "1( 1 mod 256): SKIPPED (no oper"..., 391( 1 mod 256): SKIPPED (no operation) ) = 39 fstat(6, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 write(1, "2( 2 mod 256): SKIPPED (no oper"..., 392( 2 mod 256): SKIPPED (no operation) ) = 39 write(1, "3( 3 mod 256): SKIPPED (no oper"..., 393( 3 mod 256): SKIPPED (no operation) ) = 39 write(1, "4( 4 mod 256): MAPWRITE 0x1cdee"..., 624( 4 mod 256): MAPWRITE 0x1cdee7 thru 0x1ce375 (0x48f bytes) ) = 62 write(1, "5( 5 mod 256): SKIPPED (no oper"..., 395( 5 mod 256): SKIPPED (no operation) ) = 39 write(1, "6( 6 mod 256): SKIPPED (no oper"..., 396( 6 mod 256): SKIPPED (no operation) ) = 39 write(1, "7( 7 mod 256): MAPREAD 0x9f177"..., 617( 7 mod 256): MAPREAD 0x9f177 thru 0xaa531 (0xb3bb bytes) ) = 61 write(1, "8( 8 mod 256): FALLOC 0x46852"..., 738( 8 mod 256): FALLOC 0x468526 thru 0x476a84 (0xe55e bytes) EXTENDING ) = 73 write(1, "9( 9 mod 256): COPY 0x1a6cd thr"..., 839( 9 mod 256): COPY 0x1a6cd thru 0x1ead8 (0x440c bytes) to 0x82b3ad thru 0x82f7b8 ) = 83 write(6, "skip dedupe_range 0x0 0x0 0x0 0x"..., 347) = 347 close(6) = 0 write(1, "Log of operations saved to \"/tes"..., 77Log of operations saved to "/testpool/test.fsxops"; replay with --replay-ops ) = 77 lseek(4, 0, SEEK_SET) = 0 write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4680324) = 4680324 write(1, "Correct content saved for compar"..., 37Correct content saved for comparison ) = 37 write(1, "(maybe hexdump \"/testpool/test\" "..., 61(maybe hexdump "/testpool/test" vs "/testpool/test.fsxgood") ) = 61 close(4) = 0 write(5, "4 mapwrite\t0x1cdee7 thru\t0x1ce37"..., 1031) = 1031 exit_group(161) = ? +++ exited with 161 +++ Destroying zfs pool testpool Removing VDEVs in /home/cking ``` Where as with 5.9 it runs successfully, there are multiple copy_file_range calls that work fine. ``` Creating zfs pool testpool.. Creating zfs file systems test and scratch in testpool.. VDEVs in /home/cking mkdir: cannot create directory ‘/mnt/test’: File exists mkdir: cannot create directory ‘/mnt/scratch’: File exists execve("./xfstests-bld/xfstests-dev/ltp/fsx", ["./xfstests-bld/xfstests-dev/ltp/"..., "-d", "-N", "10000", "-l", "10485760", "-S", "0", "-x", "/testpool/test"], 0x7ffe68daab40 /* 21 vars */) = 0 brk(NULL) = 0x559870e9d000 arch_prctl(0x3001 /* ARCH_??? */, 0x7fffa1512760) = -1 EINVAL (Invalid argument) access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=43079, ...}) = 0 mmap(NULL, 43079, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6c0b333000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\201\0\0\0\0\0\0"..., 832) = 832 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0{\324M\31\306%'\265\343\356k%\214\217\2035"..., 68, 824) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=151232, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b331000 mmap(NULL, 136272, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6c0b30f000 mmap(0x7f6c0b316000, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f6c0b316000 mmap(0x7f6c0b326000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f6c0b326000 mmap(0x7f6c0b32b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f6c0b32b000 mmap(0x7f6c0b32d000, 13392, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b32d000 close(3) = 0 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\215\2\0\0\0\0\0"..., 832) = 832 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 pread64(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32, 848) = 32 pread64(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0~\303\347M\250B\312<j\233\242\v!0<\341"..., 68, 880) = 68 fstat(3, {st_mode=S_IFREG|0755, st_size=1995896, ...}) = 0 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 mmap(NULL, 2004064, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6c0b125000 mprotect(0x7f6c0b14b000, 1810432, PROT_NONE) = 0 mmap(0x7f6c0b14b000, 1495040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f6c0b14b000 mmap(0x7f6c0b2b8000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x193000) = 0x7f6c0b2b8000 mmap(0x7f6c0b305000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1df000) = 0x7f6c0b305000 mmap(0x7f6c0b30b000, 13408, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b30b000 close(3) = 0 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c0b122000 arch_prctl(ARCH_SET_FS, 0x7f6c0b122740) = 0 mprotect(0x7f6c0b305000, 12288, PROT_READ) = 0 mprotect(0x7f6c0b32b000, 4096, PROT_READ) = 0 mprotect(0x55986f0d0000, 4096, PROT_READ) = 0 mprotect(0x7f6c0b36c000, 4096, PROT_READ) = 0 munmap(0x7f6c0b333000, 43079) = 0 set_tid_address(0x7f6c0b122a10) = 80648 set_robust_list(0x7f6c0b122a20, 24) = 0 rt_sigaction(SIGRTMIN, {sa_handler=0x7f6c0b316b90, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f6c0b323bb0}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {sa_handler=0x7f6c0b316c30, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f6c0b323bb0}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 getpid() = 80648 brk(NULL) = 0x559870e9d000 brk(0x559870ebe000) = 0x559870ebe000 rt_sigaction(SIGHUP, {sa_handler=0x55986f0c59b0, sa_mask=[HUP], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGINT, {sa_handler=0x55986f0c59b0, sa_mask=[INT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGPIPE, {sa_handler=0x55986f0c59b0, sa_mask=[PIPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGALRM, {sa_handler=0x55986f0c59b0, sa_mask=[ALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGTERM, {sa_handler=0x55986f0c59b0, sa_mask=[TERM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXCPU, {sa_handler=0x55986f0c59b0, sa_mask=[XCPU], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGXFSZ, {sa_handler=0x55986f0c59b0, sa_mask=[XFSZ], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGVTALRM, {sa_handler=0x55986f0c59b0, sa_mask=[VTALRM], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR1, {sa_handler=0x55986f0c59b0, sa_mask=[USR1], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGUSR2, {sa_handler=0x55986f0c59b0, sa_mask=[USR2], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f6c0b166950}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 fstat(1, {st_mode=S_IFREG|0664, st_size=5961, ...}) = 0 write(1, "Seed set to 86955\n", 18Seed set to 86955 ) = 18 openat(AT_FDCWD, "/testpool/test", O_RDWR|O_CREAT|O_TRUNC, 0666) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ioctl(3, _IOC(_IOC_WRITE, 0x58, 0x28, 0x30), 0x7fffa1511650) = 0 openat(AT_FDCWD, "/testpool/test.fsxgood", O_RDWR|O_CREAT|O_TRUNC, 0666) = 4 openat(AT_FDCWD, "/testpool/test.fsxlog", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 5 unlink("/testpool/test.fsxops") = -1 ENOENT (No such file or directory) mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c0a721000 mmap(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6c09d20000 ftruncate(3, 0) = 0 ftruncate(3, 100000) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=100000, ...}) = 0 ftruncate(3, 0) = 0 fallocate(3, 0, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_KEEP_SIZE|FALLOC_FL_PUNCH_HOLE, 0, 1) = 0 ftruncate(3, 0) = 0 fallocate(3, FALLOC_FL_ZERO_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 82main: filesystem does not support fallocate mode FALLOC_FL_ZERO_RANGE, disabling! ) = 82 fallocate(3, FALLOC_FL_COLLAPSE_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 86main: filesystem does not support fallocate mode FALLOC_FL_COLLAPSE_RANGE, disabling! ) = 86 fallocate(3, FALLOC_FL_INSERT_RANGE, 0, 1) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 84main: filesystem does not support fallocate mode FALLOC_FL_INSERT_RANGE, disabling! ) = 84 ioctl(3, BTRFS_IOC_CLONE_RANGE or FICLONERANGE, {src_fd=3, src_offset=0, src_length=0, dest_offset=0}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 58main: filesystem does not support clone range, disabling! ) = 58 ftruncate(3, 262144) = 0 ioctl(3, BTRFS_IOC_FILE_EXTENT_SAME or FIDEDUPERANGE, {src_offset=0, src_length=131072, dest_count=1, info=[{dest_fd=3, dest_offset=131072}]}) = -1 EOPNOTSUPP (Operation not supported) write(2, "main: filesystem does not suppor"..., 59main: filesystem does not support dedupe range, disabling! ) = 59 ftruncate(3, 0) = 0 copy_file_range(3, [0], 3, [1], 1, 0) = 0 write(1, "1 mapwrite\t0x402969 thru\t0x40b3b"..., 491 mapwrite 0x402969 thru 0x40b3b0 (0x8a48 bytes) ) = 49 fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 ftruncate(3, 4240305) = 0 mmap(NULL, 37809, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x402000) = 0x7f6c0b334000 msync(0x7f6c0b334000, 37809, MS_SYNC) = 0 munmap(0x7f6c0b334000, 37809) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "3 mapwrite\t0x225815 thru\t0x225d9"..., 483 mapwrite 0x225815 thru 0x225d9d (0x589 bytes) ) = 48 mmap(NULL, 3486, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x225000) = 0x7f6c0b33d000 msync(0x7f6c0b33d000, 3486, MS_SYNC) = 0 munmap(0x7f6c0b33d000, 3486) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "4 punch\tfrom 0x3c6257 to 0x3ce79"..., 504 punch from 0x3c6257 to 0x3ce791, (0x853a bytes) ) = 50 fallocate(3, FALLOC_FL_KEEP_SIZE|FALLOC_FL_PUNCH_HOLE, 3957335, 34106) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "5 mapwrite\t0x2146 thru\t0xce2d\t(0"..., 455 mapwrite 0x2146 thru 0xce2d (0xace8 bytes) ) = 45 mmap(NULL, 44590, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x2000) = 0x7f6c0b333000 msync(0x7f6c0b333000, 44590, MS_SYNC) = 0 munmap(0x7f6c0b333000, 44590) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "6 mapwrite\t0x2c6295 thru\t0x2ce60"..., 496 mapwrite 0x2c6295 thru 0x2ce602 (0x836e bytes) ) = 49 mmap(NULL, 34307, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x2c6000) = 0x7f6c0b335000 msync(0x7f6c0b335000, 34307, MS_SYNC) = 0 munmap(0x7f6c0b335000, 34307) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=4240305, ...}) = 0 lseek(3, 0, SEEK_END) = 4240305 write(1, "copying to largest ever: 0x9b9d8"..., 34copying to largest ever: 0x9b9d8f ) = 34 write(1, "7 copy\tfrom 0x164bd3 to 0x16b06b"..., 617 copy from 0x164bd3 to 0x16b06b, (0x6498 bytes) at 0x9b38f7 ) = 61 copy_file_range(3, [1461203], 3, [10172663], 25752, 0) = 25752 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "9 copy\tfrom 0x6f9672 to 0x701c55"..., 619 copy from 0x6f9672 to 0x701c55, (0x85e3 bytes) at 0x3c14a9 ) = 61 copy_file_range(3, [7313010], 3, [3937449], 34275, 0) = 34275 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "11 write\t0x1a1d88 thru\t0x1aa747\t"..., 4711 write 0x1a1d88 thru 0x1aa747 (0x89c0 bytes) ) = 47 lseek(3, 1711496, SEEK_SET) = 1711496 write(3, "\v\36\vd\v\312\v\1\v\24\v\342\v\252\vz\v\317\v8\v\222\v\312\v\24\vd\v8\v\273"..., 35264) = 35264 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "12 mapwrite\t0x5c9679 thru\t0x5cd3"..., 5012 mapwrite 0x5c9679 thru 0x5cd330 (0x3cb8 bytes) ) = 50 mmap(NULL, 17201, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x5c9000) = 0x7f6c0b339000 msync(0x7f6c0b339000, 17201, MS_SYNC) = 0 munmap(0x7f6c0b339000, 17201) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "13 mapwrite\t0x940c32 thru\t0x9419"..., 4913 mapwrite 0x940c32 thru 0x941926 (0xcf5 bytes) ) = 49 mmap(NULL, 6439, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x940000) = 0x7f6c0b33c000 msync(0x7f6c0b33c000, 6439, MS_SYNC) = 0 munmap(0x7f6c0b33c000, 6439) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "15 mapread\t0x81f4b8 thru\t0x8241e"..., 4915 mapread 0x81f4b8 thru 0x8241ed (0x4d36 bytes) ) = 49 mmap(NULL, 20974, PROT_READ, MAP_SHARED, 3, 0x81f000) = 0x7f6c0b338000 munmap(0x7f6c0b338000, 20974) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "19 falloc\tfrom 0x7d4dc4 to 0x7da"..., 5119 falloc from 0x7d4dc4 to 0x7daf84 (0x61c0 bytes) ) = 51 fallocate(3, 0, 8211908, 25024) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "20 falloc\tfrom 0x1a6832 to 0x1b3"..., 5120 falloc from 0x1a6832 to 0x1b3141 (0xc90f bytes) ) = 51 fallocate(3, 0, 1730610, 51471) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "21 read\t0x9131c thru\t0x9da4d\t(0x"..., 4421 read 0x9131c thru 0x9da4d (0xc732 bytes) ) = 44 lseek(3, 594716, SEEK_SET) = 594716 read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 50994) = 50994 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "22 mapread\t0x99a529 thru\t0x99c28"..., 4922 mapread 0x99a529 thru 0x99c284 (0x1d5c bytes) ) = 49 mmap(NULL, 8837, PROT_READ, MAP_SHARED, 3, 0x99a000) = 0x7f6c0b33b000 munmap(0x7f6c0b33b000, 8837) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "23 copy\tfrom 0x6d0c8a to 0x6d7f4"..., 6223 copy from 0x6d0c8a to 0x6d7f42, (0x72b8 bytes) at 0x6a5be1 ) = 62 copy_file_range(3, [7146634], 3, [6970337], 29368, 0) = 29368 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "24 write\t0x1324fa thru\t0x13ddb6\t"..., 4724 write 0x1324fa thru 0x13ddb6 (0xb8bd bytes) ) = 47 lseek(3, 1254650, SEEK_SET) = 1254650 write(3, "\30\235\30,\30\20\30\307\30W\30\356\30\247\30R\30\253\30\205\30O\30\36\30z\30D\30\332\30\177"..., 47293) = 47293 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "25 falloc\tfrom 0x13b8a3 to 0x144"..., 5125 falloc from 0x13b8a3 to 0x14432e (0x8a8b bytes) ) = 51 fallocate(3, 0, 1292451, 35467) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 fstat(3, {st_mode=S_IFREG|0644, st_size=10198415, ...}) = 0 lseek(3, 0, SEEK_END) = 10198415 write(1, "28 copy\tfrom 0x802aa9 to 0x80fd5"..., 6228 copy from 0x802aa9 to 0x80fd57, (0xd2ae bytes) at 0x29ee5c ) = 62 copy_file_range(3, [8399529], 3, [2747996], 53934, 0) = 53934 ..etc ```
defect
copy file range regression detected in zfs tip with and not thank you for reporting an issue important please check our issue tracker before opening a new issue additional valuable information can be found in the openzfs documentation and mailing list archives please fill in as much of the template as possible system information type version name distribution name ubuntu distribution version hirsute development linux kernel architecture zfs version zfs tip on commit spl version as above describe the problem you re observing running xfs test i m seeing a regression just on the kernel and not on the stable kernel with zfs the failure is in copy file range returning einval with the kernel where as in it works fine describe how to reproduce the problem run the current xfs tests on zfs test i ve distilled this down to a reproducer script bin bash test vdev path pwd pool testpool testdir test scratchdir scratch export test dir mnt testdir export test dev pool testdir export scratch mnt mnt scratchdir export scratch dev pool scratchdir export fstyp zfs vdev path block dev truncate s zpool destroy pool dev null true zpool create pool f zfs create pool testdir zfs create pool scratchdir zfs set acltype posixacl pool testdir zfs set acltype posixacl pool scratchdir zfs set compression on pool testdir zfs set mountpoint legacy pool testdir zfs set mountpoint legacy pool scratchdir mkdir mnt testdir mnt scratchdir strace f xfstests bld xfstests dev ltp fsx d n l s x pool testdir rmdir mnt testdir mnt scratchdir echo destroying zfs pool pool echo removing vdevs in vdev path rm rf with the failure is as follows creating zfs pool testpool creating zfs file systems test and scratch in testpool vdevs in home cking execve xfstests bld xfstests dev ltp fsx vars brk null arch prctl arch einval invalid argument access etc ld so preload r ok enoent no such file or directory openat at fdcwd etc ld so cache o rdonly o cloexec fstat st mode s ifreg st size mmap null prot read map private close openat at fdcwd lib linux gnu libpthread so o rdonly o cloexec read fstat st mode s ifreg st size mmap null prot read prot write map private map anonymous mmap null prot read map private map denywrite mmap prot read prot exec map private map fixed map denywrite mmap prot read map private map fixed map denywrite mmap prot read prot write map private map fixed map denywrite mmap prot read prot write map private map fixed map anonymous close openat at fdcwd lib linux gnu libc so o rdonly o cloexec read j v fstat st mode s ifreg st size mmap null prot read map private map denywrite mprotect prot none mmap prot read prot exec map private map fixed map denywrite mmap prot read map private map fixed map denywrite mmap prot read prot write map private map fixed map denywrite mmap prot read prot write map private map fixed map anonymous close mmap null prot read prot write map private map anonymous arch prctl arch set fs mprotect prot read mprotect prot read mprotect prot read mprotect prot read munmap set tid address set robust list rt sigaction sigrtmin sa handler sa mask sa flags sa restorer sa siginfo sa restorer null rt sigaction sigrt sa handler sa mask sa flags sa restorer sa restart sa siginfo sa restorer null rt sigprocmask sig unblock null rlimit stack null rlim cur rlim max infinity getpid brk null brk rt sigaction sighup sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigint sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigpipe sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigalrm sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigterm sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigxcpu sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigxfsz sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigvtalrm sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags fstat st mode s ifreg st size write seed set to n set to openat at fdcwd testpool test o rdwr o creat o trunc fstat st mode s ifreg st size ioctl ioc ioc write openat at fdcwd testpool test fsxgood o rdwr o creat o trunc openat at fdcwd testpool test fsxlog o wronly o creat o trunc unlink testpool test fsxops enoent no such file or directory mmap null prot read prot write map private map anonymous mmap null prot read prot write map private map anonymous ftruncate ftruncate fstat st mode s ifreg st size ftruncate fallocate ftruncate fallocate falloc fl keep size ftruncate fallocate falloc fl keep size falloc fl punch hole ftruncate fallocate falloc fl zero range eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support fallocate mode falloc fl zero range disabling fallocate falloc fl collapse range eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support fallocate mode falloc fl collapse range disabling fallocate falloc fl insert range eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support fallocate mode falloc fl insert range disabling ioctl btrfs ioc clone range or ficlonerange src fd src offset src length dest offset eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support clone range disabling ftruncate ioctl btrfs ioc file extent same or fideduperange src offset src length dest count info eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support dedupe range disabling ftruncate copy file range fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write mapwrite thru mapwrite thru bytes fstat st mode s ifreg st size ftruncate mmap null prot read prot write map shared msync ms sync munmap fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write mapread thru t mapread thru bytes mmap null prot read map shared munmap fstat st mode s ifreg st size lseek seek end write fallocating to largest ever to largest ever write falloc tfrom to falloc from to bytes fallocate fstat st mode s ifreg st size lseek seek end write copying to largest ever to largest ever write copy tfrom to copy from to bytes at copy file range einval invalid argument write copy range to a range to at write do copy range invalid argument copy range invalid argument write log dump total operations n dump total operations openat at fdcwd testpool test fsxops o wronly o creat o trunc write mod skipped no oper mod skipped no operation fstat st mode s ifreg st size write mod skipped no oper mod skipped no operation write mod skipped no oper mod skipped no operation write mod mapwrite mod mapwrite thru bytes write mod skipped no oper mod skipped no operation write mod skipped no oper mod skipped no operation write mod mapread mod mapread thru bytes write mod falloc mod falloc thru bytes extending write mod copy thr mod copy thru bytes to thru write skip dedupe range close write log of operations saved to tes of operations saved to testpool test fsxops replay with replay ops lseek seek set write write correct content saved for compar content saved for comparison write maybe hexdump testpool test maybe hexdump testpool test vs testpool test fsxgood close write mapwrite thru exit group exited with destroying zfs pool testpool removing vdevs in home cking where as with it runs successfully there are multiple copy file range calls that work fine creating zfs pool testpool creating zfs file systems test and scratch in testpool vdevs in home cking mkdir cannot create directory ‘ mnt test’ file exists mkdir cannot create directory ‘ mnt scratch’ file exists execve xfstests bld xfstests dev ltp fsx vars brk null arch prctl arch einval invalid argument access etc ld so preload r ok enoent no such file or directory openat at fdcwd etc ld so cache o rdonly o cloexec fstat st mode s ifreg st size mmap null prot read map private close openat at fdcwd lib linux gnu libpthread so o rdonly o cloexec read fstat st mode s ifreg st size mmap null prot read prot write map private map anonymous mmap null prot read map private map denywrite mmap prot read prot exec map private map fixed map denywrite mmap prot read map private map fixed map denywrite mmap prot read prot write map private map fixed map denywrite mmap prot read prot write map private map fixed map anonymous close openat at fdcwd lib linux gnu libc so o rdonly o cloexec read j v fstat st mode s ifreg st size mmap null prot read map private map denywrite mprotect prot none mmap prot read prot exec map private map fixed map denywrite mmap prot read map private map fixed map denywrite mmap prot read prot write map private map fixed map denywrite mmap prot read prot write map private map fixed map anonymous close mmap null prot read prot write map private map anonymous arch prctl arch set fs mprotect prot read mprotect prot read mprotect prot read mprotect prot read munmap set tid address set robust list rt sigaction sigrtmin sa handler sa mask sa flags sa restorer sa siginfo sa restorer null rt sigaction sigrt sa handler sa mask sa flags sa restorer sa restart sa siginfo sa restorer null rt sigprocmask sig unblock null rlimit stack null rlim cur rlim max infinity getpid brk null brk rt sigaction sighup sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigint sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigpipe sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigalrm sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigterm sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigxcpu sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigxfsz sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sigvtalrm sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags rt sigaction sa handler sa mask sa flags sa restorer sa restart sa restorer sa handler sig dfl sa mask sa flags fstat st mode s ifreg st size write seed set to n set to openat at fdcwd testpool test o rdwr o creat o trunc fstat st mode s ifreg st size ioctl ioc ioc write openat at fdcwd testpool test fsxgood o rdwr o creat o trunc openat at fdcwd testpool test fsxlog o wronly o creat o trunc unlink testpool test fsxops enoent no such file or directory mmap null prot read prot write map private map anonymous mmap null prot read prot write map private map anonymous ftruncate ftruncate fstat st mode s ifreg st size ftruncate fallocate ftruncate fallocate falloc fl keep size ftruncate fallocate falloc fl keep size falloc fl punch hole ftruncate fallocate falloc fl zero range eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support fallocate mode falloc fl zero range disabling fallocate falloc fl collapse range eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support fallocate mode falloc fl collapse range disabling fallocate falloc fl insert range eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support fallocate mode falloc fl insert range disabling ioctl btrfs ioc clone range or ficlonerange src fd src offset src length dest offset eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support clone range disabling ftruncate ioctl btrfs ioc file extent same or fideduperange src offset src length dest count info eopnotsupp operation not supported write main filesystem does not suppor filesystem does not support dedupe range disabling ftruncate copy file range write mapwrite thru mapwrite thru bytes fstat st mode s ifreg st size ftruncate mmap null prot read prot write map shared msync ms sync munmap fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write mapwrite thru mapwrite thru bytes mmap null prot read prot write map shared msync ms sync munmap fstat st mode s ifreg st size lseek seek end write punch tfrom to punch from to bytes fallocate falloc fl keep size falloc fl punch hole fstat st mode s ifreg st size lseek seek end write mapwrite thru t mapwrite thru bytes mmap null prot read prot write map shared msync ms sync munmap fstat st mode s ifreg st size lseek seek end write mapwrite thru mapwrite thru bytes mmap null prot read prot write map shared msync ms sync munmap fstat st mode s ifreg st size lseek seek end write copying to largest ever to largest ever write copy tfrom to copy from to bytes at copy file range fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write copy tfrom to copy from to bytes at copy file range fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write write thru t write thru bytes lseek seek set write v vd v v v v v vz v v v v vd v fstat st mode s ifreg st size lseek seek end write mapwrite thru mapwrite thru bytes mmap null prot read prot write map shared msync ms sync munmap fstat st mode s ifreg st size lseek seek end write mapwrite thru mapwrite thru bytes mmap null prot read prot write map shared msync ms sync munmap fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write mapread thru mapread thru bytes mmap null prot read map shared munmap fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write falloc tfrom to falloc from to bytes fallocate fstat st mode s ifreg st size lseek seek end write falloc tfrom to falloc from to bytes fallocate fstat st mode s ifreg st size lseek seek end write read thru t read thru bytes lseek seek set read fstat st mode s ifreg st size lseek seek end write mapread thru mapread thru bytes mmap null prot read map shared munmap fstat st mode s ifreg st size lseek seek end write copy tfrom to copy from to bytes at copy file range fstat st mode s ifreg st size lseek seek end write write thru t write thru bytes lseek seek set write fstat st mode s ifreg st size lseek seek end write falloc tfrom to falloc from to bytes fallocate fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end fstat st mode s ifreg st size lseek seek end write copy tfrom to copy from to bytes at copy file range etc
1
3,521
2,610,064,161
IssuesEvent
2015-02-26 18:18:53
chrsmith/jsjsj122
https://api.github.com/repos/chrsmith/jsjsj122
opened
黄岩检查不育哪里效果好
auto-migrated Priority-Medium Type-Defect
``` 黄岩检查不育哪里效果好【台州五洲生殖医院】24小时健康咨 询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台州 市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、108� ��118、198及椒江一金清公交车直达枫南小区,乘坐107、105、109 、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 8:03
1.0
黄岩检查不育哪里效果好 - ``` 黄岩检查不育哪里效果好【台州五洲生殖医院】24小时健康咨 询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台州 市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、108� ��118、198及椒江一金清公交车直达枫南小区,乘坐107、105、109 、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 8:03
defect
黄岩检查不育哪里效果好 黄岩检查不育哪里效果好【台州五洲生殖医院】 询热线 微信号tzwzszyy 医院地址 台州 (枫南大转盘旁)乘车线路 、 � �� 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at
1
57,030
15,597,531,122
IssuesEvent
2021-03-18 17:01:43
idaholab/moose
https://api.github.com/repos/idaholab/moose
opened
Current Directory in PATH Breaks `run_tests`
T: defect
## Bug Description <!--A clear and concise description of the problem (Note: A missing feature is not a bug).--> When the current directory `.` is placed in `PATH`, `run_tests` does not find the moose application. A possible fix is to create and absolute path to the application when discovering the application to run. ## Steps to Reproduce <!--Steps to reproduce the behavior (input file, or modifications to an existing input file, etc.)--> ``` export PATH=$PATH:. run_tests ``` A work around is to remove `.` from `PATH` and then `./run_tests`. ## Impact <!--Does this prevent you from getting your work done, or is it more of an annoyance?--> The work around is pretty simple to implement so this is more of an annoyance as the behavior changed from what is was before when it was able to handle `.` in `PATH`.
1.0
Current Directory in PATH Breaks `run_tests` - ## Bug Description <!--A clear and concise description of the problem (Note: A missing feature is not a bug).--> When the current directory `.` is placed in `PATH`, `run_tests` does not find the moose application. A possible fix is to create and absolute path to the application when discovering the application to run. ## Steps to Reproduce <!--Steps to reproduce the behavior (input file, or modifications to an existing input file, etc.)--> ``` export PATH=$PATH:. run_tests ``` A work around is to remove `.` from `PATH` and then `./run_tests`. ## Impact <!--Does this prevent you from getting your work done, or is it more of an annoyance?--> The work around is pretty simple to implement so this is more of an annoyance as the behavior changed from what is was before when it was able to handle `.` in `PATH`.
defect
current directory in path breaks run tests bug description when the current directory is placed in path run tests does not find the moose application a possible fix is to create and absolute path to the application when discovering the application to run steps to reproduce export path path run tests a work around is to remove from path and then run tests impact the work around is pretty simple to implement so this is more of an annoyance as the behavior changed from what is was before when it was able to handle in path
1
154,111
19,710,788,098
IssuesEvent
2022-01-13 04:55:44
ChoeMinji/react-17.0.2
https://api.github.com/repos/ChoeMinji/react-17.0.2
opened
CVE-2019-16769 (Medium) detected in serialize-javascript-1.9.1.tgz
security vulnerability
## CVE-2019-16769 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-javascript-1.9.1.tgz</b></p></summary> <p>Serialize JavaScript to a superset of JSON that includes regular expressions and functions.</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz</a></p> <p> Dependency Hierarchy: - terser-webpack-plugin-1.4.1.tgz (Root Library) - :x: **serialize-javascript-1.9.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/ChoeMinji/react-17.0.2/commit/4669645897ed4ebcd4ee037f4dabb509ed4754c7">4669645897ed4ebcd4ee037f4dabb509ed4754c7</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> The serialize-javascript npm package before version 2.1.1 is vulnerable to Cross-site Scripting (XSS). It does not properly mitigate against unsafe characters in serialized regular expressions. This vulnerability is not affected on Node.js environment since Node.js's implementation of RegExp.prototype.toString() backslash-escapes all forward slashes in regular expressions. If serialized data of regular expression objects are used in an environment other than Node.js, it is affected by this vulnerability. <p>Publish Date: 2019-12-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16769>CVE-2019-16769</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.4</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769</a></p> <p>Release Date: 2020-01-17</p> <p>Fix Resolution: v2.1.1</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-2019-16769 (Medium) detected in serialize-javascript-1.9.1.tgz - ## CVE-2019-16769 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>serialize-javascript-1.9.1.tgz</b></p></summary> <p>Serialize JavaScript to a superset of JSON that includes regular expressions and functions.</p> <p>Library home page: <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz</a></p> <p> Dependency Hierarchy: - terser-webpack-plugin-1.4.1.tgz (Root Library) - :x: **serialize-javascript-1.9.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/ChoeMinji/react-17.0.2/commit/4669645897ed4ebcd4ee037f4dabb509ed4754c7">4669645897ed4ebcd4ee037f4dabb509ed4754c7</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> The serialize-javascript npm package before version 2.1.1 is vulnerable to Cross-site Scripting (XSS). It does not properly mitigate against unsafe characters in serialized regular expressions. This vulnerability is not affected on Node.js environment since Node.js's implementation of RegExp.prototype.toString() backslash-escapes all forward slashes in regular expressions. If serialized data of regular expression objects are used in an environment other than Node.js, it is affected by this vulnerability. <p>Publish Date: 2019-12-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-16769>CVE-2019-16769</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.4</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-16769</a></p> <p>Release Date: 2020-01-17</p> <p>Fix Resolution: v2.1.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve medium detected in serialize javascript tgz cve medium severity vulnerability vulnerable library serialize javascript tgz serialize javascript to a superset of json that includes regular expressions and functions library home page a href dependency hierarchy terser webpack plugin tgz root library x serialize javascript tgz vulnerable library found in head commit a href found in base branch master vulnerability details the serialize javascript npm package before version is vulnerable to cross site scripting xss it does not properly mitigate against unsafe characters in serialized regular expressions this vulnerability is not affected on node js environment since node js s implementation of regexp prototype tostring backslash escapes all forward slashes in regular expressions if serialized data of regular expression objects are used in an environment other than node js it is affected by this vulnerability publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low 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 step up your open source security game with whitesource
0
18,659
3,079,518,956
IssuesEvent
2015-08-21 16:42:34
inmcm/HDL_Ciphers
https://api.github.com/repos/inmcm/HDL_Ciphers
closed
AES-128 decryption
auto-migrated Priority-Medium Type-Defect
``` problem is in Top level of AES decryption. What is the expected output? What do you see instead? I/p is- 00112233445566778899aabbccddeeff Key is - 000102030405060708090a0b0c0d0e0f out should be- 762a5ab50929189cefdb99434790aad8 I am attaching the waveform also. What version of the product are you using? On what operating system? I am using windows operating system and using XILINX ISE 9.2. Please provide any additional information below. The code you provided for encryption is giving right output but when I am trying decryption using the same states not getting correct output. please tell me asap. Thank you I am attaching the top level *.vhd file because all sub blocks in decryption I have modified and giving me right answer. ``` Original issue reported on code.google.com by `niharika...@gmail.com` on 23 Mar 2015 at 7:05 Attachments: * [aesdercy.vhd](https://storage.googleapis.com/google-code-attachments/inmcm-hdl/issue-1/comment-0/aesdercy.vhd) * [aes.tbw](https://storage.googleapis.com/google-code-attachments/inmcm-hdl/issue-1/comment-0/aes.tbw)
1.0
AES-128 decryption - ``` problem is in Top level of AES decryption. What is the expected output? What do you see instead? I/p is- 00112233445566778899aabbccddeeff Key is - 000102030405060708090a0b0c0d0e0f out should be- 762a5ab50929189cefdb99434790aad8 I am attaching the waveform also. What version of the product are you using? On what operating system? I am using windows operating system and using XILINX ISE 9.2. Please provide any additional information below. The code you provided for encryption is giving right output but when I am trying decryption using the same states not getting correct output. please tell me asap. Thank you I am attaching the top level *.vhd file because all sub blocks in decryption I have modified and giving me right answer. ``` Original issue reported on code.google.com by `niharika...@gmail.com` on 23 Mar 2015 at 7:05 Attachments: * [aesdercy.vhd](https://storage.googleapis.com/google-code-attachments/inmcm-hdl/issue-1/comment-0/aesdercy.vhd) * [aes.tbw](https://storage.googleapis.com/google-code-attachments/inmcm-hdl/issue-1/comment-0/aes.tbw)
defect
aes decryption problem is in top level of aes decryption what is the expected output what do you see instead i p is key is out should be i am attaching the waveform also what version of the product are you using on what operating system i am using windows operating system and using xilinx ise please provide any additional information below the code you provided for encryption is giving right output but when i am trying decryption using the same states not getting correct output please tell me asap thank you i am attaching the top level vhd file because all sub blocks in decryption i have modified and giving me right answer original issue reported on code google com by niharika gmail com on mar at attachments
1
10,464
2,622,165,075
IssuesEvent
2015-03-04 00:11:57
byzhang/graphchi
https://api.github.com/repos/byzhang/graphchi
closed
Make smoketest for the dynamic graph
auto-migrated Priority-Medium Type-Defect
``` Make smoketest for the dynamic graph ``` Original issue reported on code.google.com by `akyrola...@gmail.com` on 30 Jun 2012 at 7:16
1.0
Make smoketest for the dynamic graph - ``` Make smoketest for the dynamic graph ``` Original issue reported on code.google.com by `akyrola...@gmail.com` on 30 Jun 2012 at 7:16
defect
make smoketest for the dynamic graph make smoketest for the dynamic graph original issue reported on code google com by akyrola gmail com on jun at
1
41,172
10,322,517,362
IssuesEvent
2019-08-31 13:06:18
MacSysadmin/pymacadmin
https://api.github.com/repos/MacSysadmin/pymacadmin
closed
Issues with running on boot.
Priority-Medium Type-Defect auto-migrated
_From @GoogleCodeExporter on May 20, 2015 16:39_ ``` What steps will reproduce the problem? 1. Create /Library/LaunchAgents/org.crankd.plist with the ProgramArguments String /usr/local/sbin/crankd.py --config=/Library/Preferences/com.googlecode.pymacadmin.crankd.plist 2. Create /Library/Preferences/com.googlecode.pymacadmin.crankd.plist with whatever configuration script you want. 3. Run launchctl load /Library/LaunchAgents/org.crankd.plist What is the expected output? What do you see instead? The configuration script to be executed. Instead I see Console messages with the error "(org.crankd.plist[621]) posix_spawn("/usr/local/sbin/crankd.py --config=/Library/Preferences/com.googlecode.pymacadmin.crankd.plist", ...): No such file or directory" What version of the product are you using? On what operating system? OS X 10.7.2 Please provide any additional information below. ``` Original issue reported on code.google.com by `jon.hatc...@gmail.com` on 18 Oct 2011 at 2:20 _Copied from original issue: acdha/pymacadmin#8_
1.0
Issues with running on boot. - _From @GoogleCodeExporter on May 20, 2015 16:39_ ``` What steps will reproduce the problem? 1. Create /Library/LaunchAgents/org.crankd.plist with the ProgramArguments String /usr/local/sbin/crankd.py --config=/Library/Preferences/com.googlecode.pymacadmin.crankd.plist 2. Create /Library/Preferences/com.googlecode.pymacadmin.crankd.plist with whatever configuration script you want. 3. Run launchctl load /Library/LaunchAgents/org.crankd.plist What is the expected output? What do you see instead? The configuration script to be executed. Instead I see Console messages with the error "(org.crankd.plist[621]) posix_spawn("/usr/local/sbin/crankd.py --config=/Library/Preferences/com.googlecode.pymacadmin.crankd.plist", ...): No such file or directory" What version of the product are you using? On what operating system? OS X 10.7.2 Please provide any additional information below. ``` Original issue reported on code.google.com by `jon.hatc...@gmail.com` on 18 Oct 2011 at 2:20 _Copied from original issue: acdha/pymacadmin#8_
defect
issues with running on boot from googlecodeexporter on may what steps will reproduce the problem create library launchagents org crankd plist with the programarguments string usr local sbin crankd py config library preferences com googlecode pymacadmin crankd plist create library preferences com googlecode pymacadmin crankd plist with whatever configuration script you want run launchctl load library launchagents org crankd plist what is the expected output what do you see instead the configuration script to be executed instead i see console messages with the error org crankd plist posix spawn usr local sbin crankd py config library preferences com googlecode pymacadmin crankd plist no such file or directory what version of the product are you using on what operating system os x please provide any additional information below original issue reported on code google com by jon hatc gmail com on oct at copied from original issue acdha pymacadmin
1
765,562
26,851,998,801
IssuesEvent
2023-02-03 11:48:19
huridocs/uwazi
https://api.github.com/repos/huridocs/uwazi
closed
IX: When "Click to fill" a PDF in the IX UI, it appears as "Empty value" in the table
Bug :lady_beetle: Priority: High
**Describe the bug** When "Click to fill" a PDF in the IX UI, it appears as "Empty / Value" in the table, instead of "Empty / Label". After reloading, it appears as "Empty / Label" as expected. ![Screenshot-20230124113644-1164x50](https://user-images.githubusercontent.com/22240564/214270484-c5a4a6a7-9c22-49c1-a523-91fc3fda3200.png)
1.0
IX: When "Click to fill" a PDF in the IX UI, it appears as "Empty value" in the table - **Describe the bug** When "Click to fill" a PDF in the IX UI, it appears as "Empty / Value" in the table, instead of "Empty / Label". After reloading, it appears as "Empty / Label" as expected. ![Screenshot-20230124113644-1164x50](https://user-images.githubusercontent.com/22240564/214270484-c5a4a6a7-9c22-49c1-a523-91fc3fda3200.png)
non_defect
ix when click to fill a pdf in the ix ui it appears as empty value in the table describe the bug when click to fill a pdf in the ix ui it appears as empty value in the table instead of empty label after reloading it appears as empty label as expected
0
35,811
7,802,118,370
IssuesEvent
2018-06-10 08:21:12
StrikeNP/trac_test
https://api.github.com/repos/StrikeNP/trac_test
closed
Overall precipitation fraction inconsistent with within-component precipitation fraction (Trac #742)
Migrated from Trac clubb_src defect raut@uwm.edu
'''Introduction''' While playing with CLUBB today, I noticed that the invariant (or at least I thought it was): precip_frac = precip_frac_1 * mixt_frac + precip_frac_2 * (1 - mixt_frac) is actually untrue quite often in the code. I'm not sure if this is intentional, a major bug, or a bug that nobody cares about. Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/742 ```json { "status": "closed", "changetime": "2015-08-18T20:54:18", "description": "'''Introduction'''\n\nWhile playing with CLUBB today, I noticed that the invariant (or at least I thought it was):\n\nprecip_frac = precip_frac_1 * mixt_frac + precip_frac_2 * (1 - mixt_frac)\n\nis actually untrue quite often in the code.\n\nI'm not sure if this is intentional, a major bug, or a bug that nobody cares about.", "reporter": "raut@uwm.edu", "cc": "vlarson@uwm.edu, bmg2@uwm.edu", "resolution": "fixed", "_ts": "1439931258300502", "component": "clubb_src", "summary": "Overall precipitation fraction inconsistent with within-component precipitation fraction", "priority": "minor", "keywords": "", "time": "2014-10-04T06:58:15", "milestone": "4. Fix bugs", "owner": "raut@uwm.edu", "type": "defect" } ```
1.0
Overall precipitation fraction inconsistent with within-component precipitation fraction (Trac #742) - '''Introduction''' While playing with CLUBB today, I noticed that the invariant (or at least I thought it was): precip_frac = precip_frac_1 * mixt_frac + precip_frac_2 * (1 - mixt_frac) is actually untrue quite often in the code. I'm not sure if this is intentional, a major bug, or a bug that nobody cares about. Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/742 ```json { "status": "closed", "changetime": "2015-08-18T20:54:18", "description": "'''Introduction'''\n\nWhile playing with CLUBB today, I noticed that the invariant (or at least I thought it was):\n\nprecip_frac = precip_frac_1 * mixt_frac + precip_frac_2 * (1 - mixt_frac)\n\nis actually untrue quite often in the code.\n\nI'm not sure if this is intentional, a major bug, or a bug that nobody cares about.", "reporter": "raut@uwm.edu", "cc": "vlarson@uwm.edu, bmg2@uwm.edu", "resolution": "fixed", "_ts": "1439931258300502", "component": "clubb_src", "summary": "Overall precipitation fraction inconsistent with within-component precipitation fraction", "priority": "minor", "keywords": "", "time": "2014-10-04T06:58:15", "milestone": "4. Fix bugs", "owner": "raut@uwm.edu", "type": "defect" } ```
defect
overall precipitation fraction inconsistent with within component precipitation fraction trac introduction while playing with clubb today i noticed that the invariant or at least i thought it was precip frac precip frac mixt frac precip frac mixt frac is actually untrue quite often in the code i m not sure if this is intentional a major bug or a bug that nobody cares about attachments migrated from json status closed changetime description introduction n nwhile playing with clubb today i noticed that the invariant or at least i thought it was n nprecip frac precip frac mixt frac precip frac mixt frac n nis actually untrue quite often in the code n ni m not sure if this is intentional a major bug or a bug that nobody cares about reporter raut uwm edu cc vlarson uwm edu uwm edu resolution fixed ts component clubb src summary overall precipitation fraction inconsistent with within component precipitation fraction priority minor keywords time milestone fix bugs owner raut uwm edu type defect
1
136,935
11,092,974,290
IssuesEvent
2019-12-15 22:39:11
sksamuel/scapegoat
https://api.github.com/repos/sksamuel/scapegoat
closed
[false positive] Method name not recommended
false positive unit test needed
I'm stumbling on "Method name not recommended" warning in following code (simplified example) ``` case class Amount(amount: BigDecimal) { def unary_- = Amount(-amount) } ``` can you confirm if this is a false positive? I have seen this being reported earlier in https://github.com/sksamuel/scapegoat/issues/148 but I'm using latest versions of scapegoat: ``` scapegoatVersion in ThisBuild := "1.4.1" ... addSbtPlugin("com.sksamuel.scapegoat" %% "sbt-scapegoat" % "1.1.0") ```
1.0
[false positive] Method name not recommended - I'm stumbling on "Method name not recommended" warning in following code (simplified example) ``` case class Amount(amount: BigDecimal) { def unary_- = Amount(-amount) } ``` can you confirm if this is a false positive? I have seen this being reported earlier in https://github.com/sksamuel/scapegoat/issues/148 but I'm using latest versions of scapegoat: ``` scapegoatVersion in ThisBuild := "1.4.1" ... addSbtPlugin("com.sksamuel.scapegoat" %% "sbt-scapegoat" % "1.1.0") ```
non_defect
method name not recommended i m stumbling on method name not recommended warning in following code simplified example case class amount amount bigdecimal def unary amount amount can you confirm if this is a false positive i have seen this being reported earlier in but i m using latest versions of scapegoat scapegoatversion in thisbuild addsbtplugin com sksamuel scapegoat sbt scapegoat
0
79,432
15,192,623,254
IssuesEvent
2021-02-15 22:28:29
happycube/ld-decode
https://api.github.com/repos/happycube/ld-decode
closed
ld-chroma-decoder should output yuv natively
enhancement ld-decode-tools
Rather than converting the output to RGB48, yuv444 would be preferable for most toolchains. RGB could be left in as an option. Piggybacking on this issue, an additional option to output with yuv4mpeg headers would be useful for piping into ffmpeg and other tools.
1.0
ld-chroma-decoder should output yuv natively - Rather than converting the output to RGB48, yuv444 would be preferable for most toolchains. RGB could be left in as an option. Piggybacking on this issue, an additional option to output with yuv4mpeg headers would be useful for piping into ffmpeg and other tools.
non_defect
ld chroma decoder should output yuv natively rather than converting the output to would be preferable for most toolchains rgb could be left in as an option piggybacking on this issue an additional option to output with headers would be useful for piping into ffmpeg and other tools
0
94,367
8,486,252,604
IssuesEvent
2018-10-26 10:16:01
imixs/imixs-marty
https://api.github.com/repos/imixs/imixs-marty
closed
ProcessController - new method getRootSpaces
enhancement testing
provide new method getRootSpaces to get only root spaces
1.0
ProcessController - new method getRootSpaces - provide new method getRootSpaces to get only root spaces
non_defect
processcontroller new method getrootspaces provide new method getrootspaces to get only root spaces
0
46,209
13,055,868,827
IssuesEvent
2020-07-30 02:58:36
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
opened
lilliput::python_wrappers.py use incompatible syntax for python 2.4 (Trac #754)
Incomplete Migration Migrated from Trac combo reconstruction defect
Migrated from https://code.icecube.wisc.edu/ticket/754 ```json { "status": "closed", "changetime": "2014-09-30T19:56:25", "description": "{{{\n[buildslave@foraii build]$ python -V\nPython 2.4.3\n[buildslave@foraii build]$ !lsb\nlsb_release -sd\n\"Scientific Linux release 5.10 (Boron)\"\n[buildslave@foraii build]$ \n}}}\n{{{\n289/298 Test #289: lilliput::python_wrappers.py ...................................***Failed 2.30 sec\nTraceback (most recent call last):\n File \"/build/buildslave/foraii/quick_icerec_SL5/source/lilliput/resources/scripts/python_wrappers.py\", line 5, in ?\n from icecube.common_variables import hit_statistics\n File \"/build/buildslave/foraii/quick_icerec_SL5/build/lib/icecube/common_variables/__init__.py\", line 25\n from .load_pybindings_enhanced import load_pybindings\n ^\nSyntaxError: invalid syntax\n}}}", "reporter": "nega", "cc": "dataclass@icecube.wisc.edu", "resolution": "fixed", "_ts": "1412106985532289", "component": "combo reconstruction", "summary": "lilliput::python_wrappers.py use incompatible syntax for python 2.4", "priority": "normal", "keywords": "lilliput python tests", "time": "2014-09-05T21:47:53", "milestone": "", "owner": "boersma", "type": "defect" } ```
1.0
lilliput::python_wrappers.py use incompatible syntax for python 2.4 (Trac #754) - Migrated from https://code.icecube.wisc.edu/ticket/754 ```json { "status": "closed", "changetime": "2014-09-30T19:56:25", "description": "{{{\n[buildslave@foraii build]$ python -V\nPython 2.4.3\n[buildslave@foraii build]$ !lsb\nlsb_release -sd\n\"Scientific Linux release 5.10 (Boron)\"\n[buildslave@foraii build]$ \n}}}\n{{{\n289/298 Test #289: lilliput::python_wrappers.py ...................................***Failed 2.30 sec\nTraceback (most recent call last):\n File \"/build/buildslave/foraii/quick_icerec_SL5/source/lilliput/resources/scripts/python_wrappers.py\", line 5, in ?\n from icecube.common_variables import hit_statistics\n File \"/build/buildslave/foraii/quick_icerec_SL5/build/lib/icecube/common_variables/__init__.py\", line 25\n from .load_pybindings_enhanced import load_pybindings\n ^\nSyntaxError: invalid syntax\n}}}", "reporter": "nega", "cc": "dataclass@icecube.wisc.edu", "resolution": "fixed", "_ts": "1412106985532289", "component": "combo reconstruction", "summary": "lilliput::python_wrappers.py use incompatible syntax for python 2.4", "priority": "normal", "keywords": "lilliput python tests", "time": "2014-09-05T21:47:53", "milestone": "", "owner": "boersma", "type": "defect" } ```
defect
lilliput python wrappers py use incompatible syntax for python trac migrated from json status closed changetime description n python v npython n lsb nlsb release sd n scientific linux release boron n n n test lilliput python wrappers py failed sec ntraceback most recent call last n file build buildslave foraii quick icerec source lilliput resources scripts python wrappers py line in n from icecube common variables import hit statistics n file build buildslave foraii quick icerec build lib icecube common variables init py line n from load pybindings enhanced import load pybindings n nsyntaxerror invalid syntax n reporter nega cc dataclass icecube wisc edu resolution fixed ts component combo reconstruction summary lilliput python wrappers py use incompatible syntax for python priority normal keywords lilliput python tests time milestone owner boersma type defect
1
225,552
24,866,592,655
IssuesEvent
2022-10-27 12:26:48
MatBenfield/news
https://api.github.com/repos/MatBenfield/news
opened
[SecurityWeek] White House Adds Chemical Sector to ICS Cybersecurity Initiative
SecurityWeek
**The White House announced on Wednesday that the Industrial Control Systems (ICS) Cybersecurity Initiative has been expanded to include the chemical sector.** [read more](https://www.securityweek.com/white-house-adds-chemical-sector-ics-cybersecurity-initiative) <https://www.securityweek.com/white-house-adds-chemical-sector-ics-cybersecurity-initiative>
True
[SecurityWeek] White House Adds Chemical Sector to ICS Cybersecurity Initiative - **The White House announced on Wednesday that the Industrial Control Systems (ICS) Cybersecurity Initiative has been expanded to include the chemical sector.** [read more](https://www.securityweek.com/white-house-adds-chemical-sector-ics-cybersecurity-initiative) <https://www.securityweek.com/white-house-adds-chemical-sector-ics-cybersecurity-initiative>
non_defect
white house adds chemical sector to ics cybersecurity initiative the white house announced on wednesday that the industrial control systems ics cybersecurity initiative has been expanded to include the chemical sector
0
20,109
3,295,641,535
IssuesEvent
2015-11-01 04:33:51
duyetdev/latex-lab
https://api.github.com/repos/duyetdev/latex-lab
closed
error saving latex document
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. minor edits of the default displayed untitled document 2. rename to test-latex 3. attempt to save What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. ``` Original issue reported on code.google.com by `dome...@gmail.com` on 7 Apr 2010 at 9:28
1.0
error saving latex document - ``` What steps will reproduce the problem? 1. minor edits of the default displayed untitled document 2. rename to test-latex 3. attempt to save What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. ``` Original issue reported on code.google.com by `dome...@gmail.com` on 7 Apr 2010 at 9:28
defect
error saving latex document what steps will reproduce the problem minor edits of the default displayed untitled document rename to test latex attempt to save what is the expected output what do you see instead what version of the product are you using on what operating system please provide any additional information below original issue reported on code google com by dome gmail com on apr at
1
14,294
2,797,417,792
IssuesEvent
2015-05-12 13:44:42
twogee/ant-http
https://api.github.com/repos/twogee/ant-http
closed
[CLOSED] Add support for binary content (entity)
auto-migrated Milestone-1.1.2 Priority-Medium Project-ant-http Type-Defect
<a href="https://github.com/GoogleCodeExporter"><img src="https://avatars.githubusercontent.com/u/9614759?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [GoogleCodeExporter](https://github.com/GoogleCodeExporter)** _Monday May 11, 2015 at 22:05 GMT_ _Originally opened as https://github.com/twogee/missing-link/issues/12_ ---- ``` We use missing-link to upload files to a server, as shown below. The first scenario (text files) works nicely, whereas the second scenario (binary files) works less nice... <http url="http://server/upload.php?filename=all.txt" method="PUT"> <entity file="target/allfiles.txt" /> </http> <http url="http://server/upload.php?filename=all.zip" method="PUT"> <entity file="target/allfiles.zip" /> </http> A suggestion could be an attribute "binary=true" on <entity>: <http url="http://server/upload.php?filename=all.zip" method="PUT"> <entity file="target/allfiles.zip" binary="true" /> </http> ``` Original issue reported on code.google.com by `eirik.ly...@gmail.com` on 3 May 2011 at 12:45
1.0
[CLOSED] Add support for binary content (entity) - <a href="https://github.com/GoogleCodeExporter"><img src="https://avatars.githubusercontent.com/u/9614759?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [GoogleCodeExporter](https://github.com/GoogleCodeExporter)** _Monday May 11, 2015 at 22:05 GMT_ _Originally opened as https://github.com/twogee/missing-link/issues/12_ ---- ``` We use missing-link to upload files to a server, as shown below. The first scenario (text files) works nicely, whereas the second scenario (binary files) works less nice... <http url="http://server/upload.php?filename=all.txt" method="PUT"> <entity file="target/allfiles.txt" /> </http> <http url="http://server/upload.php?filename=all.zip" method="PUT"> <entity file="target/allfiles.zip" /> </http> A suggestion could be an attribute "binary=true" on <entity>: <http url="http://server/upload.php?filename=all.zip" method="PUT"> <entity file="target/allfiles.zip" binary="true" /> </http> ``` Original issue reported on code.google.com by `eirik.ly...@gmail.com` on 3 May 2011 at 12:45
defect
add support for binary content entity issue by monday may at gmt originally opened as we use missing link to upload files to a server as shown below the first scenario text files works nicely whereas the second scenario binary files works less nice a suggestion could be an attribute binary true on original issue reported on code google com by eirik ly gmail com on may at
1
56,416
15,081,755,346
IssuesEvent
2021-02-05 13:40:01
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
InputNumber: ajax change event fired even if value isn't changed
defect
**Describe the defect** When i use and p:inputNumber with ajax behaviour on change that updates the component container, the event gets fired even if the value isn't changed. Note: the exact same example using p:inputText is working correctly. **Environment:** - PF Version: 8.0.7 - JSF + version: Mojarra 2.2.20 - Affected browsers: Chrome, Firefox **To Reproduce** Steps to reproduce the behavior: 1. select the first input number, change it's value 2. use TAB to move to the second (a change event is fired - correct) 3. from the second input number use SHIFT+TAB to go back (a new change event is fired - WRONG) 4. from now on, moving from one input to the other (without changing the value) fires a change ajax event **Expected behavior** A change event should be fired only when the input value is actually changed **Example XHTML** ```html <h:form id="frmTest"> <p:outputPanel styleClass="x"> <p:inputNumber value="#{bean.a}"> <p:ajax process="@this" update="@(.x)"/> </p:inputNumber> <p:inputNumber value="#{bean.b}"> <p:ajax process="@this" update="@(.x)"/> </p:inputNumber> </p:outputPanel> </h:form> ``` **Example Bean** ```java @Named @ViewScoped public class Bean implements Serializable { private double a=3.2; private double b=1.2; public double getA() { return a; } public void setA(double a) { this.a = a; return; } public double getB() { return b; } public void setB(double b) { this.b = b; return; } } ```
1.0
InputNumber: ajax change event fired even if value isn't changed - **Describe the defect** When i use and p:inputNumber with ajax behaviour on change that updates the component container, the event gets fired even if the value isn't changed. Note: the exact same example using p:inputText is working correctly. **Environment:** - PF Version: 8.0.7 - JSF + version: Mojarra 2.2.20 - Affected browsers: Chrome, Firefox **To Reproduce** Steps to reproduce the behavior: 1. select the first input number, change it's value 2. use TAB to move to the second (a change event is fired - correct) 3. from the second input number use SHIFT+TAB to go back (a new change event is fired - WRONG) 4. from now on, moving from one input to the other (without changing the value) fires a change ajax event **Expected behavior** A change event should be fired only when the input value is actually changed **Example XHTML** ```html <h:form id="frmTest"> <p:outputPanel styleClass="x"> <p:inputNumber value="#{bean.a}"> <p:ajax process="@this" update="@(.x)"/> </p:inputNumber> <p:inputNumber value="#{bean.b}"> <p:ajax process="@this" update="@(.x)"/> </p:inputNumber> </p:outputPanel> </h:form> ``` **Example Bean** ```java @Named @ViewScoped public class Bean implements Serializable { private double a=3.2; private double b=1.2; public double getA() { return a; } public void setA(double a) { this.a = a; return; } public double getB() { return b; } public void setB(double b) { this.b = b; return; } } ```
defect
inputnumber ajax change event fired even if value isn t changed describe the defect when i use and p inputnumber with ajax behaviour on change that updates the component container the event gets fired even if the value isn t changed note the exact same example using p inputtext is working correctly environment pf version jsf version mojarra affected browsers chrome firefox to reproduce steps to reproduce the behavior select the first input number change it s value use tab to move to the second a change event is fired correct from the second input number use shift tab to go back a new change event is fired wrong from now on moving from one input to the other without changing the value fires a change ajax event expected behavior a change event should be fired only when the input value is actually changed example xhtml html example bean java named viewscoped public class bean implements serializable private double a private double b public double geta return a public void seta double a this a a return public double getb return b public void setb double b this b b return
1
72,439
24,119,042,024
IssuesEvent
2022-09-20 16:59:32
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
"Spaces are a new feature. Give feedback." message should not show when UIFeature.feedback is false
T-Defect
### Your use case #### What would you like to do? The messages in the spaces UI that read ""Spaces are a new feature. Give feedback." with a feedback link should not show when UIFeature.feedback is false #### Why would you like to do it? To avoid users thinking they are sending feedback to the homeserver when they are actually sending it to the element dev team #### How would you like to achieve it? Using the existing feature flag that stops the feedback popups ### Have you considered any alternatives? _No response_ ### Additional context _No response_
1.0
"Spaces are a new feature. Give feedback." message should not show when UIFeature.feedback is false - ### Your use case #### What would you like to do? The messages in the spaces UI that read ""Spaces are a new feature. Give feedback." with a feedback link should not show when UIFeature.feedback is false #### Why would you like to do it? To avoid users thinking they are sending feedback to the homeserver when they are actually sending it to the element dev team #### How would you like to achieve it? Using the existing feature flag that stops the feedback popups ### Have you considered any alternatives? _No response_ ### Additional context _No response_
defect
spaces are a new feature give feedback message should not show when uifeature feedback is false your use case what would you like to do the messages in the spaces ui that read spaces are a new feature give feedback with a feedback link should not show when uifeature feedback is false why would you like to do it to avoid users thinking they are sending feedback to the homeserver when they are actually sending it to the element dev team how would you like to achieve it using the existing feature flag that stops the feedback popups have you considered any alternatives no response additional context no response
1
7,446
2,610,384,474
IssuesEvent
2015-02-26 20:04:23
chrsmith/hedgewars
https://api.github.com/repos/chrsmith/hedgewars
closed
Rope bug
auto-migrated Priority-Medium Type-Defect
``` When a hog is slipping falling vertically against a wall can not throw the rope to join. It should throw the rope and join the wall. Using Win Xp, version 0.9.15 and 0.9.16. Under version 0.9.15 the problem was solved by changing a little the direction of the gun but under 0.9.16 there's no solution. ``` ----- Original issue reported on code.google.com by `dariofd...@gmail.com` on 29 Oct 2011 at 12:31
1.0
Rope bug - ``` When a hog is slipping falling vertically against a wall can not throw the rope to join. It should throw the rope and join the wall. Using Win Xp, version 0.9.15 and 0.9.16. Under version 0.9.15 the problem was solved by changing a little the direction of the gun but under 0.9.16 there's no solution. ``` ----- Original issue reported on code.google.com by `dariofd...@gmail.com` on 29 Oct 2011 at 12:31
defect
rope bug when a hog is slipping falling vertically against a wall can not throw the rope to join it should throw the rope and join the wall using win xp version and under version the problem was solved by changing a little the direction of the gun but under there s no solution original issue reported on code google com by dariofd gmail com on oct at
1
5,445
2,610,187,776
IssuesEvent
2015-02-26 18:59:32
chrsmith/quchuseban
https://api.github.com/repos/chrsmith/quchuseban
opened
关于遗传性的色斑怎么治
auto-migrated Priority-Medium Type-Defect
``` 《摘要》 耳畔传来熟悉的旋律,那充满沧桑、倦意、无奈而又无限憧憬的音乐。坦然中倾诉那份深深的执著。恰如这初秋,淡淡的凉意拂过燥热的躯体,不可名状,竟会是如此的深刻。好想躺在柔柔的草坪,仰望着蔚蓝的天宇,看浮云掠过的悠闲。一缕温馨,几许闲情,付诸沧海桑田。蹙眉轻就,春秋几许,但见浮生若云。当清风拂过脸颊不禁想,如果没有了色斑感觉会更好!遗传性的色斑怎么治, 《客户案例》   我今年28岁,我这个年龄说大不大说小也不小了,我和男 朋友也准备结婚了,可就在这个时候,我尽然长了黄褐斑,�� �色也变的发暗发黄了,去医院,医生说是内分泌失调造成的� ��给我开了一堆调节内分泌的药,可到最后也没管用,可眼看 婚期越来越近了,现在我又这个样,怎么办啊?<br>   男朋友也为我着急,毕竟我不开心的话,着急结婚也没�� �,他四处帮我找祛斑的方法,什么祛斑霜了,祛斑偏方了,� ��我脸上都没什么效果,后来我男朋友给我在网上订了「黛芙 薇尔精华液」精华祛斑精华液,说是精华配方,可以彻底去�� �黄褐斑,他有个同事就是用的这个,效果还挺好的,没想到� ��在用了三个多星期的时候,斑就明显的变淡了,后来又用了 三个多星期的时间吧,斑竟然没有了,那一刻我真的不敢相�� �我的眼睛,让我苦恼了很久的黄褐斑就这样轻而易举的消灭� ��,我当时都高兴的哭了。<br>   现在我和男友一心一意操办我们结婚的事,相信那天我�� �是最幸福的新娘。 阅读了遗传性的色斑怎么治,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 遗传性的色斑怎么治,同时为您分享祛斑小方法 去斑方法,柠檬黄瓜汁:洗面后,抹上柠檬和黄瓜汁,30分钟�� �用水洗去,再涂抹护肤霜, 连续20天,有助于驱除斑点,增白皮肤。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:17
1.0
关于遗传性的色斑怎么治 - ``` 《摘要》 耳畔传来熟悉的旋律,那充满沧桑、倦意、无奈而又无限憧憬的音乐。坦然中倾诉那份深深的执著。恰如这初秋,淡淡的凉意拂过燥热的躯体,不可名状,竟会是如此的深刻。好想躺在柔柔的草坪,仰望着蔚蓝的天宇,看浮云掠过的悠闲。一缕温馨,几许闲情,付诸沧海桑田。蹙眉轻就,春秋几许,但见浮生若云。当清风拂过脸颊不禁想,如果没有了色斑感觉会更好!遗传性的色斑怎么治, 《客户案例》   我今年28岁,我这个年龄说大不大说小也不小了,我和男 朋友也准备结婚了,可就在这个时候,我尽然长了黄褐斑,�� �色也变的发暗发黄了,去医院,医生说是内分泌失调造成的� ��给我开了一堆调节内分泌的药,可到最后也没管用,可眼看 婚期越来越近了,现在我又这个样,怎么办啊?<br>   男朋友也为我着急,毕竟我不开心的话,着急结婚也没�� �,他四处帮我找祛斑的方法,什么祛斑霜了,祛斑偏方了,� ��我脸上都没什么效果,后来我男朋友给我在网上订了「黛芙 薇尔精华液」精华祛斑精华液,说是精华配方,可以彻底去�� �黄褐斑,他有个同事就是用的这个,效果还挺好的,没想到� ��在用了三个多星期的时候,斑就明显的变淡了,后来又用了 三个多星期的时间吧,斑竟然没有了,那一刻我真的不敢相�� �我的眼睛,让我苦恼了很久的黄褐斑就这样轻而易举的消灭� ��,我当时都高兴的哭了。<br>   现在我和男友一心一意操办我们结婚的事,相信那天我�� �是最幸福的新娘。 阅读了遗传性的色斑怎么治,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 遗传性的色斑怎么治,同时为您分享祛斑小方法 去斑方法,柠檬黄瓜汁:洗面后,抹上柠檬和黄瓜汁,30分钟�� �用水洗去,再涂抹护肤霜, 连续20天,有助于驱除斑点,增白皮肤。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:17
defect
关于遗传性的色斑怎么治 《摘要》 耳畔传来熟悉的旋律,那充满沧桑、倦意、无奈而又无限憧憬的音乐。坦然中倾诉那份深深的执著。恰如这初秋,淡淡的凉意拂过燥热的躯体,不可名状,竟会是如此的深刻。好想躺在柔柔的草坪,仰望着蔚蓝的天宇,看浮云掠过的悠闲。一缕温馨,几许闲情,付诸沧海桑田。蹙眉轻就,春秋几许,但见浮生若云。当清风拂过脸颊不禁想,如果没有了色斑感觉会更好!遗传性的色斑怎么治, 《客户案例》    ,我这个年龄说大不大说小也不小了,我和男 朋友也准备结婚了,可就在这个时候,我尽然长了黄褐斑,�� �色也变的发暗发黄了,去医院,医生说是内分泌失调造成的� ��给我开了一堆调节内分泌的药,可到最后也没管用,可眼看 婚期越来越近了,现在我又这个样,怎么办啊   男朋友也为我着急,毕竟我不开心的话,着急结婚也没�� �,他四处帮我找祛斑的方法,什么祛斑霜了,祛斑偏方了,� ��我脸上都没什么效果,后来我男朋友给我在网上订了「黛芙 薇尔精华液」精华祛斑精华液,说是精华配方,可以彻底去�� �黄褐斑,他有个同事就是用的这个,效果还挺好的,没想到� ��在用了三个多星期的时候,斑就明显的变淡了,后来又用了 三个多星期的时间吧,斑竟然没有了,那一刻我真的不敢相�� �我的眼睛,让我苦恼了很久的黄褐斑就这样轻而易举的消灭� ��,我当时都高兴的哭了。   现在我和男友一心一意操办我们结婚的事,相信那天我�� �是最幸福的新娘。 阅读了遗传性的色斑怎么治,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》    黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗   答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来    ,服用黛芙薇尔美白,会伤身体吗 有副作用吗   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖    ,去除黄褐斑之后,会反弹吗   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗    ,你们的价格有点贵,能不能便宜一点   答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗    ,我适合用黛芙薇尔精华液吗   答:黛芙薇尔适用人群:    、生理紊乱引起的黄褐斑人群    、生育引起的妊娠斑人群    、年纪增长引起的老年斑人群    、化妆品色素沉积、辐射斑人群    、长期日照引起的日晒斑人群    、肌肤暗淡急需美白的人群 《祛斑小方法》 遗传性的色斑怎么治,同时为您分享祛斑小方法 去斑方法 柠檬黄瓜汁:洗面后,抹上柠檬和黄瓜汁, �� �用水洗去,再涂抹护肤霜, ,有助于驱除斑点,增白皮肤。 original issue reported on code google com by additive gmail com on jul at
1
69,161
22,215,399,526
IssuesEvent
2022-06-08 00:43:31
vector-im/element-android
https://api.github.com/repos/vector-im/element-android
opened
Jump to unread does nothing hestory is loaded.
T-Defect
### Steps to reproduce 1. Open a room with many unread messages. 2. Try to press "Jump to unread" ![image](https://user-images.githubusercontent.com/14617699/172507413-e03f80d5-a18b-41c4-a293-5580a38e620c.png) ### Outcome #### What did you expect? "Jump to unread" button must be inactive, not shown at all or put user action in a queue. #### What happened instead? Nothing. ### Your phone model _No response_ ### Operating system version Lineage+microG 18.1 on Android 11 ### Application version and app store Element 1.4.16 ### Homeserver _No response_ ### Will you send logs? No ### Are you willing to provide a PR? No
1.0
Jump to unread does nothing hestory is loaded. - ### Steps to reproduce 1. Open a room with many unread messages. 2. Try to press "Jump to unread" ![image](https://user-images.githubusercontent.com/14617699/172507413-e03f80d5-a18b-41c4-a293-5580a38e620c.png) ### Outcome #### What did you expect? "Jump to unread" button must be inactive, not shown at all or put user action in a queue. #### What happened instead? Nothing. ### Your phone model _No response_ ### Operating system version Lineage+microG 18.1 on Android 11 ### Application version and app store Element 1.4.16 ### Homeserver _No response_ ### Will you send logs? No ### Are you willing to provide a PR? No
defect
jump to unread does nothing hestory is loaded steps to reproduce open a room with many unread messages try to press jump to unread outcome what did you expect jump to unread button must be inactive not shown at all or put user action in a queue what happened instead nothing your phone model no response operating system version lineage microg on android application version and app store element homeserver no response will you send logs no are you willing to provide a pr no
1
7,512
6,974,505,619
IssuesEvent
2017-12-12 01:09:06
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
Feature: Need to create a solution for building localized binaries
area-Infrastructure enhancement
We need to come up with a solution to enable building localized binaries as well as taking contributions to localized content.
1.0
Feature: Need to create a solution for building localized binaries - We need to come up with a solution to enable building localized binaries as well as taking contributions to localized content.
non_defect
feature need to create a solution for building localized binaries we need to come up with a solution to enable building localized binaries as well as taking contributions to localized content
0
39,226
9,332,482,982
IssuesEvent
2019-03-28 12:20:07
OpenMS/OpenMS
https://api.github.com/repos/OpenMS/OpenMS
closed
TOPPBase: ini file plus cmd line parameter mix [599]
TOPP defect minor
Submitted by timosachsenberg on 2013-08-14 13:26:32 Currently, cmd line parameters are ignored without further notice if an ini file is provided via the -ini parameter. --- Commented by hendrikweisser on 2013-08-15 11:34:58: Are you sure that's generally true, and not just for generating INI files with "-write_ini"? If yes, that should be quite high priority - but it would surprise me.
1.0
TOPPBase: ini file plus cmd line parameter mix [599] - Submitted by timosachsenberg on 2013-08-14 13:26:32 Currently, cmd line parameters are ignored without further notice if an ini file is provided via the -ini parameter. --- Commented by hendrikweisser on 2013-08-15 11:34:58: Are you sure that's generally true, and not just for generating INI files with "-write_ini"? If yes, that should be quite high priority - but it would surprise me.
defect
toppbase ini file plus cmd line parameter mix submitted by timosachsenberg on currently cmd line parameters are ignored without further notice if an ini file is provided via the ini parameter commented by hendrikweisser on are you sure that s generally true and not just for generating ini files with write ini if yes that should be quite high priority but it would surprise me
1
32,259
15,299,677,662
IssuesEvent
2021-02-24 11:15:58
milvus-io/milvus
https://api.github.com/repos/milvus-io/milvus
closed
Search time increased too much if nq/top-k value greater than 1000
Bug Bug | Severity | S3 type/performance
**Please state your issue using the following template and, most importantly, in English.** **Describe the bug** Need to reduce the search time when both the top-k and nq is set greater than 1000. ``` 11:10:25 │ Nq/Top-k │ 1 │ 10 │ 100 │ 1000 │ 11:10:25 ├─────────────┼─────────────┼─────────────┼─────────────┼─────────────┤ 11:10:25 │ 1 │ 0.9 │ 0.78 │ 0.92 │ 1.43 │ 11:10:25 │ 10 │ 1.01 │ 1.06 │ 1.21 │ 1.4 │ 11:10:25 │ 100 │ 2.05 │ 2.19 │ 2.2 │ 2.31 │ 11:10:25 │ 1000 │ 2.49 │ 2.48 │ 2.26 │ 7.76 │ 11:10:25 │ 1200 │ 2.68 │ 2.94 │ 2.48 │ 8.49 │ ``` ``` 11:10:25 INFO:milvus_benchmark.client:Server command: mode, result: GPU 11:10:25 2020-09-14 03:10:25,122 - milvus_benchmark.client - INFO - Server command: build_commit_id, result: a8943f824cd5a14d5eae4b5b38b47dfb6d303223 ``` ``` [2020-09-14 11:22:24,594][DEBUG][SERVER][WaitFinish][reqsched_thread] scheduler job [81] {"id":81,"number_of_search_segment":500,"type":0} all done [2020-09-14 11:22:24,594][DEBUG][SERVER][print][reqsched_thread] [CACHE CPU] [item count]: 1000, [usage] 7504MB, [capacity] 32768MB [2020-09-14 11:22:24,594][DEBUG][SERVER][PrintTimeRecord][reqsched_thread] DBImpl::Query: Engine query totally cost (7.497037 seconds [7497.037412 ms]) [2020-09-14 11:22:24,596][DEBUG][SERVER][PrintTimeRecord][reqsched_thread] SearchReq(table=sift_50m_100000_128_l2: construct result and send (7.498369 seconds [7498.368631 ms]) [2020-09-14 11:22:24,596][DEBUG][SERVER][PrintTimeRecord][reqsched_thread] SearchReq(table=sift_50m_100000_128_l2: done (7.498433 seconds [7498.433381 ms]) ``` **Steps/Code to reproduce behavior** Follow this [guide](http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) to craft a minimal bug report. This helps us reproduce the issue you're having and resolve the issue more quickly. **Expected behavior** A clear and concise description of what you expected to happen. **Method of installation** - [ ] Docker/cpu - [x] Docker/gpu - [ ] Build from source **Environment details** - Hardware/Softwars conditions (OS, CPU, GPU, Memory) - Milvus version (master or released version) **Configuration file** Settings you made in `server_config.yaml` or `milvus.yaml` ```yaml paste-file-content-here ``` **Screenshots** If applicable, add screenshots to help explain your problem. **Additional context** Add any other context about the problem here.
True
Search time increased too much if nq/top-k value greater than 1000 - **Please state your issue using the following template and, most importantly, in English.** **Describe the bug** Need to reduce the search time when both the top-k and nq is set greater than 1000. ``` 11:10:25 │ Nq/Top-k │ 1 │ 10 │ 100 │ 1000 │ 11:10:25 ├─────────────┼─────────────┼─────────────┼─────────────┼─────────────┤ 11:10:25 │ 1 │ 0.9 │ 0.78 │ 0.92 │ 1.43 │ 11:10:25 │ 10 │ 1.01 │ 1.06 │ 1.21 │ 1.4 │ 11:10:25 │ 100 │ 2.05 │ 2.19 │ 2.2 │ 2.31 │ 11:10:25 │ 1000 │ 2.49 │ 2.48 │ 2.26 │ 7.76 │ 11:10:25 │ 1200 │ 2.68 │ 2.94 │ 2.48 │ 8.49 │ ``` ``` 11:10:25 INFO:milvus_benchmark.client:Server command: mode, result: GPU 11:10:25 2020-09-14 03:10:25,122 - milvus_benchmark.client - INFO - Server command: build_commit_id, result: a8943f824cd5a14d5eae4b5b38b47dfb6d303223 ``` ``` [2020-09-14 11:22:24,594][DEBUG][SERVER][WaitFinish][reqsched_thread] scheduler job [81] {"id":81,"number_of_search_segment":500,"type":0} all done [2020-09-14 11:22:24,594][DEBUG][SERVER][print][reqsched_thread] [CACHE CPU] [item count]: 1000, [usage] 7504MB, [capacity] 32768MB [2020-09-14 11:22:24,594][DEBUG][SERVER][PrintTimeRecord][reqsched_thread] DBImpl::Query: Engine query totally cost (7.497037 seconds [7497.037412 ms]) [2020-09-14 11:22:24,596][DEBUG][SERVER][PrintTimeRecord][reqsched_thread] SearchReq(table=sift_50m_100000_128_l2: construct result and send (7.498369 seconds [7498.368631 ms]) [2020-09-14 11:22:24,596][DEBUG][SERVER][PrintTimeRecord][reqsched_thread] SearchReq(table=sift_50m_100000_128_l2: done (7.498433 seconds [7498.433381 ms]) ``` **Steps/Code to reproduce behavior** Follow this [guide](http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) to craft a minimal bug report. This helps us reproduce the issue you're having and resolve the issue more quickly. **Expected behavior** A clear and concise description of what you expected to happen. **Method of installation** - [ ] Docker/cpu - [x] Docker/gpu - [ ] Build from source **Environment details** - Hardware/Softwars conditions (OS, CPU, GPU, Memory) - Milvus version (master or released version) **Configuration file** Settings you made in `server_config.yaml` or `milvus.yaml` ```yaml paste-file-content-here ``` **Screenshots** If applicable, add screenshots to help explain your problem. **Additional context** Add any other context about the problem here.
non_defect
search time increased too much if nq top k value greater than please state your issue using the following template and most importantly in english describe the bug need to reduce the search time when both the top k and nq is set greater than │ nq top k │ │ │ │ │ ├─────────────┼─────────────┼─────────────┼─────────────┼─────────────┤ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ info milvus benchmark client server command mode result gpu milvus benchmark client info server command build commit id result scheduler job id number of search segment type all done dbimpl query engine query totally cost seconds searchreq table sift construct result and send seconds searchreq table sift done seconds steps code to reproduce behavior follow this to craft a minimal bug report this helps us reproduce the issue you re having and resolve the issue more quickly expected behavior a clear and concise description of what you expected to happen method of installation docker cpu docker gpu build from source environment details hardware softwars conditions os cpu gpu memory milvus version master or released version configuration file settings you made in server config yaml or milvus yaml yaml paste file content here screenshots if applicable add screenshots to help explain your problem additional context add any other context about the problem here
0
15,899
2,869,091,143
IssuesEvent
2015-06-05 23:15:46
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
Cannot use iterables in bindings
Area-Pkg Pkg-PolymerExpressions PolymerMilestone-Next Priority-Medium Triaged Type-Defect
They could generate infinite loops. Right now we are OK with them because we are not discarding changes in 'get value' in polymer-expressions, but you'd hit the issue if we fix that. We also hit this if you use path_observers. Here is a change that illustrates the problem: https://codereview.chromium.org/382683005 ObservableMap.keys would always be different, so we would think there was a change every time we do a read. The CL patches ObservableMap.keys to cache it's previous result to illustrate that the issue goes away if we know somehow that the value didn't change. I think we need to guarantee that with any Bindable, calling `get value` twice in a row should return either the same thing, or equal values. Haven't we solved this issue before already?
1.0
Cannot use iterables in bindings - They could generate infinite loops. Right now we are OK with them because we are not discarding changes in 'get value' in polymer-expressions, but you'd hit the issue if we fix that. We also hit this if you use path_observers. Here is a change that illustrates the problem: https://codereview.chromium.org/382683005 ObservableMap.keys would always be different, so we would think there was a change every time we do a read. The CL patches ObservableMap.keys to cache it's previous result to illustrate that the issue goes away if we know somehow that the value didn't change. I think we need to guarantee that with any Bindable, calling `get value` twice in a row should return either the same thing, or equal values. Haven't we solved this issue before already?
defect
cannot use iterables in bindings they could generate infinite loops right now we are ok with them because we are not discarding changes in get value in polymer expressions but you d hit the issue if we fix that we also hit this if you use path observers here is a change that illustrates the problem observablemap keys would always be different so we would think there was a change every time we do a read the cl patches observablemap keys to cache it s previous result to illustrate that the issue goes away if we know somehow that the value didn t change i think we need to guarantee that with any bindable calling get value twice in a row should return either the same thing or equal values haven t we solved this issue before already
1
77,864
22,013,421,122
IssuesEvent
2022-05-27 01:13:43
hashicorp/packer-plugin-proxmox
https://api.github.com/repos/hashicorp/packer-plugin-proxmox
closed
Proxmox builder - Error getting SSH address 500 QEMU guest agent is not running
question builder/proxmox remote-plugin/proxmox
hashicorp/packer#9115 This issue relates to much of the discussion in the one linked above, however, at present I have a very specific issue which I think is worth separating out. **Packer version:** ``` goffinf@DESKTOP-LH5LG1V:~$ packer version Packer v1.6.0 ``` **Builder: proxmox** **Proxmox version:** ``` pveversion --verbose proxmox-ve: 6.2-1 (running kernel: 5.4.44-1-pve) pve-manager: 6.2-6 (running version: 6.2-6/ee1d7754) pve-kernel-5.4: 6.2-3 pve-kernel-helper: 6.2-3 pve-kernel-5.4.44-1-pve: 5.4.44-1 pve-kernel-5.4.34-1-pve: 5.4.34-2 ... ``` I am trying to run a Packer build using the ubuntu-20.04-live-server-amd64.iso, but when the boot_command runs the build just hangs waiting to get an SSH connection to the launched instance. When the ssh_timeout is reached the build fails and the VM is destroyed. The Packer log reports that the SSH address cannot be obtained because the QEMU guest agent isn't running. Clearly that is not installed on a fresh ISO. I also set the communicator to ssh, disabled the qemu_agent, and configured an alternate ssh_port, so I'm not sure why this is happening ? ``` ... "builders": [ { ... "communicator": "ssh", ... "qemu_agent": false, "ssh_handshake_attempts": "50", "ssh_username": "{{user `ssh_username`}}", "ssh_password": "{{user `ssh_password`}}", "ssh_port": 2222, "ssh_pty": true, "ssh_timeout": "{{user `ssh_timeout`}}", ``` **packer log:** ![image](https://user-images.githubusercontent.com/2772752/86771504-3f47bb80-c04a-11ea-85f6-dd7e5202c5d9.png) **build times-out:** ![image](https://user-images.githubusercontent.com/2772752/86771568-62726b00-c04a-11ea-8dad-33d4975e93b6.png) From the related thread: > The new Ubuntu Server installer starts an SSH server. > The credentials are installer:<random_pw> > Packer wrongfully tries to connect to this SSH, thinking the VM is ready for further provisioning steps - which it is NOT. > > Thanks to @JulyIghor we found a workaround. > We simply change the port packer expects the ssh server to run at to something else AND during cloud-init late_commands we override the servers port accordingly. That way once the cloud-init finishes and reboots the VM the ssh server will run at the new port - now packer picks up on that and continues provisiong as we are used to. > > As a last step durng provision, we remove the conf file, essentially resettign the ssh server port back to default 22. I have tried using a different ssh_port (2222 in the example below), but that had no effect. For completeness, the boot_command, does result in the newly launched VM entering the correct autoinstall process (rather than the standard install dialogue) as evidenced by the following screen shots taken during a Packer debug build: ![image](https://user-images.githubusercontent.com/2772752/86772469-0577b480-c04c-11ea-8b56-29f4e5126358.png) ![image](https://user-images.githubusercontent.com/2772752/86772496-13c5d080-c04c-11ea-9f1a-fb397dbb2cd6.png) I have copied the complete Packer build file and the user-data below. Any guidance on how to ensure that the Packer build uses ssh rather than the qemu agent would be much appreciated (or anything else you think might be the culprit). Kind Regards Fraser. **host.json:** ``` { "builders": [ { "boot_command": [ "<enter><enter><f6><esc><wait>", "autoinstall ds=nocloud-net;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/", "<enter>" ], "boot_wait": "{{user `boot_wait`}}", "communicator": "ssh", "disks": [ { "disk_size": "{{user `home_volume_size`}}", "storage_pool": "local-lvm", "storage_pool_type": "lvm-thin", "type": "scsi", "format": "raw" } ], "http_directory": "{{user `http_directory`}}", "insecure_skip_tls_verify": true, "iso_checksum": "{{user `iso_checksum_type`}}:{{user `iso_checksum`}}", "iso_file": "{{user `iso_file`}}", "memory": 2048, "name": "ubuntu-20-04-base", "network_adapters": [ { "bridge": "vmbr0", "model": "virtio" } ], "node": "{{user `proxmox_target_node`}}", "password": "{{user `proxmox_server_pwd`}}", "proxmox_url": "https://{{user `proxmox_server_hostname`}}:{{user `proxmox_server_port`}}/api2/json", "qemu_agent": false, "ssh_handshake_attempts": "50", "ssh_username": "{{user `ssh_username`}}", "ssh_password": "{{user `ssh_password`}}", "ssh_port": 2222, "ssh_pty": true, "ssh_timeout": "{{user `ssh_timeout`}}", "type": "proxmox", "unmount_iso": true, "username": "{{user `proxmox_server_user`}}" } ], "provisioners": [ { "execute_command": "{{ .Vars }} sudo -E -S sh '{{ .Path }}'", "inline": [ "ls /" ], "type": "shell" } ], "variables": { "boot_wait": "2s", "http_directory": "http", "iso_checksum": "caf3fd69c77c439f162e2ba6040e9c320c4ff0d69aad1340a514319a9264df9f", "iso_checksum_type": "sha256", "iso_file": "local:iso/ubuntu-20.04-live-server-amd64.iso", "proxmox_server_hostname": "proxmox-002", "proxmox_server_port": "8006", "proxmox_server_pwd": "xxxxxxx", "proxmox_server_user": "xxxxxxxx", "proxmox_target_node": "home", "ssh_handshake_attempts": "20", "ssh_password": "ubuntu", "ssh_username": "ubuntu", "ssh_timeout": "10m" } } ``` **user-data:** ``` #cloud-config autoinstall: identity: hostname: ubuntu-20-04-base password: '$6$wdAcoXrU039hKYPd$508Qvbe7ObUnxoj15DRCkzC3qO7edjH0VV7BPNRDYK4QR8ofJaEEF2heacn0QgD.f8pO8SNp83XNdWG6tocBM1' username: ubuntu keyboard: layout: gb variant: uk late-commands: - sed -i 's/^#*\(send dhcp-client-identifier\).*$/\1 = hardware;/' /target/etc/dhcp/dhclient.conf - 'sed -i "s/dhcp4: true/&\n dhcp-identifier: mac/" /target/etc/netplan/00-installer-config.yaml' locale: en_GB.UTF-8 network: network: version: 2 ethernets: ens33: dhcp4: true dhcp-identifier: mac ssh: allow-pw: true authorized-keys: - "ssh-rsa AAAAB3NzaC1yc2...." install-server: true version: 1 ```
1.0
Proxmox builder - Error getting SSH address 500 QEMU guest agent is not running - hashicorp/packer#9115 This issue relates to much of the discussion in the one linked above, however, at present I have a very specific issue which I think is worth separating out. **Packer version:** ``` goffinf@DESKTOP-LH5LG1V:~$ packer version Packer v1.6.0 ``` **Builder: proxmox** **Proxmox version:** ``` pveversion --verbose proxmox-ve: 6.2-1 (running kernel: 5.4.44-1-pve) pve-manager: 6.2-6 (running version: 6.2-6/ee1d7754) pve-kernel-5.4: 6.2-3 pve-kernel-helper: 6.2-3 pve-kernel-5.4.44-1-pve: 5.4.44-1 pve-kernel-5.4.34-1-pve: 5.4.34-2 ... ``` I am trying to run a Packer build using the ubuntu-20.04-live-server-amd64.iso, but when the boot_command runs the build just hangs waiting to get an SSH connection to the launched instance. When the ssh_timeout is reached the build fails and the VM is destroyed. The Packer log reports that the SSH address cannot be obtained because the QEMU guest agent isn't running. Clearly that is not installed on a fresh ISO. I also set the communicator to ssh, disabled the qemu_agent, and configured an alternate ssh_port, so I'm not sure why this is happening ? ``` ... "builders": [ { ... "communicator": "ssh", ... "qemu_agent": false, "ssh_handshake_attempts": "50", "ssh_username": "{{user `ssh_username`}}", "ssh_password": "{{user `ssh_password`}}", "ssh_port": 2222, "ssh_pty": true, "ssh_timeout": "{{user `ssh_timeout`}}", ``` **packer log:** ![image](https://user-images.githubusercontent.com/2772752/86771504-3f47bb80-c04a-11ea-85f6-dd7e5202c5d9.png) **build times-out:** ![image](https://user-images.githubusercontent.com/2772752/86771568-62726b00-c04a-11ea-8dad-33d4975e93b6.png) From the related thread: > The new Ubuntu Server installer starts an SSH server. > The credentials are installer:<random_pw> > Packer wrongfully tries to connect to this SSH, thinking the VM is ready for further provisioning steps - which it is NOT. > > Thanks to @JulyIghor we found a workaround. > We simply change the port packer expects the ssh server to run at to something else AND during cloud-init late_commands we override the servers port accordingly. That way once the cloud-init finishes and reboots the VM the ssh server will run at the new port - now packer picks up on that and continues provisiong as we are used to. > > As a last step durng provision, we remove the conf file, essentially resettign the ssh server port back to default 22. I have tried using a different ssh_port (2222 in the example below), but that had no effect. For completeness, the boot_command, does result in the newly launched VM entering the correct autoinstall process (rather than the standard install dialogue) as evidenced by the following screen shots taken during a Packer debug build: ![image](https://user-images.githubusercontent.com/2772752/86772469-0577b480-c04c-11ea-8b56-29f4e5126358.png) ![image](https://user-images.githubusercontent.com/2772752/86772496-13c5d080-c04c-11ea-9f1a-fb397dbb2cd6.png) I have copied the complete Packer build file and the user-data below. Any guidance on how to ensure that the Packer build uses ssh rather than the qemu agent would be much appreciated (or anything else you think might be the culprit). Kind Regards Fraser. **host.json:** ``` { "builders": [ { "boot_command": [ "<enter><enter><f6><esc><wait>", "autoinstall ds=nocloud-net;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/", "<enter>" ], "boot_wait": "{{user `boot_wait`}}", "communicator": "ssh", "disks": [ { "disk_size": "{{user `home_volume_size`}}", "storage_pool": "local-lvm", "storage_pool_type": "lvm-thin", "type": "scsi", "format": "raw" } ], "http_directory": "{{user `http_directory`}}", "insecure_skip_tls_verify": true, "iso_checksum": "{{user `iso_checksum_type`}}:{{user `iso_checksum`}}", "iso_file": "{{user `iso_file`}}", "memory": 2048, "name": "ubuntu-20-04-base", "network_adapters": [ { "bridge": "vmbr0", "model": "virtio" } ], "node": "{{user `proxmox_target_node`}}", "password": "{{user `proxmox_server_pwd`}}", "proxmox_url": "https://{{user `proxmox_server_hostname`}}:{{user `proxmox_server_port`}}/api2/json", "qemu_agent": false, "ssh_handshake_attempts": "50", "ssh_username": "{{user `ssh_username`}}", "ssh_password": "{{user `ssh_password`}}", "ssh_port": 2222, "ssh_pty": true, "ssh_timeout": "{{user `ssh_timeout`}}", "type": "proxmox", "unmount_iso": true, "username": "{{user `proxmox_server_user`}}" } ], "provisioners": [ { "execute_command": "{{ .Vars }} sudo -E -S sh '{{ .Path }}'", "inline": [ "ls /" ], "type": "shell" } ], "variables": { "boot_wait": "2s", "http_directory": "http", "iso_checksum": "caf3fd69c77c439f162e2ba6040e9c320c4ff0d69aad1340a514319a9264df9f", "iso_checksum_type": "sha256", "iso_file": "local:iso/ubuntu-20.04-live-server-amd64.iso", "proxmox_server_hostname": "proxmox-002", "proxmox_server_port": "8006", "proxmox_server_pwd": "xxxxxxx", "proxmox_server_user": "xxxxxxxx", "proxmox_target_node": "home", "ssh_handshake_attempts": "20", "ssh_password": "ubuntu", "ssh_username": "ubuntu", "ssh_timeout": "10m" } } ``` **user-data:** ``` #cloud-config autoinstall: identity: hostname: ubuntu-20-04-base password: '$6$wdAcoXrU039hKYPd$508Qvbe7ObUnxoj15DRCkzC3qO7edjH0VV7BPNRDYK4QR8ofJaEEF2heacn0QgD.f8pO8SNp83XNdWG6tocBM1' username: ubuntu keyboard: layout: gb variant: uk late-commands: - sed -i 's/^#*\(send dhcp-client-identifier\).*$/\1 = hardware;/' /target/etc/dhcp/dhclient.conf - 'sed -i "s/dhcp4: true/&\n dhcp-identifier: mac/" /target/etc/netplan/00-installer-config.yaml' locale: en_GB.UTF-8 network: network: version: 2 ethernets: ens33: dhcp4: true dhcp-identifier: mac ssh: allow-pw: true authorized-keys: - "ssh-rsa AAAAB3NzaC1yc2...." install-server: true version: 1 ```
non_defect
proxmox builder error getting ssh address qemu guest agent is not running hashicorp packer this issue relates to much of the discussion in the one linked above however at present i have a very specific issue which i think is worth separating out packer version goffinf desktop packer version packer builder proxmox proxmox version pveversion verbose proxmox ve running kernel pve pve manager running version pve kernel pve kernel helper pve kernel pve pve kernel pve i am trying to run a packer build using the ubuntu live server iso but when the boot command runs the build just hangs waiting to get an ssh connection to the launched instance when the ssh timeout is reached the build fails and the vm is destroyed the packer log reports that the ssh address cannot be obtained because the qemu guest agent isn t running clearly that is not installed on a fresh iso i also set the communicator to ssh disabled the qemu agent and configured an alternate ssh port so i m not sure why this is happening builders communicator ssh qemu agent false ssh handshake attempts ssh username user ssh username ssh password user ssh password ssh port ssh pty true ssh timeout user ssh timeout packer log build times out from the related thread the new ubuntu server installer starts an ssh server the credentials are installer packer wrongfully tries to connect to this ssh thinking the vm is ready for further provisioning steps which it is not thanks to julyighor we found a workaround we simply change the port packer expects the ssh server to run at to something else and during cloud init late commands we override the servers port accordingly that way once the cloud init finishes and reboots the vm the ssh server will run at the new port now packer picks up on that and continues provisiong as we are used to as a last step durng provision we remove the conf file essentially resettign the ssh server port back to default i have tried using a different ssh port in the example below but that had no effect for completeness the boot command does result in the newly launched vm entering the correct autoinstall process rather than the standard install dialogue as evidenced by the following screen shots taken during a packer debug build i have copied the complete packer build file and the user data below any guidance on how to ensure that the packer build uses ssh rather than the qemu agent would be much appreciated or anything else you think might be the culprit kind regards fraser host json builders boot command autoinstall ds nocloud net s httpip httpport boot wait user boot wait communicator ssh disks disk size user home volume size storage pool local lvm storage pool type lvm thin type scsi format raw http directory user http directory insecure skip tls verify true iso checksum user iso checksum type user iso checksum iso file user iso file memory name ubuntu base network adapters bridge model virtio node user proxmox target node password user proxmox server pwd proxmox url proxmox server hostname user proxmox server port json qemu agent false ssh handshake attempts ssh username user ssh username ssh password user ssh password ssh port ssh pty true ssh timeout user ssh timeout type proxmox unmount iso true username user proxmox server user provisioners execute command vars sudo e s sh path inline ls type shell variables boot wait http directory http iso checksum iso checksum type iso file local iso ubuntu live server iso proxmox server hostname proxmox proxmox server port proxmox server pwd xxxxxxx proxmox server user xxxxxxxx proxmox target node home ssh handshake attempts ssh password ubuntu ssh username ubuntu ssh timeout user data cloud config autoinstall identity hostname ubuntu base password username ubuntu keyboard layout gb variant uk late commands sed i s send dhcp client identifier hardware target etc dhcp dhclient conf sed i s true n dhcp identifier mac target etc netplan installer config yaml locale en gb utf network network version ethernets true dhcp identifier mac ssh allow pw true authorized keys ssh rsa install server true version
0
157,536
13,691,771,699
IssuesEvent
2020-09-30 15:58:12
qurator-spk/dinglehopper
https://api.github.com/repos/qurator-spk/dinglehopper
closed
Documentation Enhancement
documentation
Please consider explaining some details in your documentation: * What is WER and CER. If you are not familiar with these terms, you don't grasp it emediately although it is an easy concept. * Does dinglehopper automatically recognize the import format? * How are text files and XML files compared? Are the XML files simply stripped down to their text representation? How do you assure that there is no additional (or missing) empty paragraph screwing the evaluation? <s>Also, please provide a --verbose parameter. I just ran a comparison of a text file with an XML file (both not part of any OCR-D process) and waited for every. FInally, I aborted the process. It would be nice to know what was the issue internally....</s> (Moved to #30) And, despite this critique, thank you for providing such a handy tool! :) Edit: I found even more: * How can I process a bunch of ground truth files that are not part of the OCR-D mets.xml. Or, how can I assign them their corresponding page in the mets.xml? There should be some way!
1.0
Documentation Enhancement - Please consider explaining some details in your documentation: * What is WER and CER. If you are not familiar with these terms, you don't grasp it emediately although it is an easy concept. * Does dinglehopper automatically recognize the import format? * How are text files and XML files compared? Are the XML files simply stripped down to their text representation? How do you assure that there is no additional (or missing) empty paragraph screwing the evaluation? <s>Also, please provide a --verbose parameter. I just ran a comparison of a text file with an XML file (both not part of any OCR-D process) and waited for every. FInally, I aborted the process. It would be nice to know what was the issue internally....</s> (Moved to #30) And, despite this critique, thank you for providing such a handy tool! :) Edit: I found even more: * How can I process a bunch of ground truth files that are not part of the OCR-D mets.xml. Or, how can I assign them their corresponding page in the mets.xml? There should be some way!
non_defect
documentation enhancement please consider explaining some details in your documentation what is wer and cer if you are not familiar with these terms you don t grasp it emediately although it is an easy concept does dinglehopper automatically recognize the import format how are text files and xml files compared are the xml files simply stripped down to their text representation how do you assure that there is no additional or missing empty paragraph screwing the evaluation also please provide a verbose parameter i just ran a comparison of a text file with an xml file both not part of any ocr d process and waited for every finally i aborted the process it would be nice to know what was the issue internally moved to and despite this critique thank you for providing such a handy tool edit i found even more how can i process a bunch of ground truth files that are not part of the ocr d mets xml or how can i assign them their corresponding page in the mets xml there should be some way
0
243,930
7,868,463,944
IssuesEvent
2018-06-23 22:13:24
deniskabana/vimrc
https://api.github.com/repos/deniskabana/vimrc
opened
Take inspiration from other people's configs
enhancement high priority
I have noticed that many people have great plugins or neat tricks in their configs. I should take inspiration from some of these and credit them inside init.vim (list is a subject to change) 1. https://github.com/Optixal/neovim-init.vim 2. https://github.com/bigeagle/neovim-config 3. https://github.com/kristijanhusak/neovim-config 4. https://github.com/rafi/vim-config
1.0
Take inspiration from other people's configs - I have noticed that many people have great plugins or neat tricks in their configs. I should take inspiration from some of these and credit them inside init.vim (list is a subject to change) 1. https://github.com/Optixal/neovim-init.vim 2. https://github.com/bigeagle/neovim-config 3. https://github.com/kristijanhusak/neovim-config 4. https://github.com/rafi/vim-config
non_defect
take inspiration from other people s configs i have noticed that many people have great plugins or neat tricks in their configs i should take inspiration from some of these and credit them inside init vim list is a subject to change
0
686,464
23,492,213,110
IssuesEvent
2022-08-17 19:58:15
dhowe/AdNauseam
https://api.github.com/repos/dhowe/AdNauseam
closed
Update Ad Cost-Per-Click Calculation
PRIORITY: Medium
When re-checking the cost-per-click calculation value noticed that the value we currently have __$1.58__, is outdated. > [Pay-per-Click (PPC)](https://en.wikipedia.org/wiki/Pay_per_click) is a common internet advertising model in which advertisers pay for individual clicks on Ads. The cost involved varies widely depending on a number of factors. One important factor is the type of website the Ad appears on; whether a normal 'display' website, or a 'search' website where the Ads shown are based on the user's query. The latter is generally more effective, with prices commonly calculated on the spot through a real-time bidding system. Display Ads may use fixed prices or other pricing models to determine click cost. Depending on these and other factors, costs per click range from below 1$ to over $50. As the precise cost generated by clicks is not visible to the client, AdNauseam calculates an estimate using an average value of $1.58 for each clicked Ad. This value is taken from [this analysis](https://www.hochmanconsultants.com/cost-of-ppc-advertising/), in which various advertising models and platforms are taken into account. The latest value available on the [analysis](https://www.hochmanconsultants.com/cost-of-ppc-advertising/) we have as reference is __$1.03__. ![Screenshot 2022-08-16 at 16 45 12](https://user-images.githubusercontent.com/4967860/184909686-979e9fd8-0ed4-43a0-8e8b-940a161375d7.png) Or perhaps we can add an option for the user to update this value as suggested in this issue? https://github.com/dhowe/AdNauseam/issues/2131
1.0
Update Ad Cost-Per-Click Calculation - When re-checking the cost-per-click calculation value noticed that the value we currently have __$1.58__, is outdated. > [Pay-per-Click (PPC)](https://en.wikipedia.org/wiki/Pay_per_click) is a common internet advertising model in which advertisers pay for individual clicks on Ads. The cost involved varies widely depending on a number of factors. One important factor is the type of website the Ad appears on; whether a normal 'display' website, or a 'search' website where the Ads shown are based on the user's query. The latter is generally more effective, with prices commonly calculated on the spot through a real-time bidding system. Display Ads may use fixed prices or other pricing models to determine click cost. Depending on these and other factors, costs per click range from below 1$ to over $50. As the precise cost generated by clicks is not visible to the client, AdNauseam calculates an estimate using an average value of $1.58 for each clicked Ad. This value is taken from [this analysis](https://www.hochmanconsultants.com/cost-of-ppc-advertising/), in which various advertising models and platforms are taken into account. The latest value available on the [analysis](https://www.hochmanconsultants.com/cost-of-ppc-advertising/) we have as reference is __$1.03__. ![Screenshot 2022-08-16 at 16 45 12](https://user-images.githubusercontent.com/4967860/184909686-979e9fd8-0ed4-43a0-8e8b-940a161375d7.png) Or perhaps we can add an option for the user to update this value as suggested in this issue? https://github.com/dhowe/AdNauseam/issues/2131
non_defect
update ad cost per click calculation when re checking the cost per click calculation value noticed that the value we currently have is outdated is a common internet advertising model in which advertisers pay for individual clicks on ads the cost involved varies widely depending on a number of factors one important factor is the type of website the ad appears on whether a normal display website or a search website where the ads shown are based on the user s query the latter is generally more effective with prices commonly calculated on the spot through a real time bidding system display ads may use fixed prices or other pricing models to determine click cost depending on these and other factors costs per click range from below to over as the precise cost generated by clicks is not visible to the client adnauseam calculates an estimate using an average value of for each clicked ad this value is taken from in which various advertising models and platforms are taken into account the latest value available on the we have as reference is or perhaps we can add an option for the user to update this value as suggested in this issue
0
87,918
17,395,468,211
IssuesEvent
2021-08-02 12:59:17
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
iOS: AOT compiler emits a reference to mini_llvmonly_pop_lmf
area-Codegen-AOT-mono
### Description I'm trying the AOT compiler for iOS as shipped as `Microsoft.NetCore.App.Runtime.AOT.{host-rid}.Cross.{target-rid}` packages, and there seems to be a difference: the AOT-compiled code will have a reference to `mini_llvmonly_pop_lmf`, which doesn't exist, so linking the AOT output into the final library will fail: ``` ld: warning: object file (/Users/rolf/work/maccore/dotnet-tools/xamarin-macios/tests/dotnet/packages/microsoft.netcore.app.runtime.ios-arm64/6.0.0-alpha.1.21063.13/runtimes/ios-arm64/native/libmonosgen-2.0.a(gshell.c.o)) was built for newer iOS version (8.0) than being linked (7.0) Undefined symbols for architecture arm64: "_mini_llvmonly_pop_lmf", referenced from: wrapper_managed_to_native_object___icall_wrapper_mini_llvmonly_pop_lmf_intptr in System.Private.CoreLib.dll.o ld: symbol(s) not found for architecture arm64 ``` I'm attaching a test case: * Download [aottest-05a4fa4.zip](https://github.com/dotnet/runtime/files/5894966/aottest-05a4fa4.zip) * Open test.sh and change AOT_OLD and AOT_NEW to point to your local versions of the AOT compilers in question. * Run ./test.sh: ``` [...] + echo Old: Old: + nm old-output/System.Private.CoreLib.o + grep mini_llvmonly_pop_lmf + true + echo New: New: + nm new-output/System.Private.CoreLib.o + grep mini_llvmonly_pop_lmf U _mini_llvmonly_pop_lmf 000000000049f800 t wrapper_managed_to_native_object___icall_wrapper_mini_llvmonly_pop_lmf_intptr ``` This shows that the new AOT compiler emits `mini_llvmonly_pop_lmf`, while the old one doesn't. CC @steveisok
1.0
iOS: AOT compiler emits a reference to mini_llvmonly_pop_lmf - ### Description I'm trying the AOT compiler for iOS as shipped as `Microsoft.NetCore.App.Runtime.AOT.{host-rid}.Cross.{target-rid}` packages, and there seems to be a difference: the AOT-compiled code will have a reference to `mini_llvmonly_pop_lmf`, which doesn't exist, so linking the AOT output into the final library will fail: ``` ld: warning: object file (/Users/rolf/work/maccore/dotnet-tools/xamarin-macios/tests/dotnet/packages/microsoft.netcore.app.runtime.ios-arm64/6.0.0-alpha.1.21063.13/runtimes/ios-arm64/native/libmonosgen-2.0.a(gshell.c.o)) was built for newer iOS version (8.0) than being linked (7.0) Undefined symbols for architecture arm64: "_mini_llvmonly_pop_lmf", referenced from: wrapper_managed_to_native_object___icall_wrapper_mini_llvmonly_pop_lmf_intptr in System.Private.CoreLib.dll.o ld: symbol(s) not found for architecture arm64 ``` I'm attaching a test case: * Download [aottest-05a4fa4.zip](https://github.com/dotnet/runtime/files/5894966/aottest-05a4fa4.zip) * Open test.sh and change AOT_OLD and AOT_NEW to point to your local versions of the AOT compilers in question. * Run ./test.sh: ``` [...] + echo Old: Old: + nm old-output/System.Private.CoreLib.o + grep mini_llvmonly_pop_lmf + true + echo New: New: + nm new-output/System.Private.CoreLib.o + grep mini_llvmonly_pop_lmf U _mini_llvmonly_pop_lmf 000000000049f800 t wrapper_managed_to_native_object___icall_wrapper_mini_llvmonly_pop_lmf_intptr ``` This shows that the new AOT compiler emits `mini_llvmonly_pop_lmf`, while the old one doesn't. CC @steveisok
non_defect
ios aot compiler emits a reference to mini llvmonly pop lmf description i m trying the aot compiler for ios as shipped as microsoft netcore app runtime aot host rid cross target rid packages and there seems to be a difference the aot compiled code will have a reference to mini llvmonly pop lmf which doesn t exist so linking the aot output into the final library will fail ld warning object file users rolf work maccore dotnet tools xamarin macios tests dotnet packages microsoft netcore app runtime ios alpha runtimes ios native libmonosgen a gshell c o was built for newer ios version than being linked undefined symbols for architecture mini llvmonly pop lmf referenced from wrapper managed to native object icall wrapper mini llvmonly pop lmf intptr in system private corelib dll o ld symbol s not found for architecture i m attaching a test case download open test sh and change aot old and aot new to point to your local versions of the aot compilers in question run test sh echo old old nm old output system private corelib o grep mini llvmonly pop lmf true echo new new nm new output system private corelib o grep mini llvmonly pop lmf u mini llvmonly pop lmf t wrapper managed to native object icall wrapper mini llvmonly pop lmf intptr this shows that the new aot compiler emits mini llvmonly pop lmf while the old one doesn t cc steveisok
0
175,899
14,544,527,849
IssuesEvent
2020-12-15 18:18:39
imkhezar/prayertime-app
https://api.github.com/repos/imkhezar/prayertime-app
opened
add data dropdowns
documentation
##about changes ## for prayer time calcutions 0 - Shia Ithna-Ansari 1 - University of Islamic Sciences, Karachi 2 - Islamic Society of North America 3 - Muslim World League 4 - Umm Al-Qura University, Makkah 5 - Egyptian General Authority of Survey 7 - Institute of Geophysics, University of Tehran 8 - Gulf Region 9 - Kuwait 10 - Qatar 11 - Majlis Ugama Islam Singapura, Singapore 12 - Union Organization islamic de France 13 - Diyanet İşleri Başkanlığı, Turkey 14 - Spiritual Administration of Muslims of Russia ## for Jurstic setting 1-Hanfi 2-Shafi
1.0
add data dropdowns - ##about changes ## for prayer time calcutions 0 - Shia Ithna-Ansari 1 - University of Islamic Sciences, Karachi 2 - Islamic Society of North America 3 - Muslim World League 4 - Umm Al-Qura University, Makkah 5 - Egyptian General Authority of Survey 7 - Institute of Geophysics, University of Tehran 8 - Gulf Region 9 - Kuwait 10 - Qatar 11 - Majlis Ugama Islam Singapura, Singapore 12 - Union Organization islamic de France 13 - Diyanet İşleri Başkanlığı, Turkey 14 - Spiritual Administration of Muslims of Russia ## for Jurstic setting 1-Hanfi 2-Shafi
non_defect
add data dropdowns about changes for prayer time calcutions shia ithna ansari university of islamic sciences karachi islamic society of north america muslim world league umm al qura university makkah egyptian general authority of survey institute of geophysics university of tehran gulf region kuwait qatar majlis ugama islam singapura singapore union organization islamic de france diyanet i̇şleri başkanlığı turkey spiritual administration of muslims of russia for jurstic setting hanfi shafi
0
71,569
18,783,170,901
IssuesEvent
2021-11-08 09:22:13
spring-projects/spring-data-jdbc
https://api.github.com/repos/spring-projects/spring-data-jdbc
closed
OrderByClauseVisitor does not use fully qualified column names
type: enhancement in: selectbuilder
Hi, For queries with joins, we occasionally end up with situations where a column name becomes ambiguous and we need to qualify it with the table / alias - as an example, our hand-rolled SQL generated created the following SQL from our test samples: ```sql SELECT order_table.orderline AS "orderline", customer_table.customer_name AS "customerName", customer_address.street_name AS "customerAddress", warehouse_address.street_name AS "warehouseAddress" FROM order_table JOIN customer_table ON order_table.customer_id = customer_table.address_id JOIN address_table customer_address ON customer_table.address_id = customer_address.address_id JOIN address_table warehouse_address ON order_table.address_id = warehouse_address.address_id WHERE warehouse_address.street_name = :warehouse AND customer_table.customer_name = :customerName AND customer_address.street_name = :customerAddress ORDER BY customer_address.street_name ASC, warehouse_address.street_name ASC ``` When migrating our SQL generator to generate `Select` and use the `SelectRenderer`, we discovered that the generated `ORDER BY` clause became ` ORDER BY street_name ASC, street_name ASC`. This is ambiguous as `street_name` is defined from multiple sources (once from `customer_address` and once from `warehouse_address`). As a work around, I have migrated it to use the aliased columns, which mitigates the problem as long as the ORDER BY only references columns that are SELECT'ed. In at least PostgreSQL, you can include other columns in `ORDER BY`, so we would like this to be supported via Spring as well.
1.0
OrderByClauseVisitor does not use fully qualified column names - Hi, For queries with joins, we occasionally end up with situations where a column name becomes ambiguous and we need to qualify it with the table / alias - as an example, our hand-rolled SQL generated created the following SQL from our test samples: ```sql SELECT order_table.orderline AS "orderline", customer_table.customer_name AS "customerName", customer_address.street_name AS "customerAddress", warehouse_address.street_name AS "warehouseAddress" FROM order_table JOIN customer_table ON order_table.customer_id = customer_table.address_id JOIN address_table customer_address ON customer_table.address_id = customer_address.address_id JOIN address_table warehouse_address ON order_table.address_id = warehouse_address.address_id WHERE warehouse_address.street_name = :warehouse AND customer_table.customer_name = :customerName AND customer_address.street_name = :customerAddress ORDER BY customer_address.street_name ASC, warehouse_address.street_name ASC ``` When migrating our SQL generator to generate `Select` and use the `SelectRenderer`, we discovered that the generated `ORDER BY` clause became ` ORDER BY street_name ASC, street_name ASC`. This is ambiguous as `street_name` is defined from multiple sources (once from `customer_address` and once from `warehouse_address`). As a work around, I have migrated it to use the aliased columns, which mitigates the problem as long as the ORDER BY only references columns that are SELECT'ed. In at least PostgreSQL, you can include other columns in `ORDER BY`, so we would like this to be supported via Spring as well.
non_defect
orderbyclausevisitor does not use fully qualified column names hi for queries with joins we occasionally end up with situations where a column name becomes ambiguous and we need to qualify it with the table alias as an example our hand rolled sql generated created the following sql from our test samples sql select order table orderline as orderline customer table customer name as customername customer address street name as customeraddress warehouse address street name as warehouseaddress from order table join customer table on order table customer id customer table address id join address table customer address on customer table address id customer address address id join address table warehouse address on order table address id warehouse address address id where warehouse address street name warehouse and customer table customer name customername and customer address street name customeraddress order by customer address street name asc warehouse address street name asc when migrating our sql generator to generate select and use the selectrenderer we discovered that the generated order by clause became order by street name asc street name asc this is ambiguous as street name is defined from multiple sources once from customer address and once from warehouse address as a work around i have migrated it to use the aliased columns which mitigates the problem as long as the order by only references columns that are select ed in at least postgresql you can include other columns in order by so we would like this to be supported via spring as well
0
70,886
13,543,896,231
IssuesEvent
2020-09-16 19:43:03
pywbem/pywbemtools
https://api.github.com/repos/pywbem/pywbemtools
closed
Allow unsetting of general options in interactive mode
area: code discussion needed resolution: fixed type: enhancement
Today we can set general options like --certfile in interactive mode so that they modify the current connection but we cannot unset them, i.e. return them to the default value (The value used when the options is not included on the command line) because that capability does not exist with the click options. In interactive mode we only change those options that are specifically defined with the command (--certfile abc.pem) and do not change options that are not specified.. Click does not include the concept of an optional value on options that have a value component (ex. string) so you cannot do something like --certfile to tell pywbemcli that the option itself exists but the value is None. However, we can extend the string options so that the value "" is equivalent to None. In other words, inputting --certfile "" defines the option bur sets the value to None rather than to "" internally. I think we should do this but I don't think it is a requirement for Version 0.5.0. I propose it for version 0.6.0
1.0
Allow unsetting of general options in interactive mode - Today we can set general options like --certfile in interactive mode so that they modify the current connection but we cannot unset them, i.e. return them to the default value (The value used when the options is not included on the command line) because that capability does not exist with the click options. In interactive mode we only change those options that are specifically defined with the command (--certfile abc.pem) and do not change options that are not specified.. Click does not include the concept of an optional value on options that have a value component (ex. string) so you cannot do something like --certfile to tell pywbemcli that the option itself exists but the value is None. However, we can extend the string options so that the value "" is equivalent to None. In other words, inputting --certfile "" defines the option bur sets the value to None rather than to "" internally. I think we should do this but I don't think it is a requirement for Version 0.5.0. I propose it for version 0.6.0
non_defect
allow unsetting of general options in interactive mode today we can set general options like certfile in interactive mode so that they modify the current connection but we cannot unset them i e return them to the default value the value used when the options is not included on the command line because that capability does not exist with the click options in interactive mode we only change those options that are specifically defined with the command certfile abc pem and do not change options that are not specified click does not include the concept of an optional value on options that have a value component ex string so you cannot do something like certfile to tell pywbemcli that the option itself exists but the value is none however we can extend the string options so that the value is equivalent to none in other words inputting certfile defines the option bur sets the value to none rather than to internally i think we should do this but i don t think it is a requirement for version i propose it for version
0
1,064
2,594,525,520
IssuesEvent
2015-02-20 04:48:37
paulirish/mutation-summary
https://api.github.com/repos/paulirish/mutation-summary
opened
MutationObserver.takeRecords not implemented. Current changes cannot be reported.
auto-migrated Priority-Medium Type-Defect
``` Hello, MutationObserver work fine when I want to observe single level childLists. I am trying to convert a more complex extension to MutationSummary but for some reason I am not understanding it because it isn't working for me as expected. What I am trying to do is creating a Chrome Extension content script, which I can process "each" Google+ post. If you open up your Google+ Stream, I want the content script to read "each" card so I can process it (such as read the post, add a button next to the share button, etc). It works fine with the older MutationEvents DOMNodeInserted, but for some reason, I can't get it to work for MutationSummary. Here is my MutationSummary code, would appreciate any help! https://gist.github.com/2382261 You could download the files below into a folder and load it in an extension. Thanks, Mohamed Mansour ``` ----- Original issue reported on code.google.com by `mhm@chromium.org` on 14 Apr 2012 at 5:36 Attachments: * [manifest.json](https://storage.googleapis.com/google-code-attachments/mutation-summary/issue-4/comment-0/manifest.json) * [extended_share_injection.js](https://storage.googleapis.com/google-code-attachments/mutation-summary/issue-4/comment-0/extended_share_injection.js)
1.0
MutationObserver.takeRecords not implemented. Current changes cannot be reported. - ``` Hello, MutationObserver work fine when I want to observe single level childLists. I am trying to convert a more complex extension to MutationSummary but for some reason I am not understanding it because it isn't working for me as expected. What I am trying to do is creating a Chrome Extension content script, which I can process "each" Google+ post. If you open up your Google+ Stream, I want the content script to read "each" card so I can process it (such as read the post, add a button next to the share button, etc). It works fine with the older MutationEvents DOMNodeInserted, but for some reason, I can't get it to work for MutationSummary. Here is my MutationSummary code, would appreciate any help! https://gist.github.com/2382261 You could download the files below into a folder and load it in an extension. Thanks, Mohamed Mansour ``` ----- Original issue reported on code.google.com by `mhm@chromium.org` on 14 Apr 2012 at 5:36 Attachments: * [manifest.json](https://storage.googleapis.com/google-code-attachments/mutation-summary/issue-4/comment-0/manifest.json) * [extended_share_injection.js](https://storage.googleapis.com/google-code-attachments/mutation-summary/issue-4/comment-0/extended_share_injection.js)
defect
mutationobserver takerecords not implemented current changes cannot be reported hello mutationobserver work fine when i want to observe single level childlists i am trying to convert a more complex extension to mutationsummary but for some reason i am not understanding it because it isn t working for me as expected what i am trying to do is creating a chrome extension content script which i can process each google post if you open up your google stream i want the content script to read each card so i can process it such as read the post add a button next to the share button etc it works fine with the older mutationevents domnodeinserted but for some reason i can t get it to work for mutationsummary here is my mutationsummary code would appreciate any help you could download the files below into a folder and load it in an extension thanks mohamed mansour original issue reported on code google com by mhm chromium org on apr at attachments
1
72,999
24,398,701,713
IssuesEvent
2022-10-04 22:02:24
matrix-org/matrix-hookshot
https://api.github.com/repos/matrix-org/matrix-hookshot
closed
GitLab widget has checkbox without a label
T-Defect GitLab S-Minor Widgets / Provisioning
![image](https://user-images.githubusercontent.com/3271094/193629095-3711cccb-bf4b-40e7-9ab8-e04758015956.png) It's the "includeCommentBody" checkbox from https://github.com/matrix-org/matrix-hookshot/pull/500
1.0
GitLab widget has checkbox without a label - ![image](https://user-images.githubusercontent.com/3271094/193629095-3711cccb-bf4b-40e7-9ab8-e04758015956.png) It's the "includeCommentBody" checkbox from https://github.com/matrix-org/matrix-hookshot/pull/500
defect
gitlab widget has checkbox without a label it s the includecommentbody checkbox from
1
72,279
24,032,977,128
IssuesEvent
2022-09-15 16:28:28
vector-im/element-android
https://api.github.com/repos/vector-im/element-android
closed
Notifications do not show up in background
T-Defect
### Steps to reproduce Leave the element app closed while leaving the network connection on. ### Outcome When a new account is created on a homeserver on the element android app, it does not show notifications when the app is closed. However, when the app data is cleared, everything works fine. The app seems to stop checking for messages when closed and only refreshes messages when open. This issue is also being experienced by another colleague of mine since he created an account on a new homeserver. ### Your phone model Samsung Galaxy A12 ### Operating system version Android 11 ### Application version and app store Element 1.4.36 from google play store ### Homeserver ### Will you send logs? No ### Are you willing to provide a PR? No
1.0
Notifications do not show up in background - ### Steps to reproduce Leave the element app closed while leaving the network connection on. ### Outcome When a new account is created on a homeserver on the element android app, it does not show notifications when the app is closed. However, when the app data is cleared, everything works fine. The app seems to stop checking for messages when closed and only refreshes messages when open. This issue is also being experienced by another colleague of mine since he created an account on a new homeserver. ### Your phone model Samsung Galaxy A12 ### Operating system version Android 11 ### Application version and app store Element 1.4.36 from google play store ### Homeserver ### Will you send logs? No ### Are you willing to provide a PR? No
defect
notifications do not show up in background steps to reproduce leave the element app closed while leaving the network connection on outcome when a new account is created on a homeserver on the element android app it does not show notifications when the app is closed however when the app data is cleared everything works fine the app seems to stop checking for messages when closed and only refreshes messages when open this issue is also being experienced by another colleague of mine since he created an account on a new homeserver your phone model samsung galaxy operating system version android application version and app store element from google play store homeserver will you send logs no are you willing to provide a pr no
1
56,647
8,102,710,267
IssuesEvent
2018-08-13 03:44:49
processing/p5.js
https://api.github.com/repos/processing/p5.js
closed
reference items that need examples
area:documentation good first issue level:beginner mozsprint
[this wiki section](https://github.com/processing/p5.js/wiki/Inline-documentation#adding-example-code) contains info on how to add examples. anyone, please feel free to add to this list with reference entries that could use examples added. - [ ] https://p5js.org/reference/#/p5.MediaElement/connect - [ ] https://p5js.org/reference/#/p5.MediaElement/disconnect - [x] https://p5js.org/reference/#/p5.Graphics/remove - [x] https://p5js.org/reference/#/p5.PrintWriter/write - [x] https://p5js.org/reference/#/p5.PrintWriter/print - [x] https://p5js.org/reference/#/p5.PrintWriter/flush - [x] https://p5js.org/reference/#/p5.PrintWriter/close - [ ] https://p5js.org/reference/#/p5/setMoveThreshold - [ ] https://p5js.org/reference/#/p5/setShakeThreshold - [ ] https://p5js.org/reference/#/p5/save - [x] https://p5js.org/reference/#/p5.Table.js:397: method p5.Table.matchRow - [x] https://p5js.org/reference/#/p5.Table.js:637: method p5.Table.getColumnCount - [x] https://p5js.org/reference/#/p5.Table.js:647: method p5.Table.getRowCount - [x] https://p5js.org/reference/#/p5.Table.js:657: method p5.Table.removeTokens - [x] https://p5js.org/reference/#/p5.Table.js:706: method p5.Table.trim - [x] https://p5js.org/reference/#/p5.Table.js:907: method p5.Table.setString - [x] https://p5js.org/reference/#/p5.Table.js/getArray - [x] https://p5js.org/reference/#/p5.TableRow.js:43: method p5.TableRow.set - [x] https://p5js.org/reference/#/p5.TableRow.js:74: method p5.TableRow.setNum - [x] https://p5js.org/reference/#/p5.TableRow.js:89: method p5.TableRow.setString - [x] https://p5js.org/reference/#/p5.TableRow.js:104: method p5.TableRow.get - [x] https://p5js.org/reference/#/p5.TableRow/getNum - [x] https://p5js.org/reference/#/p5.TableRow/getString - [x] https://p5js.org/reference/#/p5.XML/addChild - [ ] https://p5js.org/reference/#/p5/orbitControl - [ ] https://p5js.org/reference/#/p5/loadShader - [ ] https://p5js.org/reference/#/p5/shader - [ ] https://p5js.org/reference/#/p5.Geometry/computeFaces - [ ] https://p5js.org/reference/#/p5.Geometry/computeNormals - [ ] https://p5js.org/reference/#/p5.Geometry/averageNormals - [ ] https://p5js.org/reference/#/p5.Geometry/averagePoleNormals - [ ] https://p5js.org/reference/#/p5.Geometry/normalize - [ ] https://p5js.org/reference/#/p5.RendererGL/beginShape - [x] https://p5js.org/reference/#/p5.RendererGL/vertex - [ ] https://p5js.org/reference/#/p5.RendererGL/get - [ ] https://p5js.org/reference/#/p5.RendererGL/loadPixels - [ ] https://p5js.org/reference/#/p5.Shader/setUniform - [ ] https://p5js.org/reference/#/p5.Texture/update - [ ] https://p5js.org/reference/#/p5.Texture/bindTexture - [ ] https://p5js.org/reference/#/p5.Texture/unbindTexture
1.0
reference items that need examples - [this wiki section](https://github.com/processing/p5.js/wiki/Inline-documentation#adding-example-code) contains info on how to add examples. anyone, please feel free to add to this list with reference entries that could use examples added. - [ ] https://p5js.org/reference/#/p5.MediaElement/connect - [ ] https://p5js.org/reference/#/p5.MediaElement/disconnect - [x] https://p5js.org/reference/#/p5.Graphics/remove - [x] https://p5js.org/reference/#/p5.PrintWriter/write - [x] https://p5js.org/reference/#/p5.PrintWriter/print - [x] https://p5js.org/reference/#/p5.PrintWriter/flush - [x] https://p5js.org/reference/#/p5.PrintWriter/close - [ ] https://p5js.org/reference/#/p5/setMoveThreshold - [ ] https://p5js.org/reference/#/p5/setShakeThreshold - [ ] https://p5js.org/reference/#/p5/save - [x] https://p5js.org/reference/#/p5.Table.js:397: method p5.Table.matchRow - [x] https://p5js.org/reference/#/p5.Table.js:637: method p5.Table.getColumnCount - [x] https://p5js.org/reference/#/p5.Table.js:647: method p5.Table.getRowCount - [x] https://p5js.org/reference/#/p5.Table.js:657: method p5.Table.removeTokens - [x] https://p5js.org/reference/#/p5.Table.js:706: method p5.Table.trim - [x] https://p5js.org/reference/#/p5.Table.js:907: method p5.Table.setString - [x] https://p5js.org/reference/#/p5.Table.js/getArray - [x] https://p5js.org/reference/#/p5.TableRow.js:43: method p5.TableRow.set - [x] https://p5js.org/reference/#/p5.TableRow.js:74: method p5.TableRow.setNum - [x] https://p5js.org/reference/#/p5.TableRow.js:89: method p5.TableRow.setString - [x] https://p5js.org/reference/#/p5.TableRow.js:104: method p5.TableRow.get - [x] https://p5js.org/reference/#/p5.TableRow/getNum - [x] https://p5js.org/reference/#/p5.TableRow/getString - [x] https://p5js.org/reference/#/p5.XML/addChild - [ ] https://p5js.org/reference/#/p5/orbitControl - [ ] https://p5js.org/reference/#/p5/loadShader - [ ] https://p5js.org/reference/#/p5/shader - [ ] https://p5js.org/reference/#/p5.Geometry/computeFaces - [ ] https://p5js.org/reference/#/p5.Geometry/computeNormals - [ ] https://p5js.org/reference/#/p5.Geometry/averageNormals - [ ] https://p5js.org/reference/#/p5.Geometry/averagePoleNormals - [ ] https://p5js.org/reference/#/p5.Geometry/normalize - [ ] https://p5js.org/reference/#/p5.RendererGL/beginShape - [x] https://p5js.org/reference/#/p5.RendererGL/vertex - [ ] https://p5js.org/reference/#/p5.RendererGL/get - [ ] https://p5js.org/reference/#/p5.RendererGL/loadPixels - [ ] https://p5js.org/reference/#/p5.Shader/setUniform - [ ] https://p5js.org/reference/#/p5.Texture/update - [ ] https://p5js.org/reference/#/p5.Texture/bindTexture - [ ] https://p5js.org/reference/#/p5.Texture/unbindTexture
non_defect
reference items that need examples contains info on how to add examples anyone please feel free to add to this list with reference entries that could use examples added method table matchrow method table getcolumncount method table getrowcount method table removetokens method table trim method table setstring method tablerow set method tablerow setnum method tablerow setstring method tablerow get
0
61,542
17,023,720,385
IssuesEvent
2021-07-03 03:29:00
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Washington, DC county is wrong
Component: nominatim Priority: minor Resolution: worksforme Type: defect
**[Submitted to the original trac issue database at 2.42pm, Monday, 13th June 2011]** When you search for Washington, DC it says it's in Fairfax County. This is incorrect, it's not technically in a county, but most people say it's Washington County.
1.0
Washington, DC county is wrong - **[Submitted to the original trac issue database at 2.42pm, Monday, 13th June 2011]** When you search for Washington, DC it says it's in Fairfax County. This is incorrect, it's not technically in a county, but most people say it's Washington County.
defect
washington dc county is wrong when you search for washington dc it says it s in fairfax county this is incorrect it s not technically in a county but most people say it s washington county
1
182,238
14,908,118,674
IssuesEvent
2021-01-22 05:03:17
ibm-garage-cloud/planning
https://api.github.com/repos/ibm-garage-cloud/planning
closed
Manual CLI steps for `pipeline` command for Tekton are out of date
bug documentation tekton
The equivalent manual steps for the `pipeline` command on Tekton no longer match the current actions that are taken by the CLI, particularly as it relates to the Webhook creation.
1.0
Manual CLI steps for `pipeline` command for Tekton are out of date - The equivalent manual steps for the `pipeline` command on Tekton no longer match the current actions that are taken by the CLI, particularly as it relates to the Webhook creation.
non_defect
manual cli steps for pipeline command for tekton are out of date the equivalent manual steps for the pipeline command on tekton no longer match the current actions that are taken by the cli particularly as it relates to the webhook creation
0
55,908
14,789,629,055
IssuesEvent
2021-01-12 10:50:23
ESA-VirES/WebClient-Framework
https://api.github.com/repos/ESA-VirES/WebClient-Framework
closed
AV: colormaps displays NaN values
defect
The 3rd variable color-mapping in the AV 2D plots maps NaN values to the lower bound of the color range: ![image](https://user-images.githubusercontent.com/4050019/103218028-432e0980-491a-11eb-9c50-269cd7f082cd.png) This is incorrect and misleading. Nothing (or fully transparent point) should be displayed for the mapped NaN values. Saved workspace: [colormap_with_NaN_values.json.gz](https://github.com/ESA-VirES/WebClient-Framework/files/5747496/colormap_with_NaN_values.json.gz)
1.0
AV: colormaps displays NaN values - The 3rd variable color-mapping in the AV 2D plots maps NaN values to the lower bound of the color range: ![image](https://user-images.githubusercontent.com/4050019/103218028-432e0980-491a-11eb-9c50-269cd7f082cd.png) This is incorrect and misleading. Nothing (or fully transparent point) should be displayed for the mapped NaN values. Saved workspace: [colormap_with_NaN_values.json.gz](https://github.com/ESA-VirES/WebClient-Framework/files/5747496/colormap_with_NaN_values.json.gz)
defect
av colormaps displays nan values the variable color mapping in the av plots maps nan values to the lower bound of the color range this is incorrect and misleading nothing or fully transparent point should be displayed for the mapped nan values saved workspace
1
29,036
5,511,780,878
IssuesEvent
2017-03-17 06:49:21
bridgedotnet/Bridge
https://api.github.com/repos/bridgedotnet/Bridge
closed
Array out of bounds to throw IndexOutOfRangeException
defect duplicate
### Steps To Reproduce https://deck.net/22d6ce63d0ec81fdbf264ee493c0589b https://dotnetfiddle.net/WB0HTZ ```c# public class Program { public static void Main() { var arr = new int[5] { 0,1,2,3,4 }; var x = arr[6]; Console.WriteLine(x); } } ``` ### Expected Result ```js System.IndexOutOfRangeException: Index was outside the bounds of the array. ``` ### Actual Result ```js undefined ``` ## See Also * https://forums.bridge.net/forum/community/help/3658-bound-checked-array-access
1.0
Array out of bounds to throw IndexOutOfRangeException - ### Steps To Reproduce https://deck.net/22d6ce63d0ec81fdbf264ee493c0589b https://dotnetfiddle.net/WB0HTZ ```c# public class Program { public static void Main() { var arr = new int[5] { 0,1,2,3,4 }; var x = arr[6]; Console.WriteLine(x); } } ``` ### Expected Result ```js System.IndexOutOfRangeException: Index was outside the bounds of the array. ``` ### Actual Result ```js undefined ``` ## See Also * https://forums.bridge.net/forum/community/help/3658-bound-checked-array-access
defect
array out of bounds to throw indexoutofrangeexception steps to reproduce c public class program public static void main var arr new int var x arr console writeline x expected result js system indexoutofrangeexception index was outside the bounds of the array actual result js undefined see also
1
72,986
19,540,336,123
IssuesEvent
2021-12-31 19:49:02
flora-pm/flora-server
https://api.github.com/repos/flora-pm/flora-server
closed
nix-build re-builds everything twice
build:nix
I'm getting this output when using `nix-build`: <details> ```bash Preprocessing library for flora-0.0.1.0.. Building library for flora-0.0.1.0.. [ 1 of 26] Compiling Data.Aeson.Orphans [ 2 of 26] Compiling Flora.Model.Category [ 3 of 26] Compiling Flora.Model.Package.Orphans [ 4 of 26] Compiling Flora.Model.Release.Orphans [ 5 of 26] Compiling Flora.Model.User [ 6 of 26] Compiling Flora.Model.Package.Types [ 7 of 26] Compiling Flora.Model.Package [ 8 of 26] Compiling Flora.Model.Release [ 9 of 26] Compiling Flora.Model.Requirement [10 of 26] Compiling Flora.Model.Organisation [11 of 26] Compiling Flora.Environment [12 of 26] Compiling Flora.Publish [13 of 26] Compiling FloraWeb.Server.Auth [14 of 26] Compiling FloraWeb.Server.Logging.Metrics [15 of 26] Compiling FloraWeb.Server.Logging.Tracing [16 of 26] Compiling FloraWeb.Templates.Types [17 of 26] Compiling FloraWeb.Templates.Pages.Home [18 of 26] Compiling FloraWeb.Templates.Layout.App [19 of 26] Compiling FloraWeb.Templates [20 of 26] Compiling FloraWeb.Templates.Error [21 of 26] Compiling FloraWeb.Types [22 of 26] Compiling Lucid.Orphans [23 of 26] Compiling FloraWeb.Templates.Pages.Packages [24 of 26] Compiling FloraWeb.Server.Pages.Packages [25 of 26] Compiling FloraWeb.Server.Pages [26 of 26] Compiling FloraWeb.Server [ 1 of 26] Compiling Data.Aeson.Orphans [ 2 of 26] Compiling Flora.Model.Category [ 3 of 26] Compiling Flora.Model.Package.Orphans [ 4 of 26] Compiling Flora.Model.Release.Orphans [ 5 of 26] Compiling Flora.Model.User [ 6 of 26] Compiling Flora.Model.Package.Types [ 7 of 26] Compiling Flora.Model.Package [ 8 of 26] Compiling Flora.Model.Release [ 9 of 26] Compiling Flora.Model.Requirement [10 of 26] Compiling Flora.Model.Organisation [11 of 26] Compiling Flora.Environment [12 of 26] Compiling Flora.Publish [13 of 26] Compiling FloraWeb.Server.Auth [14 of 26] Compiling FloraWeb.Server.Logging.Metrics [15 of 26] Compiling FloraWeb.Server.Logging.Tracing [16 of 26] Compiling FloraWeb.Templates.Types [17 of 26] Compiling FloraWeb.Templates.Pages.Home [18 of 26] Compiling FloraWeb.Templates.Layout.App [19 of 26] Compiling FloraWeb.Templates [20 of 26] Compiling FloraWeb.Templates.Error [21 of 26] Compiling FloraWeb.Types [22 of 26] Compiling Lucid.Orphans [23 of 26] Compiling FloraWeb.Templates.Pages.Packages [24 of 26] Compiling FloraWeb.Server.Pages.Packages [25 of 26] Compiling FloraWeb.Server.Pages [26 of 26] Compiling FloraWeb.Server Preprocessing executable 'flora-server' for flora-0.0.1.0.. Building executable 'flora-server' for flora-0.0.1.0.. ``` </details> Two remarks: 1. It builds everything twice 2. It always rebuilds everything @jappeace Do you know anything that could be done on those two fronts?
1.0
nix-build re-builds everything twice - I'm getting this output when using `nix-build`: <details> ```bash Preprocessing library for flora-0.0.1.0.. Building library for flora-0.0.1.0.. [ 1 of 26] Compiling Data.Aeson.Orphans [ 2 of 26] Compiling Flora.Model.Category [ 3 of 26] Compiling Flora.Model.Package.Orphans [ 4 of 26] Compiling Flora.Model.Release.Orphans [ 5 of 26] Compiling Flora.Model.User [ 6 of 26] Compiling Flora.Model.Package.Types [ 7 of 26] Compiling Flora.Model.Package [ 8 of 26] Compiling Flora.Model.Release [ 9 of 26] Compiling Flora.Model.Requirement [10 of 26] Compiling Flora.Model.Organisation [11 of 26] Compiling Flora.Environment [12 of 26] Compiling Flora.Publish [13 of 26] Compiling FloraWeb.Server.Auth [14 of 26] Compiling FloraWeb.Server.Logging.Metrics [15 of 26] Compiling FloraWeb.Server.Logging.Tracing [16 of 26] Compiling FloraWeb.Templates.Types [17 of 26] Compiling FloraWeb.Templates.Pages.Home [18 of 26] Compiling FloraWeb.Templates.Layout.App [19 of 26] Compiling FloraWeb.Templates [20 of 26] Compiling FloraWeb.Templates.Error [21 of 26] Compiling FloraWeb.Types [22 of 26] Compiling Lucid.Orphans [23 of 26] Compiling FloraWeb.Templates.Pages.Packages [24 of 26] Compiling FloraWeb.Server.Pages.Packages [25 of 26] Compiling FloraWeb.Server.Pages [26 of 26] Compiling FloraWeb.Server [ 1 of 26] Compiling Data.Aeson.Orphans [ 2 of 26] Compiling Flora.Model.Category [ 3 of 26] Compiling Flora.Model.Package.Orphans [ 4 of 26] Compiling Flora.Model.Release.Orphans [ 5 of 26] Compiling Flora.Model.User [ 6 of 26] Compiling Flora.Model.Package.Types [ 7 of 26] Compiling Flora.Model.Package [ 8 of 26] Compiling Flora.Model.Release [ 9 of 26] Compiling Flora.Model.Requirement [10 of 26] Compiling Flora.Model.Organisation [11 of 26] Compiling Flora.Environment [12 of 26] Compiling Flora.Publish [13 of 26] Compiling FloraWeb.Server.Auth [14 of 26] Compiling FloraWeb.Server.Logging.Metrics [15 of 26] Compiling FloraWeb.Server.Logging.Tracing [16 of 26] Compiling FloraWeb.Templates.Types [17 of 26] Compiling FloraWeb.Templates.Pages.Home [18 of 26] Compiling FloraWeb.Templates.Layout.App [19 of 26] Compiling FloraWeb.Templates [20 of 26] Compiling FloraWeb.Templates.Error [21 of 26] Compiling FloraWeb.Types [22 of 26] Compiling Lucid.Orphans [23 of 26] Compiling FloraWeb.Templates.Pages.Packages [24 of 26] Compiling FloraWeb.Server.Pages.Packages [25 of 26] Compiling FloraWeb.Server.Pages [26 of 26] Compiling FloraWeb.Server Preprocessing executable 'flora-server' for flora-0.0.1.0.. Building executable 'flora-server' for flora-0.0.1.0.. ``` </details> Two remarks: 1. It builds everything twice 2. It always rebuilds everything @jappeace Do you know anything that could be done on those two fronts?
non_defect
nix build re builds everything twice i m getting this output when using nix build bash preprocessing library for flora building library for flora compiling data aeson orphans compiling flora model category compiling flora model package orphans compiling flora model release orphans compiling flora model user compiling flora model package types compiling flora model package compiling flora model release compiling flora model requirement compiling flora model organisation compiling flora environment compiling flora publish compiling floraweb server auth compiling floraweb server logging metrics compiling floraweb server logging tracing compiling floraweb templates types compiling floraweb templates pages home compiling floraweb templates layout app compiling floraweb templates compiling floraweb templates error compiling floraweb types compiling lucid orphans compiling floraweb templates pages packages compiling floraweb server pages packages compiling floraweb server pages compiling floraweb server compiling data aeson orphans compiling flora model category compiling flora model package orphans compiling flora model release orphans compiling flora model user compiling flora model package types compiling flora model package compiling flora model release compiling flora model requirement compiling flora model organisation compiling flora environment compiling flora publish compiling floraweb server auth compiling floraweb server logging metrics compiling floraweb server logging tracing compiling floraweb templates types compiling floraweb templates pages home compiling floraweb templates layout app compiling floraweb templates compiling floraweb templates error compiling floraweb types compiling lucid orphans compiling floraweb templates pages packages compiling floraweb server pages packages compiling floraweb server pages compiling floraweb server preprocessing executable flora server for flora building executable flora server for flora two remarks it builds everything twice it always rebuilds everything jappeace do you know anything that could be done on those two fronts
0
58,271
16,458,444,970
IssuesEvent
2021-05-21 15:27:22
department-of-veterans-affairs/va.gov-team
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
opened
508-defect-2 [SCREENREADER]: Alert icon in applications in progress cards must have alt text
508-defect-2 508/Accessibility
# [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) <!-- Enter an issue title using the format [ERROR TYPE]: Brief description of the problem --- [SCREENREADER]: Edit buttons need aria-label for context [KEYBOARD]: Add another user link will not receive keyboard focus [AXE-CORE]: Heading levels should increase by one [COGNITION]: Error messages should be more specific [COLOR]: Blue button on blue background does not have sufficient contrast ratio --- --> <!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. --> ## Feedback framework - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** Josh ## User Story or Problem Statement As a screen reader user, I want to know if something is important or needs my attention if it has a visual warning icon. ## Details Currently the black exclamation icon does not have any alternative text to provide screen reader users an equivalent experience to sighted users. This can be easily addressed by adding in `<span class="sr-only">Alert: </span>` which I believe is the current method used for these icon fonts. ## Acceptance Criteria - [ ] Add `<span class="sr-only">Alert: </span>` after the alert icon ## Steps to Recreate Log in as staging user 10 and inspect the alert icon, confirm there's no alt text on or around it ## Proposed Solution (if known) Add `<span class="sr-only">Alert: </span>` after the alert icon ## Screenshots or Trace Logs https://user-images.githubusercontent.com/14154792/119161523-6a9b8500-ba27-11eb-9398-5586b3880c55.mov
1.0
508-defect-2 [SCREENREADER]: Alert icon in applications in progress cards must have alt text - # [508-defect-2](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-2) <!-- Enter an issue title using the format [ERROR TYPE]: Brief description of the problem --- [SCREENREADER]: Edit buttons need aria-label for context [KEYBOARD]: Add another user link will not receive keyboard focus [AXE-CORE]: Heading levels should increase by one [COGNITION]: Error messages should be more specific [COLOR]: Blue button on blue background does not have sufficient contrast ratio --- --> <!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. --> ## Feedback framework - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Definition of done 1. Review and acknowledge feedback. 1. Fix and/or document decisions made. 1. Accessibility specialist will close ticket after reviewing documented decisions / validating fix. ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** Josh ## User Story or Problem Statement As a screen reader user, I want to know if something is important or needs my attention if it has a visual warning icon. ## Details Currently the black exclamation icon does not have any alternative text to provide screen reader users an equivalent experience to sighted users. This can be easily addressed by adding in `<span class="sr-only">Alert: </span>` which I believe is the current method used for these icon fonts. ## Acceptance Criteria - [ ] Add `<span class="sr-only">Alert: </span>` after the alert icon ## Steps to Recreate Log in as staging user 10 and inspect the alert icon, confirm there's no alt text on or around it ## Proposed Solution (if known) Add `<span class="sr-only">Alert: </span>` after the alert icon ## Screenshots or Trace Logs https://user-images.githubusercontent.com/14154792/119161523-6a9b8500-ba27-11eb-9398-5586b3880c55.mov
defect
defect alert icon in applications in progress cards must have alt text enter an issue title using the format brief description of the problem edit buttons need aria label for context add another user link will not receive keyboard focus heading levels should increase by one error messages should be more specific blue button on blue background does not have sufficient contrast ratio feedback framework ❗️ must for if the feedback must be applied ⚠️ should if the feedback is best practice ✔️ consider for suggestions enhancements definition of done review and acknowledge feedback fix and or document decisions made accessibility specialist will close ticket after reviewing documented decisions validating fix point of contact vfs point of contact josh user story or problem statement as a screen reader user i want to know if something is important or needs my attention if it has a visual warning icon details currently the black exclamation icon does not have any alternative text to provide screen reader users an equivalent experience to sighted users this can be easily addressed by adding in alert which i believe is the current method used for these icon fonts acceptance criteria add alert after the alert icon steps to recreate log in as staging user and inspect the alert icon confirm there s no alt text on or around it proposed solution if known add alert after the alert icon screenshots or trace logs
1
12,375
2,694,263,775
IssuesEvent
2015-04-01 19:16:18
google/google-api-go-client
https://api.github.com/repos/google/google-api-go-client
opened
Example ignores error
new priority-medium type-defect
**n13m3y3r** on 12 Mar 2013 at 12:26: ``` Might be wise to not teach people to ignore errors: service, _ := compute.New(client) projectId := argv[0] instanceName := argv[1] From: http://code.google.com/p/google-api-go-client/source/browse/examples/compute.go ```
1.0
Example ignores error - **n13m3y3r** on 12 Mar 2013 at 12:26: ``` Might be wise to not teach people to ignore errors: service, _ := compute.New(client) projectId := argv[0] instanceName := argv[1] From: http://code.google.com/p/google-api-go-client/source/browse/examples/compute.go ```
defect
example ignores error on mar at might be wise to not teach people to ignore errors service compute new client projectid argv instancename argv from
1
37,243
8,306,386,635
IssuesEvent
2018-09-22 18:10:58
umple/umple
https://api.github.com/repos/umple/umple
closed
An int attribute starting with the name 'port' cannot be created
Diffic-VEasy Priority-Low Status-Accepted Type-Defect
Originally reported on Google Code with ID 648 --- **What steps will reproduce the problem?** 1. declare an int with the name "portNumber" --> "int portNumber;" **What is the expected output? What do you see instead?** And int attribute in my class. Instead, I get the warning: Warning on line 3 : Feature under development. 'int' found and ignored. processed as: '{1}'. More information (9999) **What version of the product are you using? On what operating system?** Umple Online, accessed Oct 27, 2014 at 10:30PM. OS Windows 7 SP1, using Chrome. **Please provide any additional information below.** Seems to work with "int port_number;" but not "int portNumber;" --- Reported by `alex@snowycloud.com` on 2014-10-28 02:58:00
1.0
An int attribute starting with the name 'port' cannot be created - Originally reported on Google Code with ID 648 --- **What steps will reproduce the problem?** 1. declare an int with the name "portNumber" --> "int portNumber;" **What is the expected output? What do you see instead?** And int attribute in my class. Instead, I get the warning: Warning on line 3 : Feature under development. 'int' found and ignored. processed as: '{1}'. More information (9999) **What version of the product are you using? On what operating system?** Umple Online, accessed Oct 27, 2014 at 10:30PM. OS Windows 7 SP1, using Chrome. **Please provide any additional information below.** Seems to work with "int port_number;" but not "int portNumber;" --- Reported by `alex@snowycloud.com` on 2014-10-28 02:58:00
defect
an int attribute starting with the name port cannot be created originally reported on google code with id what steps will reproduce the problem declare an int with the name portnumber int portnumber what is the expected output what do you see instead and int attribute in my class instead i get the warning warning on line feature under development int found and ignored processed as more information what version of the product are you using on what operating system umple online accessed oct at os windows using chrome please provide any additional information below seems to work with int port number but not int portnumber reported by alex snowycloud com on
1
21,808
7,085,766,405
IssuesEvent
2018-01-11 12:13:15
typelevel/cats
https://api.github.com/repos/typelevel/cats
closed
Preparations for sbt 1.0.0
build in progress
Over the last few days I started upgrading some sbt plugins as preparations for upgrading to sbt 1.0.0. This issue lists the plugins that need to be upgraded and tracks the progress of this effort: - [x] partial-unification #1842 - [x] sbt-coursier #1825 - [x] sbt-doctest #1821 - [x] sbt-ghpages #1852 - [x] sbt-git #1849 - [x] sbt-jmh #1828 - [x] sbt-microsites #1918 - [x] sbt-mima-plugin #1824 - [x] sbt-pgp #1860 - [x] sbt-release #1829 - [x] sbt-scoverage #1861 - [x] sbt-sonatype #1859 - [x] sbt-unidoc #1843 - [x] scalastyle-sbt-plugin #1839 build.sbt changes: - [x] curly braces for disabling tasks #1876 - [x] add val for "compile-time" configuration #1889
1.0
Preparations for sbt 1.0.0 - Over the last few days I started upgrading some sbt plugins as preparations for upgrading to sbt 1.0.0. This issue lists the plugins that need to be upgraded and tracks the progress of this effort: - [x] partial-unification #1842 - [x] sbt-coursier #1825 - [x] sbt-doctest #1821 - [x] sbt-ghpages #1852 - [x] sbt-git #1849 - [x] sbt-jmh #1828 - [x] sbt-microsites #1918 - [x] sbt-mima-plugin #1824 - [x] sbt-pgp #1860 - [x] sbt-release #1829 - [x] sbt-scoverage #1861 - [x] sbt-sonatype #1859 - [x] sbt-unidoc #1843 - [x] scalastyle-sbt-plugin #1839 build.sbt changes: - [x] curly braces for disabling tasks #1876 - [x] add val for "compile-time" configuration #1889
non_defect
preparations for sbt over the last few days i started upgrading some sbt plugins as preparations for upgrading to sbt this issue lists the plugins that need to be upgraded and tracks the progress of this effort partial unification sbt coursier sbt doctest sbt ghpages sbt git sbt jmh sbt microsites sbt mima plugin sbt pgp sbt release sbt scoverage sbt sonatype sbt unidoc scalastyle sbt plugin build sbt changes curly braces for disabling tasks add val for compile time configuration
0
392,285
26,933,170,872
IssuesEvent
2023-02-07 18:21:19
cal-itp/benefits
https://api.github.com/repos/cal-itp/benefits
closed
Include data storage in the diagram(s)
documentation
We received [a request from Gillian](https://cal-itp.slack.com/archives/C037Y3UE71P/p1675211759085269?thread_ts=1675208291.987439&cid=C037Y3UE71P): > can we update the drawing to clarify that the data is not stored, and is in the customer's browser? ## Acceptance Criteria <!-- Remember to consider edge cases --> - [ ] Clarify what data is stored where, graphically ## Additional context https://mermaid.js.org/syntax/flowchart.html#a-node-in-a-cylindrical-shape may be a good way to represent this.
1.0
Include data storage in the diagram(s) - We received [a request from Gillian](https://cal-itp.slack.com/archives/C037Y3UE71P/p1675211759085269?thread_ts=1675208291.987439&cid=C037Y3UE71P): > can we update the drawing to clarify that the data is not stored, and is in the customer's browser? ## Acceptance Criteria <!-- Remember to consider edge cases --> - [ ] Clarify what data is stored where, graphically ## Additional context https://mermaid.js.org/syntax/flowchart.html#a-node-in-a-cylindrical-shape may be a good way to represent this.
non_defect
include data storage in the diagram s we received can we update the drawing to clarify that the data is not stored and is in the customer s browser acceptance criteria clarify what data is stored where graphically additional context may be a good way to represent this
0
33,513
7,137,065,451
IssuesEvent
2018-01-23 09:43:08
opencaching/opencaching-pl
https://api.github.com/repos/opencaching/opencaching-pl
opened
mini-map at viewcache page doesn't work
Component_Cache Priority_High Type_Defect
from oc.pl forum > > autor: parlando » wtorek, 23 stycznia 2018, 10:28 > Po kliknięciu na mapę statyczną na stronie skrzynki wyświetla się puste okno bez mapy.
1.0
mini-map at viewcache page doesn't work - from oc.pl forum > > autor: parlando » wtorek, 23 stycznia 2018, 10:28 > Po kliknięciu na mapę statyczną na stronie skrzynki wyświetla się puste okno bez mapy.
defect
mini map at viewcache page doesn t work from oc pl forum autor parlando » wtorek stycznia po kliknięciu na mapę statyczną na stronie skrzynki wyświetla się puste okno bez mapy
1
1,401
2,603,847,185
IssuesEvent
2015-02-24 18:16:15
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳单纯疱疹怎么治
auto-migrated Priority-Medium Type-Defect
``` 沈阳单纯疱疹怎么治〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:15
1.0
沈阳单纯疱疹怎么治 - ``` 沈阳单纯疱疹怎么治〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:15
defect
沈阳单纯疱疹怎么治 沈阳单纯疱疹怎么治〓沈陽軍區政治部醫院性病〓tel: 〓 , 。位� �� 。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 original issue reported on code google com by gmail com on jun at
1
137,134
11,100,746,228
IssuesEvent
2019-12-16 19:53:32
cerberustesting/cerberus-source
https://api.github.com/repos/cerberustesting/cerberus-source
closed
Add field "Project" to test case header
Nat : question Perim : GUITest Prio : 2 normal
Hi, Field "Project" is still present on table testcase, page /Project.jsp is still active and field is present on the page /TestCaseList.jsp filters but the field is no longer present on the test case header (and therefor cannot be changed/added or removed). Would it be possible to add it again on the test case header? This field is very helpful to keep track of some test case creation purposes (adding back this field would avoid create sticker to identify project and is transversal to all systems). Thank in advance.
1.0
Add field "Project" to test case header - Hi, Field "Project" is still present on table testcase, page /Project.jsp is still active and field is present on the page /TestCaseList.jsp filters but the field is no longer present on the test case header (and therefor cannot be changed/added or removed). Would it be possible to add it again on the test case header? This field is very helpful to keep track of some test case creation purposes (adding back this field would avoid create sticker to identify project and is transversal to all systems). Thank in advance.
non_defect
add field project to test case header hi field project is still present on table testcase page project jsp is still active and field is present on the page testcaselist jsp filters but the field is no longer present on the test case header and therefor cannot be changed added or removed would it be possible to add it again on the test case header this field is very helpful to keep track of some test case creation purposes adding back this field would avoid create sticker to identify project and is transversal to all systems thank in advance
0
374
5,887,200,403
IssuesEvent
2017-05-17 06:36:34
brianjking/homeassistant-config
https://api.github.com/repos/brianjking/homeassistant-config
closed
New Motion Sensor for Living Room (New Hardware & Automations Required)
automation enhancement help wanted in-progress
- Turn on `light.tribot` and `light.couchbot` when motion sensor triggered - Turn off `light.tribot` and `light.couchbot` after X minutes if no one is home. - Keep `light.tribot` and `light.couchbot` on when `Brian` and/or `Kinna` is home.
1.0
New Motion Sensor for Living Room (New Hardware & Automations Required) - - Turn on `light.tribot` and `light.couchbot` when motion sensor triggered - Turn off `light.tribot` and `light.couchbot` after X minutes if no one is home. - Keep `light.tribot` and `light.couchbot` on when `Brian` and/or `Kinna` is home.
non_defect
new motion sensor for living room new hardware automations required turn on light tribot and light couchbot when motion sensor triggered turn off light tribot and light couchbot after x minutes if no one is home keep light tribot and light couchbot on when brian and or kinna is home
0
4,883
2,610,159,627
IssuesEvent
2015-02-26 18:50:39
chrsmith/republic-at-war
https://api.github.com/repos/chrsmith/republic-at-war
closed
Graphics Glitch
auto-migrated Priority-Medium Type-Defect
``` VSD has wrong icon.. check to see if tech tree using correct VSD code or stock eaw unit. ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 31 Jan 2011 at 1:35
1.0
Graphics Glitch - ``` VSD has wrong icon.. check to see if tech tree using correct VSD code or stock eaw unit. ``` ----- Original issue reported on code.google.com by `z3r0...@gmail.com` on 31 Jan 2011 at 1:35
defect
graphics glitch vsd has wrong icon check to see if tech tree using correct vsd code or stock eaw unit original issue reported on code google com by gmail com on jan at
1
346,004
30,858,629,213
IssuesEvent
2023-08-02 23:34:43
microsoft/AzureStorageExplorer
https://api.github.com/repos/microsoft/AzureStorageExplorer
closed
An .opus file will be previewed in Storage Explorer instead of being downloaded if double click it and set the setting 'Open Operation' to 'Preview'
:heavy_check_mark: merged 🧪 testing :gear: blobs :beetle: regression :gear: adls gen2
**Storage Explorer Version**: 1.31.0-dev **Build Number**: 20230720.3 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 20.04/MacOS Ventura 13.4.1 (Apple M1 Pro) **Architecture**: x64 **How Found**: Ad-hoc testing **Regression From**: Previous release (1.30.1) ## Steps to Reproduce ## 1. Go to 'Settings -> Data Explorers'. 2. Set the setting 'Open Operation' to 'Preview'. 3. Expand one storage account -> Blob Containers. 4. Create a blob container -> Upload one .opus file -> Double click the file. 5. Check whether Storage Explorer will download the file. ## Expected Experience ## Storage Explorer will download the file. ## Actual Experience ## Storage Explorer will try to preview the file. ![image](https://github.com/microsoft/AzureStorageExplorer/assets/41351993/aa580c8a-d215-4af9-a744-eb8cb21c8fce) ## Additional Context ## This issue doesn't reproduce for files under file shares.
1.0
An .opus file will be previewed in Storage Explorer instead of being downloaded if double click it and set the setting 'Open Operation' to 'Preview' - **Storage Explorer Version**: 1.31.0-dev **Build Number**: 20230720.3 **Branch**: main **Platform/OS**: Windows 10/Linux Ubuntu 20.04/MacOS Ventura 13.4.1 (Apple M1 Pro) **Architecture**: x64 **How Found**: Ad-hoc testing **Regression From**: Previous release (1.30.1) ## Steps to Reproduce ## 1. Go to 'Settings -> Data Explorers'. 2. Set the setting 'Open Operation' to 'Preview'. 3. Expand one storage account -> Blob Containers. 4. Create a blob container -> Upload one .opus file -> Double click the file. 5. Check whether Storage Explorer will download the file. ## Expected Experience ## Storage Explorer will download the file. ## Actual Experience ## Storage Explorer will try to preview the file. ![image](https://github.com/microsoft/AzureStorageExplorer/assets/41351993/aa580c8a-d215-4af9-a744-eb8cb21c8fce) ## Additional Context ## This issue doesn't reproduce for files under file shares.
non_defect
an opus file will be previewed in storage explorer instead of being downloaded if double click it and set the setting open operation to preview storage explorer version dev build number branch main platform os windows linux ubuntu macos ventura apple pro architecture how found ad hoc testing regression from previous release steps to reproduce go to settings data explorers set the setting open operation to preview expand one storage account blob containers create a blob container upload one opus file double click the file check whether storage explorer will download the file expected experience storage explorer will download the file actual experience storage explorer will try to preview the file additional context this issue doesn t reproduce for files under file shares
0
195,670
15,532,029,347
IssuesEvent
2021-03-14 03:05:22
PlasmaPy/PlasmaPy
https://api.github.com/repos/PlasmaPy/PlasmaPy
closed
Document attribute `is_uniform` for AbstractGrid
Documentation
@pheuer It appears that the `is_uniform` attribute on `AbstractGrid` is semi-public. How do you feel about making this an actual property of the the class so it appears in the RTD documentation?
1.0
Document attribute `is_uniform` for AbstractGrid - @pheuer It appears that the `is_uniform` attribute on `AbstractGrid` is semi-public. How do you feel about making this an actual property of the the class so it appears in the RTD documentation?
non_defect
document attribute is uniform for abstractgrid pheuer it appears that the is uniform attribute on abstractgrid is semi public how do you feel about making this an actual property of the the class so it appears in the rtd documentation
0
4,001
3,285,131,191
IssuesEvent
2015-10-28 19:15:00
openshift/origin
https://api.github.com/repos/openshift/origin
closed
Cannot create image streams with long names
component/build priority/P2
``` $ oc new-build -n demo -D $'FROM xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy\nRUN yum install -y httpd' W1008 13:02:37.043229 28334 newapp.go:511] Could not find an ImageStream match for "xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy". Make sure that a Docker image with that tag is available on the node for the build to succeed. Error: ImageStream "xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx" is invalid: [metadata.labels: invalid value 'xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx', Details: must have at most 63 characters, matching regex (([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?: e.g. "MyValue" or "", metadata.name: invalid value 'xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx', Details: 'namespace/name' cannot be longer than 255 characters] Error: BuildConfig "xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx" is invalid: metadata.labels: invalid value 'xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx', Details: must have at most 63 characters, matching regex (([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?: e.g. "MyValue" or "" ``` Seems that the limit used to be higher than 63 chars. Strangely, if the name is made of a single char, it gets truncated: ``` $ oc new-build -n demo -D $'FROM xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' W1008 13:06:47.515193 28465 newapp.go:511] Could not find an ImageStream match for "docker.io/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:latest". Make sure that a Docker image with that ta g is available on the node for the build to succeed. imagestreams/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx buildconfigs/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Build configuration "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" created and build triggered. Run 'oc status' to check the progress. ``` @csrwng FYI
1.0
Cannot create image streams with long names - ``` $ oc new-build -n demo -D $'FROM xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy\nRUN yum install -y httpd' W1008 13:02:37.043229 28334 newapp.go:511] Could not find an ImageStream match for "xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy". Make sure that a Docker image with that tag is available on the node for the build to succeed. Error: ImageStream "xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx" is invalid: [metadata.labels: invalid value 'xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx', Details: must have at most 63 characters, matching regex (([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?: e.g. "MyValue" or "", metadata.name: invalid value 'xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx', Details: 'namespace/name' cannot be longer than 255 characters] Error: BuildConfig "xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx" is invalid: metadata.labels: invalid value 'xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx', Details: must have at most 63 characters, matching regex (([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?: e.g. "MyValue" or "" ``` Seems that the limit used to be higher than 63 chars. Strangely, if the name is made of a single char, it gets truncated: ``` $ oc new-build -n demo -D $'FROM xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' W1008 13:06:47.515193 28465 newapp.go:511] Could not find an ImageStream match for "docker.io/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:latest". Make sure that a Docker image with that ta g is available on the node for the build to succeed. imagestreams/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx buildconfigs/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Build configuration "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" created and build triggered. Run 'oc status' to check the progress. ``` @csrwng FYI
non_defect
cannot create image streams with long names oc new build n demo d from xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy nrun yum install y httpd newapp go could not find an imagestream match for xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy make sure that a docker image with that tag is available on the node for the build to succeed error imagestream xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx is invalid e g myvalue or metadata name invalid value xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx details namespace name cannot be longer than characters error buildconfig xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx is invalid metadata labels invalid value xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyx details must have at most characters matching regex e g myvalue or seems that the limit used to be higher than chars strangely if the name is made of a single char it gets truncated oc new build n demo d from xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx newapp go could not find an imagestream match for docker io xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx latest make sure that a docker image with that ta g is available on the node for the build to succeed imagestreams xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx buildconfigs xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx build configuration xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx created and build triggered run oc status to check the progress csrwng fyi
0
310,413
9,498,222,967
IssuesEvent
2019-04-24 00:50:37
kobotoolbox/kobocat
https://api.github.com/repos/kobotoolbox/kobocat
opened
Attachment can be accessed without credentials if filename, formID, UUID, and username are known
bug high priority
If a malicious user knows the attachment file name and username for a particular project they are able to access the attachment without requiring credentials. This has been reproduced for a specific project on OCHA (see details here) but not for a separate project on prod. This requires knowing the full path used e.g. in the kobocat image gallery: https://kc.humanitarianresponse.info/attachment/original?media_file=[username]/attachments/[formID]/[UUID]/[filename].jpg
1.0
Attachment can be accessed without credentials if filename, formID, UUID, and username are known - If a malicious user knows the attachment file name and username for a particular project they are able to access the attachment without requiring credentials. This has been reproduced for a specific project on OCHA (see details here) but not for a separate project on prod. This requires knowing the full path used e.g. in the kobocat image gallery: https://kc.humanitarianresponse.info/attachment/original?media_file=[username]/attachments/[formID]/[UUID]/[filename].jpg
non_defect
attachment can be accessed without credentials if filename formid uuid and username are known if a malicious user knows the attachment file name and username for a particular project they are able to access the attachment without requiring credentials this has been reproduced for a specific project on ocha see details here but not for a separate project on prod this requires knowing the full path used e g in the kobocat image gallery attachments jpg
0
75,126
25,542,834,391
IssuesEvent
2022-11-29 16:27:42
idaholab/raven
https://api.github.com/repos/idaholab/raven
closed
failed run
priority_normal defect
-------- Defect Description -------- modified command to 'C:\\Users\\lhj\\Desktop\\Case1\\relap5.exe -i Case1.i -o out~Case1.o -r out~Case1.r ' Process Failed C:\Users\lhj\Desktop\Case1\relap5.exe -i Case1.i -o out~Case1.o -r out~Case1.r returnCode -1 I don't know why there are returnCOde -1 when I running multi-case, and I don't know how do it. my run xml file is relap5_multi_run.xml(here is relap5_multi_run.txt), my log file is relap5_multi_run_log.txt and RELAP5 run file is Case1.i(here is Case1.txt) ##### What did you expect to see happen? ##### What did you see instead? ##### Do you have a suggested fix for the development team? no **Describe how to Reproduce** Steps to reproduce the behavior: 1. [ [relap5_multi_run_log.txt](https://github.com/idaholab/raven/files/4916162/relap5_multi_run_log.txt) [Case1.txt](https://github.com/idaholab/raven/files/4916177/Case1.txt) [relap5_multi_run.txt](https://github.com/idaholab/raven/files/4916179/relap5_multi_run.txt) ](url) 2. 3. 4. **Screenshots and Input Files** Please attach the input file(s) that generate this error. The simpler the input, the faster we can find the issue. **Platform (please complete the following information):** - OS: [e.g. iOS] - Version: [e.g. 22] - Dependencies Installation: [CONDA or PIP] ---------------- For Change Control Board: Issue Review ---------------- This review should occur before any development is performed as a response to this issue. - [ ] 1. Is it tagged with a type: defect or task? - [ ] 2. Is it tagged with a priority: critical, normal or minor? - [ ] 3. If it will impact requirements or requirements tests, is it tagged with requirements? - [ ] 4. If it is a defect, can it cause wrong results for users? If so an email needs to be sent to the users. - [ ] 5. Is a rationale provided? (Such as explaining why the improvement is needed or why current code is wrong.) ------- For Change Control Board: Issue Closure ------- This review should occur when the issue is imminently going to be closed. - [ ] 1. If the issue is a defect, is the defect fixed? - [ ] 2. If the issue is a defect, is the defect tested for in the regression test system? (If not explain why not.) - [ ] 3. If the issue can impact users, has an email to the users group been written (the email should specify if the defect impacts stable or master)? - [ ] 4. If the issue is a defect, does it impact the latest release branch? If yes, is there any issue tagged with release (create if needed)? - [ ] 5. If the issue is being closed without a pull request, has an explanation of why it is being closed been provided?
1.0
failed run - -------- Defect Description -------- modified command to 'C:\\Users\\lhj\\Desktop\\Case1\\relap5.exe -i Case1.i -o out~Case1.o -r out~Case1.r ' Process Failed C:\Users\lhj\Desktop\Case1\relap5.exe -i Case1.i -o out~Case1.o -r out~Case1.r returnCode -1 I don't know why there are returnCOde -1 when I running multi-case, and I don't know how do it. my run xml file is relap5_multi_run.xml(here is relap5_multi_run.txt), my log file is relap5_multi_run_log.txt and RELAP5 run file is Case1.i(here is Case1.txt) ##### What did you expect to see happen? ##### What did you see instead? ##### Do you have a suggested fix for the development team? no **Describe how to Reproduce** Steps to reproduce the behavior: 1. [ [relap5_multi_run_log.txt](https://github.com/idaholab/raven/files/4916162/relap5_multi_run_log.txt) [Case1.txt](https://github.com/idaholab/raven/files/4916177/Case1.txt) [relap5_multi_run.txt](https://github.com/idaholab/raven/files/4916179/relap5_multi_run.txt) ](url) 2. 3. 4. **Screenshots and Input Files** Please attach the input file(s) that generate this error. The simpler the input, the faster we can find the issue. **Platform (please complete the following information):** - OS: [e.g. iOS] - Version: [e.g. 22] - Dependencies Installation: [CONDA or PIP] ---------------- For Change Control Board: Issue Review ---------------- This review should occur before any development is performed as a response to this issue. - [ ] 1. Is it tagged with a type: defect or task? - [ ] 2. Is it tagged with a priority: critical, normal or minor? - [ ] 3. If it will impact requirements or requirements tests, is it tagged with requirements? - [ ] 4. If it is a defect, can it cause wrong results for users? If so an email needs to be sent to the users. - [ ] 5. Is a rationale provided? (Such as explaining why the improvement is needed or why current code is wrong.) ------- For Change Control Board: Issue Closure ------- This review should occur when the issue is imminently going to be closed. - [ ] 1. If the issue is a defect, is the defect fixed? - [ ] 2. If the issue is a defect, is the defect tested for in the regression test system? (If not explain why not.) - [ ] 3. If the issue can impact users, has an email to the users group been written (the email should specify if the defect impacts stable or master)? - [ ] 4. If the issue is a defect, does it impact the latest release branch? If yes, is there any issue tagged with release (create if needed)? - [ ] 5. If the issue is being closed without a pull request, has an explanation of why it is being closed been provided?
defect
failed run defect description modified command to c users lhj desktop exe i i o out o r out r process failed c users lhj desktop exe i i o out o r out r returncode i don t know why there are returncode when i running multi case and i don t know how do it my run xml file is multi run xml here is multi run txt my log file is multi run log txt and run file is i here is txt what did you expect to see happen what did you see instead do you have a suggested fix for the development team no describe how to reproduce steps to reproduce the behavior url screenshots and input files please attach the input file s that generate this error the simpler the input the faster we can find the issue platform please complete the following information os version dependencies installation for change control board issue review this review should occur before any development is performed as a response to this issue is it tagged with a type defect or task is it tagged with a priority critical normal or minor if it will impact requirements or requirements tests is it tagged with requirements if it is a defect can it cause wrong results for users if so an email needs to be sent to the users is a rationale provided such as explaining why the improvement is needed or why current code is wrong for change control board issue closure this review should occur when the issue is imminently going to be closed if the issue is a defect is the defect fixed if the issue is a defect is the defect tested for in the regression test system if not explain why not if the issue can impact users has an email to the users group been written the email should specify if the defect impacts stable or master if the issue is a defect does it impact the latest release branch if yes is there any issue tagged with release create if needed if the issue is being closed without a pull request has an explanation of why it is being closed been provided
1
3,112
2,736,178,972
IssuesEvent
2015-04-19 05:48:48
sdispater/eloquent
https://api.github.com/repos/sdispater/eloquent
closed
KeyError: 'default' error and 'username' is an invalid keyword argument for this function
documentation
I have ran code using eloquent package db.py from eloquent import DatabaseManager, Model config = { 'mysql': { 'driver': 'mysql', 'host': 'localhost:33060', 'database': 'aauuss', 'username': 'homestead', 'password': 'secret', 'prefix': '' } } db = DatabaseManager(config) Model.set_connection_resolver(db) class Source(Model): pass source = Source.all() and I have got the following error $ python db,py Traceback (most recent call last): File "test_eloquent.py", line 1, in <module> import db File "/home/vagrant/Code/aauuss_scrape/db.py", line 70, in <module> source = Source.all() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 387, in all return instance.new_query().get(columns) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1241, in new_query self._new_base_query_builder() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1269, in _new_base_query_builder conn = self.get_connection() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2069, in get_connection return self.resolve_connection(self.__connection__) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2103, in resolve_connection return cls.__resolver.connection(connection) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 36, in connection name, type = self._parse_connection_name(name) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 58, in _parse_connection_name name = self.get_default_connection() File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 146, in get_default_connection return self._config['default'] KeyError: 'default' I read the source code seeing that I have to call set_default_connection to set it to "mysql" db.set_default_connection('mysql') Then I ve got another error. $ python db.py Traceback (most recent call last): File "test_eloquent.py", line 1, in <module> import db File "/home/vagrant/Code/aauuss_scrape/db.py", line 71, in <module> source = Source.all() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 387, in all return instance.new_query().get(columns) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1241, in new_query self._new_base_query_builder() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1269, in _new_base_query_builder conn = self.get_connection() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2069, in get_connection return self.resolve_connection(self.__connection__) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2103, in resolve_connection return cls.__resolver.connection(connection) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 39, in connection connection = self._make_connection(name) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 115, in _make_connection return self._factory.make(config, name) File "/usr/local/lib/python2.7/dist-packages/eloquent/connectors/connection_factory.py", line 22, in make return self._create_single_connection(config) File "/usr/local/lib/python2.7/dist-packages/eloquent/connectors/connection_factory.py", line 25, in _create_single_connection conn = self.create_connector(config).connect(config) File "/usr/local/lib/python2.7/dist-packages/eloquent/connectors/mysql_connector.py", line 22, in connect return self.get_api().connect(**self.get_config(config)) File "/usr/lib/python2.7/dist-packages/MySQLdb/__init__.py", line 81, in Connect return Connection(*args, **kwargs) File "/usr/lib/python2.7/dist-packages/MySQLdb/connections.py", line 187, in __init__ super(Connection, self).__init__(*args, **kwargs2) TypeError: 'username' is an invalid keyword argument for this function I found it is something my mysql connector wont accept the 'username' Could you help me. thanks a lot:)
1.0
KeyError: 'default' error and 'username' is an invalid keyword argument for this function - I have ran code using eloquent package db.py from eloquent import DatabaseManager, Model config = { 'mysql': { 'driver': 'mysql', 'host': 'localhost:33060', 'database': 'aauuss', 'username': 'homestead', 'password': 'secret', 'prefix': '' } } db = DatabaseManager(config) Model.set_connection_resolver(db) class Source(Model): pass source = Source.all() and I have got the following error $ python db,py Traceback (most recent call last): File "test_eloquent.py", line 1, in <module> import db File "/home/vagrant/Code/aauuss_scrape/db.py", line 70, in <module> source = Source.all() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 387, in all return instance.new_query().get(columns) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1241, in new_query self._new_base_query_builder() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1269, in _new_base_query_builder conn = self.get_connection() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2069, in get_connection return self.resolve_connection(self.__connection__) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2103, in resolve_connection return cls.__resolver.connection(connection) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 36, in connection name, type = self._parse_connection_name(name) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 58, in _parse_connection_name name = self.get_default_connection() File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 146, in get_default_connection return self._config['default'] KeyError: 'default' I read the source code seeing that I have to call set_default_connection to set it to "mysql" db.set_default_connection('mysql') Then I ve got another error. $ python db.py Traceback (most recent call last): File "test_eloquent.py", line 1, in <module> import db File "/home/vagrant/Code/aauuss_scrape/db.py", line 71, in <module> source = Source.all() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 387, in all return instance.new_query().get(columns) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1241, in new_query self._new_base_query_builder() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 1269, in _new_base_query_builder conn = self.get_connection() File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2069, in get_connection return self.resolve_connection(self.__connection__) File "/usr/local/lib/python2.7/dist-packages/eloquent/orm/model.py", line 2103, in resolve_connection return cls.__resolver.connection(connection) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 39, in connection connection = self._make_connection(name) File "/usr/local/lib/python2.7/dist-packages/eloquent/database_manager.py", line 115, in _make_connection return self._factory.make(config, name) File "/usr/local/lib/python2.7/dist-packages/eloquent/connectors/connection_factory.py", line 22, in make return self._create_single_connection(config) File "/usr/local/lib/python2.7/dist-packages/eloquent/connectors/connection_factory.py", line 25, in _create_single_connection conn = self.create_connector(config).connect(config) File "/usr/local/lib/python2.7/dist-packages/eloquent/connectors/mysql_connector.py", line 22, in connect return self.get_api().connect(**self.get_config(config)) File "/usr/lib/python2.7/dist-packages/MySQLdb/__init__.py", line 81, in Connect return Connection(*args, **kwargs) File "/usr/lib/python2.7/dist-packages/MySQLdb/connections.py", line 187, in __init__ super(Connection, self).__init__(*args, **kwargs2) TypeError: 'username' is an invalid keyword argument for this function I found it is something my mysql connector wont accept the 'username' Could you help me. thanks a lot:)
non_defect
keyerror default error and username is an invalid keyword argument for this function i have ran code using eloquent package db py from eloquent import databasemanager model config mysql driver mysql host localhost database aauuss username homestead password secret prefix db databasemanager config model set connection resolver db class source model pass source source all and i have got the following error python db py traceback most recent call last file test eloquent py line in import db file home vagrant code aauuss scrape db py line in source source all file usr local lib dist packages eloquent orm model py line in all return instance new query get columns file usr local lib dist packages eloquent orm model py line in new query self new base query builder file usr local lib dist packages eloquent orm model py line in new base query builder conn self get connection file usr local lib dist packages eloquent orm model py line in get connection return self resolve connection self connection file usr local lib dist packages eloquent orm model py line in resolve connection return cls resolver connection connection file usr local lib dist packages eloquent database manager py line in connection name type self parse connection name name file usr local lib dist packages eloquent database manager py line in parse connection name name self get default connection file usr local lib dist packages eloquent database manager py line in get default connection return self config keyerror default i read the source code seeing that i have to call set default connection to set it to mysql db set default connection mysql then i ve got another error python db py traceback most recent call last file test eloquent py line in import db file home vagrant code aauuss scrape db py line in source source all file usr local lib dist packages eloquent orm model py line in all return instance new query get columns file usr local lib dist packages eloquent orm model py line in new query self new base query builder file usr local lib dist packages eloquent orm model py line in new base query builder conn self get connection file usr local lib dist packages eloquent orm model py line in get connection return self resolve connection self connection file usr local lib dist packages eloquent orm model py line in resolve connection return cls resolver connection connection file usr local lib dist packages eloquent database manager py line in connection connection self make connection name file usr local lib dist packages eloquent database manager py line in make connection return self factory make config name file usr local lib dist packages eloquent connectors connection factory py line in make return self create single connection config file usr local lib dist packages eloquent connectors connection factory py line in create single connection conn self create connector config connect config file usr local lib dist packages eloquent connectors mysql connector py line in connect return self get api connect self get config config file usr lib dist packages mysqldb init py line in connect return connection args kwargs file usr lib dist packages mysqldb connections py line in init super connection self init args typeerror username is an invalid keyword argument for this function i found it is something my mysql connector wont accept the username could you help me thanks a lot
0
279,221
21,134,317,318
IssuesEvent
2022-04-06 04:09:27
AY2122S2-CS2103T-W14-2/tp
https://api.github.com/repos/AY2122S2-CS2103T-W14-2/tp
closed
[PE-D] Typo in tag-add-p feature in UG.
duplicate Documentation Bug
![image.png](https://raw.githubusercontent.com/KeithCZW/ped/main/files/257df332-f536-4cf9-a569-b9ee471b763d.png) Tag-add-p format and example should be tag-add-p instead of tag-add. <!--session: 1648792840985-ab5b4ce1-2a15-4920-a8d0-1e51875d2b2e--> <!--Version: Web v3.4.2--> ------------- Labels: `type.DocumentationBug` `severity.VeryLow` original: KeithCZW/ped#3
1.0
[PE-D] Typo in tag-add-p feature in UG. - ![image.png](https://raw.githubusercontent.com/KeithCZW/ped/main/files/257df332-f536-4cf9-a569-b9ee471b763d.png) Tag-add-p format and example should be tag-add-p instead of tag-add. <!--session: 1648792840985-ab5b4ce1-2a15-4920-a8d0-1e51875d2b2e--> <!--Version: Web v3.4.2--> ------------- Labels: `type.DocumentationBug` `severity.VeryLow` original: KeithCZW/ped#3
non_defect
typo in tag add p feature in ug tag add p format and example should be tag add p instead of tag add labels type documentationbug severity verylow original keithczw ped
0
30,315
6,102,329,267
IssuesEvent
2017-06-20 16:15:37
simonjupp/skoseditor
https://api.github.com/repos/simonjupp/skoseditor
closed
"OK" button in dialog to select ConceptScheme when adding a new Concept is grayed
auto-migrated Priority-Medium Type-Defect
``` - Create new ontology - Import SKOS-DL ontology - Go to SKOS View Tab - In view "Concept list" view (or "Asserted Concept hierarchy") click on button "Add Concept" - No Concept Scheme exists, we can simply create the URI of the Concept and save it - Now go in "Concept Scheme List" view, create a new Concept Scheme by clicking on "Add Concept Scheme", and save it - Go back to "Concept list" view (or "Asserted Concept hierarchy"), click on button "Add Concept" - Dialog appears to select the Concept Scheme of the Scheme. "OK" Button is grayed out, I cannot click on it and cannot create the Concept ``` Original issue reported on code.google.com by `thomas.t...@gmail.com` on 22 Feb 2013 at 11:15 Attachments: - [Capture du 2013-02-22 12:14:19.png](https://storage.googleapis.com/google-code-attachments/skoseditor/issue-18/comment-0/Capture du 2013-02-22 12:14:19.png)
1.0
"OK" button in dialog to select ConceptScheme when adding a new Concept is grayed - ``` - Create new ontology - Import SKOS-DL ontology - Go to SKOS View Tab - In view "Concept list" view (or "Asserted Concept hierarchy") click on button "Add Concept" - No Concept Scheme exists, we can simply create the URI of the Concept and save it - Now go in "Concept Scheme List" view, create a new Concept Scheme by clicking on "Add Concept Scheme", and save it - Go back to "Concept list" view (or "Asserted Concept hierarchy"), click on button "Add Concept" - Dialog appears to select the Concept Scheme of the Scheme. "OK" Button is grayed out, I cannot click on it and cannot create the Concept ``` Original issue reported on code.google.com by `thomas.t...@gmail.com` on 22 Feb 2013 at 11:15 Attachments: - [Capture du 2013-02-22 12:14:19.png](https://storage.googleapis.com/google-code-attachments/skoseditor/issue-18/comment-0/Capture du 2013-02-22 12:14:19.png)
defect
ok button in dialog to select conceptscheme when adding a new concept is grayed create new ontology import skos dl ontology go to skos view tab in view concept list view or asserted concept hierarchy click on button add concept no concept scheme exists we can simply create the uri of the concept and save it now go in concept scheme list view create a new concept scheme by clicking on add concept scheme and save it go back to concept list view or asserted concept hierarchy click on button add concept dialog appears to select the concept scheme of the scheme ok button is grayed out i cannot click on it and cannot create the concept original issue reported on code google com by thomas t gmail com on feb at attachments du png
1
91,427
18,467,934,897
IssuesEvent
2021-10-17 08:04:19
CiviWiki/OpenCiviWiki
https://api.github.com/repos/CiviWiki/OpenCiviWiki
closed
Remove code related to U.S. state and government structure
enhancement help wanted good first issue community code quality hacktoberfest-accepted
We are trying to simplify the CiviWiki codebase while making it more relevant to communities outside of the United States. To that end, we have removed most code related to the U.S. legislature and bills. However, some specific code remains that isn't relevant to people in other countries. ## Task - [ ] Remove U.S.-centric code from the project - [ ] create database migrations with `python manage.py makemigrations` ## Specific code to remove - [ ] Remove `level_CHOICES`, `level`, and `state`: https://github.com/CiviWiki/OpenCiviWiki/blob/3de9e1eb30765d665770c3d56fbd3c4143d30eb6/project/threads/models.py#L90-L95 - [ ] Remove `US_STATES` imports: - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/3de9e1eb30765d665770c3d56fbd3c4143d30eb6/project/threads/models.py#L9 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L13 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L23 - [ ] Remove `US_STATES` constant: https://github.com/CiviWiki/OpenCiviWiki/blob/f152ad5986ebfd25ff60ad5ca7c34563818f1e17/project/core/constants.py#L13-L66 - [ ] Remove "state" and "level" code from Thread model manager: https://github.com/CiviWiki/OpenCiviWiki/blob/85cd5bf867be4e1987cff3f083fc456904287f9e/project/threads/models.py#L47-L49 - [ ] Remove states-related code from API views: - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L46 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L49 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L130 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L132-L134 - [ ] Remove `location` variable https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L388-L392 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L402-L404 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L43 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L45-L47 - [ ] Remove only level and state fields https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L357 - [ ] Remove state and level fields from serializers: - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/serializers.py#L111-L112 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/serializers.py#L141-L142 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/serializers.py#L180-L181 - [ ] create database migrations with `python manage.py makemigrations`
1.0
Remove code related to U.S. state and government structure - We are trying to simplify the CiviWiki codebase while making it more relevant to communities outside of the United States. To that end, we have removed most code related to the U.S. legislature and bills. However, some specific code remains that isn't relevant to people in other countries. ## Task - [ ] Remove U.S.-centric code from the project - [ ] create database migrations with `python manage.py makemigrations` ## Specific code to remove - [ ] Remove `level_CHOICES`, `level`, and `state`: https://github.com/CiviWiki/OpenCiviWiki/blob/3de9e1eb30765d665770c3d56fbd3c4143d30eb6/project/threads/models.py#L90-L95 - [ ] Remove `US_STATES` imports: - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/3de9e1eb30765d665770c3d56fbd3c4143d30eb6/project/threads/models.py#L9 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L13 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L23 - [ ] Remove `US_STATES` constant: https://github.com/CiviWiki/OpenCiviWiki/blob/f152ad5986ebfd25ff60ad5ca7c34563818f1e17/project/core/constants.py#L13-L66 - [ ] Remove "state" and "level" code from Thread model manager: https://github.com/CiviWiki/OpenCiviWiki/blob/85cd5bf867be4e1987cff3f083fc456904287f9e/project/threads/models.py#L47-L49 - [ ] Remove states-related code from API views: - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L46 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L49 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L130 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/b15b942e21531e2252726ee6d0e37425be6977fa/project/frontend_views/views.py#L132-L134 - [ ] Remove `location` variable https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L388-L392 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L402-L404 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L43 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L45-L47 - [ ] Remove only level and state fields https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/api.py#L357 - [ ] Remove state and level fields from serializers: - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/serializers.py#L111-L112 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/serializers.py#L141-L142 - [ ] https://github.com/CiviWiki/OpenCiviWiki/blob/d507b0d47908d02dc40ceb0110a96d0e0f156d35/project/threads/serializers.py#L180-L181 - [ ] create database migrations with `python manage.py makemigrations`
non_defect
remove code related to u s state and government structure we are trying to simplify the civiwiki codebase while making it more relevant to communities outside of the united states to that end we have removed most code related to the u s legislature and bills however some specific code remains that isn t relevant to people in other countries task remove u s centric code from the project create database migrations with python manage py makemigrations specific code to remove remove level choices level and state remove us states imports remove us states constant remove state and level code from thread model manager remove states related code from api views remove location variable remove only level and state fields remove state and level fields from serializers create database migrations with python manage py makemigrations
0
1,431
2,603,965,437
IssuesEvent
2015-02-24 18:58:51
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳hsv病毒能治好吗
auto-migrated Priority-Medium Type-Defect
``` 沈阳hsv病毒能治好吗〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 6:58
1.0
沈阳hsv病毒能治好吗 - ``` 沈阳hsv病毒能治好吗〓沈陽軍區政治部醫院性病〓TEL:024-3102 3308〓成立于1946年,68年專注于性傳播疾病的研究和治療。位� ��沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 6:58
defect
沈阳hsv病毒能治好吗 沈阳hsv病毒能治好吗〓沈陽軍區政治部醫院性病〓tel: 〓 , 。位� �� 。是一所與新中國同建立共輝煌的� ��史悠久、設備精良、技術權威、專家云集,是預防、保健、 醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等�� �隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、東� ��大學等知名高等院校的教學醫院。曾被中國人民解放軍空軍 后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二�� �功。 original issue reported on code google com by gmail com on jun at
1
14,163
2,791,383,167
IssuesEvent
2015-05-10 03:01:04
jimradford/superputty
https://api.github.com/repos/jimradford/superputty
closed
Add Option to Send Enter Key in Send Command Combobox
auto-migrated Priority-Medium Type-Defect
``` I often need to send several empty new lines to several devices after sending a command to them. It would be really nice if there was an option to enable the ability to do this -- it's suppressed right now if the combobox has no character entered. 1.4.0.4 ``` Original issue reported on code.google.com by `steven.u...@gmail.com` on 26 Oct 2014 at 2:16
1.0
Add Option to Send Enter Key in Send Command Combobox - ``` I often need to send several empty new lines to several devices after sending a command to them. It would be really nice if there was an option to enable the ability to do this -- it's suppressed right now if the combobox has no character entered. 1.4.0.4 ``` Original issue reported on code.google.com by `steven.u...@gmail.com` on 26 Oct 2014 at 2:16
defect
add option to send enter key in send command combobox i often need to send several empty new lines to several devices after sending a command to them it would be really nice if there was an option to enable the ability to do this it s suppressed right now if the combobox has no character entered original issue reported on code google com by steven u gmail com on oct at
1
1,527
2,545,511,940
IssuesEvent
2015-01-29 17:35:06
nunit/nunit
https://api.github.com/repos/nunit/nunit
opened
RepeatAttribute
3.0 is:feature pri:normal status:design
NUnit 2.6 has a RepeatAttribute. It's currently #ifed out of our 3.0 source. We need to decide if we are going to implement it as is or make some changes. People ask for it (sometimes for bad reasons) so I don't think it should be simply dropped. Current semantics are that the test is run n times or until it fails, whichever comes first. IOW, it has to pass all n times in order to pass. We have had requests in the past for only repeating the test in the case of failure. IOW, it would be more like a Retry attribute. Conceivably, we could generalize this to repeating the test up to n times subject to some rules specified in additional arguments. We could expose the options to the user if we liked or we could simply use such a generalized repeat facility as a base class for various attributes. We also have a request for ThreadedRepeat, which would run the tests n times on different threads. See #5. I'm marking this issue as status:design. We should first come up with a spec for what we are going to support and then incorporate the result into 3.0.
1.0
RepeatAttribute - NUnit 2.6 has a RepeatAttribute. It's currently #ifed out of our 3.0 source. We need to decide if we are going to implement it as is or make some changes. People ask for it (sometimes for bad reasons) so I don't think it should be simply dropped. Current semantics are that the test is run n times or until it fails, whichever comes first. IOW, it has to pass all n times in order to pass. We have had requests in the past for only repeating the test in the case of failure. IOW, it would be more like a Retry attribute. Conceivably, we could generalize this to repeating the test up to n times subject to some rules specified in additional arguments. We could expose the options to the user if we liked or we could simply use such a generalized repeat facility as a base class for various attributes. We also have a request for ThreadedRepeat, which would run the tests n times on different threads. See #5. I'm marking this issue as status:design. We should first come up with a spec for what we are going to support and then incorporate the result into 3.0.
non_defect
repeatattribute nunit has a repeatattribute it s currently ifed out of our source we need to decide if we are going to implement it as is or make some changes people ask for it sometimes for bad reasons so i don t think it should be simply dropped current semantics are that the test is run n times or until it fails whichever comes first iow it has to pass all n times in order to pass we have had requests in the past for only repeating the test in the case of failure iow it would be more like a retry attribute conceivably we could generalize this to repeating the test up to n times subject to some rules specified in additional arguments we could expose the options to the user if we liked or we could simply use such a generalized repeat facility as a base class for various attributes we also have a request for threadedrepeat which would run the tests n times on different threads see i m marking this issue as status design we should first come up with a spec for what we are going to support and then incorporate the result into
0
12,604
2,712,056,665
IssuesEvent
2015-04-09 11:10:44
codenameone/CodenameOne
https://api.github.com/repos/codenameone/CodenameOne
closed
Clicking on google ad on kindle doesnt work
Priority-Medium Type-Defect
Original [issue 1078](https://code.google.com/p/codenameone/issues/detail?id=1078) created by codenameone on 2014-03-05T21:57:33.000Z: When clicking on the new google ad at the bottom on of the screen on a kindle fire hd 7 the ad does not open the link in the webbrowser <b>What steps will reproduce the problem?</b> 1. run a cn1 app that has the new google ads for android on Kindle fire hd 7 2. click the ad that is loaded at the bottom <b>What is the expected output? What do you see instead?</b> the ad link should open in the device webbrowser, however nothing is happening. <b>What version of the product are you using? On what operating system?</b> Latest, Eclipse, Win7, Kindle fire HD 7 Attached is the logcat of the kindle when clicking on the Ad (delete the logs just before the clicking)
1.0
Clicking on google ad on kindle doesnt work - Original [issue 1078](https://code.google.com/p/codenameone/issues/detail?id=1078) created by codenameone on 2014-03-05T21:57:33.000Z: When clicking on the new google ad at the bottom on of the screen on a kindle fire hd 7 the ad does not open the link in the webbrowser <b>What steps will reproduce the problem?</b> 1. run a cn1 app that has the new google ads for android on Kindle fire hd 7 2. click the ad that is loaded at the bottom <b>What is the expected output? What do you see instead?</b> the ad link should open in the device webbrowser, however nothing is happening. <b>What version of the product are you using? On what operating system?</b> Latest, Eclipse, Win7, Kindle fire HD 7 Attached is the logcat of the kindle when clicking on the Ad (delete the logs just before the clicking)
defect
clicking on google ad on kindle doesnt work original created by codenameone on when clicking on the new google ad at the bottom on of the screen on a kindle fire hd the ad does not open the link in the webbrowser what steps will reproduce the problem run a app that has the new google ads for android on kindle fire hd click the ad that is loaded at the bottom what is the expected output what do you see instead the ad link should open in the device webbrowser however nothing is happening what version of the product are you using on what operating system latest eclipse kindle fire hd attached is the logcat of the kindle when clicking on the ad delete the logs just before the clicking
1
338,733
24,597,195,290
IssuesEvent
2022-10-14 09:19:14
WR3nd3/alpha
https://api.github.com/repos/WR3nd3/alpha
opened
Dummy Bug report 2
type.DocumentationBug severity.VeryLow
Cockroaches are dumb bugs. Why do they exist. This concludes my report. <!--session: 1665738919898-93ec7770-913d-4fc5-abee-ceb760e704ed--> <!--Version: Web v3.4.3-->
1.0
Dummy Bug report 2 - Cockroaches are dumb bugs. Why do they exist. This concludes my report. <!--session: 1665738919898-93ec7770-913d-4fc5-abee-ceb760e704ed--> <!--Version: Web v3.4.3-->
non_defect
dummy bug report cockroaches are dumb bugs why do they exist this concludes my report
0
48,998
13,185,188,493
IssuesEvent
2020-08-12 20:53:58
icecube-trac/tix3
https://api.github.com/repos/icecube-trac/tix3
opened
fix up the i3-install.sh script included in ports src (Trac #583)
Incomplete Migration Migrated from Trac defect tools/ports
<details> <summary><em>Migrated from https://code.icecube.wisc.edu/ticket/583 , reported by blaufuss and owned by nega</em></summary> <p> ```json { "status": "closed", "changetime": "2011-07-29T20:12:12", "description": "the i3-install.sh setup magic script needs some love.\n\nhttp://code.icecube.wisc.edu/icetray/tools/DarwinPorts/trunk/i3-install.sh\n\nNeeds better:\n\n- error detection for common fails\n- more spewy and interactive input/ouput.\n\nThis needs to generally be more bullet proof and also needs to be\nmade clear when the \"base\" ports are installed and when you're\nbetter to not \"wipe\" things and to switch over to your I3_PORTS\nand run install commands to restart things.\n", "reporter": "blaufuss", "cc": "", "resolution": "fixed", "_ts": "1311970332000000", "component": "tools/ports", "summary": "fix up the i3-install.sh script included in ports src", "priority": "major", "keywords": "", "time": "2010-01-19T20:46:19", "milestone": "", "owner": "nega", "type": "defect" } ``` </p> </details>
1.0
fix up the i3-install.sh script included in ports src (Trac #583) - <details> <summary><em>Migrated from https://code.icecube.wisc.edu/ticket/583 , reported by blaufuss and owned by nega</em></summary> <p> ```json { "status": "closed", "changetime": "2011-07-29T20:12:12", "description": "the i3-install.sh setup magic script needs some love.\n\nhttp://code.icecube.wisc.edu/icetray/tools/DarwinPorts/trunk/i3-install.sh\n\nNeeds better:\n\n- error detection for common fails\n- more spewy and interactive input/ouput.\n\nThis needs to generally be more bullet proof and also needs to be\nmade clear when the \"base\" ports are installed and when you're\nbetter to not \"wipe\" things and to switch over to your I3_PORTS\nand run install commands to restart things.\n", "reporter": "blaufuss", "cc": "", "resolution": "fixed", "_ts": "1311970332000000", "component": "tools/ports", "summary": "fix up the i3-install.sh script included in ports src", "priority": "major", "keywords": "", "time": "2010-01-19T20:46:19", "milestone": "", "owner": "nega", "type": "defect" } ``` </p> </details>
defect
fix up the install sh script included in ports src trac migrated from reported by blaufuss and owned by nega json status closed changetime description the install sh setup magic script needs some love n n better n n error detection for common fails n more spewy and interactive input ouput n nthis needs to generally be more bullet proof and also needs to be nmade clear when the base ports are installed and when you re nbetter to not wipe things and to switch over to your ports nand run install commands to restart things n reporter blaufuss cc resolution fixed ts component tools ports summary fix up the install sh script included in ports src priority major keywords time milestone owner nega type defect
1
59,246
17,016,681,599
IssuesEvent
2021-07-02 13:02:58
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
opened
Search with partial address
Component: nominatim Priority: minor Type: defect
**[Submitted to the original trac issue database at 10.36am, Friday, 6th November 2015]** OSM node [http://www.openstreetmap.org/node/3779177132 3779177132]: OSM way [http://www.openstreetmap.org/way/61960266 61960266] addr:city Aquileia addr:housenumber 18 addr:postcode 33051 addr:street Corso Antonio Gramsci Nominatim searches: "corso gramsci, aquileia": "No search results found" "via gramsci, aquileia": matches "Corso Antonio Gramsci, Beligna, Aquileia, UD, Friuli Venezia Giulia, 33051, Italia" Only complete address will find node: "corso antonio gramsci 18, aquileia" is correctly found. IMHO the mentioned behaviour will frustrate OSM potential users and (in my case) will reflect in cumbersome geocoding imports, if source datasets not perfecty compliled. I would expect that nominatim could match "corso gramsci 18, aquileia" or even "via gramsci 18, aquileia" Thanks for your attention.
1.0
Search with partial address - **[Submitted to the original trac issue database at 10.36am, Friday, 6th November 2015]** OSM node [http://www.openstreetmap.org/node/3779177132 3779177132]: OSM way [http://www.openstreetmap.org/way/61960266 61960266] addr:city Aquileia addr:housenumber 18 addr:postcode 33051 addr:street Corso Antonio Gramsci Nominatim searches: "corso gramsci, aquileia": "No search results found" "via gramsci, aquileia": matches "Corso Antonio Gramsci, Beligna, Aquileia, UD, Friuli Venezia Giulia, 33051, Italia" Only complete address will find node: "corso antonio gramsci 18, aquileia" is correctly found. IMHO the mentioned behaviour will frustrate OSM potential users and (in my case) will reflect in cumbersome geocoding imports, if source datasets not perfecty compliled. I would expect that nominatim could match "corso gramsci 18, aquileia" or even "via gramsci 18, aquileia" Thanks for your attention.
defect
search with partial address osm node osm way addr city aquileia addr housenumber addr postcode addr street corso antonio gramsci nominatim searches corso gramsci aquileia no search results found via gramsci aquileia matches corso antonio gramsci beligna aquileia ud friuli venezia giulia italia only complete address will find node corso antonio gramsci aquileia is correctly found imho the mentioned behaviour will frustrate osm potential users and in my case will reflect in cumbersome geocoding imports if source datasets not perfecty compliled i would expect that nominatim could match corso gramsci aquileia or even via gramsci aquileia thanks for your attention
1
21,736
11,660,478,269
IssuesEvent
2020-03-03 03:28:40
cityofaustin/atd-data-tech
https://api.github.com/repos/cityofaustin/atd-data-tech
opened
VZE | Crash Details Mode info
Need: 2-Should Have Product: Vision Zero Crash Data System Project: Vision Zero Crash Data System Service: Dev Type: Enhancement Workgroup: VZ migrated
Update VZE Crash Details page to have a new Card that parses the `atd_mode_category_metadata` and renders the data for the user. Card could have a header like: "Killed & Seriously Injured by Mode" *Migrated from [atd-vz-data #634](https://github.com/cityofaustin/atd-vz-data/issues/634)*
1.0
VZE | Crash Details Mode info - Update VZE Crash Details page to have a new Card that parses the `atd_mode_category_metadata` and renders the data for the user. Card could have a header like: "Killed & Seriously Injured by Mode" *Migrated from [atd-vz-data #634](https://github.com/cityofaustin/atd-vz-data/issues/634)*
non_defect
vze crash details mode info update vze crash details page to have a new card that parses the atd mode category metadata and renders the data for the user card could have a header like killed seriously injured by mode migrated from
0
80,148
30,037,329,668
IssuesEvent
2023-06-27 13:32:26
GoldenSoftwareLtd/gedemin
https://api.github.com/repos/GoldenSoftwareLtd/gedemin
reopened
Ошибка при расчете, и записи в справочник
Type-Defect Priority-Critical Delphi7
При расчете итогового начисления, на последнем еще delphi 7_0, на текущем exe такой ошибки нет, настройки стандартные. Если надо пример покажу-укажу. ![Screenshot 2023-06-12 111607](https://github.com/GoldenSoftwareLtd/gedemin/assets/11507129/2cb426a3-0896-456e-9fb6-d5633edebbc5)
1.0
Ошибка при расчете, и записи в справочник - При расчете итогового начисления, на последнем еще delphi 7_0, на текущем exe такой ошибки нет, настройки стандартные. Если надо пример покажу-укажу. ![Screenshot 2023-06-12 111607](https://github.com/GoldenSoftwareLtd/gedemin/assets/11507129/2cb426a3-0896-456e-9fb6-d5633edebbc5)
defect
ошибка при расчете и записи в справочник при расчете итогового начисления на последнем еще delphi на текущем exe такой ошибки нет настройки стандартные если надо пример покажу укажу
1
53,267
13,261,316,373
IssuesEvent
2020-08-20 19:40:23
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
closed
Minuit2 logging is extremely chatty (Trac #1083)
Migrated from Trac cmake defect
Linked against Minuit2 from ROOT 5.34.18: ```text [jvansanten@cobalt08]/scratch/jvansanten/metaprojects/icerec/build% bin/lilliput-test -r MinimizerTest.cxx/Minuit2ConvergeEasy MinimizerTest.cxx... Minuit2ConvergeEasy.........................................WARN (I3GulliverMinuit2): (SIMPLEX_coarse_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_fine_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. WARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. ok Test Results: =================================================================== Pass: 1 Fail: 0 Returning 0 ``` The chatter should be suppressed or routed through IceTray's logging system instead of spewing straight to stderr. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1083">https://code.icecube.wisc.edu/projects/icecube/ticket/1083</a>, reported by jvansantenand owned by jvansanten</em></summary> <p> ```json { "status": "closed", "changetime": "2015-08-04T13:21:13", "_ts": "1438694473953565", "description": "Linked against Minuit2 from ROOT 5.34.18:\n\n{{{\n[jvansanten@cobalt08]/scratch/jvansanten/metaprojects/icerec/build% bin/lilliput-test -r MinimizerTest.cxx/Minuit2ConvergeEasy\nMinimizerTest.cxx...\n Minuit2ConvergeEasy.........................................WARN (I3GulliverMinuit2): (SIMPLEX_coarse_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_fine_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nWARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\n ok\n\nTest Results:\n===================================================================\nPass: 1\nFail: 0\nReturning 0\n}}}\n\nThe chatter should be suppressed or routed through IceTray's logging system instead of spewing straight to stderr.\n", "reporter": "jvansanten", "cc": "delia.tosi", "resolution": "fixed", "time": "2015-08-04T12:29:59", "component": "cmake", "summary": "Minuit2 logging is extremely chatty", "priority": "normal", "keywords": "", "milestone": "", "owner": "jvansanten", "type": "defect" } ``` </p> </details>
1.0
Minuit2 logging is extremely chatty (Trac #1083) - Linked against Minuit2 from ROOT 5.34.18: ```text [jvansanten@cobalt08]/scratch/jvansanten/metaprojects/icerec/build% bin/lilliput-test -r MinimizerTest.cxx/Minuit2ConvergeEasy MinimizerTest.cxx... Minuit2ConvergeEasy.........................................WARN (I3GulliverMinuit2): (SIMPLEX_coarse_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_fine_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. WARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters()) WARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) Thus spoke the Minuit2 manual of SIMPLEX, "Its estimate of EDM is largely fantasy, so it would not even know if it did converge." Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters()) Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. Info in <Minuit2>: Simplex did not converge, edm > minedm. ok Test Results: =================================================================== Pass: 1 Fail: 0 Returning 0 ``` The chatter should be suppressed or routed through IceTray's logging system instead of spewing straight to stderr. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1083">https://code.icecube.wisc.edu/projects/icecube/ticket/1083</a>, reported by jvansantenand owned by jvansanten</em></summary> <p> ```json { "status": "closed", "changetime": "2015-08-04T13:21:13", "_ts": "1438694473953565", "description": "Linked against Minuit2 from ROOT 5.34.18:\n\n{{{\n[jvansanten@cobalt08]/scratch/jvansanten/metaprojects/icerec/build% bin/lilliput-test -r MinimizerTest.cxx/Minuit2ConvergeEasy\nMinimizerTest.cxx...\n Minuit2ConvergeEasy.........................................WARN (I3GulliverMinuit2): (SIMPLEX_coarse_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_fine_nogradient) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nWARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_coarse_gradients) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) The 'SIMPLEX' algorithm doesn't do anything with gradients! Disabling gradient support. (I3GulliverMinuit2.cxx:148 in void I3GulliverMinuit2::CheckParameters())\nWARN (I3GulliverMinuit2): (SIMPLEX_fine_gradients) Thus spoke the Minuit2 manual of SIMPLEX, \"Its estimate of EDM is largely fantasy, so it would not even know if it did converge.\" Setting IgnoreEDM=True to avoid confusion. (I3GulliverMinuit2.cxx:157 in void I3GulliverMinuit2::CheckParameters())\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\nInfo in <Minuit2>: Simplex did not converge, edm > minedm.\n ok\n\nTest Results:\n===================================================================\nPass: 1\nFail: 0\nReturning 0\n}}}\n\nThe chatter should be suppressed or routed through IceTray's logging system instead of spewing straight to stderr.\n", "reporter": "jvansanten", "cc": "delia.tosi", "resolution": "fixed", "time": "2015-08-04T12:29:59", "component": "cmake", "summary": "Minuit2 logging is extremely chatty", "priority": "normal", "keywords": "", "milestone": "", "owner": "jvansanten", "type": "defect" } ``` </p> </details>
defect
logging is extremely chatty trac linked against from root text scratch jvansanten metaprojects icerec build bin lilliput test r minimizertest cxx minimizertest cxx warn simplex coarse nogradient thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters warn simplex fine nogradient thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters info in simplex did not converge edm minedm info in simplex did not converge edm minedm info in simplex did not converge edm minedm info in simplex did not converge edm minedm warn simplex coarse gradients the simplex algorithm doesn t do anything with gradients disabling gradient support cxx in void checkparameters warn simplex coarse gradients thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters warn simplex fine gradients the simplex algorithm doesn t do anything with gradients disabling gradient support cxx in void checkparameters warn simplex fine gradients thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters info in simplex did not converge edm minedm info in simplex did not converge edm minedm info in simplex did not converge edm minedm info in simplex did not converge edm minedm ok test results pass fail returning the chatter should be suppressed or routed through icetray s logging system instead of spewing straight to stderr migrated from json status closed changetime ts description linked against from root n n n scratch jvansanten metaprojects icerec build bin lilliput test r minimizertest cxx nminimizertest cxx n warn simplex coarse nogradient thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters nwarn simplex fine nogradient thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters ninfo in simplex did not converge edm minedm ninfo in simplex did not converge edm minedm ninfo in simplex did not converge edm minedm ninfo in simplex did not converge edm minedm nwarn simplex coarse gradients the simplex algorithm doesn t do anything with gradients disabling gradient support cxx in void checkparameters nwarn simplex coarse gradients thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters nwarn simplex fine gradients the simplex algorithm doesn t do anything with gradients disabling gradient support cxx in void checkparameters nwarn simplex fine gradients thus spoke the manual of simplex its estimate of edm is largely fantasy so it would not even know if it did converge setting ignoreedm true to avoid confusion cxx in void checkparameters ninfo in simplex did not converge edm minedm ninfo in simplex did not converge edm minedm ninfo in simplex did not converge edm minedm ninfo in simplex did not converge edm minedm n ok n ntest results n npass nfail nreturning n n nthe chatter should be suppressed or routed through icetray s logging system instead of spewing straight to stderr n reporter jvansanten cc delia tosi resolution fixed time component cmake summary logging is extremely chatty priority normal keywords milestone owner jvansanten type defect
1
3,505
2,610,063,905
IssuesEvent
2015-02-26 18:18:48
chrsmith/jsjsj122
https://api.github.com/repos/chrsmith/jsjsj122
opened
黄岩检查男性不育挂什么科
auto-migrated Priority-Medium Type-Defect
``` 黄岩检查男性不育挂什么科【台州五洲生殖医院】24小时健康 咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台 州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、1 08、118、198及椒江一金清公交车直达枫南小区,乘坐107、105、 109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 7:59
1.0
黄岩检查男性不育挂什么科 - ``` 黄岩检查男性不育挂什么科【台州五洲生殖医院】24小时健康 咨询热线:0576-88066933-(扣扣800080609)-(微信号tzwzszyy)医院地址:台 州市椒江区枫南路229号(枫南大转盘旁)乘车线路:乘坐104、1 08、118、198及椒江一金清公交车直达枫南小区,乘坐107、105、 109、112、901、 902公交车到星星广场下车,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 ``` ----- Original issue reported on code.google.com by `poweragr...@gmail.com` on 30 May 2014 at 7:59
defect
黄岩检查男性不育挂什么科 黄岩检查男性不育挂什么科【台州五洲生殖医院】 咨询热线 微信号tzwzszyy 医院地址 台 (枫南大转盘旁)乘车线路 、 、 、 , 、 、 、 、 、 ,步行即可到院。 诊疗项目:阳痿,早泄,前列腺炎,前列腺增生,龟头炎,�� �精,无精。包皮包茎,精索静脉曲张,淋病等。 台州五洲生殖医院是台州最大的男科医院,权威专家在线免�� �咨询,拥有专业完善的男科检查治疗设备,严格按照国家标� ��收费。尖端医疗设备,与世界同步。权威专家,成就专业典 范。人性化服务,一切以患者为中心。 看男科就选台州五洲生殖医院,专业男科为男人。 original issue reported on code google com by poweragr gmail com on may at
1
77,574
27,056,635,495
IssuesEvent
2023-02-13 16:35:37
vector-im/element-call
https://api.github.com/repos/vector-im/element-call
closed
Audio streams are affected by OS play/pause controls on Safari
T-Defect S-Minor O-Occasional Z-Platform-Specific
### Steps to reproduce 1. Start a call in Safari, with at least one other participant 2. The audio track of the participant should show in the OS-level list of audio playbacks ![image](https://user-images.githubusercontent.com/1549952/212850380-201578ec-0981-472f-bbe3-4788f9cc6133.png) 3. Pause it from there This is not inherently problematic, but the real issue comes from my BT headphones: when I take them off, they pause thing currently playing, which stops the audio stream from Element Call. I suspect the two problems are linked, but it is easier to reproduce with the steps above. ### Outcome #### What did you expect? The audio stream from the remote participant gets paused, so you don't get any audio from them anymore, and have to reload the page #### What happened instead? It should keep playing ### Operating system macOS ### Browser information Safari 16.2 (18614.3.7.1.5) ### URL for webapp call.element.io ### Will you send logs? No
1.0
Audio streams are affected by OS play/pause controls on Safari - ### Steps to reproduce 1. Start a call in Safari, with at least one other participant 2. The audio track of the participant should show in the OS-level list of audio playbacks ![image](https://user-images.githubusercontent.com/1549952/212850380-201578ec-0981-472f-bbe3-4788f9cc6133.png) 3. Pause it from there This is not inherently problematic, but the real issue comes from my BT headphones: when I take them off, they pause thing currently playing, which stops the audio stream from Element Call. I suspect the two problems are linked, but it is easier to reproduce with the steps above. ### Outcome #### What did you expect? The audio stream from the remote participant gets paused, so you don't get any audio from them anymore, and have to reload the page #### What happened instead? It should keep playing ### Operating system macOS ### Browser information Safari 16.2 (18614.3.7.1.5) ### URL for webapp call.element.io ### Will you send logs? No
defect
audio streams are affected by os play pause controls on safari steps to reproduce start a call in safari with at least one other participant the audio track of the participant should show in the os level list of audio playbacks pause it from there this is not inherently problematic but the real issue comes from my bt headphones when i take them off they pause thing currently playing which stops the audio stream from element call i suspect the two problems are linked but it is easier to reproduce with the steps above outcome what did you expect the audio stream from the remote participant gets paused so you don t get any audio from them anymore and have to reload the page what happened instead it should keep playing operating system macos browser information safari url for webapp call element io will you send logs no
1
10,858
2,971,097,356
IssuesEvent
2015-07-14 02:51:53
SAA-SDT/EAD-Revision
https://api.github.com/repos/SAA-SDT/EAD-Revision
opened
Write introductory comment to include in EAD3 schemas
Documentation Schema Design
Need to write some acknowledgements, probably some technical advice.
1.0
Write introductory comment to include in EAD3 schemas - Need to write some acknowledgements, probably some technical advice.
non_defect
write introductory comment to include in schemas need to write some acknowledgements probably some technical advice
0
80,012
29,867,175,337
IssuesEvent
2023-06-20 05:30:11
PowerDNS/pdns
https://api.github.com/repos/PowerDNS/pdns
closed
zoneToCache does not use query-local-address
rec defect
<!-- Hi! Thanks for filing an issue. It will be read with care by human beings. Can we ask you to please fill out this template and not simply demand new features or send in complaints? Thanks! --> <!-- Also please search the existing issues (both open and closed) to see if your report might be duplicate --> <!-- Please don't file an issue when you have a support question, send support questions to the mailinglist or ask them on IRC (https://www.powerdns.com/opensource.html) --> <!-- Before filing your ticket, please read our 'out in the open' support policy at https://blog.powerdns.com/2016/01/18/open-source-support-out-in-the-open/ --> <!-- Tell us what is issue is about --> - Program: Recursor <!-- delete the ones that do not apply --> - Issue type: Bug report ### Short description <!-- Explain in a few sentences what the issue/request is --> zoneToCache does not use query-local-address if localAddress is not set ### Environment <!-- Tell us about the environment --> - Operating system: Oracle Linux 9.2 - Software version: 4.8.4 - Software source: PowerDNS repository <!-- e.g. Operating system repository, PowerDNS repository, compiled yourself --> ### Steps to reproduce <!-- Tell us step-by-step how the issue can be triggered. Please include your configuration files and any (Lua) scripts that are loaded. --> 1. On a system where the default ip / route does not reach the internet configure zoneToCache without setting localAddress. Like zoneToCache(".", "url", "https://www.internic.net/domain/root.zone", { refreshPeriod = 86400 }) 2. Start pdns-recursor. It is not able to connect to internic.net because it uses the (private) default ip / route (ends in a timeout) 3. stop pdns-recursor and set localAddress. Like zoneToCache(".", "url", "https://www.internic.net/domain/root.zone", { refreshPeriod = 86400, localAddress = "my.public.ip.addr" }) Now pdns-recursor is able to load the root hints. ### Expected behaviour <!-- What would you expect to happen when the reproduction steps are run --> zoneToCache should use query-local-address as documentated ### Actual behaviour zoneToCache does not use query-local-address if localAddress is not set ### Other information <!-- if you already did more digging into the issue, please provide all the information you gathered -->
1.0
zoneToCache does not use query-local-address - <!-- Hi! Thanks for filing an issue. It will be read with care by human beings. Can we ask you to please fill out this template and not simply demand new features or send in complaints? Thanks! --> <!-- Also please search the existing issues (both open and closed) to see if your report might be duplicate --> <!-- Please don't file an issue when you have a support question, send support questions to the mailinglist or ask them on IRC (https://www.powerdns.com/opensource.html) --> <!-- Before filing your ticket, please read our 'out in the open' support policy at https://blog.powerdns.com/2016/01/18/open-source-support-out-in-the-open/ --> <!-- Tell us what is issue is about --> - Program: Recursor <!-- delete the ones that do not apply --> - Issue type: Bug report ### Short description <!-- Explain in a few sentences what the issue/request is --> zoneToCache does not use query-local-address if localAddress is not set ### Environment <!-- Tell us about the environment --> - Operating system: Oracle Linux 9.2 - Software version: 4.8.4 - Software source: PowerDNS repository <!-- e.g. Operating system repository, PowerDNS repository, compiled yourself --> ### Steps to reproduce <!-- Tell us step-by-step how the issue can be triggered. Please include your configuration files and any (Lua) scripts that are loaded. --> 1. On a system where the default ip / route does not reach the internet configure zoneToCache without setting localAddress. Like zoneToCache(".", "url", "https://www.internic.net/domain/root.zone", { refreshPeriod = 86400 }) 2. Start pdns-recursor. It is not able to connect to internic.net because it uses the (private) default ip / route (ends in a timeout) 3. stop pdns-recursor and set localAddress. Like zoneToCache(".", "url", "https://www.internic.net/domain/root.zone", { refreshPeriod = 86400, localAddress = "my.public.ip.addr" }) Now pdns-recursor is able to load the root hints. ### Expected behaviour <!-- What would you expect to happen when the reproduction steps are run --> zoneToCache should use query-local-address as documentated ### Actual behaviour zoneToCache does not use query-local-address if localAddress is not set ### Other information <!-- if you already did more digging into the issue, please provide all the information you gathered -->
defect
zonetocache does not use query local address program recursor issue type bug report short description zonetocache does not use query local address if localaddress is not set environment operating system oracle linux software version software source powerdns repository steps to reproduce on a system where the default ip route does not reach the internet configure zonetocache without setting localaddress like zonetocache url refreshperiod start pdns recursor it is not able to connect to internic net because it uses the private default ip route ends in a timeout stop pdns recursor and set localaddress like zonetocache url refreshperiod localaddress my public ip addr now pdns recursor is able to load the root hints expected behaviour zonetocache should use query local address as documentated actual behaviour zonetocache does not use query local address if localaddress is not set other information
1
75,550
25,912,092,115
IssuesEvent
2022-12-15 14:42:24
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Element nightly no update available
T-Defect
### Steps to reproduce 1. 🤷 2. Check updates ### Outcome #### What did you expect? To see an update #### What happened instead? No updates available Mentioned by @gaelledel in https://github.com/vector-im/element-web/issues/24022#issuecomment-1353056924 ### Operating system _No response_ ### Application version _No response_ ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
1.0
Element nightly no update available - ### Steps to reproduce 1. 🤷 2. Check updates ### Outcome #### What did you expect? To see an update #### What happened instead? No updates available Mentioned by @gaelledel in https://github.com/vector-im/element-web/issues/24022#issuecomment-1353056924 ### Operating system _No response_ ### Application version _No response_ ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
defect
element nightly no update available steps to reproduce 🤷 check updates outcome what did you expect to see an update what happened instead no updates available mentioned by gaelledel in operating system no response application version no response how did you install the app no response homeserver no response will you send logs no
1
283,754
8,723,289,422
IssuesEvent
2018-12-09 20:29:51
tophat/yvm
https://api.github.com/repos/tophat/yvm
closed
yvm - semantic release versioning
enhancement help wanted high priority
**Is your feature request related to a problem? Please describe.** It would be good for users to install specific versions (and easily identify what versions have problems, will break API's etc). We are running under continuous release right now, and while this is great for us, is not so great for the wider internet. **Describe the solution you'd like** Someway to version yvm (open to suggestions) **Describe alternatives you've considered** We could use `npm` to host the core of our JS app
1.0
yvm - semantic release versioning - **Is your feature request related to a problem? Please describe.** It would be good for users to install specific versions (and easily identify what versions have problems, will break API's etc). We are running under continuous release right now, and while this is great for us, is not so great for the wider internet. **Describe the solution you'd like** Someway to version yvm (open to suggestions) **Describe alternatives you've considered** We could use `npm` to host the core of our JS app
non_defect
yvm semantic release versioning is your feature request related to a problem please describe it would be good for users to install specific versions and easily identify what versions have problems will break api s etc we are running under continuous release right now and while this is great for us is not so great for the wider internet describe the solution you d like someway to version yvm open to suggestions describe alternatives you ve considered we could use npm to host the core of our js app
0
164,740
12,812,888,271
IssuesEvent
2020-07-04 09:26:20
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
closed
RVD#2983: CWE-134 (format), If syslogs format strings can be influenced by an attacker, they can b... @ s/boards/crazyflie/init.c:86
CWE-134 bug components software flawfinder flawfinder_level_4 mitigated robot component: PX4 static analysis testing triage version: v1.8.0
```yaml id: 2983 title: 'RVD#2983: CWE-134 (format), If syslogs format strings can be influenced by an attacker, they can b... @ s/boards/crazyflie/init.c:86' type: bug description: If syslogs format strings can be influenced by an attacker, they can be exploited (CWE-134). Use a constant format string for syslog. . Happening @ ...s/boards/crazyflie/init.c:86 cwe: - CWE-134 cve: None keywords: - flawfinder - flawfinder_level_4 - static analysis - testing - triage - CWE-134 - bug - 'version: v1.8.0' - 'robot component: PX4' - components software system: ./Firmware/src/drivers/boards/crazyflie/init.c:86:26 vendor: null severity: rvss-score: 0 rvss-vector: '' severity-description: '' cvss-score: 0 cvss-vector: '' links: - https://github.com/aliasrobotics/RVD/issues/2983 flaw: phase: testing specificity: subject-specific architectural-location: application-specific application: N/A subsystem: N/A package: N/A languages: None date-detected: 2020-06-29 (16:02) detected-by: Alias Robotics detected-by-method: testing static date-reported: 2020-06-29 (16:02) reported-by: Alias Robotics reported-by-relationship: automatic issue: https://github.com/aliasrobotics/RVD/issues/2983 reproducibility: always trace: '(context) # define message(...) syslog(__VA_ARGS__)' reproduction: See artifacts below (if available) reproduction-image: gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_px4/-/jobs/615986299/artifacts/download exploitation: description: '' exploitation-image: '' exploitation-vector: '' exploitation-recipe: '' mitigation: description: Use a constant format string for syslog pull-request: '' date-mitigation: '' ```
1.0
RVD#2983: CWE-134 (format), If syslogs format strings can be influenced by an attacker, they can b... @ s/boards/crazyflie/init.c:86 - ```yaml id: 2983 title: 'RVD#2983: CWE-134 (format), If syslogs format strings can be influenced by an attacker, they can b... @ s/boards/crazyflie/init.c:86' type: bug description: If syslogs format strings can be influenced by an attacker, they can be exploited (CWE-134). Use a constant format string for syslog. . Happening @ ...s/boards/crazyflie/init.c:86 cwe: - CWE-134 cve: None keywords: - flawfinder - flawfinder_level_4 - static analysis - testing - triage - CWE-134 - bug - 'version: v1.8.0' - 'robot component: PX4' - components software system: ./Firmware/src/drivers/boards/crazyflie/init.c:86:26 vendor: null severity: rvss-score: 0 rvss-vector: '' severity-description: '' cvss-score: 0 cvss-vector: '' links: - https://github.com/aliasrobotics/RVD/issues/2983 flaw: phase: testing specificity: subject-specific architectural-location: application-specific application: N/A subsystem: N/A package: N/A languages: None date-detected: 2020-06-29 (16:02) detected-by: Alias Robotics detected-by-method: testing static date-reported: 2020-06-29 (16:02) reported-by: Alias Robotics reported-by-relationship: automatic issue: https://github.com/aliasrobotics/RVD/issues/2983 reproducibility: always trace: '(context) # define message(...) syslog(__VA_ARGS__)' reproduction: See artifacts below (if available) reproduction-image: gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_px4/-/jobs/615986299/artifacts/download exploitation: description: '' exploitation-image: '' exploitation-vector: '' exploitation-recipe: '' mitigation: description: Use a constant format string for syslog pull-request: '' date-mitigation: '' ```
non_defect
rvd cwe format if syslogs format strings can be influenced by an attacker they can b s boards crazyflie init c yaml id title rvd cwe format if syslogs format strings can be influenced by an attacker they can b s boards crazyflie init c type bug description if syslogs format strings can be influenced by an attacker they can be exploited cwe use a constant format string for syslog happening s boards crazyflie init c cwe cwe cve none keywords flawfinder flawfinder level static analysis testing triage cwe bug version robot component components software system firmware src drivers boards crazyflie init c vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity subject specific architectural location application specific application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace context define message syslog va args reproduction see artifacts below if available reproduction image gitlab com aliasrobotics offensive alurity pipelines active pipeline jobs artifacts download exploitation description exploitation image exploitation vector exploitation recipe mitigation description use a constant format string for syslog pull request date mitigation
0
79,790
29,145,989,833
IssuesEvent
2023-05-18 02:59:26
AshleyYakeley/Truth
https://api.github.com/repos/AshleyYakeley/Truth
opened
Binds not typed correctly in interactive mode
defect interactive
``` $ pinafore -i pinafore> x <- pure 34 pinafore> :t x : None ```
1.0
Binds not typed correctly in interactive mode - ``` $ pinafore -i pinafore> x <- pure 34 pinafore> :t x : None ```
defect
binds not typed correctly in interactive mode pinafore i pinafore x pure pinafore t x none
1
439,795
30,715,144,045
IssuesEvent
2023-07-27 12:34:21
withastro/docs
https://api.github.com/repos/withastro/docs
closed
💡 Idea: explain is:inline in ThemeToggle
improve documentation tutorial
Add a note that explain why is:inline is used in the script tag in this example https://docs.astro.build/en/tutorial/6-islands/2/#add-client-side-interactivity From what I unterstand up until now, there should be no difference in how the code works in production, wheter you use is:inline or not. If you dismiss the is:inline instruction astro minifies the script and declares it as module. But it is still inlined in every html file in the output, therefore the behaviour doesn't change. Generally we wan't the code to block the rendering of the html with the script tag so no flicker occurs when the prefferred theme is not equal the current theme. I get that and that's why we probably got to write the is:inline, or am I wrong with this point? Greetings Dino
1.0
💡 Idea: explain is:inline in ThemeToggle - Add a note that explain why is:inline is used in the script tag in this example https://docs.astro.build/en/tutorial/6-islands/2/#add-client-side-interactivity From what I unterstand up until now, there should be no difference in how the code works in production, wheter you use is:inline or not. If you dismiss the is:inline instruction astro minifies the script and declares it as module. But it is still inlined in every html file in the output, therefore the behaviour doesn't change. Generally we wan't the code to block the rendering of the html with the script tag so no flicker occurs when the prefferred theme is not equal the current theme. I get that and that's why we probably got to write the is:inline, or am I wrong with this point? Greetings Dino
non_defect
💡 idea explain is inline in themetoggle add a note that explain why is inline is used in the script tag in this example from what i unterstand up until now there should be no difference in how the code works in production wheter you use is inline or not if you dismiss the is inline instruction astro minifies the script and declares it as module but it is still inlined in every html file in the output therefore the behaviour doesn t change generally we wan t the code to block the rendering of the html with the script tag so no flicker occurs when the prefferred theme is not equal the current theme i get that and that s why we probably got to write the is inline or am i wrong with this point greetings dino
0
730,368
25,169,721,554
IssuesEvent
2022-11-11 01:20:02
googleapis/nodejs-secret-manager
https://api.github.com/repos/googleapis/nodejs-secret-manager
closed
Does this library support Annotations?
type: question api: secretmanager priority: p3
Annotations allow you to store arbitrary data on a secret but I don't see any functionality in this library for it.
1.0
Does this library support Annotations? - Annotations allow you to store arbitrary data on a secret but I don't see any functionality in this library for it.
non_defect
does this library support annotations annotations allow you to store arbitrary data on a secret but i don t see any functionality in this library for it
0
248,773
7,935,755,212
IssuesEvent
2018-07-09 07:00:33
magda-io/magda
https://api.github.com/repos/magda-io/magda
closed
Dataset connector UI
feature request priority: low
Name / ID / Status / Buttons Set creation Create a new connecter Surface schema more prominently.
1.0
Dataset connector UI - Name / ID / Status / Buttons Set creation Create a new connecter Surface schema more prominently.
non_defect
dataset connector ui name id status buttons set creation create a new connecter surface schema more prominently
0
48,643
13,181,182,004
IssuesEvent
2020-08-12 13:57:24
NREL/EnergyPlus
https://api.github.com/repos/NREL/EnergyPlus
closed
FaultPropertiesAirFilter::CheckFaultyAirFilterFanCurve is called before sizing occurs
Defect
Issue overview -------------- https://github.com/NREL/EnergyPlus/blob/baff08990c9c4d12d8bbde0378073018a3ea6acf/src/EnergyPlus/FaultsManager.cc#L2145-L2190 On https://github.com/NREL/EnergyPlus/blob/develop/src/EnergyPlus/FaultsManager.cc#L2176, `FanMaxAirFlowRate == -99999` when the referenced fan has an autosized flow rate. ### Details Some additional details for this issue (if relevant): - Platform (Operating system, version) - Version of EnergyPlus (if using an intermediate build, include SHA) - Unmethours link or helpdesk ticket number ### Checklist Add to this list or remove from it as applicable. This is a simple templated set of guidelines. - [x] Defect file added (list location of defect file here): https://github.com/NREL/EnergyPlusDevSupport/blob/master/DefectFiles/7000s/7896/7896.idf - [x] Ticket added to Pivotal for defect (development team task) - [x] Pull request created (the pull request will have additional tasks related to reviewing changes that fix this defect)
1.0
FaultPropertiesAirFilter::CheckFaultyAirFilterFanCurve is called before sizing occurs - Issue overview -------------- https://github.com/NREL/EnergyPlus/blob/baff08990c9c4d12d8bbde0378073018a3ea6acf/src/EnergyPlus/FaultsManager.cc#L2145-L2190 On https://github.com/NREL/EnergyPlus/blob/develop/src/EnergyPlus/FaultsManager.cc#L2176, `FanMaxAirFlowRate == -99999` when the referenced fan has an autosized flow rate. ### Details Some additional details for this issue (if relevant): - Platform (Operating system, version) - Version of EnergyPlus (if using an intermediate build, include SHA) - Unmethours link or helpdesk ticket number ### Checklist Add to this list or remove from it as applicable. This is a simple templated set of guidelines. - [x] Defect file added (list location of defect file here): https://github.com/NREL/EnergyPlusDevSupport/blob/master/DefectFiles/7000s/7896/7896.idf - [x] Ticket added to Pivotal for defect (development team task) - [x] Pull request created (the pull request will have additional tasks related to reviewing changes that fix this defect)
defect
faultpropertiesairfilter checkfaultyairfilterfancurve is called before sizing occurs issue overview on fanmaxairflowrate when the referenced fan has an autosized flow rate details some additional details for this issue if relevant platform operating system version version of energyplus if using an intermediate build include sha unmethours link or helpdesk ticket number checklist add to this list or remove from it as applicable this is a simple templated set of guidelines defect file added list location of defect file here ticket added to pivotal for defect development team task pull request created the pull request will have additional tasks related to reviewing changes that fix this defect
1
39,666
9,607,764,687
IssuesEvent
2019-05-11 22:04:53
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
opened
4.x: Merging issues with config
defect
This is a (multiple allowed): * [x] bug * [ ] enhancement * [ ] feature-discussion (RFC) * CakePHP Version: 4.x dev ### What you did I have a plugin from 3.x, upgraded to 4.x that has this in tests bootstrap: ```php ConnectionManager::setConfig('test', [ ... 'database' => getenv('db_database') ?: null, ``` both null and false worked fine so far to let the internal defaults take over: ```php protected $_baseConfig = [ 'persistent' => false, 'username' => null, 'password' => null, 'database' => ':memory:', ``` ### What happened But now in 4.x when trying to run tests: > PHP Fatal error: Uncaught TypeError: file_exists() expects parameter 1 to be a valid path, null given in /.../vendor/cakephp/cakephp/src/Database/Driver/Sqlite.php:69 ### What you expected to happen It should use the core defaults here.
1.0
4.x: Merging issues with config - This is a (multiple allowed): * [x] bug * [ ] enhancement * [ ] feature-discussion (RFC) * CakePHP Version: 4.x dev ### What you did I have a plugin from 3.x, upgraded to 4.x that has this in tests bootstrap: ```php ConnectionManager::setConfig('test', [ ... 'database' => getenv('db_database') ?: null, ``` both null and false worked fine so far to let the internal defaults take over: ```php protected $_baseConfig = [ 'persistent' => false, 'username' => null, 'password' => null, 'database' => ':memory:', ``` ### What happened But now in 4.x when trying to run tests: > PHP Fatal error: Uncaught TypeError: file_exists() expects parameter 1 to be a valid path, null given in /.../vendor/cakephp/cakephp/src/Database/Driver/Sqlite.php:69 ### What you expected to happen It should use the core defaults here.
defect
x merging issues with config this is a multiple allowed bug enhancement feature discussion rfc cakephp version x dev what you did i have a plugin from x upgraded to x that has this in tests bootstrap php connectionmanager setconfig test database getenv db database null both null and false worked fine so far to let the internal defaults take over php protected baseconfig persistent false username null password null database memory what happened but now in x when trying to run tests php fatal error uncaught typeerror file exists expects parameter to be a valid path null given in vendor cakephp cakephp src database driver sqlite php what you expected to happen it should use the core defaults here
1
71,860
23,830,762,578
IssuesEvent
2022-09-05 20:27:45
bigbluebutton/bigbluebutton
https://api.github.com/repos/bigbluebutton/bigbluebutton
closed
userdata listenOnly and autoJoinAudio not working as expected
type: defect module: client status: stale component: listen only
**Describe the bug** passing the userdata parameters in join urls does not result as expected. * userdata-bbb_force_listen_only=true does not work for moderators, but it really would make sense, as there can be a lot of moderators in a room and you even may wish rooms without audio anyway. I cannot see a reason why this setting should be limited to attendees. * auto_join_audio does only work for listen_only_mode=false, not for force_listen_only=true If listen only is forced, auto_join_audio is ignored. to be consistent it would have to work for both, listen_only_mode=false and force_listen_only=true **To Reproduce** create a join link with the parameters and join a room. **Expected behavior** moderators should be able to join listen only. force listen only users should not get a popup when auto_join_audio was supplied, as it works with listen_only_mode=false **Actual behavior** moderators joining with bbb_force_listen_only=true still can choose microphone. users joining with force_listen_only=true and auto_join_audio=true still get a popup for confirmation. **BBB version (optional):** 2.2.17
1.0
userdata listenOnly and autoJoinAudio not working as expected - **Describe the bug** passing the userdata parameters in join urls does not result as expected. * userdata-bbb_force_listen_only=true does not work for moderators, but it really would make sense, as there can be a lot of moderators in a room and you even may wish rooms without audio anyway. I cannot see a reason why this setting should be limited to attendees. * auto_join_audio does only work for listen_only_mode=false, not for force_listen_only=true If listen only is forced, auto_join_audio is ignored. to be consistent it would have to work for both, listen_only_mode=false and force_listen_only=true **To Reproduce** create a join link with the parameters and join a room. **Expected behavior** moderators should be able to join listen only. force listen only users should not get a popup when auto_join_audio was supplied, as it works with listen_only_mode=false **Actual behavior** moderators joining with bbb_force_listen_only=true still can choose microphone. users joining with force_listen_only=true and auto_join_audio=true still get a popup for confirmation. **BBB version (optional):** 2.2.17
defect
userdata listenonly and autojoinaudio not working as expected describe the bug passing the userdata parameters in join urls does not result as expected userdata bbb force listen only true does not work for moderators but it really would make sense as there can be a lot of moderators in a room and you even may wish rooms without audio anyway i cannot see a reason why this setting should be limited to attendees auto join audio does only work for listen only mode false not for force listen only true if listen only is forced auto join audio is ignored to be consistent it would have to work for both listen only mode false and force listen only true to reproduce create a join link with the parameters and join a room expected behavior moderators should be able to join listen only force listen only users should not get a popup when auto join audio was supplied as it works with listen only mode false actual behavior moderators joining with bbb force listen only true still can choose microphone users joining with force listen only true and auto join audio true still get a popup for confirmation bbb version optional
1
11,173
2,641,248,680
IssuesEvent
2015-03-11 16:46:18
chrsmith/html5rocks
https://api.github.com/repos/chrsmith/html5rocks
closed
GEO Location Service is supported by Opera
Priority-Medium Type-Defect
Original [issue 36](https://code.google.com/p/html5rocks/issues/detail?id=36) created by chrsmith on 2010-06-24T09:52:57.000Z: <b>Please describe the issue:</b> Unlike your Page says (small browser Icon List on top - gray opera symbol), Opera does indeed support Geo Location. Please provide any additional information below: Version information Version 10.60 Internal Build 6368 Platform Linux System x86_64, 2.6.32-22-generic Browser identification Opera/9.80 (X11; Linux x86_64; U; en) Presto/2.5.29 Version/10.60
1.0
GEO Location Service is supported by Opera - Original [issue 36](https://code.google.com/p/html5rocks/issues/detail?id=36) created by chrsmith on 2010-06-24T09:52:57.000Z: <b>Please describe the issue:</b> Unlike your Page says (small browser Icon List on top - gray opera symbol), Opera does indeed support Geo Location. Please provide any additional information below: Version information Version 10.60 Internal Build 6368 Platform Linux System x86_64, 2.6.32-22-generic Browser identification Opera/9.80 (X11; Linux x86_64; U; en) Presto/2.5.29 Version/10.60
defect
geo location service is supported by opera original created by chrsmith on please describe the issue unlike your page says small browser icon list on top gray opera symbol opera does indeed support geo location please provide any additional information below version information version internal build platform linux system generic browser identification opera linux u en presto version
1
36,479
7,954,782,383
IssuesEvent
2018-07-12 08:40:49
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
closed
Referenced WindowDefinitions should not be inlined in MySQL, Sybase SQL Anywhere
C: Functionality P: Low R: Fixed T: Defect
MySQL and Sybase SQL Anywhere support the `WINDOW` clause to create named window definitions. Yet, jOOQ inlines the references in these databases. We should reference them by name. This is a cosmetic change and will not be backported
1.0
Referenced WindowDefinitions should not be inlined in MySQL, Sybase SQL Anywhere - MySQL and Sybase SQL Anywhere support the `WINDOW` clause to create named window definitions. Yet, jOOQ inlines the references in these databases. We should reference them by name. This is a cosmetic change and will not be backported
defect
referenced windowdefinitions should not be inlined in mysql sybase sql anywhere mysql and sybase sql anywhere support the window clause to create named window definitions yet jooq inlines the references in these databases we should reference them by name this is a cosmetic change and will not be backported
1
343,811
10,336,616,219
IssuesEvent
2019-09-03 13:20:24
kirbydesign/designsystem
https://api.github.com/repos/kirbydesign/designsystem
closed
Enhancement: It should be define a message if there are no items
component:List enhancement low priority workaround possible
You should be able to define a message on the kirby list, in the case where are no items in the bound items array.
1.0
Enhancement: It should be define a message if there are no items - You should be able to define a message on the kirby list, in the case where are no items in the bound items array.
non_defect
enhancement it should be define a message if there are no items you should be able to define a message on the kirby list in the case where are no items in the bound items array
0
29,946
5,960,870,904
IssuesEvent
2017-05-29 15:18:43
contao/core-bundle
https://api.github.com/repos/contao/core-bundle
closed
Bilder wichtiger Teil über "mehrere bearbeiten" festlegen
defect
Wenn ich den wichtigen Teil bei mehreren Bildern gleichzeitig festlegen möchte, dann kann ich bei der Auswahl der Felder zusätzlich auch Koordinaten, sowie Breite als Feld auswählen. Wenn ich dann im Bearbeitenmodus bin, dann kann ich nur beim 1. Bild den wichtigen Teil mit der Maus auswählen. Bei den anderen Bildern geht das nicht. Hier sehe ich aber im Gegensatz zum 1. Bild die zusätzlichen Felder für Koordinaten und Breite. Ist das Verhalten ein Fehler oder technisch nicht anders möglich? Was ist zu tun: 1. Dateiverwaltung 2. mehrere Bearbeiten aktivieren 3. mehr als 1 Bild auswählen 4. Vorhandene Felder: Alle auswählen 5. Bei Bild 1 kann jetzt der wichtige Teil ausgewählt werden 6. Bei Bild 2 - X ist das nicht per Maus möglich, sondern es werden zusätzliche Felder angezeigt. Contao 4.3.10
1.0
Bilder wichtiger Teil über "mehrere bearbeiten" festlegen - Wenn ich den wichtigen Teil bei mehreren Bildern gleichzeitig festlegen möchte, dann kann ich bei der Auswahl der Felder zusätzlich auch Koordinaten, sowie Breite als Feld auswählen. Wenn ich dann im Bearbeitenmodus bin, dann kann ich nur beim 1. Bild den wichtigen Teil mit der Maus auswählen. Bei den anderen Bildern geht das nicht. Hier sehe ich aber im Gegensatz zum 1. Bild die zusätzlichen Felder für Koordinaten und Breite. Ist das Verhalten ein Fehler oder technisch nicht anders möglich? Was ist zu tun: 1. Dateiverwaltung 2. mehrere Bearbeiten aktivieren 3. mehr als 1 Bild auswählen 4. Vorhandene Felder: Alle auswählen 5. Bei Bild 1 kann jetzt der wichtige Teil ausgewählt werden 6. Bei Bild 2 - X ist das nicht per Maus möglich, sondern es werden zusätzliche Felder angezeigt. Contao 4.3.10
defect
bilder wichtiger teil über mehrere bearbeiten festlegen wenn ich den wichtigen teil bei mehreren bildern gleichzeitig festlegen möchte dann kann ich bei der auswahl der felder zusätzlich auch koordinaten sowie breite als feld auswählen wenn ich dann im bearbeitenmodus bin dann kann ich nur beim bild den wichtigen teil mit der maus auswählen bei den anderen bildern geht das nicht hier sehe ich aber im gegensatz zum bild die zusätzlichen felder für koordinaten und breite ist das verhalten ein fehler oder technisch nicht anders möglich was ist zu tun dateiverwaltung mehrere bearbeiten aktivieren mehr als bild auswählen vorhandene felder alle auswählen bei bild kann jetzt der wichtige teil ausgewählt werden bei bild x ist das nicht per maus möglich sondern es werden zusätzliche felder angezeigt contao
1
39,440
9,459,750,469
IssuesEvent
2019-04-17 09:16:07
primefaces/primeng
https://api.github.com/repos/primefaces/primeng
closed
TypeError: Cannot read property 'nodeName' of null at Table.handleRowClick
defect
I get the following error when I click enter on p-table editable column cellEditor: TypeError: Cannot read property 'nodeName' of null at Table.handleRowClick. Could someone explainwhy? When I put the input inside html form, the error disappears.
1.0
TypeError: Cannot read property 'nodeName' of null at Table.handleRowClick - I get the following error when I click enter on p-table editable column cellEditor: TypeError: Cannot read property 'nodeName' of null at Table.handleRowClick. Could someone explainwhy? When I put the input inside html form, the error disappears.
defect
typeerror cannot read property nodename of null at table handlerowclick i get the following error when i click enter on p table editable column celleditor typeerror cannot read property nodename of null at table handlerowclick could someone explainwhy when i put the input inside html form the error disappears
1
48,783
10,278,453,726
IssuesEvent
2019-08-25 14:33:55
snack-news/Snack-BE
https://api.github.com/repos/snack-news/Snack-BE
closed
Unused import - javax.persistence.TypedQuery.
CodeSmell💩
### [Codacy](https://app.codacy.com/app/snack-news/Snack-BE/commit?cid=387599550) detected an issue: #### Message: `Unused import - javax.persistence.TypedQuery.` #### Currently on: + **Commit**: 556b3158db15caf0a4f664381a3edc8f04ece95c + **File**: [src/main/java/com/snack/news/repository/NewsRepositoryImpl.java](https://github.com/snack-news/Snack-BE/blob/556b3158db15caf0a4f664381a3edc8f04ece95c/src/main/java/com/snack/news/repository/NewsRepositoryImpl.java) + **LineNum**: [8](https://github.com/snack-news/Snack-BE/blob/556b3158db15caf0a4f664381a3edc8f04ece95c/src/main/java/com/snack/news/repository/NewsRepositoryImpl.java#L8)
1.0
Unused import - javax.persistence.TypedQuery. - ### [Codacy](https://app.codacy.com/app/snack-news/Snack-BE/commit?cid=387599550) detected an issue: #### Message: `Unused import - javax.persistence.TypedQuery.` #### Currently on: + **Commit**: 556b3158db15caf0a4f664381a3edc8f04ece95c + **File**: [src/main/java/com/snack/news/repository/NewsRepositoryImpl.java](https://github.com/snack-news/Snack-BE/blob/556b3158db15caf0a4f664381a3edc8f04ece95c/src/main/java/com/snack/news/repository/NewsRepositoryImpl.java) + **LineNum**: [8](https://github.com/snack-news/Snack-BE/blob/556b3158db15caf0a4f664381a3edc8f04ece95c/src/main/java/com/snack/news/repository/NewsRepositoryImpl.java#L8)
non_defect
unused import javax persistence typedquery detected an issue message unused import javax persistence typedquery currently on commit file linenum
0
51,449
13,207,478,084
IssuesEvent
2020-08-14 23:15:25
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
opened
trigger-sim triggers a known gcc bug (Trac #445)
Incomplete Migration Migrated from Trac combo simulation defect
<details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/445">https://code.icecube.wisc.edu/projects/icecube/ticket/445</a>, reported by negaand owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2012-10-22T22:05:32", "_ts": "1350943532000000", "description": "On OSX Snow Leopard, trigger-sim triggers a known gcc bug.\n\n{{{\n[ 69%] Building CXX object trigger-sim/CMakeFiles/trigger-sim.dir/private/trigger-sim/modules/ClusterTrigger.cxx.o\n/Volumes/Macintosh_HD2/build/slave_build/buildbot/quick_simulation_osx_server_10_6_7/source/trigger-sim/private/trigger-sim/modules/ClusterTrigger.cxx:28: internal compiler error: in reference_to_unused, at dwarf2out.c:10603\nPlease submit a full bug report,\nwith preprocessed source if appropriate.\nSee <URL:http://developer.apple.com/bugreporter> for instructions.\nmake[2]: *** [trigger-sim/CMakeFiles/trigger-sim.dir/private/trigger-sim/modules/ClusterTrigger.cxx.o] Error 1\nmake[1]: *** [trigger-sim/CMakeFiles/trigger-sim.dir/all] Error 2\nmake: *** [all] Error 2\n}}}", "reporter": "nega", "cc": "nega jacobi", "resolution": "fixed", "time": "2012-10-22T22:02:58", "component": "combo simulation", "summary": "trigger-sim triggers a known gcc bug", "priority": "normal", "keywords": "", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
1.0
trigger-sim triggers a known gcc bug (Trac #445) - <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/445">https://code.icecube.wisc.edu/projects/icecube/ticket/445</a>, reported by negaand owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2012-10-22T22:05:32", "_ts": "1350943532000000", "description": "On OSX Snow Leopard, trigger-sim triggers a known gcc bug.\n\n{{{\n[ 69%] Building CXX object trigger-sim/CMakeFiles/trigger-sim.dir/private/trigger-sim/modules/ClusterTrigger.cxx.o\n/Volumes/Macintosh_HD2/build/slave_build/buildbot/quick_simulation_osx_server_10_6_7/source/trigger-sim/private/trigger-sim/modules/ClusterTrigger.cxx:28: internal compiler error: in reference_to_unused, at dwarf2out.c:10603\nPlease submit a full bug report,\nwith preprocessed source if appropriate.\nSee <URL:http://developer.apple.com/bugreporter> for instructions.\nmake[2]: *** [trigger-sim/CMakeFiles/trigger-sim.dir/private/trigger-sim/modules/ClusterTrigger.cxx.o] Error 1\nmake[1]: *** [trigger-sim/CMakeFiles/trigger-sim.dir/all] Error 2\nmake: *** [all] Error 2\n}}}", "reporter": "nega", "cc": "nega jacobi", "resolution": "fixed", "time": "2012-10-22T22:02:58", "component": "combo simulation", "summary": "trigger-sim triggers a known gcc bug", "priority": "normal", "keywords": "", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
defect
trigger sim triggers a known gcc bug trac migrated from json status closed changetime ts description on osx snow leopard trigger sim triggers a known gcc bug n n n building cxx object trigger sim cmakefiles trigger sim dir private trigger sim modules clustertrigger cxx o n volumes macintosh build slave build buildbot quick simulation osx server source trigger sim private trigger sim modules clustertrigger cxx internal compiler error in reference to unused at c nplease submit a full bug report nwith preprocessed source if appropriate nsee url for instructions nmake error nmake error nmake error n reporter nega cc nega jacobi resolution fixed time component combo simulation summary trigger sim triggers a known gcc bug priority normal keywords milestone owner olivas type defect
1
30,285
6,085,099,187
IssuesEvent
2017-06-17 11:24:01
dirkwhoffmann/virtualc64
https://api.github.com/repos/dirkwhoffmann/virtualc64
opened
Performance decrease in V1.5
help wanted Type-Defect
There is a noticeable performance decrease in 1.5. On my machine, frequency drops from 8.5MHz to 7.5MHz in warp mode (compared with 1.4.2). TODOs: 1. Check if we need to activate Swift optimizations manually 2. Check if Swift / Objective-C bridge is performing the penalty Bridging code is invoked frequently in AudioEngine. If this is the case, we should consider one of the following options: a) Reimplement AudioEngine in Objective-C b) Bypass Objective-C proxy with an externC function talking to SID directly via SIDWrapper struct. c) Wait and see if Swift will support direct C++ calls in future For me, preferred option seems to be b)
1.0
Performance decrease in V1.5 - There is a noticeable performance decrease in 1.5. On my machine, frequency drops from 8.5MHz to 7.5MHz in warp mode (compared with 1.4.2). TODOs: 1. Check if we need to activate Swift optimizations manually 2. Check if Swift / Objective-C bridge is performing the penalty Bridging code is invoked frequently in AudioEngine. If this is the case, we should consider one of the following options: a) Reimplement AudioEngine in Objective-C b) Bypass Objective-C proxy with an externC function talking to SID directly via SIDWrapper struct. c) Wait and see if Swift will support direct C++ calls in future For me, preferred option seems to be b)
defect
performance decrease in there is a noticeable performance decrease in on my machine frequency drops from to in warp mode compared with todos check if we need to activate swift optimizations manually check if swift objective c bridge is performing the penalty bridging code is invoked frequently in audioengine if this is the case we should consider one of the following options a reimplement audioengine in objective c b bypass objective c proxy with an externc function talking to sid directly via sidwrapper struct c wait and see if swift will support direct c calls in future for me preferred option seems to be b
1
360,210
10,685,549,902
IssuesEvent
2019-10-22 12:54:37
AY1920S1-CS2103T-W11-1/main
https://api.github.com/repos/AY1920S1-CS2103T-W11-1/main
closed
As a user, I want to set start date / end date for the training plan
priority.High status.Ongoing type.Story
... so that I can make customized plans for different coding interviews. _User story for epic in issue #5 _
1.0
As a user, I want to set start date / end date for the training plan - ... so that I can make customized plans for different coding interviews. _User story for epic in issue #5 _
non_defect
as a user i want to set start date end date for the training plan so that i can make customized plans for different coding interviews user story for epic in issue
0
28,879
8,221,797,885
IssuesEvent
2018-09-06 04:07:44
ros-planning/navigation2
https://api.github.com/repos/ros-planning/navigation2
opened
Update CMakeLists.txt files to also build libraries
build
Currently we're building only executables for the various ROS nodes. We also need to build libraries to enable composition in a single process.
1.0
Update CMakeLists.txt files to also build libraries - Currently we're building only executables for the various ROS nodes. We also need to build libraries to enable composition in a single process.
non_defect
update cmakelists txt files to also build libraries currently we re building only executables for the various ros nodes we also need to build libraries to enable composition in a single process
0
15,709
2,868,999,679
IssuesEvent
2015-06-05 22:29:00
dart-lang/sdk
https://api.github.com/repos/dart-lang/sdk
closed
args: default negatable to false
Area-Pkg Pkg-Args Priority-Unassigned Triaged Type-Defect
*This issue was originally filed by @seaneagan* _____ I can't prove this, but I feel like non-negatable is more common. For example, --help, --verbose, --quiet, --version are all non-negatable. Also, since flags should generally default to false, specifying --no-foo is redundant. I would prefer to explicitly ask for this feature when I need it, but I'm not sure when that would be.
1.0
args: default negatable to false - *This issue was originally filed by @seaneagan* _____ I can't prove this, but I feel like non-negatable is more common. For example, --help, --verbose, --quiet, --version are all non-negatable. Also, since flags should generally default to false, specifying --no-foo is redundant. I would prefer to explicitly ask for this feature when I need it, but I'm not sure when that would be.
defect
args default negatable to false this issue was originally filed by seaneagan i can t prove this but i feel like non negatable is more common for example help verbose quiet version are all non negatable also since flags should generally default to false specifying no foo is redundant i would prefer to explicitly ask for this feature when i need it but i m not sure when that would be
1
24,824
4,106,887,578
IssuesEvent
2016-06-06 10:37:36
scipy/scipy
https://api.github.com/repos/scipy/scipy
closed
scipy.io.loadmat segfaults on some truncated mat files
defect scipy.io
On Ubuntu 15.10, with scipy.version.full_version 0.14.1, scipy.version.git_revision f9fbd6ccdbfb26698dbaa55bff3b00022ca6d31d. To reproduce: import scipy.io scipy.io.loadmat('segfault.mat') The attached (zipped) matfile is the shortest prefix of my matfile that reproduces the error. Truncated files can be created by a corrupt download, so this scenario isn't merely theoretical. In fact, that's how I came upon it. [segfault.mat.zip](https://github.com/scipy/scipy/files/222146/segfault.mat.zip)
1.0
scipy.io.loadmat segfaults on some truncated mat files - On Ubuntu 15.10, with scipy.version.full_version 0.14.1, scipy.version.git_revision f9fbd6ccdbfb26698dbaa55bff3b00022ca6d31d. To reproduce: import scipy.io scipy.io.loadmat('segfault.mat') The attached (zipped) matfile is the shortest prefix of my matfile that reproduces the error. Truncated files can be created by a corrupt download, so this scenario isn't merely theoretical. In fact, that's how I came upon it. [segfault.mat.zip](https://github.com/scipy/scipy/files/222146/segfault.mat.zip)
defect
scipy io loadmat segfaults on some truncated mat files on ubuntu with scipy version full version scipy version git revision to reproduce import scipy io scipy io loadmat segfault mat the attached zipped matfile is the shortest prefix of my matfile that reproduces the error truncated files can be created by a corrupt download so this scenario isn t merely theoretical in fact that s how i came upon it
1
771,124
27,070,353,553
IssuesEvent
2023-02-14 06:07:29
Snapchat/KeyDB
https://api.github.com/repos/Snapchat/KeyDB
closed
16 fixables vulnerabilities are present on eqalpha/keydb:x86_64_v6.3.2
Priority 1
## Request for Update Docker Image I hope this message finds you well. I would like to use your image, but I have found multiple vulnerabilities on the latest version of the image on [ArtifactHub](https://artifacthub.io/packages/helm/enapter/keydb?modal=security-report). There is 16 fixables vulnerabilities present on the latest image. Could you please update the Docker image to fix these vulnerabilities? Additionally, could I have access to the Dockerfile? I couldn't find it. Thank you for your time and efforts. ![image](https://user-images.githubusercontent.com/11197007/216002084-0f6bc419-31ef-411a-8aca-845727b6f2b5.png) ![image](https://user-images.githubusercontent.com/11197007/216001923-5f78d987-7359-4903-ab2d-53430fdb21c6.png)
1.0
16 fixables vulnerabilities are present on eqalpha/keydb:x86_64_v6.3.2 - ## Request for Update Docker Image I hope this message finds you well. I would like to use your image, but I have found multiple vulnerabilities on the latest version of the image on [ArtifactHub](https://artifacthub.io/packages/helm/enapter/keydb?modal=security-report). There is 16 fixables vulnerabilities present on the latest image. Could you please update the Docker image to fix these vulnerabilities? Additionally, could I have access to the Dockerfile? I couldn't find it. Thank you for your time and efforts. ![image](https://user-images.githubusercontent.com/11197007/216002084-0f6bc419-31ef-411a-8aca-845727b6f2b5.png) ![image](https://user-images.githubusercontent.com/11197007/216001923-5f78d987-7359-4903-ab2d-53430fdb21c6.png)
non_defect
fixables vulnerabilities are present on eqalpha keydb request for update docker image i hope this message finds you well i would like to use your image but i have found multiple vulnerabilities on the latest version of the image on there is fixables vulnerabilities present on the latest image could you please update the docker image to fix these vulnerabilities additionally could i have access to the dockerfile i couldn t find it thank you for your time and efforts
0
54,124
13,400,470,838
IssuesEvent
2020-09-03 15:52:11
AeroScripts/QuestieDev
https://api.github.com/repos/AeroScripts/QuestieDev
closed
Quest issue around "Bone-Bladed Weapons"
Questie - Quest Issue Type - Defect
<!-- READ THIS FIRST Hello, thanks for taking the time to report a bug! Before you proceed, please verify that you're running the latest version of Questie. The easiest way to do this is via the Twitch client, but you can also download the latest version here: https://www.curseforge.com/wow/addons/questie Questie is one of the most popular Classic WoW addons, with over 22M downloads. However, like almost all WoW addons, it's built and maintained by a team of volunteers. The current Questie team is: * @AeroScripts / Aero#1357 (Discord) * @BreakBB / TheCrux#1702 (Discord) * @drejjmit / Drejjmit#8241 (Discord) * @Dyaxler / Dyaxler#0086 (Discord) * @gogo1951 / Gogo#0298 (Discord) If you'd like to help, please consider making a donation. You can do so here: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=aero1861%40gmail%2ecom&lc=CA&item_name=Questie%20Devs&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted You can also help as a tester, developer or translator, please join the Questie Discord here https://discord.gg/fYcQfv7 --> ## Description <!-- Explain in detail what problem you encountered. Is a quest not showing or showing again or an objective not showing or a spawn missing? --> There are a lot of mobs that drop the claws needed for the quest, however, only 2 spots appear on the map. Possible bug with grouping, data seems to be correct. @drejjmit can you verify what's causing this? > [11477] = {"White Ravasaur Claw",nil,nil,nil,1,0,{6581,6505,6506,6507,6508,9683,9684,},nil,nil,nil,nil,}, ## Wowhead link <!-- If this issue is about a quest/npc/item/... then please include a link to it from Wowhead: https://classic.wowhead.com --> * Bone-Bladed Weapons - Quest - World of Warcraft || https://classic.wowhead.com/quest=4300/bone-bladed-weapons * White Ravasaur Claw - Item - World of Warcraft || https://classic.wowhead.com/item=11477/white-ravasaur-claw ## Screenshots <!-- If you can, add a screenshot to help explaining the problem (e.g. of your map where a quest is not shown but the NPC has an ! above him). Simply drag and drop the image in this input field, no need to upload it to any other image platform. --> ![image](https://user-images.githubusercontent.com/55365231/92133043-898cb500-edcd-11ea-90f9-cefd46ad257d.png) ## Questie version <!-- Which version of Questie are you using? You can find it by: - 1. Hovering over the Questie Minimap Icon - 2. looking at your Questie.toc file (open it with any text editor). It looks something like this: "v5.9.0" or "## Version: 5.9.0". --> 6.0.5
1.0
Quest issue around "Bone-Bladed Weapons" - <!-- READ THIS FIRST Hello, thanks for taking the time to report a bug! Before you proceed, please verify that you're running the latest version of Questie. The easiest way to do this is via the Twitch client, but you can also download the latest version here: https://www.curseforge.com/wow/addons/questie Questie is one of the most popular Classic WoW addons, with over 22M downloads. However, like almost all WoW addons, it's built and maintained by a team of volunteers. The current Questie team is: * @AeroScripts / Aero#1357 (Discord) * @BreakBB / TheCrux#1702 (Discord) * @drejjmit / Drejjmit#8241 (Discord) * @Dyaxler / Dyaxler#0086 (Discord) * @gogo1951 / Gogo#0298 (Discord) If you'd like to help, please consider making a donation. You can do so here: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=aero1861%40gmail%2ecom&lc=CA&item_name=Questie%20Devs&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted You can also help as a tester, developer or translator, please join the Questie Discord here https://discord.gg/fYcQfv7 --> ## Description <!-- Explain in detail what problem you encountered. Is a quest not showing or showing again or an objective not showing or a spawn missing? --> There are a lot of mobs that drop the claws needed for the quest, however, only 2 spots appear on the map. Possible bug with grouping, data seems to be correct. @drejjmit can you verify what's causing this? > [11477] = {"White Ravasaur Claw",nil,nil,nil,1,0,{6581,6505,6506,6507,6508,9683,9684,},nil,nil,nil,nil,}, ## Wowhead link <!-- If this issue is about a quest/npc/item/... then please include a link to it from Wowhead: https://classic.wowhead.com --> * Bone-Bladed Weapons - Quest - World of Warcraft || https://classic.wowhead.com/quest=4300/bone-bladed-weapons * White Ravasaur Claw - Item - World of Warcraft || https://classic.wowhead.com/item=11477/white-ravasaur-claw ## Screenshots <!-- If you can, add a screenshot to help explaining the problem (e.g. of your map where a quest is not shown but the NPC has an ! above him). Simply drag and drop the image in this input field, no need to upload it to any other image platform. --> ![image](https://user-images.githubusercontent.com/55365231/92133043-898cb500-edcd-11ea-90f9-cefd46ad257d.png) ## Questie version <!-- Which version of Questie are you using? You can find it by: - 1. Hovering over the Questie Minimap Icon - 2. looking at your Questie.toc file (open it with any text editor). It looks something like this: "v5.9.0" or "## Version: 5.9.0". --> 6.0.5
defect
quest issue around bone bladed weapons read this first hello thanks for taking the time to report a bug before you proceed please verify that you re running the latest version of questie the easiest way to do this is via the twitch client but you can also download the latest version here questie is one of the most popular classic wow addons with over downloads however like almost all wow addons it s built and maintained by a team of volunteers the current questie team is aeroscripts aero discord breakbb thecrux discord drejjmit drejjmit discord dyaxler dyaxler discord gogo discord if you d like to help please consider making a donation you can do so here you can also help as a tester developer or translator please join the questie discord here description there are a lot of mobs that drop the claws needed for the quest however only spots appear on the map possible bug with grouping data seems to be correct drejjmit can you verify what s causing this white ravasaur claw nil nil nil nil nil nil nil wowhead link bone bladed weapons quest world of warcraft white ravasaur claw item world of warcraft screenshots questie version which version of questie are you using you can find it by hovering over the questie minimap icon looking at your questie toc file open it with any text editor it looks something like this or version
1