Home
last modified time | relevance | path

Searched refs:line1 (Results 151 – 175 of 6324) sorted by last modified time

12345678910>>...253

/dports/math/gap/gap-4.11.0/pkg/fining/examples/include/
H A Dexamples_klein.include6 gap> line1 := Random(Lines(PG(3,5)));
10 gap> p := line1^klein;
20 gap> Meet(line1,line2);
/dports/math/gap/gap-4.11.0/pkg/itc-1.5/gap/
H A Ditc.gi2279 if line1 < 1 then
2280 line1 := 1;
2282 first := alives[line1];
2284 line0 := line1 - 1;
2302 nlines := lastline - line1 + 1;
6628 line1 := renumbered[first];
6634 if lines < 0 and line1 = 1 then
6683 line1 := Maximum( 1, Minimum( nalive, line1 + lines ) );
6743 line1 := renumbered[first];
6744 if nalive - line1 < 30 then
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/examples/python/
H A Dexponential_smoothing.py165 (line1, ) = plt.plot(fcast1, marker="o", color="blue")
170 plt.legend([line1, line2, line3], [fcast1.name, fcast2.name, fcast3.name])
202 (line1, ) = plt.plot(fcast1, marker="o", color="blue")
207 plt.legend([line1, line2, line3], [fcast1.name, fcast2.name, fcast3.name])
/dports/mail/razor-agents/razor-agents-2.84/lib/Razor2/Client/
H A DAgent.pm903 my ($line1) = substr(${$obj->{orig_mail}}, 0, 50) =~ /^([^\n]+)/;
/dports/lang/quickjs/quickjs-2021-03-27/
H A Dquickjs.c28883 while (line++ < line1) { in print_lines()
28957 line1 = line = 1; in dump_byte_code()
28967 if (line1 > line) { in dump_byte_code()
28972 line = line1; in dump_byte_code()
30922 int line1 = line_num; in resolve_variables() local
30929 if (line1 != -1 && line1 != line_num) { in resolve_variables()
30930 line_num = line1; in resolve_variables()
31072 line1 = cc.line_num; in resolve_variables()
31083 if (line1 != -1 && line1 != line_num) { in resolve_variables()
31517 int line1 = -1; in resolve_labels() local
[all …]
/dports/lang/python310/Python-3.10.1/Lib/unittest/test/testmock/
H A Dtestwith.py206 line1 = h.readline()
209 self.assertEqual(line1, 'foo\n')
242 line1 = next(h)
245 self.assertEqual(line1, 'foo\n')
280 line1 = f.readline()
283 self.assertEqual(line1, b'abc\n')
315 line1 = h.readline()
317 self.assertEqual(line1, 'foo\n')
323 line1 = h.readline()
325 self.assertEqual(line1, 'foo\n')
H A Dtestmock.py1902 line1 = next(f1)
1905 self.assertEqual(line1, '1st line\n')
/dports/lang/python310/Python-3.10.1/Lib/idlelib/idle_test/
H A Dtest_history.py12 line1 = 'a = 7' variable
43 self.history.store(line1)
47 self.history.store(line1)
51 self.history.prefix = line1
83 self.history.history = [line1, line2]
110 test(True, line1, prefix, 0)
116 test(False, line1, prefix, 0)
124 self.fetch_test(True, line1, prefix, 0)
130 self.fetch_test(False, line1, prefix, 0)
138 test(True, line1, prefix, 0)
[all …]
H A Dmock_tk.py251 line1, char1 = self._decode(index1)
254 return line1 < line2 or line1 == line2 and char1 < char2
256 return line1 < line2 or line1 == line2 and char1 <= char2
258 return line1 > line2 or line1 == line2 and char1 > char2
260 return line1 > line2 or line1 == line2 and char1 >= char2
262 return line1 == line2 and char1 == char2
264 return line1 != line2 or char1 != char2
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest_gzip.py257 line1 = f.readline()
258 if not line1: break
261 if len(line1)>10:
264 amount = len(line1)
266 self.assertEqual(line1[:amount], line2)
H A Dtest_compile.py810 line1 = call.__code__.co_firstlineno + 1
811 assert line1 not in [line for (_, _, line) in call.__code__.co_lines()]
/dports/lang/python310/Python-3.10.1/Lib/lib2to3/
H A Drefactor.py645 for type, value, (line0, col0), (line1, col1), line_text in tokens:
647 line1 += lineno - 1
653 yield type, value, (line0, col0), (line1, col1), line_text
/dports/lang/python310/Python-3.10.1/Lib/
H A Ddifflib.py1794 line1 = text[:i]
1801 line1 = line1 + '\1'
1805 data_list.append((line_num,line1))
/dports/lang/python38/Python-3.8.12/Lib/unittest/test/testmock/
H A Dtestwith.py206 line1 = h.readline()
209 self.assertEqual(line1, 'foo\n')
242 line1 = next(h)
245 self.assertEqual(line1, 'foo\n')
280 line1 = f.readline()
283 self.assertEqual(line1, b'abc\n')
315 line1 = h.readline()
317 self.assertEqual(line1, 'foo\n')
323 line1 = h.readline()
325 self.assertEqual(line1, 'foo\n')
H A Dtestmock.py1794 line1 = next(f1)
1797 self.assertEqual(line1, '1st line\n')
/dports/lang/python38/Python-3.8.12/Lib/idlelib/idle_test/
H A Dtest_history.py12 line1 = 'a = 7' variable
43 self.history.store(line1)
47 self.history.store(line1)
51 self.history.prefix = line1
83 self.history.history = [line1, line2]
110 test(True, line1, prefix, 0)
116 test(False, line1, prefix, 0)
124 self.fetch_test(True, line1, prefix, 0)
130 self.fetch_test(False, line1, prefix, 0)
138 test(True, line1, prefix, 0)
[all …]
H A Dmock_tk.py251 line1, char1 = self._decode(index1)
254 return line1 < line2 or line1 == line2 and char1 < char2
256 return line1 < line2 or line1 == line2 and char1 <= char2
258 return line1 > line2 or line1 == line2 and char1 > char2
260 return line1 > line2 or line1 == line2 and char1 >= char2
262 return line1 == line2 and char1 == char2
264 return line1 != line2 or char1 != char2
/dports/lang/python38/Python-3.8.12/Lib/test/
H A Dtest_gzip.py256 line1 = f.readline()
257 if not line1: break
260 if len(line1)>10:
263 amount = len(line1)
265 self.assertEqual(line1[:amount], line2)
/dports/lang/python38/Python-3.8.12/Lib/lib2to3/
H A Drefactor.py641 for type, value, (line0, col0), (line1, col1), line_text in tokens:
643 line1 += lineno - 1
649 yield type, value, (line0, col0), (line1, col1), line_text
/dports/lang/python38/Python-3.8.12/Lib/
H A Ddifflib.py1824 line1 = text[:i]
1831 line1 = line1 + '\1'
1835 data_list.append((line_num,line1))
/dports/lang/python37/Python-3.7.12/Lib/unittest/test/testmock/
H A Dtestwith.py209 line1 = h.readline()
212 self.assertEqual(line1, 'foo\n')
245 line1 = next(h)
248 self.assertEqual(line1, 'foo\n')
283 line1 = f.readline()
286 self.assertEqual(line1, b'abc\n')
318 line1 = h.readline()
320 self.assertEqual(line1, 'foo\n')
326 line1 = h.readline()
328 self.assertEqual(line1, 'foo\n')
H A Dtestmock.py1743 line1 = next(f1)
1746 self.assertEqual(line1, '1st line\n')
/dports/lang/python37/Python-3.7.12/Lib/idlelib/idle_test/
H A Dtest_history.py12 line1 = 'a = 7' variable
43 self.history.store(line1)
47 self.history.store(line1)
51 self.history.prefix = line1
83 self.history.history = [line1, line2]
110 test(True, line1, prefix, 0)
116 test(False, line1, prefix, 0)
124 self.fetch_test(True, line1, prefix, 0)
130 self.fetch_test(False, line1, prefix, 0)
138 test(True, line1, prefix, 0)
[all …]
H A Dmock_tk.py248 line1, char1 = self._decode(index1)
251 return line1 < line2 or line1 == line2 and char1 < char2
253 return line1 < line2 or line1 == line2 and char1 <= char2
255 return line1 > line2 or line1 == line2 and char1 > char2
257 return line1 > line2 or line1 == line2 and char1 >= char2
259 return line1 == line2 and char1 == char2
261 return line1 != line2 or char1 != char2
/dports/lang/python37/Python-3.7.12/Lib/test/
H A Dtest_gzip.py256 line1 = f.readline()
257 if not line1: break
260 if len(line1)>10:
263 amount = len(line1)
265 self.assertEqual(line1[:amount], line2)

12345678910>>...253