MCPcopy Create free account

hub / github.com/cbourke/ComputerScienceII / functions

Functions1,172 in github.com/cbourke/ComputerScienceII

↓ 1 callersMethodgetLastName
()
notes/1251-Spring2025/CSCE156H/code/Person.java:23
↓ 1 callersMethodgetLastName
()
notes/1241-Spring2024/156/code/jdbc/Person.java:67
↓ 1 callersMethodgetLastName
()
notes/1241-Spring2024/156H/code/Person.java:67
↓ 1 callersMethodgetLastName
()
notes/1241-Spring2024/194/code/jdbc/Person.java:60
↓ 1 callersMethodgetLastName
()
notes/1231-Spring2023/156/code/Person.java:32
↓ 1 callersMethodgetLastName
()
notes/1231-Spring2023/194/code/jdbc/entities/Person.java:39
↓ 1 callersMethodgetPersonId
()
notes/1231-Spring2023/194/code/jdbc/entities/Person.java:31
↓ 1 callersMethodgetValue
()
notes/1231-Spring2023/156H/code/Savings.java:47
↓ 1 callersMethodgetValue
()
notes/1231-Spring2023/194/code/Savings.java:28
↓ 1 callersMethodgetValue
()
notes/1231-Spring2023/194/code/Annuity.java:27
↓ 1 callersFunctionget_assignment_groups
Retrieves all assignment groups from canvas. Returns a map of IDs to group names: {id -> name}
scripts/codepost/canvas_utils.py:314
↓ 1 callersFunctionget_files
Returns a map of { (fullPath,file_name,extension) => fileContents } of all files in the given path according to config.file_extension
scripts/codepost/file_utils.py:12
↓ 1 callersMethodget_grading_assignment
Returns a randomized mapping of graders (Person objects) to a list of students (Group objects) they are assigned to grade.
scripts/codepost/course.py:100
↓ 1 callersFunctionget_group_category_id
Retrieves the Canvas "Group Set" ID (internally this is designated as a Group Category) given the name of the group such as "Assignment P
scripts/codepost/canvas_utils.py:107
↓ 1 callersFunctionget_group_tuples
Retrieves groups and members from Canvas based on the given Group Set (group category). If none is provided, every group is retrieved.
scripts/codepost/canvas_utils.py:136
↓ 1 callersFunctionget_groups
Returns a list of Group objects from Canvas based on the Group Set name in the configuration file. If no such group set exists or if an
scripts/codepost/canvas_utils.py:197
↓ 1 callersFunctionget_members
Retrieves the canvas user IDs of the members of the given canvas group.
scripts/codepost/canvas_utils.py:122
↓ 1 callersFunctionget_roster
Retrieves the complete roster of the course from Canvas including all students, instructors, TAs, etc. We use `courses/{config.canvas_co
scripts/codepost/canvas_utils.py:164
↓ 1 callersMethodhasNext
()
notes/1231-Spring2023/194/code/lists/Node.java:25
↓ 1 callersMethodinOrderStackTraversal
(List<T> result)
notes/1201-Spring2020/trees/BinaryTree.java:73
↓ 1 callersMethodincreaseCapacity
()
notes/1251-Spring2025/ECEN156/code/lists/MyIntegerArrayList.java:131
↓ 1 callersMethodincreaseCapacity
()
notes/1251-Spring2025/ECEN156/code/lists/MyArrayList.java:112
↓ 1 callersMethodincreaseCapacity
()
notes/1211-Spring2021/lists_code/MyList.java:24
↓ 1 callersMethodincreaseCapacity
()
notes/1211-Spring2021/lists_code/honors/MyList.java:24
↓ 1 callersMethodincreaseCapacity
()
notes/1201-Spring2020/lists/MyArrayList.java:16
↓ 1 callersMethodindexOf
Returns the first index at which the given value is stored. Returns -1 in the case that value is not in this list. @param value @return
notes/1251-Spring2025/ECEN156/code/lists/MyIntegerArrayList.java:96
↓ 1 callersMethodindexOf
Returns the first index at which the given value is stored. Returns -1 in the case that value is not in this list. @param value @return
notes/1251-Spring2025/ECEN156/code/lists/MyAbstractList.java:70
↓ 1 callersMethodinsert
Inserts the given element <code>x</code> to this list at the given <code>index</code>. @param x @param index
notes/1251-Spring2025/CSCE156/code/lists/MyIntegerArrayList.java:37
↓ 1 callersMethodinsert
Inserts the given element <code>x</code> to this list at the given <code>index</code>. @param x @param index
notes/1251-Spring2025/CSCE156/code/lists/MyAbstractList.java:27
↓ 1 callersMethodinsert
Inserts the given element <code>x</code> to this list at the given <code>index</code>. @param x @param index
notes/1251-Spring2025/CSCE156H/code/lists/MyIntegerArrayList.java:31
↓ 1 callersMethodinsert
Inserts the given element <code>x</code> to this list at the given <code>index</code>. @param x @param index
notes/1251-Spring2025/CSCE156H/code/lists/MyAbstractList.java:23
↓ 1 callersMethodinsert
(T x)
notes/1231-Spring2023/194/code/trees/BinarySearchTree.java:42
↓ 1 callersMethodinsert
Inserts the given value into the BST. If the new value is successfully inserted, returns true, otherwise if the value is already in the BST, it is no
notes/1201-Spring2020/trees/BinarySearchTree.java:110
↓ 1 callersMethodinsertAtIndex
(T item, int index)
notes/1201-Spring2020/lists/MyLinkedList.java:48
↓ 1 callersMethodinsertElementAtIndex
(String x, int index)
notes/1231-Spring2023/194/code/lists/MyStringArrayList.java:94
↓ 1 callersMethodinsertElementAtIndex
(int x, int index)
notes/1231-Spring2023/194/code/lists/MyIntegerArrayList.java:94
↓ 1 callersMethodinsertElementAtIndex
(T x, int index)
notes/1231-Spring2023/194/code/lists/MyArrayList.java:94
↓ 1 callersMethodinsertPerson
(Person p)
notes/1241-Spring2024/156H/code/DatabaseDataPersister.java:12
↓ 1 callersMethodinsertPerson
Attempts to insert the given <code>Person</code> into the database. If successful it will return the auto-generated primary key value of the new reco
notes/1231-Spring2023/194/code/jdbc/DataSaver.java:23
↓ 1 callersMethodisEmpty
()
notes/1251-Spring2025/ECEN156/code/lists/MyQueue.java:27
↓ 1 callersMethodisEmpty
()
notes/1251-Spring2025/CSCE156H/code/lists/Stack.java:26
↓ 1 callersMethodisEmpty
()
notes/1211-Spring2021/lists_code/MyLinkedList.java:23
↓ 1 callersMethodisEmpty
()
notes/1231-Spring2023/156/code/lists/MyStack.java:55
↓ 1 callersMethodisEmpty
()
notes/1231-Spring2023/194/code/lists/MyStringArrayList.java:63
↓ 1 callersMethodisEmpty
()
notes/1231-Spring2023/194/code/lists/MyIntegerArrayList.java:63
↓ 1 callersMethodisEmpty
()
notes/1231-Spring2023/194/code/lists/MyArrayList.java:63
↓ 1 callersMethodisEmpty
()
notes/1231-Spring2023/194/code/lists/MyLinkedList.java:66
↓ 1 callersMethodisFull
()
notes/1251-Spring2025/CSCE156/code/lists/MyIntegerArrayList.java:91
↓ 1 callersMethodisFull
()
notes/1251-Spring2025/CSCE156/code/lists/MyArrayList.java:81
↓ 1 callersMethodisFull
()
notes/1231-Spring2023/156/code/lists/MyStack.java:59
↓ 1 callersMethodisFull
()
notes/1231-Spring2023/156H/code/lists/Stack.java:67
↓ 1 callersMethodisLeaf
()
notes/1231-Spring2023/156/code/trees/BinaryTreeNode.java:51
↓ 1 callersMethodisLeaf
()
notes/1231-Spring2023/156H/code/trees/BinaryTreeNode.java:63
↓ 1 callersMethodisLeaf
()
notes/1231-Spring2023/194/code/trees/BinaryTreeNode.java:55
↓ 1 callersMethodisLeaf
()
notes/1201-Spring2020/trees/TreeNode.java:60
↓ 1 callersMethodisRoot
()
notes/1231-Spring2023/194/code/trees/BinaryTreeNode.java:59
↓ 1 callersMethodlargeBst
()
notes/1231-Spring2023/156/code/trees/TreeUtils.java:119
↓ 1 callersMethodlargeBst
()
notes/1231-Spring2023/156H/code/trees/TreeUtils.java:118
↓ 1 callersMethodloadAllFilms
()
notes/1201-Spring2020/H/jdbc/Film.java:47
↓ 1 callersMethodloadBookData
(String filePath)
notes/1251-Spring2025/CSCE156H/code/BookDemo.java:16
↓ 1 callersMethodloadBooks
()
notes/1251-Spring2025/CSCE156/code/BookDemo.java:18
↓ 1 callersMethodloadBooks
()
notes/1251-Spring2025/CSCE156/code/Demo.java:18
↓ 1 callersMethodloadBooks
(String filePath)
notes/1251-Spring2025/ECEN156/code/BookDemo.java:20
↓ 1 callersMethodloadBooks
Loads up a collection of books from the given file/path and returns a list of them. @param filePath @return
notes/1241-Spring2024/156/code/BookUtils.java:19
↓ 1 callersMethodloadBooks
(String filePath)
notes/1241-Spring2024/194/code/BookUtils.java:14
↓ 1 callersMethodloadCsvData
Loads book data from the given <code>fileName</code> and returns a <code>List</code> of {@link Book} instances. The file is assumed to be a CSV file i
notes/1231-Spring2023/156/code/BookUtils.java:27
↓ 1 callersMethodloadEmails
(Person p)
notes/1231-Spring2023/156H/code/jdbc/DatabaseDataLoader.java:34
↓ 1 callersMethodloadPerson
(int personId)
notes/1241-Spring2024/156/code/jdbc/DatabaseDataLoader.java:17
↓ 1 callersMethodloadPerson
Loads the person from the database using the given <code>personId</code>; if no such record exists, returns <code>null</code> @param personId @return
notes/1241-Spring2024/156H/code/DatabaseDataLoader.java:22
↓ 1 callersMethodloadPerson
Retrieves the person from the database with the given <code>personId</code>, returns <code>null</code> if no such record. @param personId @return
notes/1241-Spring2024/194/code/jdbc/DatabaseDataLoader.java:91
↓ 1 callersMethodloadPersonById
(int personId)
notes/1231-Spring2023/156/code/jdbc/DatabaseLoader.java:21
↓ 1 callersMethodloadPersons
()
notes/1251-Spring2025/CSCE156/code/DatabaseLoader.java:16
↓ 1 callersMethodloadPersons
Loads all person records from the database along with their email records. @return
notes/1251-Spring2025/ECEN156/code/DatabaseLoader.java:211
↓ 1 callersMethodloadPersons
()
notes/1251-Spring2025/CSCE156H/code/DatabasePersonLoader.java:174
↓ 1 callersMethodloadPersons
()
notes/1241-Spring2024/156H/code/DatabaseDataLoader.java:87
↓ 1 callersMethodloadPersons
()
notes/1241-Spring2024/194/code/jdbc/DatabaseDataLoader.java:20
↓ 1 callersMethodloadPersons
()
notes/1231-Spring2023/156/code/jdbc/DatabaseLoader.java:77
↓ 1 callersMethodloadPersons
()
notes/1231-Spring2023/156H/code/jdbc/DatabaseDataLoader.java:64
↓ 1 callersMethodloadPersons
()
notes/1231-Spring2023/194/code/jdbc/DatabaseLoader.java:106
↓ 1 callersMethodmain
(String args[])
notes/1201-Spring2020/H/jdbc/Demo.java:10
↓ 1 callersMethodparallel
()
notes/1231-Spring2023/156H/code/jdbc/LoadDemo.java:29
↓ 1 callersFunctionparse_header_links
Return a dict of parsed link headers proxies. This function is stolen from the requests package with moderate modifications so that it returns
scripts/codepost/canvas_utils.py:72
↓ 1 callersMethodpersistPerson
Insert a new record into the person (and maybe the Email) table(s) with the given person's data. However, if the person record exists (based on the U
notes/1251-Spring2025/CSCE156/code/DatabasePersister.java:41
↓ 1 callersMethodpersistPerson
Creates records in the database (person, email tables) for the given person object. If the person already exists (based on the UUID), this method has
notes/1251-Spring2025/ECEN156/code/DatabasePersister.java:36
↓ 1 callersMethodpersistPerson
Creates a record in the person (and email) tables for the given person. If such a record already exists (based on the UUID), this method has no effec
notes/1251-Spring2025/CSCE156H/code/DatabasePersonPersistor.java:38
↓ 1 callersMethodpop
Removes and returns the element at the top of this stack. @return
notes/1231-Spring2023/156/code/lists/MyStack.java:25
↓ 1 callersMethodpreOrderRecursive
(BinaryTreeNode<T> u, List<T> result)
notes/1231-Spring2023/156H/code/trees/BinaryTree.java:27
↓ 1 callersFunctionpush_assignments
Pushes files and sets graders in codepost.io based on the given `grading_assignment`
scripts/codepost/codepost_assign_graders.py:92
↓ 1 callersMethodputConnection
(Connection conn)
notes/1231-Spring2023/156H/code/jdbc/ConnectionPool.java:47
↓ 1 callersMethodremove
Removes and returns the element at the given <code>index</code> @param index @return
notes/1251-Spring2025/ECEN156/code/lists/MyIntegerArrayList.java:63
↓ 1 callersMethodremove
Removes and returns the element at the given <code>index</code> @param index @return
notes/1251-Spring2025/ECEN156/code/lists/MyLinkedList.java:74
↓ 1 callersMethodremoveElementAtIndex
(int index)
notes/1231-Spring2023/194/code/lists/MyStringArrayList.java:76
↓ 1 callersMethodremoveElementAtIndex
(int index)
notes/1231-Spring2023/194/code/lists/MyIntegerArrayList.java:76
↓ 1 callersMethodremoveElementAtIndex
(int index)
notes/1231-Spring2023/194/code/lists/MyArrayList.java:76
↓ 1 callersMethodremoveElementAtIndex
(int index)
notes/1231-Spring2023/194/code/lists/MyLinkedList.java:90
↓ 1 callersMethodremoveFromHead
()
notes/1201-Spring2020/lists/MyLinkedList.java:93
↓ 1 callersMethodremoveFromIndex
(int index)
notes/1201-Spring2020/lists/MyLinkedList.java:33
↓ 1 callersMethodremoveFromStart
()
notes/1211-Spring2021/lists_code/honors/MyLinkedList.java:72
↓ 1 callersMethodreplace
Replaces (and returns) the element at <code>index</code> with the given element <code>x</code> @param x @param index
notes/1251-Spring2025/ECEN156/code/lists/MyArrayList.java:69
↓ 1 callersMethodrun
()
notes/1231-Spring2023/156H/code/jdbc/LoadWorker.java:21
← previousnext →301–400 of 1,172, ranked by callers