search for: codesearch

Displaying 20 results from an estimated 48 matches for "codesearch".

2016 Mar 10
3
announcing an *early preview* of a cross-referencing code search website for LLVM
...tories using regular expressions, search for declarations (which are prioritized above full-text results), and follow cross references between definitions and references. The code behind this website is based on kythe [1] (Kythe itself uses the clang libraries to parse C++ code) and Russ Cox's codesearch [2] library. I'm planning to open source it and contribute it to the kythe project. Thanks, -- Peter [1] http://kythe.io/ [2] https://github.com/google/codesearch -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/atta...
2010 Aug 04
2
fix for unsafe ssl options
While he was at it justdave also fixed the ssl options. https://trac.xiph.org/ticket/1718
2010 Aug 06
1
fix for unsafe ssl options
Hi Niv, Thanks for your comments. I'm CC'ing the patch author. On Wed, Aug 04, 2010 at 05:37:44PM +0200, Niv Sardi wrote: > Do we really need that many ? > http://www.google.com/codesearch/p?hl=en#5KTrgOW2hXs/pub/nslu2/sources/vsftpd-2.0.4.tar.gz%7CXknrlk4c3C4/vsftpd-2.0.4/ssl.c&q=SSL_CTX_set_cipher_list > > vsftpd seems to only be including "DES-CBC3-SHA" > http://www.google.com/codesearch?q=tunable_ssl_ciphers&exact_package=http://ftp.osuosl.org/pub/nslu...
2007 Mar 29
2
Re: [Xapian-commits] 7990: trunk/xapian-core/ trunk/xapian-core/bin/ trunk/xapian-core/tests/harness/
...; remote databases on windows. When displaying errors which might > be socket errors, display the error number as well as the output > of strerror - on windows, strerror doesn't display useful > information for socket errors. This code might offer a better fix: http://www.google.com/codesearch?hl=en&q=+package:%22http://tor.eff.org/dist/tor-0.1.2.1-alpha.tar.gz%22+tor_socket_strerror+show:ULmcj_LGIg4:aiz98Rv1Bto:3M10UhHDobA&sa=N&cd=1&ct=rc&cs_p=http://tor.eff.org/dist/tor-0.1.2.1-alpha.tar.gz&cs_f=tor-0.1.2.1-alpha/src/common/compat.c#a0 Licence looks like 3 clau...
2010 Oct 13
3
[LLVMdev] llvm.org robots.txt prevents crawling by Google code search?
One of the tools I use most frequently when coding is Google codesearch. Unfortunately, llvm.org's robots.txt appears to block all crawlers from indexing the llvm.org svn archive. This means that when you search for an LLVM-related symbol in code search, you get one of the many (possibly out-of-date) mirrors, rather than the up-to-date llvm.org version. This is sad...
2010 Oct 14
1
[LLVMdev] llvm.org robots.txt prevents crawling by Google code search?
...VM-related symbol in code search, you get one of the many (possibly > > out-of-date) mirrors, rather than the up-to-date llvm.org version. This > is > > sad. > This is intentional. The workload of the server was pretty huge w/o this. > Could we at least add a rule allowing the codesearch crawler, rather than opening it up to all crawlers? The user agent string is SVN/1.5.4/GoogleCodeSearch. > > -- > With best regards, Anton Korobeynikov > Faculty of Mathematics and Mechanics, Saint Petersburg State University > -- -- Talin -------------- next part --------------...
2010 Aug 04
0
fix for unsafe ssl options
Do we really need that many ? http://www.google.com/codesearch/p?hl=en#5KTrgOW2hXs/pub/nslu2/sources/vsftpd-2.0.4.tar.gz%7CXknrlk4c3C4/vsftpd-2.0.4/ssl.c&q=SSL_CTX_set_cipher_list vsftpd seems to only be including "DES-CBC3-SHA" http://www.google.com/codesearch?q=tunable_ssl_ciphers&exact_package=http://ftp.osuosl.org/pub/nslu2/sources/vsftp...
2013 Apr 15
1
Bug#705490: Uses deprecated RUN+="socket:"
...ev rules files has been deprecated for a while. In udev 183 support for that has been removed [1] >From the NEWS file: * udev: RUN+="socket:..." and udev_monitor_new_from_socket() is no longer supported. udev_monitor_new_from_netlink() needs to be used to subscribe to events. codesearch.d.n [2] has found the following references: xen_4.1.4-2/tools/hotplug/Linux/xend.rules:3 SUBSYSTEM=="pci", RUN+="socket:/org/xen/xend/udev_event" SUBSYSTEM=="scsi", RUN+="socket:/org/xen/xend/udev_event" SUBSYSTEM=="usb", RUN+="socket:/org...
2008 Dec 23
3
[LLVMdev] Unwinds gone missing
...on can be asked of __cxa_throw). Although _Unwind_RaiseException is mentioned as part of the Itanium ABI, it is apparently used on many more platform types than just that one processor. A code search shows that it is in fact part of the standard gcc-provided runtime libs (see http://www.google.com/codesearch/p?hl=en#47R7EH5FbNk/trunk/gcc/gcc/unwind-generic.h&q=_Unwind_RaiseException%20lang:c). There is also a mention of "libunwind". Is libunwind a portable implementation of the Itanium unwinding ABI? 3) I really like the "invoke/unwind" abstraction that LLVM provides, as it div...
2015 Apr 14
0
[ANNOUNCE] X.Org Security Advisory: Buffer overflow in MakeBigReq macro
...internals. X.Org software known to use these macros includes: libXext libXfixes libXi libXp libXrandr libXrender libXv libXxf86misc xf86-video-vmware Some uses of the macros in other software may be found at: http://codesearch.debian.net/results/SetReqLen http://codesearch.debian.net/results/MakeBigReq but of course, only a search of your own code base will be exhaustive. Affected Versions ================= The off-by-one-word error in the amount of memory to copy was introduced in the original integration of t...
2011 Jul 27
0
[LLVMdev] Proposal for better assertions in LLVM
...would look something like this: > > ASSERT_STRM(Ty == STy, "Expected " << Ty << " but got " << > STy->getElementType(0)); > Chromium (and several other Google open source projects) have a somewhat superior variant of this: http://google.com/codesearch#hfE6470xZHk/base/logging.h&exact_package=http://src.chromium.org/git/chromium.git&q=CHECK&type=cs&l=398 It ends up looking like: CHECK(Ty == STy) << "Expected " << Ty << " .." << ...; The important difference is that most of the paramet...
2011 Jul 24
2
seeking a rails 3 cucumber rspec example project
Hello, I was hoping that someone may point me to a github public repo that is a rails 3, outside in designed project with cucumber and Rspec. I read the Rspec book, though found it too brief and just surfing Github I only find gems and rails 2 projects. I guess one thing that I don''t understand fully well is the role of unit testing. The feeling I get is pure BDD doesn''t
2011 Jul 26
5
[LLVMdev] Proposal for better assertions in LLVM
The assertions in LLVM would be a lot more useful if they could print out not only the source code of the expression that failed, but also print the values of the various arguments. To that end, I have an idea for an improved assert macro which would use raw_ostream. It would look something like this: ASSERT_STRM(Ty == STy, "Expected " << Ty << " but got "
2018 Mar 03
4
samba 2.4.6 to 2.4.7 update on Fedora update 26 to 27, can't connect to shares
...rong would it not? The uid/gid numbers are already defined on the unix system. So idmap_rid would not use the correct uid/gid numbers. Or am I missing something? I'm thinking perhaps I should implement an idmap_script backend that does something similar to idmap_nis.sh https://searchcode.com/codesearch/view/29414590/ But, instead of using ypmatch (as in idmap_nis.sh) I would use "getent passwd" calls instead to map between uid/gid and the SID number from wbinfo. Thanks for listening and helping :-) -- Norman Gaywood, Computer Systems Officer School of Science and Technology Universi...
2010 Nov 01
1
frame size for a given quality?
Have you tried typing "speex rtp" into google code search? It gives lots of examples of real applications which do exactly that. http://www.google.com/codesearch?as_q=speex+rtp -SteveK On 11/1/10 1:13 PM, "Jeff Ramin" <jeff.ramin at singlewire.com> wrote: > >Thanks again Steve. I'll search for the term you mention below. > >What I really want is to take the output of the speex encoder and spit >it out on the network v...
2008 Dec 29
0
[LLVMdev] Unwinds gone missing
...w). > > Although _Unwind_RaiseException is mentioned as part of the Itanium ABI, it > is apparently used on many more platform types than just that one processor. > A code search shows that it is in fact part of the standard gcc-provided > runtime libs (see > http://www.google.com/codesearch/p?hl=en#47R7EH5FbNk/trunk/gcc/gcc/unwind-generic.h&q=_Unwind_RaiseException%20lang:c). Exactly, this is part of libgcc and as such you can assume it is available. > There is also a mention of "libunwind". Is libunwind a portable > implementation of the Itanium unwinding ABI?...
2008 Nov 02
2
[LLVMdev] Debugging lli using bugpoint
...cref) ... python with lli: (tupletraverse (visit_decref (type_is_gc))) (subtype_traverse (visit_decref (type_is_gc)) (subtype_traverse (visit_decref (type_is_gc))(subtype_traverse (visit_decref (type_is_gc)) ..... about 2 million times Looking at the code (Objects/typeobject.c: http://google.com/codesearch?hl=en&q=show:VK_wUSuAZto:jHKC99mjNVM:4z02hQcYQRY&sa=N&ct=rd&cs_p=http://gentoo.osuosl.org/distfiles/Python-2.5.tar.bz2&cs_f=Python-2.5/Objects/typeobject.c ) it seems the last call (through a function pointer) in subtype_traverse results in this never-ending recursive call. H...
2008 Nov 04
4
[LLVMdev] Debugging lli using bugpoint
...(tupletraverse (visit_decref (type_is_gc))) > (subtype_traverse (visit_decref (type_is_gc)) (subtype_traverse > (visit_decref (type_is_gc))(subtype_traverse (visit_decref (type_is_gc)) > ..... about 2 million times > > Looking at the code (Objects/typeobject.c: > http://google.com/codesearch?hl=en&q=show:VK_wUSuAZto:jHKC99mjNVM:4z02hQcYQRY&sa=N&ct=rd&cs_p=http://gentoo.osuosl.org/distfiles/Python-2.5.tar.bz2&cs_f=Python-2.5/Objects/typeobject.c > ) > > it seems the last call (through a function pointer) in subtype_traverse > results in this never-ending...
2010 Apr 09
0
[LLVMdev] compiler-rt's arm vfp o<= implementation
...ls means mov if unsigned Lower or Same > > > > so depending on the comparison result r0 holds 1 or 0 > Thanks. Now that I understand the assembly, I think there's another problem. libgcc's definition of lesf2 is actually "1-(a<=b)". Source: http://www.google.com/codesearch/p?hl=en#ulemn8tW-hg/pub/gcc/releases/gcc-2.95.2/gcc-core-2.95.2.tar.gz%7CInAiOEw9K4g/gcc-2.95.2/gcc/libgcc1.c&q=libgcc1%20lesf2 Shih-wei wrote a patch which reverses the meaning of the predicate (attached) and this works for us. Is this okay to commit? Nick > > > Rodolph. > >...
2010 Oct 14
0
[LLVMdev] llvm.org robots.txt prevents crawling by Google code search?
> indexing the llvm.org svn archive. This means that when you search for an > LLVM-related symbol in code search, you get one of the many (possibly > out-of-date) mirrors, rather than the up-to-date llvm.org version. This is > sad. This is intentional. The workload of the server was pretty huge w/o this. -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics,