search for: sentinel

Displaying 20 results from an estimated 215 matches for "sentinel".

2005 Aug 17
2
Sentinel Driver
I'm trying to run the Ardis Cutting Optimizer under wine but it uses a Rainbow Sentinel driver to detect a parallel port dongle for copy protection. I have the dongle and I've installed the sentinel driver, but when I run wine COWIN.exe I get the following: fixme:vxd:VXD_Open Unknown/unsupported VxD L"sntnlusb.vxd". Try setting Windows version to 'nt40' or ...
2007 Jan 08
1
quota in mysql not being updated
...ame_and_realm | varchar(255) | NO | PRI | | | | quota_type | varchar(255) | NO | PRI | | | | quota_used_kb | int(11) | NO | | 0 | | +--------------------+--------------+------+-----+---------+-------+ mail logs: Jan 7 22:13:46 sentinel deliver(test.marshal at acd.net): auth input: test.marshal at acd.net Jan 7 22:13:46 sentinel deliver(test.marshal at acd.net): auth input: uid=225 Jan 7 22:13:46 sentinel deliver(test.marshal at acd.net): auth input: gid=225 Jan 7 22:13:46 sentinel deliver(test.marshal at acd.net): auth input:...
2009 Apr 20
4
wine is unable to load driver "Sentinel"
...> Threads: <omissis> Backtrace: <omissis> wine: Call from 0x7b844463 to unimplemented function ntoskrnl.exe.IoQueryDeviceDescription, aborting wine: Call from 0x7b844463 to unimplemented function ntoskrnl.exe.IoQueryDeviceDescription, aborting err:winedevice:ServiceMain driver L"Sentinel" failed to load Anyone have any idea to be able to make the driver "Sentinel" running? Thanks in advance
2023 Mar 15
1
[libnbd PATCH v4 1/3] lib/utils: introduce xwritel() as a more robust and convenient write()
...patch were received -- and well-received! :) > > One question: > > > The only change I recommend is the addition of the __attribute__; but > > with or without it, I'm happy with: > > Do we have general rules on attribute usage in libnbd vs. nbdkit? > > The __sentinel__ (aka sentinel) attribute is used in nbdkit, but not yet > in libnbd. Now, that could be happenstance, but it rhymes with another > (obscure?) discrepancy in attribute usage. I think it's happenstance; until today, libnbd did not yet have a varargs function where annotating the need for...
2016 Jul 11
2
[PATCH] D22161: SystemZ: Avoid implicit iterator conversions, NFC
...'t find time to continue until the last few weeks. Let me summarize the big picture (adding llvm-dev since I haven't talked about this in a while): - List iterators work by having a pointer to a list node and walking "node->next" every time operator++ is called. - Lists need a sentinel of some sort to represent the "list.end()" iterator. - The way to do this efficiently and safely is to have the sentinel be some un-templated "list_node_base" class that has a next and prev pointer. The next/prev pointers point to "list_node_base", and "list_iter...
2012 Dec 14
1
[PATCH] daemon: Add sentinel attribute to commandf and commandrf
...on/daemon.h @@ -100,9 +100,9 @@ extern char **split_lines (char *str); #define COMMAND_FLAG_CHROOT_COPY_FILE_TO_STDIN 2048 extern int commandf (char **stdoutput, char **stderror, int flags, - const char *name, ...); + const char *name, ...) __attribute__((sentinel)); extern int commandrf (char **stdoutput, char **stderror, int flags, - const char *name, ...); + const char *name, ...) __attribute__((sentinel)); extern int commandvf (char **stdoutput, char **stderror, int flags, char const *con...
2015 Oct 08
5
ilist/iplist are broken (maybe I'll fix them?)
...); Head->next = nullptr; Head->prev = Head; } } // complex insertion/removal logic. }; Every list operation (even begin()/end()) starts by somehow calling `ensureHead()`. The key structural differences here: - Instead of the list containing the sentinel, it contains a pointer to the head of the list, and the sentinel is created on demand. - The sentinel is the full `T` (rather than ListNodeBase). - While "prev" pointers are circular, the sentinel's "next" pointer points at `nullptr` (it's "snipped off&q...
2014 Jul 08
0
Redis sentinel support in dict
Redis sentinel ( http://redis.io/topics/sentinel ) is a service that monitors and manages redis master slave replication. Using sentinel you can easily create a redis ha cluster. You can connect to a sentiniel and subscribe to certain events then in case of an failover update the redis address to new master etc....
2003 Mar 12
2
sentinel.vxd
Hi, When i am running tally5.4 on linux7.1 through wine i am getting following errors. fixme:file:Device_Open Unknown/Unsupported VxD SENTINEL.VXD. Try Setting Windows version to 'nt40' or 'win31' thanks in advance Nayan __________________________________________________________ Great Travel Deals, Airfares, Hotels on http://www.journeymart.com/rediff/travel.asp
2023 Aug 29
3
[Bridge] [GIT PULL] sysctl changes for v6.6-rc1
...system or file to help avoid merge conflicts. Matthew Wilcox pointed out though that if we're going to do that we might as well also *save* space while at it and try to remove the extra last sysctl entry added at the end of each array, a sentintel, instead of bloating the kernel by adding a new sentinel with each array moved. Doing that was not so trivial, and has required slowing down the moves of kernel/sysctl.c arrays and measuring the impact on size by each new move. The complex part of the effort to help reduce the size of each sysctl is being done by the patient work of el se?or Don Joel G...
2019 Apr 24
1
[PATCH nbdkit] build: Use dlsym as sentinel function for -ldl.
...ince it appears that using this option causes dlopen to be included in the final binary implicitly. This causes configure to set DL_LIBS='', but unfortunately dlsym is not included implicitly and so linking fails. Although I believe this is a bug in GCC 9, as a workaround use dlsym as the sentinel function instead. The new output from ‘./configure CFLAGS="-fsanitize=address"’ is: checking for library containing dlsym... -ldl [...] checking for dladdr... yes See also: https://bugzilla.redhat.com/show_bug.cgi?id=1702761 --- configure.ac | 8 ++++---- 1 file changed, 4 inser...
2014 Jul 10
2
[LLVMdev] bug in ilist_node::getPrevNode() ?
Hi all, I stumbled over a problem in ilist_node::getPrevNode(). It crashes when invoked for the first element in a list. It's because the Prev pointer of a first list element does not point to the sentinel but is just null. First question: Is this really a bug or am I doing something wrong? Second question: If it is a bug, what should be the correct behaviour? Either change insert() to let Prev of the first element really point to the sentinel or just change getPrevNode()? I don't really need...
2024 Apr 25
1
Big speedup in install.packages() by re-using connections
I'd like to raise this again now that 4.4 is out. Below is a more complete patch which includes a function to properly cleanup libcurl when R quits. Implementing this is a little tricky because libcurl is a separate "module" in R, perhaps there is a better way, but this works: view: https://github.com/r-devel/r-svn/pull/166/files patch:
2012 Jan 20
1
[HCL] Riello Netman Plus 102 supported by snmp-ups
Riello Netman Plus 102 Card plugged into a Riello Sentinel SDL 6000-7 and a Riello Sentinel Dual SDH 1000-7 upsc RielloSentinelSDL6000 battery.charge: 100.0 battery.current: 0.0 battery.runtime: 16560.0 battery.runtime.low: 3 battery.voltage: 217.7 driver.name: snmp-ups driver.parameter.mibs: ietf driver.parameter.pollinterval: 2 driver.parameter.port: 10...
2012 Jan 20
1
[HCL] Riello Netman Plus 102 supported by snmp-ups
Riello Netman Plus 102 Card plugged into a Riello Sentinel SDL 6000-7 and a Riello Sentinel Dual SDH 1000-7 upsc RielloSentinelSDL6000 battery.charge: 100.0 battery.current: 0.0 battery.runtime: 16560.0 battery.runtime.low: 3 battery.voltage: 217.7 driver.name: snmp-ups driver.parameter.mibs: ietf driver.parameter.pollinterval: 2 driver.parameter.port: 10...
2003 Mar 16
6
[LONG] Weird problem with HTB using htb.init
...ry htb.init option i could think of and i couldnt fix it. If someone has an idea please say something. Thanks. Attached are the commands generated by htb.ini compile & the list from htb.init list & htb.init stats. The class files on eth1 (upload) are: -------------/------------- root@sentinel:/etc/sysconfig/htb# ls eth1* eth1 eth1-2.root eth1-2:10.high eth1-2:20.normal eth1-2:30.low root@sentinel:/etc/sysconfig/htb# cat eth1 DEFAULT=30 R2Q=1 root@sentinel:/etc/sysconfig/htb# cat eth1-2.root # root class for outgoing traffic RATE=90Kbit LEAF=sfq root@sentinel:/etc/sysconfig/htb# c...
2013 Sep 17
0
Writing driver for Opti-UPS Sentinel Software
* Florian Bruhin <me at the-compiler.org> [2013-09-17 15:35:01 +0200]: > Heya, > > I recently bought an Opti-UPS[1] ValueSeries 575C and now I'm trying > to write a NUT driver for it. > [...] I started reading through all drivers using the same baudrate, and the powercom protocol and driver looked really familiar! I then got it to work by doing some minimal changes to
2016 Mar 17
0
[PATCH 1/3] appliance: Pass "quiet" option to kernel when !verbose.
...>identifier, "") ? " guestfs_identifier=" : "", diff --git a/src/proto.c b/src/proto.c index 5213856..df7be89 100644 --- a/src/proto.c +++ b/src/proto.c @@ -129,6 +129,9 @@ guestfs_int_log_message_callback (guestfs_h *g, const char *buf, size_t len) const char *sentinel; size_t slen; + /* Since 2016-03, if !verbose, then we add the "quiet" flag to the + * kernel, so the following sentinel will never be produced. XXX + */ sentinel = "Linux version"; /* kernel up */ slen = strlen (sentinel); if (memmem (buf, len,...
2023 Dec 16
0
Copernicus Data Space Ecosystem API Wrapper
Dear all, I am pleased to announce the release of a new package named 'CDSE' on CRAN. It provides direct access to the 'Copernicus Data Space Ecosystem' for R users. With this package, you can efficiently access the imagery from Sentinel-1, Sentinel-2, Sentinel-3, and Sentinel-5 missions and process and download data from the R environment. One of the significant benefits of this package is that you can download the satellite data that is limited to your area of interest instead of the entire image tiles (100 x 100 km) that are us...
2023 Dec 16
0
Copernicus Data Space Ecosystem API Wrapper
Dear all, I am pleased to announce the release of a new package named 'CDSE' on CRAN. It provides direct access to the 'Copernicus Data Space Ecosystem' for R users. With this package, you can efficiently access the imagery from Sentinel-1, Sentinel-2, Sentinel-3, and Sentinel-5 missions and process and download data from the R environment. One of the significant benefits of this package is that you can download the satellite data that is limited to your area of interest instead of the entire image tiles (100 x 100 km) that are us...