2012 Wagner Seahawks football team

The 2012 Wagner Seahawks football team represented Wagner College in the 2012 NCAA Division I FCS football season as a member of the Northeast Conference (NEC). They were led by 32nd-year head coach Walt Hameline and played their home games at Wagner College Stadium. They are a member of the Northeast Conference. Wagner finished the season 9–4 overall 7–1 in NEC play to share the conference title with Albany. The Seahawks earned the conference's automatic bid into the NCAA Division I Football Championship playoffs, the first playoff appearance in school history, where they defeated Colgate in the first round before falling in the second round to Eastern Washington.

2012 Wagner Seahawks football
NEC co-champion
ConferenceNortheast Conference
2012 record9–4 (7–1 NEC)
Head coachWalt Hameline (32nd season)
Offensive coordinatorJason Houghtaling (1st season)
Defensive coordinatorMalik Hall (1st season)
Home stadiumWagner College Stadium
(Capacity: 3,300)
2012 Northeast Conference football standings
Conf  Overall
Team W L    W L 
Wagner +^  7 1     9 4  
Albany +  7 1     9 2  
Monmouth  4 3     5 5  
Saint Francis (PA)  4 4     5 6  
Bryant  4 4     4 7  
Robert Morris  3 5     4 7  
Duquesne  3 5     5 6  
Central Connecticut  2 5     2 8  
Sacred Heart  1 7     2 9  
  • + Conference co-champions
  • ^ FCS playoff participant

Schedule

DateTimeOpponentSiteTVResultAttendance
August 318:00 p.m.at Florida Atlantic*ESPN3L 3–714,510
September 81:00 p.m.at Georgetown*
L 10–132,147
September 151:00 p.m.MonmouthL 17–382,610
September 227:00 p.m.at Central ConnecticutFCS/MSGW 31–134,515
September 291:00 p.m.Bryant
  • Wagner College Stadium
  • Staten Island, NY
W 31–212,037
October 61:00 p.m.at Sacred HeartW 12–31,281
October 20Noonat Saint Francis (PA)W 31–241,931
October 271:00 p.m.Robert Morris
  • Wagner College Stadium
  • Staten Island, NY
W 23–132,072
November 31:00 p.m.at No. 20 AlbanyW 30–02,617
November 101:00 p.m.Holy Cross*
  • Wagner College Stadium
  • Staten Island, NY
W 31–301,668
November 171:00 p.m.Duquesne
  • Wagner College Stadium
  • Staten Island, NY
W 23–172,692
November 24NoonNo. 24 Colgate*
ESPN3W 31–203,032
December 16:00 p.m.at No. 4 Eastern Washington*
ESPN3L 19–297,039
gollark: Or Great Information Transfer.
gollark: Git stands for GIT Is Tremendous.
gollark: The stages of git clone are: Receive a "pack" file of all the objects in the repo database Create an index file for the received pack Check out the head revision (for a non-bare repo, obviously)"Resolving deltas" is the message shown for the second stage, indexing the pack file ("git index-pack").Pack files do not have the actual object IDs in them, only the object content. So to determine what the object IDs are, git has to do a decompress+SHA1 of each object in the pack to produce the object ID, which is then written into the index file.An object in a pack file may be stored as a delta i.e. a sequence of changes to make to some other object. In this case, git needs to retrieve the base object, apply the commands and SHA1 the result. The base object itself might have to be derived by applying a sequence of delta commands. (Even though in the case of a clone, the base object will have been encountered already, there is a limit to how many manufactured objects are cached in memory).In summary, the "resolving deltas" stage involves decompressing and checksumming the entire repo database, which not surprisingly takes quite a long time. Presumably decompressing and calculating SHA1s actually takes more time than applying the delta commands.In the case of a subsequent fetch, the received pack file may contain references (as delta object bases) to other objects that the receiving git is expected to already have. In this case, the receiving git actually rewrites the received pack file to include any such referenced objects, so that any stored pack file is self-sufficient. This might be where the message "resolving deltas" originated.
gollark: UPDATE: this is wrong.
gollark: > Git uses delta encoding to store some of the objects in packfiles. However, you don't want to have to play back every single change ever on a given file in order to get the current version, so Git also has occasional snapshots of the file contents stored as well. "Resolving deltas" is the step that deals with making sure all of that stays consistent.

References

    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.