Searched defs:date (Results 1 - 13 of 13) sorted by relevance

/opengrok-sun/src/org/opensolaris/opengrok/
H A DConsoleFormatter.java44 private String ts(Date date) { argument
45 return formatter.format(date);
H A DSimpleConsoleFormatter.java44 private String ts(Date date) { argument
45 return formatter.format(date);
H A DFileLogFormatter.java45 private String ts(Date date) { argument
46 return formatter.format(date);
H A DSimpleFileLogFormatter.java45 private String ts(Date date) { argument
46 return formatter.format(date);
/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DGitTagEntry.java17 public GitTagEntry(String hash, Date date, String tags) { argument
18 super(date, tags);
24 assert this.date != null : "Git TagEntry created without date specified";
25 return this.date.compareTo(that.getDate());
H A DTagEntry.java17 protected Date date; /**< If repo does not use linear numbering */ field in class:TagEntry
23 this.date = null;
27 public TagEntry(Date date, String tags) { argument
28 if (date == null) {
29 throw new NullPointerException("Can't create TagEntry using date==null");
32 this.date = date;
45 return date;
65 assert this.date != null : "date
[all...]
H A DDirectoryHistoryReader.java87 SortField sfield = new SortField("date", SortField.Type.STRING, true);
110 cdate = DateTools.stringToDate(doc.get("date"));
112 OpenGrokLogger.getLogger().log(Level.WARNING, "Could not get date for " + path, ex);
156 private void put(Date date, String author, String comment, String path) { argument
157 long time = date.getTime();
158 date.setTime(time - (time % 3600000l));
160 Map<String, Map<String, SortedSet<String>>> ac = hash.get(date);
163 hash.put(date, ac);
H A DHistoryEntry.java44 private Date date; field in class:HistoryEntry
65 this.date = that.date;
74 public HistoryEntry(String revision, Date date, String author, argument
77 setDate(date);
87 return revision + " " + date + " " + author + " " + message + "\n";
95 log.log(Level.FINE, "HistoryEntry : date = {0}", date);
125 return (date == null) ? null : (Date) date
144 setDate(Date date) argument
[all...]
/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchiveParser.java378 d = date();
484 final public int[] date() throws ParseException { method in class:ArchiveParser
H A DNode.java105 protected Date date = new Date(); field in class:Node
137 this.date = other.date;
283 * Set the date of the node's revision.
292 this.date = new GregorianCalendar(value[0] + (value[0] <= 99 ? 1900 : 0),
651 s.append("date");
652 if (date != null)
656 cal.setTime(date);
661 s.append("\t" + formatter.format(date));
802 return date;
[all...]
/opengrok-sun/src/org/opensolaris/opengrok/web/
H A DUtil.java535 * Generate a string from the given path and date in a way that allows
538 * to separate directory components and to separate the path from the date.
540 * @param date date string to use.
543 public static String path2uid(String path, String date) { argument
544 return path.replace('/', '\u0000') + "\u0000" + date;
555 return url.substring(0, url.lastIndexOf('/')); // remove date from end
/opengrok-sun/lib/
H A Dservlet-api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/http/ javax/servlet/resources/ javax/ ...
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...

Completed in 2505 milliseconds