similar to: Information about location for feature requests and bug reports

Displaying 20 results from an estimated 1000 matches similar to: "Information about location for feature requests and bug reports"

2017 Mar 16
2
Veto files used to allow only one extension to be written to the share
Good night. I am behind a way so that in my backup share it is possible to only write files in the format of the application that I use to execute the backup routines, for this I searched the internet for a solution that works like Allow Files, however it is Complicated to find. Talking on forums a user informed me that he could use the parameter to follow in smb.conf, however in my tests it did
2017 Mar 14
1
Information about location for feature requests and bug reports
Many thanks for the reply. I hope to contribute even a little with this software that I have used for so long. Sincerely, Tácio Andrade. ᐧ 2017-03-14 2:10 GMT-03:00 Anoop C S <anoopcs at redhat.com>: > On Tue, 2017-03-14 at 00:52 -0300, Tácio Andrade via samba wrote: > > Good evening, I'd like to know where I can request a feature or bug > report > > from Samba.
2017 Mar 18
0
Veto files used to allow only one extension to be written to the share
Anyone know anything about it? I found a list with all the extensions used by Ransomware at the moment, but they are almost 800 and with that amount I think I will have problems using the veto files, as well as the red tape of updating them. Please, if anyone knows anything about it, please share. ᐧ 2017-03-15 23:51 GMT-03:00 Tácio Andrade <tacioandrade at gmail.com>: > Good night.
2018 Aug 15
2
Queries Regarding Usage of PGOInstrumentation Passes instead of Deprecated ProfileInfo
On Wed, Aug 15, 2018 at 1:28 PM Xinliang David Li <xinliangli at gmail.com> wrote: > > > On Wed, Aug 15, 2018 at 12:46 PM Malhar Thakkar <cs13b1031 at iith.ac.in> > wrote: > >> Thank you so much for your response. >> >> On Wed, Aug 15, 2018 at 3:08 PM, Xinliang David Li <xinliangli at gmail.com> >> wrote: >> >>> >>>
2018 Aug 15
3
Queries Regarding Usage of PGOInstrumentation Passes instead of Deprecated ProfileInfo
Thank you so much for your response. On Wed, Aug 15, 2018 at 3:08 PM, Xinliang David Li <xinliangli at gmail.com> wrote: > > > On Wed, Aug 15, 2018 at 7:36 AM Malhar Thakkar via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hey all, >> >> I have a piece of code (written in LLVM 2.8) which uses profiling results >> produced by ProfileInfo.
2017 Jul 03
2
Unable to Receive Emails from Phabricator
Dear all, I just created this revision <https://reviews.llvm.org/D34937> but I did not receive any email for it even though it says 'Automatically Subscribed' on the right. Also, even my profile shows no trace of the aforementioned revision. It shows that my last activity was on 24th May. Additionally, just to verify that I am not receiving any emails from Phabricator, I logged
2018 Aug 15
2
Queries Regarding Usage of PGOInstrumentation Passes instead of Deprecated ProfileInfo
Hey all, I have a piece of code (written in LLVM 2.8) which uses profiling results produced by ProfileInfo. It essentially computes the number of iterations performed by a loop from the profiling information available. The code snippet in my pass looks something like this. BasicBlock *header = loop->getHeader(); ProfileInfo &pi = getAnalysis< ProfileInfo >(); for(pred_iterator
2016 Sep 16
1
Fwd: Configure HA VPN using tinc at AWS
Actually I was wrong on masquerading. I've set it up the other way to masquerade packets from tinc3 to the internet via tinc1/tinc2. Subnet = 172.31.0.0/16 is there for both tinc1 and tinc2 as well as route for tinc3. I can reach any private instance from tinc3. > the return packet from tinc3 should end up back at tinc1, not tinc2. I suspect tinc doesn't reply to the same node, but
2016 Sep 16
2
Fwd: Configure HA VPN using tinc at AWS
Hello, I've got an AWS cloud and a local network. I'd like to setup an access from private EC2 instances to local network tinc server. There are two public EC2 instances with tinc server installed, other (private) EC2 nodes do not have tinc. http://imgur.com/tq84crc VPC subnet: 172.22/16 VPN subnet: 21.0.0/24 Source EC2 instance ip: 172.22.0.100 Tinc 1 ip: 172.22.0.101, 21.0.0.1 Tinc 2
2017 Apr 26
1
Function LICM for readonly, nocapture functions
Hey all, I was doing some investigation of LICM and I ran into something that seems a bit odd to me. Suppose I was looking at the following code snippet: #define N 1000 int main() { int B[N]; char A[N]; for(int i=0; i<N; i++) { B[i] = strlen(A); } return B[0]+B[N-1]; } Among other optimizations that I may want to happen, I'd hope that the call to strlen could be
2017 Dec 27
1
Convert MachineInstr to MCInst in AsmPrinter.cpp
Hello everyone, In the file *lib/CodeGen/AsmPrinter/AsmPrinter.cpp*, I would like to obtain an MCInst corresponding to its MachineInstr. Can anyone tell me a way to do that? If that is not possible, then, I would like to know if a given MachineInstr is an *lea *instruction and I would like to know if the symbol involved with this lea instruction is a jump-table. For instance, given a
2012 Jun 09
2
[LLVMdev] Extracting an AST to Graphviz using Clang
Just in case another person comes to get stuck on this on Mac OS: http://web.mit.edu/mfloyd/www/computing/mac/gv/ This link explains the process on getting gv installed since Xaw3d dependency even has a 'error' (actually missing few parameters) on a line that prevents code compilation that needs to be fixed before configuring and make it works. -- I have gv installed now and my bash
2012 Jun 09
2
[LLVMdev] Extracting an AST to Graphviz using Clang
Hi Joey, I think there is still something missing. I ignored the -j as you mentioned and saw on the documentation that to compile on debug mode I could do so using: $./configure --disable-optimized As a result by the end I compiled llvm2.9 I got: llvm[0]: ***** Completed Debug Build llvm[0]: ***** Note: Debug build can be 10 times slower than an llvm[0]: ***** optimized build. Use make
2012 Jun 09
1
[LLVMdev] Extracting an AST to Graphviz using Clang
Hi Joey, Still the same message. I am running it from llvm-2.9/Debug/bin/clang -cc1 -ast-view ~/smd.c Is this where you were referring to? Best, Carlos Andrade http://carlosandrade.co 2012/6/9 Joey Gouly <joel.gouly at gmail.com> > You need to run the clang from the build directory. Something like > ./Debug+Asserts/bin/clang > > Joey > > > On 9 June 2012 22:52,
2012 Jun 09
0
[LLVMdev] Extracting an AST to Graphviz using Clang
You need to run the clang from the build directory. Something like ./Debug+Asserts/bin/clang Joey On 9 June 2012 22:52, Carlos Andrade <carlosviansi at gmail.com> wrote: > Just in case another person comes to get stuck on this on Mac OS: > > http://web.mit.edu/mfloyd/www/computing/mac/gv/ > > This link explains the process on getting gv installed since Xaw3d > dependency
2012 Jun 09
2
[LLVMdev] Extracting an AST to Graphviz using Clang
Hi Joey! Thanks I just replied your message on stack and I was actually looking into this right now. Is this the option? I just wanted to confirm: - make [-j] - The -j specifies the number of jobs (commands) to run simultaneously. This builds both LLVM and Clang for Debug+Asserts mode. The --enabled-optimized configure option is used to specify a Release build. The -j parameter is
2012 Jun 09
0
[LLVMdev] Extracting an AST to Graphviz using Clang
Just to add one more thing. I have been trying to install the gv on my mac os but I have not been successful either. The gv build requires xaw3d ( http://directory.fsf.org/wiki/Xaw3d ) which apparently has not been updated for quite few years and the download is not even available anymore. Carlos Andrade http://carlosandrade.co 2012/6/9 Carlos Andrade <carlosviansi at gmail.com> > Hi
2012 Jun 09
2
[LLVMdev] Extracting an AST to Graphviz using Clang
Hi Alex, Would you recommend any specific link in respect on how to compile in debug mode? I downloaded the Mac OS version on the website so I did not compile anything. I am sort of a rookie on bash but I should be able to figure my way around this. Also, is there any particular reason why this functionality is only available on debug mode? Thank you so much for the fast reply, was driving me
2012 Aug 08
4
Saving Splitted Series to Excel via XLConnect
Dear R Discussion List, I would like to save my data as a xlsx file. But at first I need to split it and then save each series into a Excel column. Please take a look at the following code: dados <- data.frame(matrix(c("2012-01-01","2012-02-01", "2012-03-01","2012-04-01","2012-05-01","2012-06-01",
2012 Jun 09
0
[LLVMdev] Extracting an AST to Graphviz using Clang
Hi, The -j option just says how many processes are started to parallelise the build. The default option is to build Debug+Asserts, so unless you add any extra arguments when you run './configure', you should be fine! Joey On 9 June 2012 21:29, Carlos Andrade <carlosviansi at gmail.com> wrote: > Hi Joey! > > Thanks I just replied your message on stack and I was actually