search for: efinity

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

Did you mean: finity
2012 Aug 02
6
Polygon shaded area
Hi all, I have two vectors (columns) called "efinal" and "efinal 2". I want to plot them on the same plot and "draw" a shaded area beween the two lines using function polygon I have tried all but I don ?t understand the polygon area, can you help me with examples? plot(efinal,type="l",ylim=range(min(efinal2),
2019 Sep 30
4
Change ciphers on samba
...and I get report about weak ciphers on samba services, is it possible to set stronger ciphers for samba? On old samba3 that was possible to set "ssl ciphers" in smb.conf, but now I don't see any documentation how to change it. Is it possible, if so, how? -- Arkadiusz Karpi?ski Efinity Sp. z o.o. 02-672 Warszawa, ul. Domaniewska 42 t: +48 22 380 13 88 m: +48 793 783 343 f: +48 22 380 16 76 Sp??ka wpisana do rejestru przedsi?biorc?w prowadzonego przez S?d Rejonowy dla m.st. Warszawy Wydzia? XIII Gospodarczy Krajowego Rejestru S?dowego pod numerem KRS 0000073606, NIP 521-31-76-978...
2019 Oct 01
4
Change ciphers on samba
...t;> ? netbios name = dc-1 >>>> ? realm = REALM >>>> ? server role = active directory domain controller >>>> ? server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, drepl, >>>> winbindd, ntp_signd, kcc, dnsupdate >>>> ? workgroup = EFINITY >>>> ? dns forwarder = 192.168.X.X 192.168.X.X >>>> ? tls enabled = yes >>>> ? tls keyfile = /usr/local/samba/private/tls/server.key >>>> ? tls certfile = /usr/local/samba/private/tls/server.crt >>>> ? tls cafile = /etc/pki/ca-trust/source...
2019 Oct 01
0
Change ciphers on samba
...> [global] >>> ? netbios name = dc-1 >>> ? realm = REALM >>> ? server role = active directory domain controller >>> ? server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, drepl, >>> winbindd, ntp_signd, kcc, dnsupdate >>> ? workgroup = EFINITY >>> ? dns forwarder = 192.168.X.X 192.168.X.X >>> ? tls enabled = yes >>> ? tls keyfile = /usr/local/samba/private/tls/server.key >>> ? tls certfile = /usr/local/samba/private/tls/server.crt >>> ? tls cafile = /etc/pki/ca-trust/source/anchors/efinity-CA....
2019 Oct 01
0
Change ciphers on samba
...gt; ? realm = REALM > >>>>> ? server role = active directory domain controller > >>>>> ? server services = s3fs, rpc, nbt, wrepl, ldap, cldap, > kdc, drepl, > >>>>> winbindd, ntp_signd, kcc, dnsupdate > >>>>> ? workgroup = EFINITY > >>>>> ? dns forwarder = 192.168.X.X 192.168.X.X > >>>>> ? tls enabled = yes > >>>>> ? tls keyfile = /usr/local/samba/private/tls/server.key > >>>>> ? tls certfile = /usr/local/samba/private/tls/server.crt > >>>&gt...
2019 Oct 14
2
GENSEC backend
...' registered GENSEC backend 'http_basic' registered GENSEC backend 'http_ntlm' registered GENSEC backend 'http_negotiate' registered GENSEC backend 'krb5' registered GENSEC backend 'fake_gssapi_krb5' registered # record 1 ....... -- Arkadiusz Karpi?ski Efinity Sp. z o.o. 02-672 Warszawa, ul. Domaniewska 42 t: +48 22 380 13 88 m: +48 793 783 343 f: +48 22 380 16 76 Sp??ka wpisana do rejestru przedsi?biorc?w prowadzonego przez S?d Rejonowy dla m.st. Warszawy Wydzia? XIII Gospodarczy Krajowego Rejestru S?dowego pod numerem KRS 0000073606, NIP 521-31-76-978...
2009 Nov 01
1
[LLVMdev] Issue compiling LLVM 2.6 on Windows with MinGW
Hello, I downloaded LLVM 2.6 and was attempting to compile it with TDM-GCC 4.4.1-tdm2-sjlj + cmake 2.6.4 and this happened: =============Console=================== C:\projects\game-editor\LLVM\build-root>mingw32-make [ 2%] Built target LLVMSystem [ 5%] Built target LLVMSupport [ 7%] Built target tblgen [ 7%] Built target intrinsics_gen [ 10%] Built target LLVMCore [ 12%] Built target
2011 Aug 21
0
[LLVMdev] Accessing arguments in a caller
Nella citazione giovedì 18 agosto 2011 09:11:36, Carlo Alberto Ferraris ha scritto: > I need some advice on "forwarding" arguments to a callee. Suppose I have > a function F that is called at the beginning of all other functions in > the module. From F I need to access (read) the arguments passed to its > immediate caller. Right now I do something like boxing all
2011 Aug 18
2
[LLVMdev] Accessing arguments in a caller
I need some advice on "forwarding" arguments to a callee. Suppose I have a function F that is called at the beginning of all other functions in the module. From F I need to access (read) the arguments passed to its immediate caller. Right now I do something like boxing all arguments in the caller inside a struct and passing a pointer to the struct to F, alongside an identifier
2006 Mar 26
3
Updating tools
Hello all. I decided to see how things were progressing and have updated my Swig to 1.3.29 and my wxWindows to 2.6.3. I''ll try rebuilding everything as soon as I''m done compiling wx 2.6.3. Then I hope to have some time to read up on the new ruby stuff in Swig to see if we can close the last few holes. Roy
2006 Aug 15
6
Theoretical: Should models be subclasses of AR or mix it in?
All, My apologies if this is a little long-winded and stream of consciousness-y :). SUMMARY: Why do we extend ActiveRecord instead of mixing it in to our model classes? Been thinking about my app''s models and starting to want to build something of a hierarchy. I have some commonality across 3 of my model classes and I''d liek to aggregate the behavior in a superclass.
2007 Jan 10
9
Definition specialization
There was a discussion a while ago about adding inheritance to definitions. There is a need for a way to specialize parameters while allowing passing other options. This comes up with remotefile where it would be nice to have a default server location but not specify all the parameters (and their defaults) in the definition. Was there a change to the syntax? Is there a way to accomplish this?
2011 Aug 21
0
[LLVMdev] Accessing arguments in a caller
Variadic templates themselves don't avoid the copy, but combined with perfect forwarding you should be doing well (see, for example, make_shared) From: Jordy Rose Sent: 8/21/2011 10:34 AM To: Carlo Alberto Ferraris Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Accessing arguments in a caller What I can think of: 1. Anonymous struct, to avoid a copy. 2. Use stdarg.h...dangerous but
2004 Mar 31
6
Can't compile asterisk.
hi. I got these compile errors while install asterisk. readline and openssl are compiled using gnu source, and kernel version is 2.4.17. Compile errors message is follows. Someone cleared this problem? Please, help! Regards. ---------------------------------------------------------------------------------- gcc -g -o asterisk -Wl,-E io.o sched.o logger.o frame.o loader.o config. o channel.o
2013 Jul 04
1
Phantom nulls in usbdevs.h during 9-STABLE kernel build
We are seeing strange problems building the kernel on 9-STABLE. The problem is intermittent and will go away if we build enough times in a row without making any changes. The problem seems to be that the usbdevs.h file (which appears to be automatically generated) gets random NULL bytes in it. This occurs on multiple servers with ECC RAM and ZFS filesystems (sometimes mounted over NFS from
2011 Aug 21
2
[LLVMdev] Accessing arguments in a caller
What I can think of: 1. Anonymous struct, to avoid a copy. 2. Use stdarg.h...dangerous but accomplishes what you're looking for. 3. Split up F: giant switch statements often indicate that your function is doing several different things. (IMHO...) 4. Don't worry about it, it's probably not a bottleneck. (Or rather, profile first...) But no, there's no standard way to do this. Even
2011 Jun 10
14
Wine64 + nvidia please help
i tried patch-wine-nvidia.sh but no luck. nvidia-xsettings says i'm not using an nvidia driver, i have nvidia.ko loaded and running, my xorg.conf says driver "nv". I'm not sure what the correct nvidia driver i should be using..I got SLi: True in xorg.conf. I tried using patch-wine-nvidia.sh but no luck. I have all the necessary .so files copied into /usr/lib32 and