similar to: [LLVMdev] Publication

Displaying 20 results from an estimated 100 matches similar to: "[LLVMdev] Publication"

2009 Jun 09
1
Read only configuration.
Hi, I currently I have a Samba share configured as follows: [pub_fileshare] comment = Public fileshare path = /u02/pub guest ok = Yes writeable = Yes There is a subfolder under /u02/pub called /u02/pub/expenses/hardware that I need to make read only. How do I do this? I am new to using Samba. I configured the share /u02/pub/expenses/hardware using the configuration below. This works as it is
2004 Feb 27
2
browseURL question
I have a quick question about the browseURL function. When I use the function in a UNIX environment, I have to use two sets of quotations if I have the & symbol in the URL. For Windows I only need to use the first set. For example, on Windows: browseURL("http://search.yahoo.com/search?p=Bioconductor&ei=UTF-8&fr=fp-tab-web-t&n=20&fl=0&x=wrt") will call up the
2016 Feb 26
1
Publication: Flowtables: Program Skeletal Inversion for Defeat of Interprocedural Analysis with Unique Metamorphism
http://dl.acm.org/citation.cfm?id=2843863 Luke Jones, Ryan Whelan, Jeremy Blackthorne, and Graham Baker. 2015. Flowtables: Program Skeletal Inversion for Defeat of Interprocedural Analysis with Unique Metamorphism. In Proceedings of the 5th Program Protection and Reverse Engineering Workshop (PPREW-5). ACM, New York, NY, USA, , Article 6 , 11 pages. DOI=http://dx.doi.org/10.1145/2843859.2843863
2009 Aug 05
0
dofus : Enripsa Soloing Guide
Most people (even Eniripsa players) see Eniripsa solely as support characters. They are support characters, but to limit an Eniripsa to purely support status, one never realises an Eniripsa's true power. Alot of guides will tell you that Eniripsa are "leech fairies" for most levels, that is not the case if built properly. The important thing to remember when building a solo Eniripsa
2010 Jun 03
5
Is this failed Asterisk setup typical?
Hello I just read this article and would like some feedback from experienced Asterisk users: =============== "Failed open source VoIP deployment leads to hosted VoIP strategy" By Jessica Scarpati "When budgets are crimped, open source voice over IP (VoIP) solutions look attractive -- a little extra work for a lower cap-ex. But those savings came at a high price for one Texas
2010 Aug 07
12
Paperclip Trouble - Not Writing to the Database
Hello all, I''m a Rails newbie trying to get a basic implementation of Paperclip up but it''s giving me problems. I''m developing on Windows XP (I know...) with WEBrick and MySQL. In my model I have: class User < ActiveRecord::Base has_attached_file :avatar,:styles => { :medium => "300x300>", :thumb => "100x100>" }, :url =>
2010 Aug 25
1
AD caching with Samba?
I'm not sure this is possible, I'm sort of leaning to the negative, but I thought i would ask anyway. (I am not a windows or domain networking guy) We have a large (and growing) number of windows servers. Many of them are DCs. While I read Samba can't serve as a BDC to a Windows PDC, can it just forward requests to the windows DC and just cache the results for future look ups? (with
2012 May 30
2
Secondary DNS - samba 4 domain
How do I do about setting up a second samba DC as a DNS server? I have 2 DCs in the domain (setup via the How-to on the wiki) If I try to follow the steps I used for the first controller on the second, bind won't start because /usr/local/samba/private/dns hasn't been created or populated. (I'm using the dlz backend). Searching the wiki has provided nothing. How to I create the
2009 Jan 15
2
[patch] libc Berkeley DB information leak
Hi, FreeBSD libc Berkeley DB can leak sensitive information to database files. The problem is that it writes uninitialized memory obtained from malloc(3) to database files. You can use this simple test program to reproduce the behavior: http://www.saunalahti.fi/~jh3/dbtest.c Run the program and see the resulting test.db file which will contain a sequence of 0xa5 bytes directly from malloc(3).
2007 Sep 19
18
sip.conf best practices?
All - I've been wrestling with how to best structure the sip device accounts on a new asterisk server I'm deploying. All of the sip devices (currently only Linksys SPA941s) will reside on the same subnet as the server, and I have already set up a decent automatic provisioning system for the phones. When the rollout is complete, there will be about 100 SIP devices authenticating and
2010 Sep 01
1
Transparent File Caching
This is not really a samba question, but if anyone would know that answer, it would be this group. :) Are there any Open Source projects that offer network file caching for SMB/CIFS? Something like what Squid does for HTTP. If not, do you think it would be difficult to position Samba into such a role? We are going to use Cisco WAAS for branch locations, but I think the cache in the devices may
2002 Jan 02
0
R ./configure error | Solaris8 / E-450
Hi not sure where to go with this, I'm attaching the whole output, you'll see the error at the end... > ./configure loading cache ./config.cache checking for a BSD compatible install... tools/install-sh -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... missing checking for working autoconf... missing checking
2013 Mar 20
1
About adding bricks ...
Hi @all, I've created a Distributed-Replicated Volume consisting of 4 bricks on 2 servers. # gluster volume create glusterfs replica 2 transport tcp \ gluster0{0..1}:/srv/gluster/exp0 gluster0{0..1}:/srv/gluster/exp1 Now I have the following very nice replication schema: +-------------+ +-------------+ | gluster00 | | gluster01 | +-------------+ +-------------+ | exp0 | exp1 |
2013 Mar 20
0
[LLVMdev] ARM NEON VMUL.f32 issue
Hi, | The question is: | * is this a problem with the test, that shouldn't be expecting values below FLT_MIN, or | * is it a bug in the lowering, that should only be lowering to NEON's VMUL when unsafe-math is on, or | * neither, and people should disable that when they want correctness? Note that if you go for the second option, IMO unsafe-math is _far_ too "aggressive" an
2013 Mar 20
0
[LLVMdev] UNREACHABLE executed! error while trying to generate PTX
The problem you are seeing is because clang is putting the global variables in address space 0, which in NVPTX means the generic address space. PTX does not allow this, so the back-end *should* be printing an error for you. Are you using trunk or 3.2? Generally, clang won't be compatible with the CUDA Toolkit headers. If you want to use the __constant__ modifier from CUDA in Clang, define
2013 Mar 20
0
[LLVMdev] UNREACHABLE executed! error while trying to generate PTX
On Wed, Mar 20, 2013 at 11:29 AM, upit <uday_pitambare at yahoo.com> wrote: > OK. That helps. > It does flash a warning though > > [DEVICE-C++] nbody.kernel.cpp > nbody.kernel.cpp:29:9: warning: '__constant__' macro redefined > #define __constant__ __attribute__((address_space(2))) > ^ > /opt/cuda/include/host_defines.h:183:9: note: previous
2013 Mar 21
0
[LLVMdev] fptrunc and undefined results
Hi, The LangRef says this about fptrunc: "The ‘fptrunc‘ instruction truncates a value from a larger floating point type to a smaller floating point type. If the value cannot fit within the destination type, ty2, then the results are undefined." What does it mean for the value to "fit within the destination type"? For instance, is the value of %Inf = fptrunc double
2013 Mar 20
0
[LLVMdev] bugpoint (and possibly others) need to be compiled with -rdynamic
On Mar 20, 2013, at 12:14 PM, Stephen Checkoway <s at pahtak.org> wrote: > I assume the CMAKE_SHARED_LIBRARY_LINK_C_FLAGS and CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS could be set empty initially and then for those that need it, set it (or something else) to -rdynamic. Attached is a small patch that sets CMAKE_SHARED_LIBRARY_LINK_CXXFLAGS to "" (as per your patch which I
2013 Mar 20
1
Looking for a reporter for SQLite3 with Lighttpd and PHP
Hello everyone, I wonder if there's a product that I can install on my debian-based server to extract CDRs (it'd be better if Excel's downloads are available), also it would be desirable if I can access additional table to update rows (e.g. sip for realtime) Please let me know what you know. Best Regards, Elder D. Arohuanca dCAP Lima - Peru -------------- next part --------------
2013 Mar 20
0
Registering a weighting scheme with Xapian
Hello guys,I've modified the TfIdf patch as per the feedback I got on it and have added the code to the pull request. Please do have a look and let me now what you'll think. https://github.com/xapian/xapian/pull/6 Also,I read somewhere that I need to register this weighting scheme with Xapian. Please can you'll throw some light on that ? -Regards -Aarsh -------------- next part