search for: chrono

Displaying 20 results from an estimated 72 matches for "chrono".

Did you mean: chron
2018 Aug 10
2
[cfe-dev] Filesystem has Landed in Libc++
...bit timestamps. Here is a file_clock, quickly thrown together, lightly tested, that models ext4: #include "date/tz.h" #include <ostream> #include <istream> namespace filesystem { struct file_clock { using duration = std::chrono::nanoseconds; using rep = duration::rep; using period = duration::period; using time_point = std::chrono::time_point<file_clock>; static constexpr bool is_steady = false; static time_point now();...
2016 Oct 07
2
Using std::chrono
VS2013 support is dropped in about 1 week from now :) On Thu, Oct 6, 2016 at 11:37 PM Mueller-Roemer, Johannes Sebastian < Johannes.Sebastian.Mueller-Roemer at igd.fraunhofer.de> wrote: > Visual Studio up to and including VS2013 implements > std::chrono::high_resolution_clock in an absolutely unusable manner (it is > a very low resolution clock…) [1]. Also, division is implemented > incorrectly [2]. I have run into both issues in my private developments, so > I would avoid them as long as VS2013 is supported by LLVM (I believe it > sti...
2016 Oct 07
3
Using std::chrono
Hi all, We're considering using std::chrono more heavily in lldb. However, A quick search of the llvm, clang, and lld codebases shos almost zero usage of chrono. I wanted to see if this was for technical reasons (eg some compiler doesn't support it well) or simply because nobody has needed it yet. If it's the former then I'd like...
2013 Oct 16
3
[LLVMdev] Unable to evaluate clang on linux or windows
...details - this is the error I get - root at no1slu398:~/Documents/LLVM/tmp# clang++ -std=c++0x hello.cpp In file included from hello.cpp:1: In file included from /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../include/c++/4.6/thread:38: /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../include/c++/4.6/chrono:535:6: error: no matching constructor for initialization of 'duration' (aka 'std::chrono::duration<long, std::ratio<1, 1000000> >') : __d(__t.time_since_epoch()) ^ ~~~~~~~~~~~~~~~~~~~~~~ /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../include/...
2012 Jul 17
1
subnet-up invocations
...;m confused by the subnet-up calls made by tinc. I was assuming that I'd be called once when it connects to another node. However, subnet-up appears to be called much more often than that. For example, I have the following configuration: ,---- | $ cat tinc.conf | ConnectTo = spitzer | Name = chronos | Mode = switch | | $ cat hbt/hosts/spitzer | address = spitzer.ap.columbia.edu | Compression = 11 | Cipher = AES128 | Subnet = 192.168.1.2/32 | Subnet = 192.168.1.0/24#15 | | -----BEGIN RSA PUBLIC KEY----- [...] | -----END RSA PUBLIC KEY----- `---- If I insert a | echo "$NODE,$NAME,$REM...
2013 Oct 18
0
[LLVMdev] Unable to evaluate clang on linux or windows
...I get - > > root at no1slu398:~/Documents/LLVM/tmp# clang++ -std=c++0x hello.cpp > In file included from hello.cpp:1: > In file included from > /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../include/c++/4.6/thread:38: > /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../include/c++/4.6/chrono:535:6: > error: no matching constructor for initialization of 'duration' (aka > 'std::chrono::duration<long, std::ratio<1, 1000000> >') > : __d(__t.time_since_epoch()) > ^ ~~~~~~~~~~~~~~~~~~~~~~ > /usr/lib/gcc/x86_64-linux-gnu...
2017 May 19
2
noinline changes between 3.8 and 4.0?
All, I'm in the process of upgrading an LLVM client from using 3.8 to using 4.0 and am running into the following issue: // compile with: // clang++ -std=c++11 -Wno-c++14-extensions -S -emit-llvm // ~/chrono.cpp -o chrono.ll #include <chrono> #include <ratio> #include <thread> using namespace std; using namespace std::chrono; using tick = ratio<1, 300>; using tick_duration = duration<long, tick>; class ticking_clock { public: using duration = tick_duration; using rep...
2016 May 11
2
Change Password after expired
I dont know LTB or what it exact is, but Add in /etc/ldap/ldap.conf TLS_REQCERT allow Setup your own "rootCA" like this. ( if not done, apt-get install ca-certificates ) mkdir -p /usr/local/share/ca-certificates/chrono mv /etc/ssl/ca_chrono-dom.lan.pem /usr/local/share/ca-certificates/chrono update-ca-certificates ! MUST BE /usr/local/share/ca-certificates else its not picked up with the update-ca-certificates command. you should see: update-ca-certificates Updating certificates in /etc/ssl/certs... 1 added, 0...
2018 Jul 27
5
Filesystem has Landed in Libc++
Hi All, I recently committed <filesystem> to trunk. I wanted to bring attention to some quirks it currently has. First, it's been put in a separate library, libc++fs, for now. Users are responsible for linking the library when they use filesystem. Second, it should still not be considered ABI stable. Vendors should be aware of this before shipping it. Hopefully all the standard and
2016 May 10
3
Change Password after expired
In some customer yes, but they are with LTSP (pxe boot) where another use graphical interface, but would rather have a web interface to change the password. This tambpem would be used for windows stations off the field. Em 10-05-2016 16:05, Rowland penny escreveu: > Not even on the clients ??
2016 May 11
1
Change Password after expired
...;> I dont know LTB or what it exact is, but >> >> Add in /etc/ldap/ldap.conf >> TLS_REQCERT allow >> >> Setup your own "rootCA" like this. >> ( if not done, apt-get install ca-certificates ) >> >> mkdir -p /usr/local/share/ca-certificates/chrono >> mv /etc/ssl/ca_chrono-dom.lan.pem >> /usr/local/share/ca-certificates/chrono >> update-ca-certificates >> >> ! MUST BE /usr/local/share/ca-certificates else its not picked up >> with the >> update-ca-certificates command. >> >> you should s...
2013 Oct 16
0
[LLVMdev] Unable to evaluate clang on linux or windows
On 15/10/13 22:22, C K Kashyap wrote: > Hi, > I'd like to try out the new c++11 features using clang. However, I am > running into some issue or the other on both Windows and Linux. In both > cases, it looks like the problem is due to headers from VC/g++. > I was wondering if someone can point me to some steps on setting up a > Windows or Linux(ubuntu 12.04 LTS) box for
2013 Oct 15
2
[LLVMdev] Unable to evaluate clang on linux or windows
Hi, I'd like to try out the new c++11 features using clang. However, I am running into some issue or the other on both Windows and Linux. In both cases, it looks like the problem is due to headers from VC/g++. I was wondering if someone can point me to some steps on setting up a Windows or Linux(ubuntu 12.04 LTS) box for exploring clang. I was able to successfully build clang on my ubuntu but
2017 Jan 09
5
The most efficient way to implement an integer based power function pow in LLVM
Hi, I want an efficient way to implement function pow in LLVM instead of invoking pow() math built-in. For algorithm part, I am clear for the logic. But I am not quite sure for which parts of LLVM should I replace built-in pow with another efficient pow implementation. Any comments and feedback are appreciated. Thanks! -- Wei Ding -------------- next part -------------- An HTML attachment was
2016 May 11
0
Change Password after expired
...0:45, L.P.H. van Belle a écrit : > I dont know LTB or what it exact is, but > > Add in /etc/ldap/ldap.conf > TLS_REQCERT allow > > Setup your own "rootCA" like this. > ( if not done, apt-get install ca-certificates ) > > mkdir -p /usr/local/share/ca-certificates/chrono > mv /etc/ssl/ca_chrono-dom.lan.pem /usr/local/share/ca-certificates/chrono > update-ca-certificates > > ! MUST BE /usr/local/share/ca-certificates else its not picked up with the > update-ca-certificates command. > > you should see: > update-ca-certificates > Updating ce...
2018 Feb 08
5
self-heal trouble after changing arbiter brick
...terfs Brick8: gv5:/data/glusterfs Brick9: pluto:/var/gv45-arbiter (arbiter) Options Reconfigured: nfs.disable: on transport.address-family: inet storage.owner-gid: 1000 storage.owner-uid: 1000 cluster.self-heal-daemon: enable The gv23-arbiter is the brick that was recently moved from other server (chronos) using the following command: # gluster volume replace-brick myvol chronos:/mnt/gv23-arbiter gv1:/data/gv23-arbiter commit force volume replace-brick: success: replace-brick commit force operation successful It's not the first time I was moving an arbiter brick, and the heal-count was zero f...
2019 Jul 03
2
LLVM Releases
...piler that >> will compile it. gcc 4.8.5 is reported as too old, and gcc 7.3.0 and >> 8.1.0 both fail in the same place: >> >> 9069 /home/msi3/hpct/spack/var/spack/stage/llvm-develop-iu3myet5ceoz4q7 >> k5twmk4dlths3aemz/spack-src/projects/libcxx/include/chrono:876:59: >> error: '(9.223372036854775807e+18 / 1.0e+9)' is not a constant ex >> pression >> Can anyone tell me what compiler to use, or how to get past this error? I gave up on llvm at develop, and tried llvm, which tried to give me 8.0.0. It di...
2018 Feb 09
0
self-heal trouble after changing arbiter brick
...uto:/var/gv45-arbiter (arbiter) > Options Reconfigured: > nfs.disable: on > transport.address-family: inet > storage.owner-gid: 1000 > storage.owner-uid: 1000 > cluster.self-heal-daemon: enable > > The gv23-arbiter is the brick that was recently moved from other server > (chronos) using the following command: > > # gluster volume replace-brick myvol chronos:/mnt/gv23-arbiter > gv1:/data/gv23-arbiter commit force > volume replace-brick: success: replace-brick commit force operation > successful > > It's not the first time I was moving an arbiter bri...
2013 Oct 11
0
re-sorting emails in chrono order
dovecot 2.1.1 I access my IMAP folders through SquirrelMail as a result of 'part copying' (probably through web client ? not sure), that is copying/moving some emails, later, the rest, I have a sub folder where I have maybe 30 emails from 2012 appear at the very end like so 2013/2012/2010/.../2006/2005/2012 how can I re-sort ? thanks Voytek
2016 May 11
1
Change Password after expired
...tlett I'm stuck since the upgrade. I tried to change the new parameters to downgrade security but it didn't work (and i don't want less security). The active directory works, users can authenticate and access a separate member files server. My smb.conf [global] workgroup = CHRONO-DOM realm = CHRONO-DOM.LAN netbios name = DMZ-PVE-SRV9 server role = active directory domain controller dns forwarder = xxx.xxx.xxx.xxx idmap_ldb:use rfc2307 = yes load printers = no printing = bsd printcap name = /dev/null...