search for: barbar

Displaying 20 results from an estimated 20 matches for "barbar".

Did you mean: barbara
2013 May 06
3
[LLVMdev] Do we abuse the "nsw" flag
...The preproceeded code is excerpted bellow: cat -n integer.i --------------------------------- 2361 TypHandle ProdInt ( hdL, hdR ) 2362 TypHandle hdL, hdR; 2363 { .... 2373 if ( (int)hdL & (int)hdR & 1 ) { 2374 2375 2376 i = ((int)hdL - 1) * ((int)hdR >> 1); /* !!! No barbaric NSW, please !!! */ 2377 if ( ((int)hdR >> 1) == 0 || i / ((int)hdR >> 1) == ((int)hdL-1) ) { --------------------------------- I catch the case where the multiplication overflow: the 1st and 2nd operand hold the value 0x4000 and 0x20000, respectively. Dose gap sou...
2003 May 05
1
Translating end-of-line sequence
...ows centric (it's even located in the Seattle area). Though I seem to remember from past searches a reference to a patch that implemented what we're looking for, I haven't been able to find anything current. Thanks in advance for your time helping us with this. Regards, -- Daniel Barbar
2006 Aug 09
5
Action Mailer ...mail done but not received.. (or sent ?)
...d in RoR book... the mail seems to be correctly setup.. and I get the following log.. Sent mail: Date: Wed, 9 Aug 2006 19:54:04 +0200 From: support@alemat.com To: myself@mac.com Subject: Your password is ... Mime-Version: 1.0 Content-Type: text/html; charset=utf-8 _____________ Your username is barbare. Your new password is tDRvfzNvDF. Please login and change it to something more memorable. ------------- Redirected to http://localhost:3000/user/login Completed in 2.88956 (0 reqs/sec) | DB: 0.00422 (0%) | 302 Found [http://localhost/user/forgot_password] no error in sending mail but checking...
2007 Dec 08
3
Multiple Worker Methods on Different Schedules
Quick question: If I want to schedule different worker methods defined in the same worker to trigger at different times, is this possible? Would the following scheduler yaml work? :schedules: :foo_worker: :worker_method: method1 :trigger_args: 0 */10 * * * * * :job_key: some_key_1 :foo_worker: :worker_method: method2 :trigger_args: 0 */15 * * * * * :job_key:
2010 Mar 11
3
first attempt of pvscai backend driver port to pvops
Attached is my first attempt at getting the backend pvscsi driver (scsiback) working under the latest pvops kernel. I have tested it with the scsi frontend driver in gplpv, and have restored about 20GB of data from a HP LTO3 tape drive successfully, so it appears to be working fine. There are quite a few changes compared to the version in 2.6.18. The main change is that I get the vaddr for each
2001 Nov 26
2
thoughts
...ave some other thoughts on this and I don't wish to make this one of those huge emails people dread reading. The reason I think this is so important is because space is offensively cheap and more and more people are tring to dual and multi boot (including myself). The process now is still barbaric. Being able to accomplish this would open up new doors to Os, I think. You could take the best of different Os's and make them into one. Also, the advancements in virtual machines that are necessary would be wonderful. If anyone is interested, I would love to here professionals' th...
2013 May 06
0
[LLVMdev] Do we abuse the "nsw" flag
...at -n integer.i > --------------------------------- > 2361 TypHandle ProdInt ( hdL, hdR ) > 2362 TypHandle hdL, hdR; > 2363 { > .... > 2373 if ( (int)hdL & (int)hdR & 1 ) { > 2374 > 2375 > 2376 i = ((int)hdL - 1) * ((int)hdR >> 1); /* !!! No barbaric NSW, please !!! */ > 2377 if ( ((int)hdR >> 1) == 0 || i / ((int)hdR >> 1) == ((int)hdL-1) ) { > --------------------------------- > > I catch the case where the multiplication overflow: the 1st and 2nd operand hold the > value 0x4000 and 0x20000, respectivel...
2013 Aug 07
8
introducing puppetboard 0.0.1
...plit of in its own library called pypuppetdb which makes heavy use of the requests library. The interface is powered by Twitter Bootstrap with the Flatly theme. Though I’ve pushed all the code out and made it public it’s all very young but it works fairly well. However, I’ve committed numerous barbarities in the code just to get things working and to figure out how to handle certain things. For the foreseeable time in the future I’ll be working on cleaning all this up and figuring out what I can do on my side and on PuppetDB’s side to make all this work a little better. Especially when it c...
2015 Jul 29
0
[LLVMdev] ARM unwinding bug
On 29 July 2015 at 22:23, Mason Wheeler <masonwheeler at yahoo.com> wrote: > That would be Ben. :) We'll get there, eventually... :) > Meh. It's more of a "if you build it, they will come" thing. We haven't > finished building it yet, but when we do, they *will* come! :D Thought so. Ben will have to learn a lot about unwinding, then... :D > Genuine
2003 Feb 06
0
[Bug 485] New: scp doesn't preserve symbolic links
...d rcp? It must be very small.) It is currently extremely easy to get scp locked in an loop. I use scp to move input and output files from my simulations all day long, and symbolic links are present everywhere. I have to play a lot of games with tar to get things to work now. That's totally barbaric. :) Please, please, please fix this. Include a backwards compatibility switch if you like. scp rocks, but this one little bug drives me nutty. :) Thanks guys, John ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2007 Dec 17
11
BackgrounDRb release 1.0 available now
...''t mean that your worker will block. It can still receive requests from rails. - Now, you can schedule multiple methods with their own triggers. | :schedules: | :foo_worker: | :foobar: | :trigger_args: */5 * * * * * * | :data: Hello World | :barbar: | :trigger_args: */10 * * * * * * - Inside each worker, you can start tcp server or connect to a external server. Two important methods available in all workers are: start_server("localhost",port,ModuleName) connect("localhost",port,ModuleName) Connected cli...
2006 Jun 12
4
DO NOT REPLY [Bug 3829] New: rsync loses access ACLs on transferred files
...Component: core AssignedTo: wayned@samba.org ReportedBy: hashproduct+rsync@gmail.com QAContact: rsync-qa@samba.org Run the following in an empty directory, putting some username on your system in place of $USER: mkdir src dest echo foo >src/file echo barbar >dest/file setfacl -m u:$USER:rw- dest/file rsync -r src/ dest/ Since permissions are not being preserved, rsync loads the old permissions of dest/file into the file list and applies them to the new dest/file. Rsync should treat the access ACL in the same way, but it does not, so the o...
2013 Jun 07
2
Samba 4.0.6 Ubuntu Package Available
Hello everyone- Just a quick little blurb to anyone interested: I've spend some time packaging Samba4 for Ubuntu 12.04 and I believe it is finally "ready". A couple of notes about the package: - it is compiled from the 4.0.6 tarball available from Samba - it has packages for amd64 and i386* class machines - it requires various other non-stable class packages - it uses the
2002 Aug 22
3
journal aborting and remounting /boot as ro
Hi, Apologies in advance for any breaches of netiquette, I couldn't find any guidelines about submission to this forum but I'd be grateful for your help on something. My /boot filesystem is being remounted shortly after start-up as read-only. I get the following messages... journal_bmap_Ra7a5f568: journal block not found at offset 12 on ide0(3,1) Aborting journal on device ide0(3,1)
2015 Jul 29
2
[LLVMdev] ARM unwinding bug
> From: Renato Golin <renato.golin at linaro.org> > > On 29 July 2015 at 20:14, Mason Wheeler <masonwheeler at yahoo.com> wrote: > > Well, yes, an unwinding expert *was* who I was really hoping to hear from. But > > if I understand correctly, you're saying that rather than seeing the values Ben > > reported, the sample code crashes on you on both
2005 Nov 19
14
FULLTEXT search in MySQL on rails
I tried adding a FULLTEXT search index to a table of mine in MySQL, only to discover that the InnoDB table format doesn''t seem to support this feature. Switching to the MyISAM table type seemed to work, but I seem to have some recollection that ActiveRecord transactions aren''t fully atomic on MyISAM tables. Is this true or am I just remembering wrong? If so, does anyone have
2018 Oct 01
0
tada ... the Z of Jericho 多 & i ... the Ro' Chosein 大
...p with, the world that raised me; we should know with all our minds that the future will look back on this generation as a turning point away from pure idiocy--from an unimaginable lack of "humanity" ... that they will look back on the time before this disclosure was made clear as totally barbaric and backwards, the kind of thing ... well there's nothing comparable in all our history, and hopefully there never again will be anything to compare this darkness to. Act, take action today; this message is very clear. <http://amhi.cf/lists/lt.php?id=YUgFAwFWXU9RU1UdU1wDX1cNVg> ring...
2018 Oct 22
0
With the right kind of eyes you can almost see the high-water mark—that place where the wave finally broke and rolled back.
...'s what the pay-dirt of finding this map and the will to trudge through the dark days of flickering twilight really is ... it's a future that will look back on you and your parents and your children as the defining line of what "civilization" actually means, the difference between barbarism and morality. Isaac Newton, on the gravity of this vision almost assuredly, "if I have seen further it is only by standing on the shoulders of giants." <http://vesedo.cf/lists/lt.php?id=YUgFAgZXU09RXVEdU1wDX1cNVg> "TUTUM" is my new Latin word to describe this sort of...
2018 Oct 07
0
Come Hell or High Treason
...itably change from "telling us what to do" to ... you know, "helping to implement laws that do what we tell them we want" as you'd imagine a true government of the people actually would work) ... I think the "representative" part of democracy is archaic and sort of barbaric in the technologically enabled world, and I think that's going to be really obvious eventually... it should be pretty clear from the idea of the "Electoral College" which is that your vote actually means absolutely nothing, and you are insulated from actually choosing who the Presid...
2001 Sep 14
5
Our Sympathies
The following is a message to be sent to the President of the United States of America. Although we may not be able to do a great deal from where we are, but for the people of America just knowing we care and feel their sadness will help. Please put your name on the following list and send it to all you know and who care. If you are the 100th name and every 100th there on could you please also