Home
last modified time | relevance | path

Searched refs:asctime (Results 1 – 25 of 2728) sorted by relevance

12345678910>>...110

/dports/net/icpld/icpld-1.1.5/src/
H A Dwlogs.cpp23 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
35 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
47 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
60 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
69 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
84 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
110 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
122 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
134 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
147 toLog << "ICPLD started at: " << asctime (tblock); in wlogs()
[all …]
/dports/math/octave/octave-6.4.0/scripts/time/
H A Dasctime.m27 ## @deftypefn {} {} asctime (@var{tm_struct})
35 ## asctime (localtime (time ()))
44 function retval = asctime (tm_struct) function
57 %! assert (strcmp (asctime (localtime (t)), ctime (t)));
59 %!assert (asctime (localtime (time ()))(end), "\n")
61 %!error asctime ()
62 %!error asctime (1, 2)
H A Dctime.m30 ## @code{asctime}.
33 ## @code{asctime (localtime (time))}. For example:
41 ## @seealso{asctime, time, localtime}
50 retval = asctime (localtime (t));
57 %! assert (strcmp (asctime (localtime (t)), ctime (t)));
/dports/devel/py-pyro/Pyro4-4.77/src/Pyro4/test/
H A Dechoserver.py42 print("%s - echo: %s" % (time.asctime(), message_str))
48 print("%s - error: generating exception" % time.asctime())
54 print("%s - error: generating exception" % time.asctime())
62 print("%s - oneway_echo: %s" % (time.asctime(), message_str))
68 print("%s - slow: waiting a bit..." % time.asctime())
71 print("%s - slow: returning result" % time.asctime())
90 print("%s - oneway_slow: waiting a bit..." % time.asctime())
93 print("%s - oneway_slow: returning result" % time.asctime())
111 print("%s - shutting down" % time.asctime())
/dports/science/py-obspy/obspy-1.2.2/obspy/clients/neic/
H A Dclient.py21 from obspy.clients.neic.util import ascdate, asctime
174 print(ascdate() + " " + asctime() + " line=" + line)
199 print(ascdate(), asctime(), "Connected - start reads")
208 print(ascdate(), asctime(), "read len",
215 print(ascdate(), asctime(), b"<EOR> seen")
233 print(ascdate(), asctime(),
249 print(ascdate() + " " + asctime() + " success? len=" +
/dports/converters/p5-Convert-Binary-C/Convert-Binary-C-0.84/tests/include/pdclib/functions/time/
H A Dasctime.c13 char * asctime( const struct tm * timeptr ) in asctime() function
39 TESTCASE( strcmp( asctime( &time ), "Sun Sep 16 01:03:52 1973\n" ) == 0 ); in main()
41 TESTCASE( strcmp( asctime( &time ), "Sun Jan 1 00:00:00 1900\n" ) == 0 ); in main()
43 TESTCASE( strcmp( asctime( &time ), "Sat Dec 31 23:59:60 9999\n" ) == 0 ); in main()
/dports/devel/gnulib/gnulib-20140202-stable/doc/posix-functions/
H A Dasctime.texi1 @node asctime
2 @section @code{asctime}
3 @findex asctime
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asctime.html}
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/doc/posix-functions/
H A Dasctime.texi1 @node asctime
2 @section @code{asctime}
3 @findex asctime
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/asctime.html}
/dports/sysutils/py-tmuxp/tmuxp-1.9.3/tmuxp/
H A Dlog.py64 asctime = set_style(
82 return reset + levelname + asctime + name + reset
84 return levelname + asctime + name
100 record.asctime = time.strftime(date_format, self.converter(record.created))
133 asctime = (
164 tpl = reset + levelname + asctime + name + module_funcName + lineno + reset
/dports/devel/libtifiles2/libtifiles2-1.1.7/src/
H A Dcomments.c45 char *str = asctime(localtime(&t)); in tifiles_comment_set_single()
63 char *str = asctime(localtime(&t)); in tifiles_comment_set_group()
81 char *str = asctime(localtime(&t)); in tifiles_comment_set_backup()
99 char *str = asctime(localtime(&t)); in tifiles_comment_set_tigroup()
/dports/net/libgweather/libgweather-40.0/libgweather/
H A Dtest_sun_moon.c72 asctime(gmtime(&info->current_time))); in main()
83 printf(" New: %s", asctime(gmtime(&phases[0]))); in main()
84 printf(" 1stQ: %s", asctime(gmtime(&phases[1]))); in main()
85 printf(" Full: %s", asctime(gmtime(&phases[2]))); in main()
86 printf(" 3rdQ: %s", asctime(gmtime(&phases[3]))); in main()
/dports/net/libmateweather/libmateweather-1.26.0/libmateweather/
H A Dtest_sun_moon.c73 asctime(gmtime(&info.update))); in main()
83 printf(" New: %s", asctime(gmtime(&phases[0]))); in main()
84 printf(" 1stQ: %s", asctime(gmtime(&phases[1]))); in main()
85 printf(" Full: %s", asctime(gmtime(&phases[2]))); in main()
86 printf(" 3rdQ: %s", asctime(gmtime(&phases[3]))); in main()
/dports/lang/python-legacy/Python-2.7.18/Lib/test/
H A Dtest_time.py29 == time.asctime(time.localtime(self.t)))
189 time.asctime(time.gmtime(self.t))
190 self.assertRaises(TypeError, time.asctime, 0)
191 self.assertRaises(TypeError, time.asctime, ())
194 asc = time.asctime((TIME_MAXYEAR, 6, 1) + (0,) * 6)
196 self.assertRaises(OverflowError, time.asctime,
198 self.assertRaises(TypeError, time.asctime, 0)
199 self.assertRaises(TypeError, time.asctime, ())
200 self.assertRaises(TypeError, time.asctime, (0,) * 10)
/dports/lang/python27/Python-2.7.18/Lib/test/
H A Dtest_time.py29 == time.asctime(time.localtime(self.t)))
189 time.asctime(time.gmtime(self.t))
190 self.assertRaises(TypeError, time.asctime, 0)
191 self.assertRaises(TypeError, time.asctime, ())
194 asc = time.asctime((TIME_MAXYEAR, 6, 1) + (0,) * 6)
196 self.assertRaises(OverflowError, time.asctime,
198 self.assertRaises(TypeError, time.asctime, 0)
199 self.assertRaises(TypeError, time.asctime, ())
200 self.assertRaises(TypeError, time.asctime, (0,) * 10)
/dports/lang/perl5.30/perl-5.30.3/ext/POSIX/t/
H A Dtime.t47 is(asctime(CORE::localtime(0)), ctime(0), "asctime() and ctime() at zero");
48 is(asctime(POSIX::localtime(0)), ctime(0), "asctime() and ctime() at zero");
49 is(asctime(CORE::localtime(12345678)), ctime(12345678),
51 is(asctime(POSIX::localtime(12345678)), ctime(12345678),
/dports/lang/perl5.34/perl-5.34.0/ext/POSIX/t/
H A Dtime.t47 is(asctime(CORE::localtime(0)), ctime(0), "asctime() and ctime() at zero");
48 is(asctime(POSIX::localtime(0)), ctime(0), "asctime() and ctime() at zero");
49 is(asctime(CORE::localtime(12345678)), ctime(12345678),
51 is(asctime(POSIX::localtime(12345678)), ctime(12345678),
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/ext/POSIX/t/
H A Dtime.t47 is(asctime(CORE::localtime(0)), ctime(0), "asctime() and ctime() at zero");
48 is(asctime(POSIX::localtime(0)), ctime(0), "asctime() and ctime() at zero");
49 is(asctime(CORE::localtime(12345678)), ctime(12345678),
51 is(asctime(POSIX::localtime(12345678)), ctime(12345678),
/dports/lang/perl5.32/perl-5.32.1/ext/POSIX/t/
H A Dtime.t47 is(asctime(CORE::localtime(0)), ctime(0), "asctime() and ctime() at zero");
48 is(asctime(POSIX::localtime(0)), ctime(0), "asctime() and ctime() at zero");
49 is(asctime(CORE::localtime(12345678)), ctime(12345678),
51 is(asctime(POSIX::localtime(12345678)), ctime(12345678),
/dports/print/py-fonttools3/fonttools-3.44.0/Tests/misc/
H A DtimeTools_test.py3 from fontTools.misc.timeTools import asctime, timestampNow, epoch_diff
10 assert isinstance(asctime(), basestring)
11 assert asctime(time.gmtime(0)) == 'Thu Jan 1 00:00:00 1970'
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/talos/talos/profiler/
H A DsymLogging.py16 print >> sys.stdout, time.asctime() + " " + threadName + " TRACE " + \
22 print >> sys.stderr, time.asctime() + " " + threadName + " ERROR " + \
28 print >> sys.stdout, time.asctime() + " " + threadName + " " + \
/dports/security/beid/eid-mw-5.0.8/cardcomm/pkcs11/src/
H A Dpkcs11log.c232 char asctime[21]; in log_trace() local
266 sprintf_s(asctime,sizeof(asctime), "%02d.%02d.%04d %02d:%02d:%02d", in log_trace()
274 …fprintf(fp, "%d %d %19s %-26s | %s\n",GetCurrentProcessId(), GetCurrentThreadId(), asctime, where,… in log_trace()
276 fprintf(fp, "%19s %-26s | %s\n", asctime, where, buf); in log_trace()
304 char asctime[21]; in log_xtrace() local
332 sprintf_s(asctime,sizeof(asctime), "%02d.%02d.%04d %02d:%02d:%02d", in log_xtrace()
343 fprintf(fp, "%19s | %-26s | %s\n", asctime, where, string); in log_xtrace()
345 fprintf(fp, "%19s | %-26s | \n", asctime, where); in log_xtrace()
/dports/devel/elixir-calendar/calendar-0.17.4/lib/calendar/naive_date_time/
H A Dparse.ex35 iex> Calendar.NaiveDateTime.Parse.asctime("Wed Apr 9 07:53:03 2003")
37 iex> asctime("Thu, Apr 10 07:53:03 2003")
40 def asctime(string) do function
47 Like `asctime/1`, but returns the result without tagging it with :ok.
50 iex> asctime!("Wed Apr 9 07:53:03 2003")
52 iex> asctime!("Thu, Apr 10 07:53:03 2003")
55 def asctime!(string) do
56 {:ok, result} = asctime(string)
/dports/devel/idutils/idutils-4.6/lib/
H A Dtime.in.h229 # undef asctime
230 _GL_WARN_ON_USE (asctime, "asctime can overrun buffers in some cases - "
235 _GL_WARN_ON_USE (asctime, "asctime_r can overrun buffers in some cases - "
240 _GL_WARN_ON_USE (asctime, "ctime can overrun buffers in some cases - "
245 _GL_WARN_ON_USE (asctime, "ctime_r can overrun buffers in some cases - "
/dports/misc/amanda-server/amanda-3.3.9/gnulib/
H A Dtime.in.h228 # undef asctime
229 _GL_WARN_ON_USE (asctime, "asctime can overrun buffers in some cases - "
234 _GL_WARN_ON_USE (asctime, "asctime_r can overrun buffers in some cases - "
239 _GL_WARN_ON_USE (asctime, "ctime can overrun buffers in some cases - "
244 _GL_WARN_ON_USE (asctime, "ctime_r can overrun buffers in some cases - "
/dports/misc/amanda-client/amanda-3.3.9/gnulib/
H A Dtime.in.h228 # undef asctime
229 _GL_WARN_ON_USE (asctime, "asctime can overrun buffers in some cases - "
234 _GL_WARN_ON_USE (asctime, "asctime_r can overrun buffers in some cases - "
239 _GL_WARN_ON_USE (asctime, "ctime can overrun buffers in some cases - "
244 _GL_WARN_ON_USE (asctime, "ctime_r can overrun buffers in some cases - "

12345678910>>...110