similar to: Authentication difficulties

Displaying 20 results from an estimated 10000 matches similar to: "Authentication difficulties"

2015 Jul 02
2
installing Cents os server 7.0
On Thu, Jul 2, 2015 at 4:06 PM, Warren Young <wyml at etr-usa.com> wrote: > On Jul 2, 2015, at 9:51 AM, Chris Murphy <lists at colorremedies.com> wrote: >> >>> On 07/01/2015 05:10 PM, Jonathan Billings wrote: >>>> >>>> Nope. CentOS 5, 6 and 7 all support dual-boot. >> >> Considering CentOS 7, at least, doesn't include ntfsprogs,
2005 Jul 12
8
Tip Sheet for AJAX
Hi all, I''m making an Amy Hoy style tip sheet PDF for the Prototype and Scriptaculous AJAX stuff, to be used with Rails. Are there other resources you would suggest besides the websites themselves (the previous thread about Highlight reminded me of this)? Is there a particular focus that would be helpful for such a document? Preferred fonts or colors? I must say, once you get
2011 Sep 27
24
Wine on Tiger
I'm almost certain I installed Wine correctly, but when I try to get a Windows program working it doesn't happen. The program I'm trying to install is Arena 10 (a simulation program). I've attached some screen shots. The first one is when I completed the wine install, 2 through 6 show when I tried to install the program. If you could tell me what steps to take to fix these
2014 Mar 18
4
[LLVMdev] TableGen docs
Hi folks, It took a while, but I finally have some bandwidth to look at this. I've been reading the two existing TableGen documents: http://llvm.org/docs/TableGenFundamentals.html http://llvm.org/docs/TableGen/LangRef.html the first is linked from the index, but LangRef is not (though it has some remains in the metadata). I'm wondering what's the relationship between them two. My
2013 Sep 25
3
offer to help, DCB
On Tue, Sep 24, 2013 at 12:43:46PM -0700, Dave Airlie wrote: ... > > Hey Andy, > > this is great news, > > I suppose the question I have is there any known upfront limits on > what you can release or is it going to be a per-request type thing? Hi Dave. I think we're going to have to deal with things on a case-by-case basis. I wouldn't take anything off the table,
2016 Mar 01
3
Problem with mingw32 DLL build
Folks, there is an issue pretty buried in the commits list that I suspect should have wider visibility. See r262188 and subsequent discussion. To summarize: it appears that mingw32 was unable to correctly produce a static data member when instantiated as a base class. The "fix" is to then explicitly instantiate the base class separately from its use in a base class. I think this is
2018 Sep 06
2
Serializing LLVM IR in custom fashion
Hello. I need to write a pass that converts a whole LLVM module into a bytecode for some other VM. VM's instructions resemble LLVM ones pretty much, so it is almost 1-to-1 translation. Basically, I need to do what BitWriterPass does, but using different format for the resulting bytecode. The obvious solution is just to iterate over all Instructions and serialize them using giant
2016 May 05
3
Resuming the discussion of establishing an LLVM code of conduct
On Thu, May 5, 2016 at 11:42 AM C Bergström <cbergstrom at pathscale.com> wrote: > On Fri, May 6, 2016 at 2:30 AM, Chandler Carruth <chandlerc at gmail.com> > wrote: > > On Thu, May 5, 2016 at 2:55 AM C Bergström <llvm-dev at lists.llvm.org> > wrote: > >> > >> Chandler - I do not want to derail, hijack or change the topic of this > >>
2015 Jun 16
4
[LLVMdev] AliasAnalysis refactoring for the new pass manager
So, after looking at *doing* this, I'm left with more questions and no good answers. C++ has truly failed me today. This enum is currently designed (and even *documented* as being designed) to allow conversion-to-bool to detect whether any alias is possible (that is, only no-alias becomes false). This makes it *really* easy to write the overwhelming majority of test: if ("do things
2006 Jul 27
9
CalendarHelper
Has anyone had any luck using the CalendarHelper plugin at http://wiki.rubyonrails.com/rails/pages/CalendarHelper recently? I''m scratching my head over the following error when I look at any page in my application: NameError in CalendarController#index undefined local variable or method `date_format'' for #<CalendarController:0x24ccd4c> RAILS_ROOT:
2005 Jan 31
3
Ver 3.0.4 Anonymous access, no Password required
I have searched the Docs, How-to's, and this news group/ Mailing list and still haven't found what I am looking for, at least not an answer. I am simply trying to allow access to public shares on my Linux PC (slackware 10). I have a directory setup but the only way to get in is to send a Username and Password. I am setting it up for WinXP and Win2K PC's to access. I have set up the
2019 Jul 24
6
[RFC] A new multidimensional array indexing intrinsic
Hi all, On Wed, 24 Jul 2019 at 16:14, Michael Kruse via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Mmmh, looks like Tim Northover is actively working on typeless/opaque > pointers, e.g. https://reviews.llvm.org/D64203 Yep, I'm spending as much time as I can on the project. I think there's not really much chance that it'll be required in this cycle (i.e. when we fork
2020 May 14
2
R 4.0.0
On Thursday, 14 May 2020 21.30.13 WEST I?aki Ucar wrote: > Mmmh... but then you have to change that in the packages' SPEC and > rebuild them anyway when you update R. So... what's the advantage of > this? We already have other examples of how to do this with less steps. :-) Create macros like %{r_sitearch} %{r_sitelib} that expand with the R version being used and place them
2013 Oct 05
2
bridged networking doesn't bring up eth0: RTNETLINK answers: File exists
I am running Xen on Debian wheezy. I switched from routed networking to bridged networking. Now I can''t seem to get eth0 to come up. When the network script tries to bring it up, it gets an error: RTNETLINK answers: File exists Any tips? details below brian root@trout:/etc/xen# egrep -v ''#|^ *$'' xend-config.sxp (network-script network-bridge) (vif-script vif-bridge)
2006 Jul 27
9
Introspecting validates_presence_of
Hello people, I''d like to detect whether an attribute of a model has vaildates_presence_of applied to it so I can automatically apply a mandatory (*) to the field...it doesn''t look easy...any ideas? Cheers, -- Dan Webb http://www.danwebb.net
2006 May 09
7
When to use optimistic locking?
Hi All, I''m having some trouble deciding when and how to implement optimistic locking. Let''s say I have a multiuser Rails app, and let''s say it stores, among other things "vital" customer information. The standard methods created by the Rails generate scaffold script look like this: def edit @customer = Customer.find(params[:id]) end
2007 Oct 26
15
Adding see_other method to ActionController
303 (See Other) is the status code a resource returns to tell the client about the new resource it just created (typically after a POST). 301/302 is the status code some servers return to tell the browser where to go next. It works because browsers ignore the distinction and treat all three status codes the same way, and few people understand the difference. But when developing an application
2005 Jan 03
1
different DF in package nlme and lme4
Hi all I tried to reproduce an example with lme and used the Orthodont dataset. library(nlme) fm2a.1 <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1 | Subject) anova(fm2a.1) > numDF denDF F-value p-value > (Intercept) 1 80 4123.156 <.0001 > age 1 80 114.838 <.0001 > Sex 1 25 9.292 0.0054 or alternatively
2020 Apr 15
2
Re: [PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
On Fri, Apr 10, 2020 at 02:51:52PM +0100, Richard W.M. Jones wrote: > Similar to C, OCaml and Rust, this is not a plugin per se. Instead > it's more of a method and set of tests around writing plugins in > golang. They are standalone programs that compile into shared objects > that nbdkit can then load (so there is no "go plugin" between nbdkit > and the user plugin,
2015 Dec 09
5
wifi on servers and fedora [was Re: 7.2 kernel panic on boot]
On Tue, December 8, 2015 11:05, Matthew Miller wrote: > >> I have been bitten by things done in Fedora that only have any use >> on >> a laptop and that should never have been allowed into a server >> distribution. But I cannot see how I would have been aware of them >> until they manifested themselves on equipment under my care. By >> which > > ^