search for: derp

Displaying 17 results from an estimated 17 matches for "derp".

Did you mean: dep
2012 Dec 20
1
Windows 8 and roaming profiles hosted on Samba - NO ONE does this?
...etc.With Windows 8, there seems to be some sort of profile corruption when the profile syncs. It always seems to trip up on files related to Internet Explorer. \Favorites, \Links, \IECompatCache, .url files, etc. Event viewer is filled with stuff like this: Windows cannot copy file \\?\C:\Users\Derp\AppData\Roaming\Microsoft\Windows\IECompatCache\Low to location \\?\UNC\10.0.0.1\Share\Home\Derp\Profile.V2\AppData\Roaming\Microsoft\Windows\IECompatCache\Low. This error may be caused by network problems or insufficient security rights. DETAIL - The parameter is incorrect. ----- Windows cannot...
2014 Mar 25
3
[LLVMdev] Getting the Debugging JIT-ed Code with GDB example to work
I'm trying to run the example described at: http://llvm.org/docs/DebuggingJITedCode.html I followed the sample command line session (below, with versions numbers for everything), but gdb doesn't stop at the breakpoints as described. Any idea what is wrong? Thanks, Zach zdevito at derp:~/terra/tests$ > ~/clang+llvm-3.4-x86_64-unknown-ubuntu12.04/bin/clang -cc1 -O0 -g > -emit-llvm showdebug.c > zdevito at derp:~/terra/tests$ gdb --args > ~/clang+llvm-3.4-x86_64-unknown-ubuntu12.04/bin/lli -use-mcjit showdebug.ll > 5 > GNU gdb (Ubuntu/Linaro 7.4-2012.04-0ubuntu2)...
2011 May 29
1
One main caption for an mfrow=c(2,1) plot window
...commented lines were another approach I tried but didn't work out. The split.screen() erases what was previously drawn on the device (which is the main caption in my case): x <- 1:10 y <- 10:1 pdf("sandbox.pdf", width=6.5, height=3) for(i in 1:3){ plot.new() title("derp") op <- par(mfrow=c(1,2)) # split.screen(c(1,2)) plot(x) # screen(2) plot(y) # close.screen(c(1,2)) par(op) } dev.off() Any ideas? Thanks in advance, Alex
2012 Nov 28
0
Fixed Effects using AER's Tobit function - system is singular
...an unbalanced panel of daily, county data that is naturally bounded at zero so my intention is to use a tobit. I'm using tobit from the AER package. There is cyclicality in the data for each pattern that I would like to control for before I add my variables of interest. I run the regression: derp <- tobit(x ~ factor(Month)*factor(County), data = data0, left = 0, right = Inf) If I try to summarize the tobit object I receive the following error: Error in solve.default(L %*% V %*% t(L)) : Lapack routine dgesv: system is exactly singular: U[1,1] = 0 derp, the tobit object, still has estim...
2011 Apr 25
3
Question on Import
Hi! I have the data in a tab delimited text file titled "ken_data_try_anova." I tried to import it into R entering > read.delim(ken_data_try_anova) but received the error message Error in read.table(file = file, header = header, sep = sep, quote = quote, : object 'ken_data_try_anova' not found I have another file called 10423nad.txt. I tried
2014 Oct 18
2
[LLVMdev] [RFC] Less memory and greater maintainability for debug info IR
> On Oct 17, 2014, at 3:54 PM, Sean Silva <chisophugis at gmail.com> wrote: > > this seems like the classic situation where the someone comes to you asking for X, but what they really want is a solution to underlying problem Y, for which the best solution, once you actually analyze Y, is Z. On the contrary, I came into this expecting to work with Eric on parallelizing the backend,
2019 Oct 21
0
Fwd: [Bug 1843743] Re: klibc ftbfs in eoan
...ybean.canonical.com> Date: Mon, 21 Oct 2019 22:20:12 -0000 Subject: [Bug 1843743] Re: klibc ftbfs in eoan Reply-To: Bug 1843743 <1843743 at bugs.launchpad.net> > The best guess I can come up with is that there's something different > about the compiler defaults you're using Derp, this was the hint I needed. The attached patch fixes the build on Ubuntu, though I can't think of a good way to upstream this, as the compiler option in question isn't available throughout history. Probably needs a test of some sort. ** Patch added: "cf-protection.patch" htt...
2017 Mar 30
1
NT_STATUS_NO_LOGON_SERVERS after removing a DC and WERR_BADFILE when trying to remove broken DC
> > – I noticed a typo in the server's `netbios name` setting, corrected > it, and restarted the DC Where did you change this, in smb.conf or /etc/hosts ?? By default netbios name is adapted from the hostname. If you changed the hostname you might have found the source of your problem. > > – Noticed I had problems with the LDAP SSL certificates for this node > and
2012 Apr 23
0
doubt on image_tag
...er product and items. In product view, I have a partial called _show.html.erb. And in items view, i call index of item to display all products. The problem is, when user clicks on the image_tag of the items view, i want to call partial of product view i.e _show.html.erb. Please help me :) thanks, derp -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, s...
2018 Nov 24
2
How to get URL for updated files in review.llvm.org?
On Sat, Nov 24, 2018 at 9:20 AM Eugene Sharygin <eush77 at gmail.com> wrote: > > Jeffrey Walton via llvm-dev <llvm-dev at lists.llvm.org> writes: > > > Three files changed in https://reviews.llvm.org/D54787 . I want to get > > the URL for each file so I can wget/overwrite existing files in a > > tree. > > > > How do I determine the URL for updated
2012 Jul 11
1
MySQL dict issues
...ig: 90-quota.conf: plugin { quota_rule = *:storage=10G quota_rule2 = Trash:storage=+10% } plugin { quota = dict:user::proxy::userquota } dict { userquota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext } dovecot-dict-sql.conf.ext: connect = host=a.b.c.d dbname=mail user=user password=derp map { pattern = priv/quota/storage table = domain_user_quotas username_field = username value_field = bytes } map { pattern = priv/quota/messages table = domain_user_quotas username_field = username value_field = message_count } The last issue might be a documentation omiss...
2014 Oct 18
2
[LLVMdev] [RFC] Less memory and greater maintainability for debug info IR
> > On 2014 Oct 18, at 10:27, Sean Silva <chisophugis at gmail.com> wrote: > > Derp. My bad. It would be nice in the future if you communicated this better in the OP. In the OP it sounds like you are doing this solely for memory, since there is no mention of CPU time or the excessive callback-based RAUW traffic. It's clear that you found the OP misleading. I focused this RFC...
2012 Jun 21
3
[LLVMdev] [cfe-dev] is configure+make dead yet?
On 21/06/2012, Douglas Gregor <dgregor at apple.com> wrote: > > On Jun 20, 2012, at 5:13 PM, Nick Lewycky <nlewycky at google.com> wrote: > >> Is there anybody who is certain that our autoconf dependency needs to stay >> around? Are there developers stuck on systems that don't have a recent >> enough cmake in their most recent release, or maybe are using
2012 Jul 18
5
See puppet output in stdout when running --no-daemonize inside a bash script
I''m simply trying to run puppet inside a bash script but I''m not seeing any output. #!/bin/bash puppet master --mkusers --autosign --verbose --no-daemonize Is there an I/O redirection incantation I''m missing? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit
2015 Jul 17
11
[Bug 91373] New: Nouveau fills kern.log with gigabytes of data when molecule screensaver is ran
https://bugs.freedesktop.org/show_bug.cgi?id=91373 Bug ID: 91373 Summary: Nouveau fills kern.log with gigabytes of data when molecule screensaver is ran Product: xorg Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal Priority: medium
2014 Oct 15
3
[LLVMdev] [RFC] Less memory and greater maintainability for debug info IR
On Mon, Oct 13, 2014 at 7:01 PM, Eric Christopher <echristo at gmail.com> wrote: > On Mon, Oct 13, 2014 at 6:59 PM, Sean Silva <chisophugis at gmail.com> wrote: > > For those interested, I've attached some pie charts based on Duncan's > data > > in one of the other posts; successive slides break down the usage > > increasingly finely. To my
2006 May 14
0
:case_sensitive => false not working with postgresql
Hi, I''m trying to get login validations to be case insensitive. After doing some research, I found out that postgres and sqlite are case sensitive by default. This changeset (http://dev.rubyonrails.org/changeset/4207) should fix the bug. I''m running rails 1.1.2. I can''t figure out if this is part of my version of rails, or if I''d have to move to edge to