path stringlengths 14 112 | content stringlengths 0 6.32M | size int64 0 6.32M | max_lines int64 1 100k | repo_name stringclasses 2
values | autogenerated bool 1
class |
|---|---|---|---|---|---|
cosmopolitan/third_party/python/Tools/pybench/Imports.py | from pybench import Test
# First imports:
import os
import package.submodule
class SecondImport(Test):
version = 2.0
operations = 5 * 5
rounds = 40000
def test(self):
for i in range(self.rounds):
import os
import os
import os
import os
... | 2,941 | 139 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Exceptions.py | from pybench import Test
class TryRaiseExcept(Test):
version = 2.0
operations = 2 + 3 + 3
rounds = 80000
def test(self):
error = ValueError
for i in range(self.rounds):
try:
raise error
except:
pass
try:
... | 13,400 | 700 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Constructs.py | from pybench import Test
class IfThenElse(Test):
version = 2.0
operations = 30*3 # hard to say...
rounds = 150000
def test(self):
a,b,c = 1,2,3
for i in range(self.rounds):
if a == 1:
if b == 2:
if c != 3:
c = 3... | 13,207 | 565 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/CommandLine.py | """ CommandLine - Get and parse command line options
NOTE: This still is very much work in progress !!!
Different version are likely to be incompatible.
TODO:
* Incorporate the changes made by (see Inbox)
* Add number range option using srange()
"""
from __future__ import print_function
__cop... | 16,873 | 643 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Numbers.py | from pybench import Test
class CompareIntegers(Test):
version = 2.0
operations = 30 * 5
rounds = 120000
def test(self):
for i in range(self.rounds):
2 < 3
2 > 3
2 == 3
2 > 3
2 < 3
2 < 3
2 > 3
2 ... | 16,198 | 785 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/clockres.py | #!/usr/bin/env python
""" clockres - calculates the resolution in seconds of a given timer.
Copyright (c) 2006, Marc-Andre Lemburg (mal@egenix.com). See the
documentation for further information on copyrights, or contact
the author. All Rights Reserved.
"""
import time
TEST_TIME = 1.0
def clockres(time... | 1,193 | 43 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/README | ________________________________________________________________________
PYBENCH - A Python Benchmark Suite
________________________________________________________________________
Extendable suite of low-level benchmarks for measuring
the performance of the Python implementation
(inte... | 14,376 | 372 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/NewInstances.py | from pybench import Test
# Check for new-style class support:
try:
class c(object):
pass
except NameError:
raise ImportError
###
class CreateNewInstances(Test):
version = 2.0
operations = 3 + 7 + 4
rounds = 60000
def test(self):
class c(object):
pass
cl... | 1,561 | 76 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Lookups.py | from pybench import Test
class SpecialClassAttribute(Test):
version = 2.0
operations = 5*(12 + 12)
rounds = 100000
def test(self):
class c:
pass
for i in range(self.rounds):
c.__a = 2
c.__b = 3
c.__c = 4
c.__a = 2
... | 15,254 | 946 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Unicode.py | try:
unicode
except NameError:
raise ImportError
from pybench import Test
class ConcatUnicode(Test):
version = 2.0
operations = 10 * 5
rounds = 60000
def test(self):
# Make sure the strings are *not* interned
s = unicode(u''.join(map(str,range(100))))
t = unicode(u''... | 11,110 | 542 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Calls.py | from pybench import Test
class PythonFunctionCalls(Test):
version = 2.1
operations = 5*(1+4+4+2)
rounds = 60000
def test(self):
global f,f1,g,h
# define functions
def f():
pass
def f1(x):
pass
def g(a,b,c):
return a,b,c
... | 9,252 | 561 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Instances.py | from pybench import Test
class CreateInstances(Test):
version = 2.0
operations = 3 + 7 + 4
rounds = 80000
def test(self):
class c:
pass
class d:
def __init__(self,a,b,c):
self.a = a
self.b = b
self.c = c
... | 1,388 | 67 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Dict.py | from pybench import Test
class DictCreation(Test):
version = 2.0
operations = 5*(5 + 5)
rounds = 80000
def test(self):
for i in range(self.rounds):
d1 = {}
d2 = {}
d3 = {}
d4 = {}
d5 = {}
d1 = {1:2,3:4,5:6}
... | 9,261 | 505 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/pybench.py | #!/usr/local/bin/python -O
""" A Python Benchmark Suite
"""
# Note: Please keep this module compatible to Python 2.6.
#
# Tests may include features in later Python versions, but these
# should then be embedded in try-except clauses in the configuration
# module Setup.py.
#
from __future__ import print_function
# p... | 32,619 | 975 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Tuples.py | from pybench import Test
class TupleSlicing(Test):
version = 2.0
operations = 3 * 25 * 10 * 7
rounds = 500
def test(self):
r = range(25)
t = tuple(range(100))
for i in range(self.rounds):
for j in r:
m = t[50:]
m = t[:25]
... | 8,034 | 361 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/systimes.py | #!/usr/bin/env python
""" systimes() user and system timer implementations for use by
pybench.
This module implements various different strategies for measuring
performance timings. It tries to choose the best available method
based on the platform and available tools.
On Windows, it is recommend... | 6,720 | 218 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Arithmetic.py | from pybench import Test
class SimpleIntegerArithmetic(Test):
version = 2.0
operations = 5 * (3 + 5 + 5 + 3 + 3 + 3)
rounds = 120000
def test(self):
for i in range(self.rounds):
a = 2
b = 3
c = 3
c = a + b
c = b + c
c ... | 13,565 | 778 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Strings.py | from pybench import Test
import sys
try:
intern
except NameError:
intern = sys.intern
class ConcatStrings(Test):
version = 2.0
operations = 10 * 5
rounds = 100000
def test(self):
# Make sure the strings are *not* interned
s = ''.join(map(str,range(100)))
t = ''.join... | 10,946 | 569 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Lists.py | from pybench import Test
class SimpleListManipulation(Test):
version = 2.0
operations = 5* (6 + 6 + 6)
rounds = 130000
def test(self):
l = []
append = l.append
for i in range(self.rounds):
append(2)
append(3)
append(4)
append(... | 6,460 | 351 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/Setup.py | #!python
# Setup file for pybench
#
# This file has to import all tests to be run; it is executed as
# Python source file, so you can do all kinds of manipulations here
# rather than having to edit the tests themselves.
#
# Note: Please keep this module compatible to Python 1.5.2.
#
# Tests may include features in lat... | 961 | 44 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Tools/pybench/package/submodule.py | 0 | 1 | jart/cosmopolitan | false | |
cosmopolitan/third_party/python/Tools/pybench/package/__init__.py | 0 | 1 | jart/cosmopolitan | false | |
cosmopolitan/third_party/python/.python/this-is-a-kludge.txt | 0 | 1 | jart/cosmopolitan | false | |
cosmopolitan/third_party/sqlite3/status.c | /*
** 2008 June 18
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
************************... | 12,998 | 399 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_snippet.c | /*
** 2009 Oct 23
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... | 57,920 | 1,752 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/global.c | /*
** 2008 June 13
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
************************... | 17,129 | 396 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/userauth.c | /*
** 2014-09-08
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 11,623 | 356 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/malloc.shell.c | #include "third_party/sqlite3/malloc.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/sqlite3userauth.h | /*
** 2014-09-08
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 3,591 | 97 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/mem2.c | /*
** 2007 August 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**********************... | 14,726 | 529 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/rtree.shell.c | #include "third_party/sqlite3/rtree.c"
| 39 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/printf.shell.c | #include "third_party/sqlite3/printf.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_expr.c | /*
** 2008 Nov 28
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... | 41,496 | 1,294 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/where.shell.c | #include "third_party/sqlite3/where.c"
| 39 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/sqlite3session.shell.c | #include "third_party/sqlite3/sqlite3session.c"
| 48 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/os_unix.shell.c | #include "third_party/sqlite3/os_unix.c"
| 41 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/vdbeapi.shell.c | #include "third_party/sqlite3/vdbeapi.c"
| 41 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/backup.shell.c | #include "third_party/sqlite3/backup.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/utf.c | /*
** 2004 April 13
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
***********************... | 16,974 | 536 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_icu.shell.c | #include "third_party/sqlite3/fts3_icu.c"
| 42 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/mutex_noop.c | /*
** 2008 October 07
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*********************... | 6,195 | 216 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/util.c | /*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*******************... | 45,824 | 1,712 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/completion.c | /*
** 2017-07-10
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 16,676 | 500 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts5.shell.c | #include "third_party/sqlite3/fts5.c"
| 38 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/mutex.inc | /*
** 2007 August 28
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**********************... | 2,393 | 72 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/sqlite3expert.shell.c | #include "third_party/sqlite3/sqlite3expert.c"
| 47 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/callback.shell.c | #include "third_party/sqlite3/callback.c"
| 42 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/vdbeaux.c | /*
** 2003 September 6
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
********************... | 170,531 | 5,326 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/utf.shell.c | #include "third_party/sqlite3/utf.c"
| 37 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/vdbevtab.shell.c | #include "third_party/sqlite3/vdbevtab.c"
| 42 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/decimal.c | /*
** 2020-06-22
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 14,253 | 621 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/vdbe.inc | /*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*******************... | 15,750 | 397 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/mem1.c | /*
** 2007 August 14
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**********************... | 9,118 | 292 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/userauth.shell.c | #include "third_party/sqlite3/userauth.c"
| 42 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fileio.c | /*
** 2014-06-13
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 25,083 | 874 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_write.shell.c | #include "third_party/sqlite3/fts3_write.c"
| 44 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_unicode2.c | /*
** 2012-05-25
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 17,912 | 384 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_tokenizer1.shell.c | #include "third_party/sqlite3/fts3_tokenizer1.c"
| 49 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/random.shell.c | #include "third_party/sqlite3/random.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/auth.shell.c | #include "third_party/sqlite3/auth.c"
| 38 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/vdbevtab.c | /*
** 2020-03-23
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 12,200 | 425 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/completion.shell.c | #include "third_party/sqlite3/completion.c"
| 44 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/vdbesort.shell.c | #include "third_party/sqlite3/vdbesort.c"
| 42 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/sqlite3session.h |
#if !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION)
#define __SQLITESESSION_H_ 1
/*
** Make sure we can call this stuff from C++.
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "third_party/sqlite3/sqlite3.h"
/*
** CAPI3REF: Session Object Handle
**
** An instance of this object is a [session] th... | 77,180 | 1,722 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/rtree.h | /*
** 2008 May 26
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... | 796 | 31 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/pager.c | /*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*******************... | 299,623 | 7,739 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/hash.h | /*
** 2001 September 22
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*******************... | 3,485 | 97 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/notify.c | /*
** 2009 March 3
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
************************... | 10,659 | 333 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/update.shell.c | #include "third_party/sqlite3/update.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_unicode.shell.c | #include "third_party/sqlite3/fts3_unicode.c"
| 46 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/resolve.c | /*
** 2008 August 18
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**********************... | 77,863 | 2,136 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/series.c | /*
** 2015-08-18
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 14,236 | 444 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/wherecode.shell.c | #include "third_party/sqlite3/wherecode.c"
| 43 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/sqlite3rbu.c | // clang-format off
/*
** 2014 August 30
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**... | 172,268 | 5,374 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_aux.shell.c | #include "third_party/sqlite3/fts3_aux.c"
| 42 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3Int.h | /*
** 2009 Nov 12
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... | 25,687 | 655 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/random.c | /*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*******************... | 4,439 | 158 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/zipfile.c | /*
** 2017-12-26
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 64,303 | 2,174 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/vdbeapi.c | /*
** 2004 May 26
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... | 66,935 | 2,172 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/walker.shell.c | #include "third_party/sqlite3/walker.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/os_common.h | /*
** 2004 May 22
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... | 3,147 | 106 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/pager.shell.c | #include "third_party/sqlite3/pager.c"
| 39 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/complete.shell.c | #include "third_party/sqlite3/complete.c"
| 42 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/complete.c | /*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*******************... | 9,249 | 291 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/delete.c | /*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*******************... | 39,284 | 1,017 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/notify.shell.c | #include "third_party/sqlite3/notify.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/build.shell.c | #include "third_party/sqlite3/build.c"
| 39 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/resolve.shell.c | #include "third_party/sqlite3/resolve.c"
| 41 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/icu.c | /*
** 2007 May 6
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 17,263 | 552 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/memdb.c | /*
** 2016-09-07
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 25,804 | 879 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/bitvec.c | /*
** 2008 February 16
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
********************... | 13,239 | 412 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/shathree.c | /*
** 2017-03-08
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
**************************... | 20,831 | 718 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/decimal.shell.c | #include "third_party/sqlite3/decimal.c"
| 41 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/btree.shell.c | #include "third_party/sqlite3/btree.c"
| 39 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_tokenizer.shell.c | #include "third_party/sqlite3/fts3_tokenizer.c"
| 48 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/wal.c | /*
** 2010 February 1
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*********************... | 160,186 | 4,156 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/README.cosmo | DESCRIPTION
SQLite is an embeddable SQL relational database with a ~1mb
footprint and a wide variety of features.
ORIGIN
https://www.sqlite.org/2022/sqlite-preprocessed-3400000.zip
LICENSE
Public Domain or MIT
LOCAL CHANGES
- Added `/zip/.args` file support to SQLite shell
- Added `--strace` ... | 618 | 22 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/pragma.shell.c | #include "third_party/sqlite3/pragma.c"
| 40 | 2 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/fts3_tokenize_vtab.c | /*
** 2013 Apr 22
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... | 13,565 | 459 | jart/cosmopolitan | false |
cosmopolitan/third_party/sqlite3/attach.shell.c | #include "third_party/sqlite3/attach.c"
| 40 | 2 | jart/cosmopolitan | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.