search for: sergey

Displaying 20 results from an estimated 697 matches for "sergey".

2002 Mar 31
3
GID and UID on ext3 file system
Hello. Look at this: [sergey@gleam sergey]$ uname -s -m -r Linux 2.4.17 i586 [sergey@gleam sergey]$ mount | grep /home /dev/hda11 on /home type ext3 (rw) [sergey@gleam sergey]$ pwd /home/sergey [sergey@gleam sergey]$ id uid=502(sergey) gid=100(users) groups=100(users),10(wheel),13(news),512(ftpadmin),513(dos) [sergey@gleam ser...
2010 Mar 23
1
[LLVMdev] is there any eclipse plug-in for td/ll files editing?
...Platform). Editor has outline, folding, coloring, go to definition, etc. As any prototype, editor has some limitations (e.g. no cross-file indexing). If there is any interest to such tool I will improve it a bit and then publish. Also considering llvm asm (ll) editing and build support. Regards, Sergey Yakoushkin 2010/3/16 Samuel Crow <samuraileumas at yahoo.com>: > Hello Sergey, > > I'd be interested in such a plugin.  At one time somebody else started a plugin to cause Eclipse to compile with LLVM-GCC but I hadn't heard anything else from them.  I've been just modify...
2015 Apr 08
4
[LLVMdev] [RFC] OpenMP offload infrastructure (iteration 2)
...of the contributors representing a number of institutions: ANL, AMD, IBM, Intel and Texas Instruments. Our intent is to have a discussion and an approval from the community on the method we are going to implement, so when the time to submit patches will come there will be no surprises. Thank you, Sergey Ostanevich Open Source Compilers Intel Corporation -------------- next part -------------- A non-text attachment was scrubbed... Name: offload-proposal-intel-ti-ibm.pdf Type: application/pdf Size: 238840 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/2015040...
2015 Apr 29
2
[LLVMdev] [Openmp-dev] [RFC] OpenMP offload infrastructure (iteration 2)
Hi Sergey, Thanks for putting the new version of the document together! I don't see any other issues. I strongly believe the approach described in the document is a nice way to get OpenMP offloading support in clang. I plan to start actively contributing code for this component of the OpenMP implementat...
2015 Sep 09
1
dsync replication errors
Timo, Is it possible to limit replication scope with INBOX namespace only ? Best regards, Sergey Schwartz Senior System Administrator Biblio Globus Tour Operator www.bgoperator.ru T: +7 495 5042500 ext 1532 E: sergey.schwartz at bgoperator.com 08.09.2015 13:24, Timo Sirainen ?????: > On 08 Sep 2015, at 11:20, Sergey Schwartz <sergey.schwartz at bgoperator.com> wrote: >> I use...
2019 Jun 19
2
nouveau: DRM: GPU lockup - switching to software fbcon
On Wed, Jun 19, 2019 at 1:08 AM Sergey Senozhatsky <sergey.senozhatsky.work at gmail.com> wrote: > > On (06/14/19 11:50), Sergey Senozhatsky wrote: > > dmesg > > > > nouveau 0000:01:00.0: DRM: GPU lockup - switching to software fbcon > > nouveau 0000:01:00.0: fifo: SCHED_ERROR 0a [CTXSW_TIMEOUT] &gt...
2015 Jul 22
2
internal server error
Steffen, 2.2.18 (2de3c7248922) Best regards, Sergey Schwartz Senior System Administrator Biblio Globus Tour Operator www.bgoperator.ru T: +7 495 5042500 ext 1532 E: sergey.schwartz at bgoperator.com 22.07.2015 12:16, Steffen Kaiser ?????: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Wed, 22 Jul 2015, Sergey Schwartz wrote:...
2011 Sep 17
8
apt-get --force-yes
Hi , I am trying to install jdk thru puppet . i am getting the force-yes error . err: /Stage[main]/Apiserver::Java/Package[sun-java6-jdk]/ensure: change from purged to present failed: Execution of ''/usr/bin/apt-get - q -y -o DPkg::Options::=--force-confold install sun-java6-jdk'' returned 100: Reading package lists... Please share your idea''s to fix this issue, --
2014 Dec 02
2
[LLVMdev] Fast-math flags in constant expressions
Out of curiosity, how would you envision fast-math flags interacting with constant expressions? Off the top of my head, I can’t think of any flags that would be relevant if the expression can just be constant-folded away at full precision anyways. > On Nov 28, 2014, at 4:56 AM, Sergey Dmitrouk <sdmitrouk at accesssoftek.com> wrote: > > Doesn't look like a bug, more like a limitation of constant expressions > as llvm::BinaryConstantExpr doesn't have FastMastFlags. > > -- > Sergey > > On Thu, Nov 27, 2014 at 03:39:20PM +0200, Sergey Dmitro...
2010 May 18
8
gem for snow leopard?
Does anybody plan to post binary rem for SL? Id''love to rely on its availability in the installation script... As wx included in installation package makes it huge... Sergey Chernov real.sergeych@gmail.com
2014 Sep 05
5
[LLVMdev] [Compiler-RT] [ARM] Where __aeabi_[il]div0 builtins should be implemented?
...s are provided by compiler-rt. Did I get it all right or maybe I'm missing something? libgcc provides both __aeabi_idiv0 and __aeabi_ldiv0 as weak symbols, any reasons not to do the same in compiler-rt? Or, to put it differently, why force external implementation of these functions? Thanks, Sergey
2014 Aug 10
2
[LLVMdev] "Duplicate option categories" assertion triggered loading an LLVM-project
Hello Sergey, thanks for the suggestion. The name of the pass is not what triggers the assertion. The test case I attached to the email is a stripped-down version of a much more complicated pass (with a proper name) that originally caused the problem. Also, to be sure, I just tried to change the name of the...
2013 Aug 10
2
[LLVMdev] Fixed-point arithmetic
Hi, Is there anyone else interested in fixed-point arithmetic support in clang/llvm? Regards, Sergey On Sat, Aug 3, 2013 at 12:14 AM, Sergey Yakoushkin < sergey.yakoushkin at gmail.com> wrote: > Hi all, > > Were there any further discussion or progress with the fixed point support > (ISO/IEC TR 18037) in the meantime? > http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1275....
2014 Nov 27
2
[LLVMdev] Fast-math flags in constant expressions
..... %val = phi double [ fmul (double 1.0, double 1.0), %cond.true ], [ fmul (double 1.0, double 1.0), %cond.false ] ... LLParser::ParseValID(...) could call EatFastMathFlagsIfPresent() to handle fast-math flags, but it doesn't. Is this intended or a bug? Regards, Sergey
2010 Mar 16
2
[LLVMdev] is there any eclipse plug-in for td/ll files editing?
Hi, I'm working on LLVM based compiler. Editing td, llvm asm files a lot. Is there any plug-in (coloring, open declaration, etc) for Eclipse IDE for these files? If not, is there any interest to such plug-in? Regards, Sergey Y.
2018 Feb 11
11
[Bug 105045] New: System freeze with nouveau
https://bugs.freedesktop.org/show_bug.cgi?id=105045 Bug ID: 105045 Summary: System freeze with nouveau Product: Mesa Version: 17.3 Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: critical Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at
2011 Jun 23
12
Turn off client autoupdate
Hello! By default puppet node connects to server periodically and looks if there is something execute. I''m wondering is it possible to make puppet clients not connect to server themselves? So that it would be possible to update a node only with puppetrun nodename. --- WBR, Sergey -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this gr...
2009 Sep 21
3
Putting a text box in a plot
...containing text and numbers, say: Mean: 0.1 St.Deviation: 1.1 Skewness: 1.1 Kurtosis: 0.5 I know there is a way to do this, there is a function in some library, but it's been years since I used this function, and I do not remember where I found it. Could anyone help out? Thank you in advance! Sergey -- Kniven sk?rpes bara mot stenen.
2019 Jun 19
3
nouveau: DRM: GPU lockup - switching to software fbcon
On Wed, Jun 19, 2019 at 1:48 AM Sergey Senozhatsky <sergey.senozhatsky.work at gmail.com> wrote: > > On (06/19/19 01:20), Ilia Mirkin wrote: > > On Wed, Jun 19, 2019 at 1:08 AM Sergey Senozhatsky > > <sergey.senozhatsky.work at gmail.com> wrote: > > > > > > On (06/14/19 11:50), Sergey Seno...
2011 Apr 19
1
Linux RHEL 5.2 hangs for 1.5 hrs while fsck'ing the OCFS2 file system
...booted fine. Then we mount -a them and life was good. Also we added later on the fastboot to the grub.conf, then booted it - no problem for obvious reasons. If anyone experienced the same issue - would you mind to light into the tonnel and share your experience and perhaps the fix? Thanks Sergey Prilutsky -------------- next part -------------- An HTML attachment was scrubbed... URL: http://oss.oracle.com/pipermail/ocfs2-users/attachments/20110419/83b515fe/attachment.html