search for: l73

Displaying 14 results from an estimated 14 matches for "l73".

Did you mean: 173
2014 Feb 25
3
Arch Linux and Tripp Lite web snmp card issues.
...hasn't done its job, for some reasons. well, 1 clear is that's it not a completed effort... at all but, still IIRC, it should have produced at least a bit more @Jason: how have you called the script? could you please also send an archive including: - the results of the adapted commands on #L73, #L74 https://github.com/networkupstools/nut/blob/master/scripts/subdriver/gen-snmp-subdriver.sh - your mib file cheers, Arno -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.alioth.debian.org/pipermail/nut-upsuser/attachments/20140225/e9d414ac/attac...
2014 Feb 26
0
Arch Linux and Tripp Lite web snmp card issues.
..."classic" OID check, I think we can just add a special case to check for NULL, and continue the loop if oid_auto_check has not been provided. > @Jason: how have you called the script? > could you please also send an archive including: > - the results of the adapted commands on #L73, #L74 > https://github.com/networkupstools/nut/blob/master/scripts/subdriver/gen-snmp-subdriver.sh > - your mib file Jason, this would still be useful to address the issue of gen-snmp-subdriver not parsing things correctly. -- Charles Lepple clepple at gmail -------------- next part -...
2018 Aug 19
2
Protocol for an Arduino based UPS
Hi, I'm building a DIY UPS for a Raspberry Pi using a 12V SLA battery, charger, and an off the shelf 5V regulator. To monitor the battery level I'd like to use an Arduino or similar type device. Since the Arduino can have a serial over USB connection with the Pi I'd like to implement a protocol that can be used with NUT. Does anyone know if something like this has already been done?
2018 Aug 20
0
Protocol for an Arduino based UPS
...ly ubiquitous, so that might be where I would start. You mentioned serial-over-USB - does the Arduino show up as a /dev/ttyUSB* node or similar on the Pi? The following assumes that it does. blazer_ser has some test strings: https://github.com/networkupstools/nut/blob/v2.7.4/drivers/blazer_ser.c#L73 but development has been moved to nutdrv_qx, which is the preferred driver to test against (though it is a bit more comprehensive, and perhaps less clear at first glance). Protocol documentation: https://networkupstools.org/protocols/megatec.html
2014 Feb 25
0
Arch Linux and Tripp Lite web snmp card issues.
On Feb 24, 2014, at 11:48 PM, Jason R Begley wrote: > 0.073855 load_mib2nut: trying classic method with 'delta_ups' mib > 0.073878 Entering nut_snmp_get_str() > 0.073899 nut_snmp_get((null)) > 0.073918 nut_snmp_walk((null)) Arnaud, The gen-snmp-subdriver.sh script is setting mib2nut[i]->oid_auto_check to NULL for new drivers (with no instructions
2017 Mar 14
3
llvm-stress crash
...%Shuff7 %Tr70 = trunc i16 %E32 to i1 br i1 %Tr70, label %CF262, label %CF270 CF270: ; preds = %CF262 %Sl71 = select i1 %Sl42, <8 x i1> zeroinitializer, <8 x i1> zeroinitializer %Cmp72 = icmp sge <2 x i16> %B54, zeroinitializer %L73 = load i64, i64* %Sl store i64 %L73, i64* %Sl %E74 = extractelement <8 x i1> %Sl71, i32 5 br i1 %E74, label %CF262, label %CF265 CF265: ; preds = %CF270 %Shuff75 = shufflevector <2 x i32> %I68, <2 x i32> zeroinitializer, <2 x...
2011 Oct 11
1
recursive finds
I am trying to supplement and ultimately provide a patch for ''foreman'' which is an adjunct to puppet. Essentially, there is a Hosts class which belongs_to Hostgroup and Hostgroup class has a column called ''ancestry'' which is actually a Hostgroup (probably what is referred to as STI but I am not sure) and thus within Foreman, nesting Hostgroups is not uncommon.
2020 Apr 04
0
Possible Bug In Validation of UTF-8 Sequences
.../wch/r-source/blob/tags/R-3-6-3/src/main/valid_utf8.h#L69 [6]: https://github.com/wch/r-source/blob/tags/R-3-6-3/src/main/connections.c#L3935 [7]: https://github.com/wch/r-source/blob/tags/R-3-6-3/src/main/character.c#L184 [8]: https://github.com/wch/r-source/blob/tags/R-3-6-3/src/main/valid_utf8.h#L73 [9]: https://github.com/wch/r-source/blob/tags/R-3-6-3/tests/PCRE.R#L16 -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch_val_utf8.txt URL: <https://stat.ethz.ch/pipermail/r-devel/attachments/20200404/2bef12f7/attachment.txt> -----...
2018 Jun 28
2
XRay feature – pid reporting
I'm still somewhat unclear about what you mean by "metadata record entry at the beginning of the block". I understand that I can make a MetadataRecord that contains the pid/tid since a metadata record contains 16 bytes. However, I don't understand what do you mean by the "beginning of the block". Do you mean right after the file header? My understanding is that at
2014 Feb 26
2
Arch Linux and Tripp Lite web snmp card issues.
...ID check, I think we can just add a special case to check for NULL, > and continue the loop if oid_auto_check has not been provided. > >> @Jason: how have you called the script? >> could you please also send an archive including: >> - the results of the adapted commands on #L73, #L74 >> https://github.com/networkupstools/nut/blob/master/scripts/subdriver/gen-snmp-subdriver.sh >> - your mib file > > Jason, > > this would still be useful to address the issue of gen-snmp-subdriver > not parsing things correctly. > > -- > Charles Lepple &...
2019 Jul 16
2
Custom calling convention & ARM target
Hello. For our project needs we implemented a custom calling convention. The main goals are to pass function arguments in registers and always use tailcall optimization for calls to functions with our CC when applicable. Function arguments are always pointers and the maximum number of arguments is 5. No frame pointer register is in use for this CC. No varargs. Finally, there are not any
2019 Jul 17
2
Custom calling convention & ARM target
...#39; so LR register gets changed. See https://gist.github.com/amitin/7df4fbb806c0b48eb5bcaf614e5d93cd#file-test-s-L31 Thus, when the execution flow reaches 'terminatorFunc' it will branch to an unknown location. See https://gist.github.com/amitin/7df4fbb806c0b48eb5bcaf614e5d93cd#file-test-s-L73 The same IR code works fine for x86_64. You can verify it by changing the triple to x86_64 (uncomment the test.ll:5 line and comment test.ll:4 then compile it with llc). I think I have to mention that I tried all above using LLVM v.8.0. Thank you kindly for any insights you can provide. On Tue,...
2017 Sep 17
0
FW: CRAN check errors: drake 4.1.0 on r-devel-linux-x86_64-debian-clang
...drake-00check.html (which are exactly the ones Uwe mentioned), I strongly believe that the problem has nothing to do with Gabor?s `crayon` package. Rather, all the CRAN errors are closely related to a function in drake 4.1.0 called https://github.com/wlandau-lilly/drake/blob/master/R/dependencies.R#L73, which only depends on base R. I have attached a minimal working example that should theoretically isolate and reproduce the https://www.r-project.org/nosvn/R.check/r-devel-linux-x86_64-debian-clang/drake-00check.html. Please let me know how you think we can proceed. I am actively maintaining `dra...
2014 Feb 25
2
Arch Linux and Tripp Lite web snmp card issues.
On 2/24/2014 11:10 PM, Charles Lepple wrote: > On Feb 24, 2014, at 10:29 PM, Jason R Begley wrote: > >> Thanks for the quick response Charles! I may not have gotten the correct output from the snmpwalk, let me know if the attachment is usable. Thanks! > Sorry, it's basically all comments. Do you have the stdout from the subdriver script? Also, how is the MIB file installed?