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

/opengrok/src/org/opensolaris/opengrok/history/
H A DGitTagEntry.java37 public GitTagEntry(String hash, Date date, String tags) { argument
38 super(date, tags);
44 assert this.date != null : "Git TagEntry created without date specified";
45 return this.date.compareTo(that.getDate());
H A DTagEntry.java39 protected Date date; field in class:TagEntry
62 this.date = null;
66 public TagEntry(Date date, String tags) { argument
67 if (date == null) {
68 throw new NullPointerException("Can't create TagEntry using date==null");
71 this.date = date;
84 return date;
104 assert this.date != null : "date
[all...]
H A DDirectoryHistoryReader.java72 // It maps date -> author -> (comment, revision) -> [ list of files ]
106 // The search results will be sorted by date.
137 "Could not get date for " + path, ex);
188 private void put(Date date, String revision, String author, String comment, String path) { argument
189 long time = date.getTime();
190 date.setTime(time - (time % 3600000l));
192 Map<String, Map<List<String>, SortedSet<String>>> ac = hash.get(date);
195 hash.put(date, ac);
H A DHistoryEntry.java47 private Date date; field in class:HistoryEntry
68 this.date = that.date;
77 public HistoryEntry(String revision, Date date, String author, argument
80 setDate(date);
90 return revision + " " + date + " " + author + " " + message + "\n";
97 LOGGER.log(Level.FINE, "HistoryEntry : date = {0}", date);
131 return (date == null) ? null : (Date) date
150 setDate(Date date) argument
[all...]
/opengrok/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/src/org/opensolaris/opengrok/web/
H A DUtil.java592 * Generate a string from the given path and date in a way that allows
595 * separate directory components and to separate the path from the date.
598 * @param date date string to use.
601 public static String path2uid(String path, String date) { argument
602 return path.replace('/', '\u0000') + "\u0000" + date;
614 return url.substring(0, url.lastIndexOf('/')); // remove date from end

Completed in 17 milliseconds