Displaying 20 results from an estimated 1385 matches for "cst".
Did you mean:
cs
2017 Aug 21
3
DragonEgg for GCC v8.x and LLVM v6.x is just able to work
...'test/hello.c'
source_filename = "test/hello.c"
target triple = "x86_64-redhat-linux"
module asm "\09.ident\09\22GCC: (GNU) 6.4.1 20170727 (Red Hat 6.4.1-1)
LLVM: 3.9.1\22"
@__func__.2210 = internal local_unnamed_addr constant [4 x i8] c"foo\00"
@.cst = private local_unnamed_addr constant [24 x i8] c"DEBUG: %s, line
%d: %s\0A\00", align 8
@.cst.1 = private local_unnamed_addr constant [13 x i8]
c"test/hello.c\00", align 8
@.cst.2 = private local_unnamed_addr constant [12 x i8] c"Leslie
Zhai\00", align 8
@.cst.3 =...
2011 Dec 01
3
System Time - UTC and Local Time
I have installed CentOS on a VM by checking 'System Clock uses UTC' option.
Later I selected CST time zone. Now the date command shows UTC time with
CST timezone: "Thu Dec 1 04:14:39 CST 2011". How do I change system
clock to show CST local time? Also, more likely a dumb question but why
isn't date command showing UTC here instead of CST?
jM
2009 Mar 14
2
Time Zone query
...18:00
3 Sppaaa One 1/13/2009 19:00
4 Sppaaa One 1/13/2009 20:00
5 Sppaaa One 1/13/2009 21:00...
in order to understand how R is handling this and using:
> All$Time <- as.POSIXct(strptime(as.character(d$Time), "%H:%M"))
> All$Time
[1] "2009-03-14 17:00:00 CST" "2009-03-14 18:00:00 CST"
[3] "2009-03-14 19:00:00 CST" "2009-03-14 20:00:00 CST"
[5] "2009-03-14 21:00:00 CST" "2009-03-14 22:00:00 CST"
It appears that the default is using CST and this is I assume based
on my system setting for my PC...
2015 Feb 07
2
lost at 'repository' entry installing centos7
On Sat, Feb 07, 2015 at 01:05:58PM -0600, g wrote:
> so much for all that.
>
> i just thought it was working. :-(
>
> only way i can get system clock to show correct CST is to set bios
> clock to CST.
I suggest reading the man page for 'hwclock'. Namely, the --utc
option. If you don't tell your system that the BIOS is stored as UTC,
then it will assume it's local time.
--
Jonathan Billings <billings at negate.org>
2015 Feb 07
0
lost at 'repository' entry installing centos7
On 02/07/2015 03:01 PM, Jonathan Billings wrote:
> On Sat, Feb 07, 2015 at 01:05:58PM -0600, g wrote:
>> so much for all that.
>>
>> i just thought it was working. :-(
>>
>> only way i can get system clock to show correct CST is to set bios
>> clock to CST.
>
> I suggest reading the man page for 'hwclock'. Namely, the --utc
> option. If you don't tell your system that the BIOS is stored as UTC,
> then it will assume it's local time.
i have run 'man hwclock' so many times that...
2009 Feb 28
3
[LLVMdev] Question about documentation of BitCast CExps.
In the documentation at [http://llvm.org/docs/LangRef.html], we have
the section [#aggregateconstants] telling us that the aggregate
constants are:
* Structure constants
* Array constants
* Vector constants
* Zeroinitialization
However, in [#constantexprs] we have a bitcast(CST, TYPE) operator
with the documentation (emphasis by me):
Convert a constant, CST, to another TYPE. The size of CST and TYPE
must be identical (same number of bits). The conversion is done as if
the CST value was stored to memory and read back as TYPE. In other
words, no bits change with this opera...
2004 Jul 07
1
question about seq.dates from chron vs. as.POSIXct
...ot;2004-01-03 18:00:00 Central Standard Time"
[5] "2004-01-04 18:00:00 Central Standard Time"
>
Why do the dates change, please? Presumably the as.POSIXct is taking the xt
as midnight GMT and converting to Central Standard Time.
Is the best solution to:
>as.POSIXlt(xt, "CST")
[1] "2004-01-01 CST" "2004-01-02 CST" "2004-01-03 CST" "2004-01-04 CST"
[5] "2004-01-05 CST"
>
Thanks in advance!
Sincerely,
Laura Holt
who is corrupted by dates and times
mailto: lauraholt_983 at hotmail.com
download! http://toolbar.m...
2015 Jul 06
5
[LLVMdev] Why can't comparisons with negative zero be simplified?
In InstCombineCompares.cpp, routine InstCombiner::FoldFCmp_IntToFP_Cst, there are these lines:
// Comparisons with zero are a special case where we know we won't lose
// information.
bool IsCmpZero = RHS.isPosZero();
// If the conversion would lose info, don't hack on this.
if ((int)InputSize > MantissaWidth && !IsCmpZero)
return nul...
2016 Apr 04
2
Understanding POSIXct creation on different OSes.
...)
dates = as.Date("2016-03-02") + (0:3)*7 # four Wednesdays
# [1] "2016-03-02" "2016-03-09" "2016-03-16" "2016-03-23"
# on OS X and Windows 10 -- expected result
as.POSIXct(as.POSIXlt(dates), tz = "America/Chicago")
# [1] "2016-03-02 CST" "2016-03-09 CST" "2016-03-16 CDT" "2016-03-23 CDT"
# On Linux (tested on Ubuntu 14.04) -- not as expected
as.POSIXct(as.POSIXlt(dates), tz = "America/Chicago")
# [1] "2016-03-02 00:00:00 CST" "2016-03-09 00:00:00 CST" "2016-03-...
2009 Feb 28
0
[LLVMdev] Question about documentation of BitCast CExps.
...//llvm.org/docs/LangRef.html], we have
> the section [#aggregateconstants] telling us that the aggregate
> constants are:
>
> * Structure constants
> * Array constants
> * Vector constants
> * Zeroinitialization
>
> However, in [#constantexprs] we have a bitcast(CST, TYPE) operator
> with the documentation (emphasis by me):
>
> Convert a constant, CST, to another TYPE. The size of CST and TYPE
> must be identical (same number of bits). The conversion is done as if
> the CST value was stored to memory and read back as TYPE. In other
> words,...
2017 Mar 06
1
DC site replication issue ?
...0001
DSA object GUID: ae57ed96-5b4a-4d86-befd-027711adfe26
DSA invocationId: cf59ac10-c027-4a45-8df5-218c88433fdd
==== INBOUND NEIGHBORS ====
DC=ForestDnsZones,DC=ad,DC=corp,DC=com
NY4\NY4-AD-V01 via RPC
DSA object GUID: b7aea0b6-f0fa-477c-a44d-96a8b005450d
Last attempt @ Fri Mar 3 11:23:46 2017 CST was successful
0 consecutive failure(s).
Last success @ Fri Mar 3 11:23:46 2017 CST
DC=DomainDnsZones,DC=ad,DC=corp,DC=com
NY4\NY4-AD-V01 via RPC
DSA object GUID: b7aea0b6-f0fa-477c-a44d-96a8b005450d
Last attempt @ Fri Mar 3 11:23:46 2017 CST was successful
0 consecutive failure(s).
Last success...
2017 Mar 06
2
DC site replication issue ?
...adfe26
>
DSA invocationId: cf59ac10-c027-4a45-8df5-218c88433fdd
>
> ==== INBOUND
NEIGHBORS ====
>
>
DC=ForestDnsZones,DC=ad,DC=corp,DC=com
>
NY4\NY4-AD-V01 via RPC
> DSA object GUID:
b7aea0b6-f0fa-477c-a44d-96a8b005450d
>
Last attempt @ Fri Mar 3 11:23:46 2017 CST was
successful
> 0 consecutive failure(s).
> Last success @ Fri Mar 3 11:23:46 2017
CST
>
>
DC=DomainDnsZones,DC=ad,DC=corp,DC=com
>
NY4\NY4-AD-V01 via RPC
> DSA object GUID:
b7aea0b6-f0fa-477c-a44d-96a8b005450d
>
Last attempt @ Fri Mar 3 11:23:46 2017 CST was
s...
2017 Jul 31
1
[RFC PATCH] nv50/ir: allow spilling of def values for constrained MERGES/UNIONS
....cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp
index b33d7b4010..f29c8a1a95 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp
@@ -2344,8 +2344,6 @@ RegAlloc::InsertConstraintsPass::insertConstraintMoves()
cst->setSrc(s, mov->getDef(0));
cst->bb->insertBefore(cst, mov);
- cst->getDef(0)->asLValue()->noSpill = 1; // doesn't help
-
if (cst->op == OP_UNION)
mov->setPredicate(defi->cc, defi->getPredicate());...
2012 Feb 03
3
Cannot get "==" operator to return TRUE
...",
"$ 2.62?", "$ 2.49?", "$ 2.29?", "n/a?", "n/a?", "n/a?",
"n/a?", "n/a?", "n/a?", "n/a?", "n/a?", "n/a?", "n/a?"
), TIME = c("2012-01-19 15:15:00 CST", "2011-10-13 15:15:00 CDT",
"2011-07-14 15:15:00 CDT", "2011-04-14 15:15:00 CDT", "2011-01-20
15:15:00 CST",
"2010-10-14 15:15:00 CDT", "2010-07-15 15:15:00 CDT", "2010-04-15
15:15:00 CDT",
"2010-01-21 15:1...
2013 Jul 19
2
puppet master and fileserver separate problem
...d fetch file_content from puppet.uc.local
puppet.uc.local:
================================================
[2013-07-19 18:25:07] DEBUG accept: 192.168.0.17:43547
[2013-07-19 18:25:07] DEBUG Puppet::Network::HTTP::WEBrickREST is invoked.
[2013-07-19 18:25:07] 192.168.0.17 - - [19/Jul/2013:18:25:07 CST] "GET
/production/node/agent01.uc.local? HTTP/1.1" 200 4032
[2013-07-19 18:25:07] - -> /production/node/agent01.uc.local?
[2013-07-19 18:25:07] DEBUG close: 192.168.0.17:43547
[2013-07-19 18:25:07] DEBUG accept: 192.168.0.17:43549
[2013-07-19 18:25:07] DEBUG Puppet::Network::HTTP::WEB...
2002 Nov 08
1
[LLVMdev] Iterating on the DSGraph... (fwd)
...dle& ptrNode = funcGraph.getNodeForValue(ptr);
> DSNode* target = ptrNode.getNode(); // cannot be NULL
>
>
> (Chris, am I right that a scalar pointer always points to some
> graph node?)
>
> --Vikram
>
>
> From llvmdev-admin at cs.uiuc.edu Fri Nov 8 17:18 CST 2002
> Received: from dcs-server1.cs.uiuc.edu (dcs-research1-server1.cs.uiuc.edu [128.174.244.4])
> by tank.cs.uiuc.edu (8.9.3/8.9.3) with ESMTP id RAA02614;
> Fri, 8 Nov 2002 17:18:04 -0600 (CST)
> Received: from dcs-server2.cs.uiuc.edu (dcs-server2.cs.uiuc.edu [128.174.252.3])
>...
2015 Feb 07
2
lost at 'repository' entry installing centos7
...C. The GUI tool 'system-config-date' (in a package with the same
> name) is a graphical tool for setting date/timezone settings.
/etc/sysconfig/clock shows ZONE="Etc/GMT-6".
running 'system-config-date' from cli, and setting hardware clock to
UTC and system clock to CST, several times, 'hwclock' kept showing
clock to be CST. so, i ran 'system-config-date' one more time and
selected UTC for both and set clock to UTC time. weird, but that
set bios clock to UTC and i was able to open 'System Settings'
window, select 'Date & Time',...
2005 Dec 05
1
Automatic time zone conversion
Dear R-help,
I was trying to convert a date and time record extracted from a fortran
subroutine I worte and I encounter some problem. The data read in time
and date in a format like "2000-05-11_01:00:00.0000" in fortran output.
It is in GMT. I need to convert it to CST (GMT+8). I did the following
steps.
> cdate
[1] "2000-05-11_01:00:00.0000\005\003"
# I am not sure why the extra characters at the end but it doesn't
affect the strptime function so I just ingored it.
> strptime(cdate,format="%Y-%m-%d_%H:%M:%S")
[1] "2000-05-1...
2011 Jun 01
1
Problem with as.POSIXct()
Hi, when I type in these words:
> a=c("2011-06-01 17:21:24.83", "2011-06-01 17:21:24.283")
> as.POSIXct(a)
the real output is:
[1] "2011-06-01 17:21:24.830 CST" "2011-06-01 17:21:24.283 CST"
rather than the expected one:
[1] "2011-06-01 17:21:24.083 CST" "2011-06-01 17:21:24.283 CST"
How can I deal with such milliseconds less than 100?
Thanks
--
View this message in context: http://r.789695.n4.nabble.com/Prob...
2007 Feb 21
1
Adding difftime objects to POSIXt objects
Hello,
?DateTimeClasses states that "one can add or subtract a number of
seconds or a 'difftime' object from a date-time object, but not add two
date-time objects."
So, is the below expected behavior?
> x <- Sys.time()
> x
[1] "2007-02-21 16:19:56 CST"
> x + as.difftime("1","%H")
[1] "2007-02-21 16:19:57 CST"
Warning message:
Incompatible methods ("+.POSIXt", "Ops.difftime") for "+"
"+.POSIXt" does behave as expected, though:
> "+.POSIXt"(x,as.difftime...