search for: whet

Displaying 20 results from an estimated 50 matches for "whet".

Did you mean: when
2013 Nov 13
0
[LLVMdev] Any objections to my importing GoogleMock to go with GoogleTest in LLVM?
Could you maybe give an example or two to whet our testing appetite? On Tue, Nov 12, 2013 at 10:04 PM, Chandler Carruth <chandlerc at google.com>wrote: > I have some concrete use cases in testing the pass manager where it will > allow the tests of this API to be more thorough, less verbose, and easier > to maintain. I'm no...
2004 Apr 29
1
i4l --> capi move - how?
...suggested boxes in 'menuconfig', explored the capi4linux websites - etc... but am missing some magic. I've "modprobe capi", if I don't "modprobe hisax type=11" to get- HiSax: Card 1 Protocol EDSS1 Id=HiSax (0) HiSax: Eicon.Diehl Diva driver Rev. 1.1.4.2 ... then whet am I meant to do instead? Obviously no *.... (load_module: CAPI not installed!) A pointer in the right direction please? ie - does the Dumb EICON card work with capi?, do I need the server eicon card instead?, is CAPI only working with Fritz's cards? -- . . ___. .__ Posix Syst...
2005 Aug 29
1
3.0.20 crashes on startup
Hi, after a problem last week with a kerberos security update from microsoft and my samba version I updated samba to 3.0.20. On most machines this works like a charm, but on one of them smbd crashes on startup. This is whet comes up in the logfile. [2005/08/29 13:35:45, 0] printing/print_cups.c:cups_cache_reload(85) Unable to connect to CUPS server localhost - Connection refused [2005/08/29 13:35:45, 0] printing/print_cups.c:cups_cache_reload(85) Unable to connect to CUPS server localhost - Connection refused [2...
2009 Feb 09
1
Problema to Mount drbd0
...tart = 0 Feb 9 18:11:42 tundra kernel: (31259,0):o2hb_read_slots:385 ERROR: status = -5 Feb 9 18:11:42 tundra kernel: (31259,0):o2hb_populate_slot_data:1299 ERROR: status = -5 Feb 9 18:11:42 tundra kernel: (31259,0):o2hb_region_dev_write:1399 ERROR: status = -5 The o2cb loaded successfully, but whet i run /etc/init.d/ocfs2 start/status i do not have an answer Can you help me? thank you for your attention Rgs -- Rafael Emerick Z. de Oliveira -------------- next part -------------- An HTML attachment was scrubbed... URL: http://oss.oracle.com/pipermail/ocfs2-devel/attachments/20090209/27929...
2013 Nov 14
3
[LLVMdev] Any objections to my importing GoogleMock to go with GoogleTest in LLVM?
On Tue, Nov 12, 2013 at 7:24 PM, Sean Silva <silvas at purdue.edu> wrote: > Could you maybe give an example or two to whet our testing appetite? It would honestly be simpler for me to write the tests after pulling it in and point at them. The GoogleMock project has some good examples as well. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/a...
2008 May 29
2
strange situation
..._read bad magic 0xd9fee666 at offset=27920 If I look at ps ax I get about 20 winbind entries When we try to access the only share on the box everything seems to hang... we can't even do and ls -al Then I restart winbind and everything frees up. It seems as if winbind is hanging Anyone know whet might be going on and how to resolve it? -- Jason
2013 Jun 18
1
Again, Windows 7 access to Samba server: Strange performance/delay problems while opening share
...wledge about samba network packages is far to low, to be able to find the problem. In my desparation now, I joined this list, hoping there is anybody, who can give me a hint to the right direction, to solve this problem. Is here anybody who can "read" this traffic dumps, and may be see whet this clients problem is? I could also post thes three traffic dumps, they are small (about 15k each). Who can i contact, to help me solving this problem? Thanks, Ralf
2011 Apr 20
3
[LLVMdev] Is this a bug in clang?
...Is this a bug in clang, or a bug in my thinking? > > /Joe Armstrong > > > > When I compile the following program I get different answers in clang and gcc. > > int printf(const char * format, ...); Nitpick: you shouldn't do that. Now you have a potential mismatch between whet you compile and what you link to. > > int main() > { > int i, j; > i = 10; > j = i++ + 20 + i; > printf("j = %d\n",j); > return(0); > } > >  $ gcc bug2.c >  $ ./a.out >  j = 40 >  $ clang bug2.c >  $ ./a.out >  j = 41 > >  I thi...
2010 Dec 07
1
No MOH with parked call
...noticed that MOH does not play on parked calls in 1.6.2.14? Or is it just my setup? MOH seems to work in every other respect (Call Held or in-Queue), but when a call is parked, the logs show MOH being started, but the parked party hears nothing. The verbose logs show the following. Any thoughts on whet to check next? Thanks, Steve ### Call comes in here and is answered -- SIP/snom360-00000d6f answered DAHDI/2-1 -- Executing [s at macro-set-moh-call:1] GotoIf("SIP/snom360-00000d6f", "0?done") in new stack -- Executing [s at macro-set-moh-call:2] Set("SIP/sno...
2008 Feb 25
1
r44608 fails make check-all in scatter.smooth example
Dear List, Having had my appetite sufficiently whetted by Prof. Ripley's email about the new graphics capabilities in Unixes, I wanted to try them out. I updated to svn r44608, configured with the following options: R is now configured for x86_64-unknown-linux-gnu Source directory: .. Installation directory: /usr/local C com...
2006 May 24
3
packages, modules
i cant make sense in my own mind what is happening, so if someone can explain, it would be appreciated. I did the following on the command line.. >require ''md5'' =>true >t = MD5 =>Digest::MD5 >t.md5(''confused'') =>1a7f2a5ad77128b2f81feddac78df213 # so far so good, now start new command line # or unload module >require
2011 Apr 20
0
[LLVMdev] Is this a bug in clang?
...g? >> >> /Joe Armstrong >> >> >> >> When I compile the following program I get different answers in clang and gcc. >> >> int printf(const char * format, ...); > > Nitpick: you shouldn't do that. Now you have a potential mismatch > between whet you compile and what you link to. > >> >> int main() >> { >>  int i, j; >>  i = 10; >>  j = i++ + 20 + i; >>  printf("j = %d\n",j); >>  return(0); >> } > >> >>  $ gcc bug2.c >>  $ ./a.out >>  j = 40 >&g...
2004 Jun 21
4
[LLVMdev] llvm test results for FreeBSD platform
...: XPASS Regression.LLC.sched : XPASS Regression.LLC.select : XPASS Regression.LLC.spillccr : XPASS Regression.Transforms.CorrelatedExprs.2002-10-03-PHIPropogate: XPASS Regression.Transforms.CorrelatedExprs.whet : XPASS Regression.Transforms.IndVarsSimplify.2003-09-23-NotAtTop: XPASS Regression.Transforms.Inline.alloca_test : XPASS Regression.Transforms.LICM.2003-08-04-TrappingInstHoist: XPASS Regression.Transforms.LICM.2003-08-04-TrappingInstOkHoist: XPASS Regression.Transforms.PRE....
2013 Nov 13
7
[LLVMdev] Any objections to my importing GoogleMock to go with GoogleTest in LLVM?
I have some concrete use cases in testing the pass manager where it will allow the tests of this API to be more thorough, less verbose, and easier to maintain. I'm not claiming to be the biggest fan of some features in GoogleMock, but on the whole, I think it's better than the alternative and will allow more careful testing of C++ APIs where the interesting part is the API itself.
2015 May 29
0
Native ZFS on Linux
...reen drives are scary :-) > > Chuck Licensing, IMO. Redistributing ZoL is likely fraught with a bit of legal peril, or at best, technical peril if you want to try and skirt the legal edges. Oracle is notoriously litigious and having a target liked Red Hat would probably have their lawyers whetting their chops. Ironically, btrfs was also an Oracle thing -- in that Chris Mason worked for them (believe he's now at Google?). Do agree that ZFS feels like what btrfs is trying to become. I use ZoL on some production boxes and its been quite stable, but am also considering the approach yo...
2010 Nov 02
0
Need testing: chan_unistim improvements
...uld be great. Please visit mantis to find out patch for current svn trunk: https://issues.asterisk.org/view.php?id=18229 New unistim.conf options: - Added "debug" global option in unistim.conf, that enable debug when module loaded - Added "sharpdial" option, enable sending call whet # key pressed New features: - ability for changing display language (tested on Russian language). Use .po files in encoding, able to display ISO 8859-1, ISO 8859-2, ISO 8859-4, ISO 8859-5, ISO 2022-JP. For selecting language can be used option "language" in unistim.conf or screen men...
2007 May 10
0
wxRuby2 preview 0.0.40 released
...hange in this release is that wxRuby is now based on 2.8.3, the latest version of wxWidgets. This version has new classes, and extends the capabilities of existing ones. It also fixes a number of bugs on various platforms. We haven''t added all the new features yet - but hopefully enough to whet your appetite and provide a solid platform for ongoing development. API CHANGES There are a small number of incompatible API changes. - ClientDC.new and PaintDC.new cannot now be called directly - always use the paint() method to get a DC for drawing on a window - A number of deprecated methods...
1998 Oct 26
2
IBM 4039 Laserprinter. Weird problem.
I have menaged to setup Samba services to share an IBM 4039 printer and have tested another printer (Epson LX-800) on the PC. It works fine. The weird thing, the IBM4039 will not print anything. All the jpbs will be spooled. For each print job to be printed. I will need to switch off the printer and switch it on again. Have anyone encountered such problems before? I know there is basically
2015 May 29
7
Native ZFS on Linux
I have a question that has been puzzling me for some time ... what is the reason RedHat chose to go with btrfs rather than working with the ZFS-on-Linux folks (now OpenZFS)? Is it a licensing issue, political, etc? Although btrfs is making progress, ZFS is far more mature, has a few more stable features (especially Raid-z3) and has worked flawlessly for me on CentOS-6 and Scientific Linux-6.
2011 Apr 19
2
[LLVMdev] Is this a bug in clang?
Hello, Is this a bug in clang, or a bug in my thinking? /Joe Armstrong /* When I compile the following program I get different answers in clang and gcc. $ gcc bug2.c $ ./a.out j = 40 $ clang bug2.c $ ./a.out j = 41 I think the correct answer is 41. If my understanding of C is correct (which, or course, it might not be) the incremented value of i++ is first made available