search for: complete

Displaying 20 results from an estimated 57562 matches for "complete".

Did you mean: completed
2008 Oct 14
1
FreeBSD 7-STABLE, isp(4), QLE2462: panic & deadlocks
...: <Dell Virtual Floppy 123> Removable Direct Access SCSI-0 device da1: 40.000MB/s transfers da1: Attempt to query device size failed: NOT READY, Medium not present Trying to mount root from ufs:/dev/mfid0s1a bce0: link state changed to UP mfi0: 3320 (277345023s/0x0008/info) - Battery charge complete --------------------------------------------------------------- 4. panic data and ddb output, also available at http://noc.ntua.gr/~christia/san/7-STABLE.deadlock-ddb.out : KKDDpanic: ufs_dirbad: /a: bad dir ino 3370734 at ofBBfset 0: mangled entry cpuid = 1 KDB: enter: panic [thread pid 768 tid...
2011 Nov 27
1
Simplifying my code
Hi, I have a pretty simple problem. Here is the code: dat1=complete(dat.mice,1) dat2=complete(dat.mice,2) dat3=complete(dat.mice,3) dat4=complete(dat.mice,4) dat5=complete(dat.mice,5) dat6=complete(dat.mice,6) dat7=complete(dat.mice,7) dat8=complete(dat.mice,8) dat9=complete(dat.mice,9) dat10=complete(dat.mice,10) dat11=complete(dat.mice,11) dat12=comple...
2018 Aug 29
4
bash completion in C7
Hello there, while bash completion was working great to me in CentOS6, since I'm using C7 I spend my day stuck on completion not working the way it should. The bad situations I'm facing are: - it doesn't expand *foo whereas there are *foo-named files in current dir, for instance: # rm *foo will show nothing whereas there's a file barfoo in curdir. - completion takes 10
2015 Feb 03
2
Re: make install ignoring PREFIX for bash_completion
> Date: Tue, 3 Feb 2015 09:36:01 -0800 > Subject: make install ignoring PREFIX for bash_completion > > I am trying to install the libguestfs python bindings in my > virtualenv. Since this cannot be done through PIP, The PIP problem is https://bugzilla.redhat.com/show_bug.cgi?id=1075594 Unfortunately we are stuck here because the pypi website still has a license that we cannot live
2010 Apr 02
2
Thunderbird subscription bug ?
...;" "*" 18 LSUB "" "#shared/*" 19 LIST "" "#shared/doveimap/folder/subfolder" 20 SUBSCRIBE "#shared/doveimap/folder/subfolder" out : * NAMESPACE (("" "/")) (("#shared/" "/")) NIL 4 OK Namespace completed. * LIST (\Noselect) "/" "" 5 OK List completed. 6 OK Lsub completed. * LIST (\HasNoChildren) "/" "Trash" * LIST (\HasNoChildren) "/" "INBOX" * LIST (\Noselect \HasChildren) "/" "#shared" 7 OK List completed. 8 OK Lsub...
2015 Feb 03
0
make install ignoring PREFIX for bash_completion
I am trying to install the libguestfs python bindings in my virtualenv. Since this cannot be done through PIP, I was trying to do the following: https://github.com/libguestfs/libguestfs/commit/fcbfc4775fa2a44020974073594a745ca420d614 To get to building the python dist, I did the following: git clone https://github.com/libguestfs/libguestfs.git git checkout 1.28.5 ./autogen.sh --disable-php
2017 Nov 17
2
Blank console but X11 works on MCP79 - old regression since 3.8
Hello, I've just been hit by this old bug which is still present in 4.14: https://bugs.freedesktop.org/show_bug.cgi?id=80675 On MCP79 (ION), when stolen memory is set to 32MB in BIOS, console is blank but X11 works. When the stolen memory is increased to 64MB, console works fine. Bisected it to this: 4f6029da58ba9204c98e33f4f3737fe085c87a6f is the first bad commit commit
2023 Jul 14
2
[libnbd PATCH 1/2] api: Tighten rules on completion.callback
...t; > completion.free callback already serves that role, it's easier to fix > > the documentation to match reality. After all, one only needs > > completion status if an aio command returned success (if it returned > > failure, we know that there is nothing that is going to complete > > later). > > > > However, there was one place where we indeed fail to call > > completion.callback, even though the corresponding aio call returned > > success, which can strand a user that was depending on the callback to > > know that the pending aio comman...
2008 Jun 18
2
Wine + Adobe CS3 not working
Hi everyone, I'm trying to get wine to work with CS3, but I can't seem to get it to work. I've tried copying some dll's, but it didn't help. I've reverted back to a clean install of Wine 1.0 now, and I was wondering if anyone could help? Code: fixme:ntdll:NtLockFile I/O completion on lock not implemented yet fixme:advapi:SetNamedSecurityInfoW L"C:\\Program
2015 Feb 03
0
Re: make install ignoring PREFIX for bash_completion
>> I am trying to install the libguestfs python bindings in my >> virtualenv. Since this cannot be done through PIP, > > The PIP problem is https://bugzilla.redhat.com/show_bug.cgi?id=1075594 > Unfortunately we are stuck here because the pypi website still has a > license that we cannot live with (it would have the effect of > assigning all work we upload to them). They
2017 Nov 17
2
Blank console but X11 works on MCP79 - old regression since 3.8
...own nouveau 0000:02:00.0: i2c: bus 0002: probing monitoring devices @@ -103,11 +103,11 @@ nouveau 0000:02:00.0: clk: 1b: 450000 KHz nouveau 0000:02:00.0: clk: --: core 450 MHz shader 1100 MHz vdec 450 MHz nouveau: DRM:00000000:00000080: init children... -nouveau: DRM:00000000:00000080: init completed in 71380us -[TTM] Zone kernel: Available graphics memory: 444902 kiB -[TTM] Zone highmem: Available graphics memory: 497930 kiB +nouveau: DRM:00000000:00000080: init completed in 71260us +[TTM] Zone kernel: Available graphics memory: 445198 kiB +[TTM] Zone highmem: Available graphics memory: 481...
2020 Sep 07
0
[libnbd PATCH 1/2] generator: Refactor handling of closures in unlocked functions
...= debug_callback; + h->debug_callback = *debug_callback; return 0; } diff --git a/lib/opt.c b/lib/opt.c index cc0c145..003ecf8 100644 --- a/lib/opt.c +++ b/lib/opt.c @@ -74,7 +74,7 @@ nbd_unlocked_opt_go (struct nbd_handle *h) { int err; nbd_completion_callback c = { .callback = go_complete, .user_data = &err }; - int r = nbd_unlocked_aio_opt_go (h, c); + int r = nbd_unlocked_aio_opt_go (h, &c); if (r == -1) return r; @@ -96,7 +96,7 @@ nbd_unlocked_opt_info (struct nbd_handle *h) { int err; nbd_completion_callback c = { .callback = go_complete, .user_data = &...
2009 Jan 23
1
ZIL FOID
I need some clarification on the FOID handed to zil_commit. I wrote a dscript to watch entry and return of zil_commit_writer. Here is an example output: <pre> 2009 Jan 23 23:34:36: ZIL Commit : Seq 183211310 : FOID 129644 Completed in 0 ms 2009 Jan 23 23:34:36: ZIL Commit : Seq 183211324 : FOID 129644 Completed in 0 ms 2009 Jan 23 23:34:36: ZIL Commit : Seq 183211386 : FOID 129644 Completed in 0 ms 2009 Jan 23 23:34:36: ZIL Commit : Seq 183211388 : FOID 129644 Completed in 0 ms 2009 Jan 23 23:34...
2015 Nov 13
3
Trying to compile DAHDI on Pidora 2014 (RPi)
...d an Amfeltec USB-FXO adapter and am trying to compile DAHDI 2.10 on a Raspberry PI running Pidora 2014 R3. I have all the dependencies but I get an error and cannot finish. Is it even possible to compile DAHDI for the ARM plataform? Here is the error I am getting: root at astpi dahdi-linux-complete-2.10.2+2.10.2]# make make -C linux all make[1]: Entering directory `/usr/src/dahdi-linux-complete-2.10.2+2.10.2/linux' make -C drivers/dahdi/firmware firmware-loaders make[2]: Entering directory `/usr/src/dahdi-linux-complete-2.10.2+2.10.2/linux/drivers/dahdi/firmware' make[2]: Leaving di...
2011 Aug 07
2
Dahdi does not build against Kernel 3.0.0
Errors follow: make make -C linux all make[1]: Entering directory `/usr/local/src/asterisk/dahdi-linux-complete-2.4.1.2+2.4.1/linux' make -C drivers/dahdi/firmware firmware-loaders make[2]: Entering directory `/usr/local/src/asterisk/dahdi-linux-complete-2.4.1.2+2.4.1/linux/drivers/dahdi/firmware' make[2]: Leaving directory `/usr/local/src/asterisk/dahdi-linux-complete-2.4.1.2+2.4.1/linux/drivers/d...
2018 Dec 07
2
[nbdkit PATCH] build: Allow 'make install' into non-root --prefix: bash-completion
In general, autotooled packages are supposed to allow './configure --prefix=$HOME/subdir' as a way to then get 'make install' to run as non-root. In fact, 'make distcheck' tests that this scenario works; alas, we fail due to: /usr/bin/install -c -m 644 ../../../bash/nbdkit '/usr/share/bash-completion/completions' /usr/bin/install: cannot remove
2023 Jul 16
1
[libnbd PATCH 1/2] api: Tighten rules on completion.callback
...ompletion.free callback already serves that role, it's easier to fix >>> the documentation to match reality. After all, one only needs >>> completion status if an aio command returned success (if it returned >>> failure, we know that there is nothing that is going to complete >>> later). >>> >>> However, there was one place where we indeed fail to call >>> completion.callback, even though the corresponding aio call returned >>> success, which can strand a user that was depending on the callback to >>> know that the p...
2019 Jul 08
2
Shell auto-completion for ld.lld linker
Hi lld developers, As a GSoC student I wrote static ld.lld auto-completion scripts for zsh and bash shell because it doesn't have much options and flags for dynamic completion. Whether I send pr to zsh-completion/bash-completion package or open phabricator review for them? Also gnu ld has already autocompletion for bash shell but l am not merging ld and lld completion scripts to one file
2017 Nov 01
2
Virtio BoF minutes from KVM Forum 2017
...nch of conscriptors twice - how would you do > > deal with a big buffer that cointains a large number of small packets > > with respect to completions? > > - is one bit for completion enough? right now it means descriptor was > > actually used. how to we signal when it was completed? > > I am not sure I understand the difference. Under virtio, driver makes a > descriptor available, then device reads/writes memory depending on descriptor > type, then marks it as used. > > What does completed mean? > During the BOF, someone raised the point that there i...
2017 Nov 01
2
Virtio BoF minutes from KVM Forum 2017
...nch of conscriptors twice - how would you do > > deal with a big buffer that cointains a large number of small packets > > with respect to completions? > > - is one bit for completion enough? right now it means descriptor was > > actually used. how to we signal when it was completed? > > I am not sure I understand the difference. Under virtio, driver makes a > descriptor available, then device reads/writes memory depending on descriptor > type, then marks it as used. > > What does completed mean? > During the BOF, someone raised the point that there i...