Home
last modified time | relevance | path

Searched full:grade (Results 1 – 25 of 105) sorted by relevance

12345

/external/python/google-api-python-client/docs/dyn/
Dclassroom_v1.courses.courseWork.studentSubmissions.html128 …"assignedGrade": 3.14, # Optional grade. If unset, no grade was set. This value must be …
163 …"draftGrade": 3.14, # Optional pending grade. If unset, no grade was set. This value mus…
173 …"submissionHistory": [ # The history of the submission (includes state and grade histori…
174 { # The history of the submission. This currently includes state and grade histories.
175 …"gradeHistory": { # The history of each grade on this submission. # The grade history in…
176 "actorUserId": "A String", # The teacher who made the grade change.
177 …angeType": "A String", # The type of grade change at this time in the submission gr…
178 … "gradeTimestamp": "A String", # When the grade of the submission was changed.
179 …"maxPoints": 3.14, # The denominator of the grade at this time in the submission grade h…
180 …"pointsEarned": 3.14, # The numerator of the grade at this time in the submission grade
[all …]
Dvectortile_v1.featuretiles.html141 …hers. To render the basemap correctly, sort by z-plane, then z-grade, then z-within-grade. # The z…
171 …hers. To render the basemap correctly, sort by z-plane, then z-grade, then z-within-grade. # The z…
203 …hers. To render the basemap correctly, sort by z-plane, then z-grade, then z-within-grade. # The z…
Dclassroom_v1.courses.html189 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If …
193 …"name": "A String", # Name of the course. For example, "10th Grade Biolog…
253 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If …
257 …"name": "A String", # Name of the course. For example, "10th Grade Biolog…
342 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If …
346 …"name": "A String", # Name of the course. For example, "10th Grade Biolog…
426 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If …
430 …"name": "A String", # Name of the course. For example, "10th Grade Biolog…
509 … Optional heading for the description. For example, "Welcome to 10th Grade Biology." If …
513 …"name": "A String", # Name of the course. For example, "10th Grade Biolog…
[all …]
/external/python/cpython3/Doc/howto/
Dsorting.rst85 ... def __init__(self, name, grade, age):
87 ... self.grade = grade
90 ... return repr((self.name, self.grade, self.age))
121 sort by *grade* then by *age*:
128 >>> sorted(student_objects, key=attrgetter('grade', 'age'))
163 steps. For example, to sort the student data by descending *grade* and then
164 ascending *age*, do the *age* sort first and then sort again using *grade*:
169 >>> sorted(s, key=attrgetter('grade'), reverse=True) # now sort on primary key, descending
182 >>> multisort(list(student_objects), (('grade', True), ('age', False)))
201 For example, to sort the student data by *grade* using the DSU approach:
[all …]
/external/python/cpython2/Doc/howto/
Dsorting.rst72 ... def __init__(self, name, grade, age):
74 ... self.grade = grade
77 ... return repr((self.name, self.grade, self.age))
106 sort by *grade* then by *age*:
111 >>> sorted(student_objects, key=attrgetter('grade', 'age'))
152 steps. For example, to sort the student data by descending *grade* and then
153 ascending *age*, do the *age* sort first and then sort again using *grade*:
156 >>> sorted(s, key=attrgetter('grade'), reverse=True) # now sort on primary key, descending
175 For example, to sort the student data by *grade* using the DSU approach:
177 >>> decorated = [(student.grade, i, student) for i, student in enumerate(student_objects)]
[all …]
/external/libwebsockets/
DREADME.md1Grade/144fb195a83046e484a75c8b4c6cfc99)](https://www.codacy.com/app/lws-team/libwebsockets?utm_sou…
/external/skia/gm/
Dskbug_9819.cpp32 auto grade = [&](int x, int y){ in __anon056e509e0102() variable
52 grade(64, 64);
53 grade(64, 192);
Dunpremul.cpp23 auto grade = [&](int x, int y){ in __anon2ebf70600102() variable
60 grade(50,50);
74 grade(50,150);
/external/python/cpython2/Doc/library/
Dbisect.rst121 example uses :func:`bisect` to look up a letter grade for an exam score (say)
125 >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'):
129 >>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]
/external/libxml2/test/
Dintsubset2.xml83 <!ELEMENT misc (grade?, stroke_count+, variant*, freq*, rad_name*)>
84 <!ELEMENT grade (#PCDATA)>
86 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
/external/libxml2/result/noent/
Dintsubset2.xml72 --><!ELEMENT misc (grade? , stroke_count+ , variant* , freq* , rad_name*)>
73 <!ELEMENT grade (#PCDATA)>
75 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
Dintsubset2.xml.sax285 SAX.elementDecl(grade, 3, ...)
87 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
/external/libxml2/result/
Dintsubset2.xml72 --><!ELEMENT misc (grade? , stroke_count+ , variant* , freq* , rad_name*)>
73 <!ELEMENT grade (#PCDATA)>
75 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
Dintsubset2.xml.sax285 SAX.elementDecl(grade, 3, ...)
87 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
Dintsubset2.xml.sax85 SAX.elementDecl(grade, 3, ...)
87 The Jouyou Kanji grade level. 1 through 6 indicate the grade in which
/external/python/enum34/enum/
Dtest.py1649 class Grade(OrderedEnum): class
1656 self.assertEqual(list(Grade), [Grade.A, Grade.B, Grade.C, Grade.D, Grade.F])
1657 self.assertTrue(Grade.A > Grade.B)
1658 self.assertTrue(Grade.F <= Grade.C)
1659 self.assertTrue(Grade.D < Grade.A)
1660 self.assertTrue(Grade.B >= Grade.B)
/external/python/cpython3/Doc/library/
Dbisect.rst186 example uses :func:`bisect` to look up a letter grade for an exam score (say)
190 >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'):
194 >>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]
/external/icu/icu4c/source/data/unit/
Dro.txt65 few{"{0} grade"}
67 other{"{0} de grade"}
70 dnam{"grade"}
71 few{"{0} grade"}
74 other{"{0} de grade"}
1407 few{"{0} grade Celsius"}
1409 other{"{0} de grade Celsius"}
1412 dnam{"grade Celsius"}
1413 few{"{0} grade Celsius"}
1416 other{"{0} de grade Celsius"}
[all …]
/external/perfetto/
DREADME.md3 Perfetto is a production-grade open-source stack for performance
/external/perfetto/python/
DREADME.md3 Perfetto is a production-grade open-source stack for performance
/external/python/cpython2/Lib/test/
Dtest_bisect.py327 This example uses bisect() to look up a letter grade for an exam total
334 >>> def grade(total):
337 >>> grade(66)
339 >>> map(grade, [33, 99, 77, 44, 12, 88])
/external/flatbuffers/snap/
Dsnapcraft.yaml17 grade: stable
/external/zstd/contrib/snap/
Dsnapcraft.yaml10 grade: devel # must be 'stable' to release into candidate/stable channels
/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dclassroom.v1.json2601 …n": "Optional heading for the description. For example, \"Welcome to 10th Grade Biology.\" If set,…
2617 …"description": "Name of the course. For example, \"10th Grade Biology\". The name is required. It …
2782 …"description": "Maximum grade for this course work. If zero or unspecified, this assignment is con…
3103 "description": "The history of each grade on this submission.",
3107 "description": "The teacher who made the grade change.",
3111 "description": "The type of grade change at this time in the submission grade history.",
3119 "No grade change type specified. This should never be returned.",
3120 "A change in the numerator of the draft grade.",
3121 "A change in the numerator of the assigned grade.",
3122 "A change in the denominator of the grade."
[all …]
/external/lz4/contrib/snap/
Dsnapcraft.yaml22 grade: stable

12345