Searched refs:date (Results 126 - 150 of 284) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/mandoc/
H A Dman_validate.c183 * implication, date and section also aren't set).
188 man->meta.date = mandoc_normdate(man, NULL, n->line, n->pos);
361 free(man->meta.date);
363 man->meta.title = man->meta.vol = man->meta.date =
405 man->meta.date = mandoc_normdate(man,
408 man->meta.date = mandoc_strdup("");
H A Dmandoc.c518 * date as a whole with "%B %e, %Y" or "%B %d, %Y".
547 /* No date specified: use today's date. */
554 /* Valid mdoc(7) date format. */
575 /* Use any non-mdoc(7) date verbatim. */
H A Dtree.c76 if (meta->date != NULL)
77 printf("date = \"%s\"\n", meta->date);
/freebsd-12-stable/contrib/subversion/subversion/libsvn_client/
H A Dexport.c553 apr_time_t date;
763 SVN_ERR(svn_time_from_cstring(&fb->date, value->data, fb->pool));
841 fb->repos_root_url, fb->date,
857 if (fb->date && (! fb->special))
858 SVN_ERR(svn_io_set_file_affected_time(fb->date, fb->path, pool));
962 apr_time_t date = 0;
979 SVN_ERR(svn_time_from_cstring(&date, val->data, scratch_pool));
1029 date, author, scratch_pool));
1048 if (date && (! special))
1049 SVN_ERR(svn_io_set_file_affected_time(date, full_pat
550 apr_time_t date; member in struct:file_baton
958 apr_time_t date = 0; local
[all...]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Ddag.c213 svn_string_t date;
254 /* Set a date on revision 0. */
255 date.data = svn_time_to_cstring(apr_time_now(), trail->pool);
256 date.len = strlen(date.data);
257 return svn_fs_base__set_rev_prop(fs, 0, SVN_PROP_REVISION_DATE, NULL, &date,
1624 /* Set a date on the commit if requested. We wait until now to fetch the
1625 date, so it's definitely newer than any previous revision's date. */
1626 svn_string_t date;
211 svn_string_t date; local
1619 svn_string_t date; local
[all...]
H A Drevs-txns.c738 svn_string_t date;
742 date.data = svn_time_to_cstring(apr_time_now(), trail->pool);
743 date.len = strlen(date.data);
744 cpargs.value = &date;
733 svn_string_t date; local
/freebsd-12-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dls.c82 char *date; member in struct:fileinfo
95 free(f->date);
276 file->date = strdup(buf);
277 if (file->date == NULL) {
352 sec_fprintf2(out, "%*s", max_date, f->date);
595 if(strlen(fi[i].date) > max_date)
596 max_date = strlen(fi[i].date);
/freebsd-12-stable/crypto/heimdal/kadmin/
H A Dload.c74 int year, month, date, hour, minute, second; local
80 &year, &month, &date, &hour, &minute, &second) != 6)
84 tm.tm_mday = date;
/freebsd-12-stable/contrib/ntp/scripts/monitoring/
H A Dntptrap31 require('ctime.pl'); # date/time formatting
71 chop($date=&ctime(time));
72 print "$date ",@_,"\n";
301 chop($date=&ctime($time));
302 &debug(sprintf("Schedule timeout \"%s\" for %s", $id, $date));
/freebsd-12-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dverify.c702 svn_string_t *date;
707 /* Access the svn:date revprop.
709 SVN_ERR(svn_fs_x__revision_prop(&date, fs, revision,
715 if (date)
716 SVN_ERR(svn_time_from_cstring(&timetemp, date->data, iterpool));
785 Make sure, we operate on up-to-date information. */
701 svn_string_t *date; local
H A Dfs_x.c660 /* If we're already up-to-date, there's nothing else to be done here. */
755 /* Same physical representation? Note that these IDs are always up-to-date
880 svn_string_t date;
947 /* Set a date on revision 0. */
948 date.data = svn_time_to_cstring(apr_time_now(), scratch_pool);
949 date.len = strlen(date.data);
951 svn_hash_sets(proplist, SVN_PROP_REVISION_DATE, &date);
1198 we read, update and write up-to-date data. */
879 svn_string_t date; local
/freebsd-12-stable/contrib/byacc/test/
H A Drun_make.sh39 echo '** '`date`
/freebsd-12-stable/sys/mips/ingenic/
H A Djz4780_efuse.c57 uint32_t date; member in struct:jz4780_efuse_data
/freebsd-12-stable/tools/build/
H A Dbeinstall.sh174 commit_ts=$(date -r ${commit_time} '+%Y%m%d.%H%M%S')
183 commit_ts="$( "$svn" info --show-item last-changed-date | sed -e 's/\..*//' -e 's/T/./' -e 's/-//g' -e s'/://g' )"
/freebsd-12-stable/libexec/rc/rc.d/
H A Dntpd137 echo $(($(date -u +%s)+$ntp_to_unix))
141 # Leapfile update date (version number).
147 # Leapfile expiry date.
/freebsd-12-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dverify.c763 svn_string_t *date;
768 /* Access the svn:date revprop.
770 SVN_ERR(svn_fs_fs__revision_prop(&date, fs, revision,
776 if (date)
777 SVN_ERR(svn_time_from_cstring(&timetemp, date->data, iterpool));
855 Make sure, we operate on up-to-date information. */
762 svn_string_t *date; local
/freebsd-12-stable/tools/tools/sysdoc/
H A Dsysdoc.sh27 # Set a unique date format in the produced manual page.
28 DATE=`LC_TIME=C date +"%B %d, %Y"`
/freebsd-12-stable/contrib/libevent/
H A Devutil_time.c149 evutil_date_rfc1123(char *date, const size_t datelen, const struct tm *tm) argument
174 date, datelen, "%s, %02d %s %4d %02d:%02d:%02d GMT",
/freebsd-12-stable/contrib/cortex-strings/scripts/
H A Dadd-license.sh9 year=`date +%Y`
/freebsd-12-stable/contrib/bmake/mk/
H A Dsys.vars.mk33 # turn it into what we want - just the date
/freebsd-12-stable/crypto/openssl/crypto/cms/
H A Dcms_local.h200 ASN1_GENERALIZEDTIME *date; member in struct:CMS_RecipientKeyIdentifier_st
216 ASN1_GENERALIZEDTIME *date; member in struct:CMS_KEKIdentifier_st
/freebsd-12-stable/usr.sbin/ctm/mkCTM/
H A DmkCTM34 set CTMdate [exec date -u +%Y%m%d%H%M%SZ]
49 exec sh -c "date -u '+%Y%m%d%H%M%S $argv'" >> ${CTMSW}/log
/freebsd-12-stable/contrib/subversion/subversion/libsvn_repos/
H A Dcommit.c112 /* The date (according to the repository) of this commit. */
170 ? _("Directory '%s' is out of date")
172 ? _("File '%s' is out of date")
173 : _("'%s' is out of date")),
177 /* Perform an out of date check for base_rev against created rev,
211 /* const */ svn_string_t *date;
222 date = svn_hash_gets(revprops, SVN_PROP_REVISION_DATE);
229 commit_info->date = date ? date
210 /* const */ svn_string_t *date; local
[all...]
/freebsd-12-stable/usr.bin/mail/
H A Dnames.c288 char *date, *fname; local
294 date = ctime(&now);
332 fprintf(fout, "From %s %s", myname, date);
/freebsd-12-stable/usr.sbin/mergemaster/
H A Dmergemaster.sh38 echo " -d Add date and time to directory name (e.g., /var/tmp/temproot.`date +%m%d.%H.%M`)"
338 TEMPROOT=${TEMPROOT}.`date +%m%d.%H.%M`
375 PRESERVE_FILES_DIR=/var/tmp/mergemaster/preserved-files-`date +%y%m%d-%H%M%S`
621 TEMPROOT=/var/tmp/temproot.`date +%m%d.%H.%M.%S`
798 echo ' functional on an up to date system, and can be removed.'
921 echo " installed files up to date."

Completed in 191 milliseconds

1234567891011>>