interfaces: defer manual rtsold script execution; closes #9564
The 10 seconds default comes from the ticket that showed a 5 second delay.
Ideally a few seconds would be better but in order to be on the safe side
10 seconds is also okay. In most cases we do not need the manual execution
and it would disrupt the already acquired prefix use.
[lit] Disable ulimit-nodarwin test on FreeBSD (#173155)
FreeBSD does not support using ulimit to grow up max file number per
process. This characteristic is inherited by Darwin and thus we pass
this test on FreeBSD as well.
pull some of the dhcpv6 options apart and print them for humans.
i was hoping someone else would have a go at this, but obviously
no one felt the need over the last 6 years.
opentofu110: Move to opentofu110
Permit to have versioned opentofu too so that we can import both older
and newer opentofu-s.
Done only via "git mv", needs actual adjustments too.
wip/yr: import yr-1.0.0 as wip/yr
Get the weather delivered to your command-line, or use as a
Go package.
The project uses Meteorologisk institutt's public API, and
OpenStreetMap's Nominatim API.
[mlir][dataflow] Fix DataFlowFramework crash by add isBlockEnd logic in the ProgramPoint::print (#173471)
Running -test-dead-code-analysis -debug on the following IR will trigger
a data-flow analysis framework assert, you can see
https://github.com/llvm/llvm-project/blob/2d6b1b174194198498eb10ae811632b3dd945ecf/mlir/include/mlir/Analysis/DataFlowFramework.h#L110
Fix DataFlowFramework crash by add isBlockEnd logic in the
ProgramPoint::print.
```
func.func @trs(%idx1: index, %idx2: index, %s: f32) {
scf.parallel (%i) = (%idx1) to (%idx2) step (%idx2) {
%r = memref.alloca() : memref<10xf32>
scf.forall (%e2) in (%idx2) {
%a = memref.load %r[%idx2] : memref<10xf32>
}
}
return
}
```