id
int64
0
45.1k
file_name
stringlengths
4
68
file_path
stringlengths
14
193
content
stringlengths
32
9.62M
size
int64
32
9.62M
language
stringclasses
1 value
extension
stringclasses
6 values
total_lines
int64
1
136k
avg_line_length
float64
3
903k
max_line_length
int64
3
4.51M
alphanum_fraction
float64
0
1
repo_name
stringclasses
779 values
repo_stars
int64
0
882
repo_forks
int64
0
108
repo_open_issues
int64
0
90
repo_license
stringclasses
8 values
repo_extraction_date
stringclasses
146 values
sha
stringlengths
64
64
__index_level_0__
int64
0
45.1k
exdup_ids_cmlisp_stkv2
listlengths
1
47
42,570
binding.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-1/binding.lisp
(in-package :alexandria) (defmacro if-let (bindings &body (then-form &optional else-form)) "Creates new variable bindings, and conditionally executes either THEN-FORM or ELSE-FORM. ELSE-FORM defaults to NIL. BINDINGS must be either single binding of the form: (variable initial-form) or a list of bindings of th...
2,959
Common Lisp
.lisp
69
35.985507
78
0.673405
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
d4fa698ca790cc8116f9afeaf4774ffb6f96ba3463c48ad9d2e35a4ba6ad1f7a
42,570
[ 480698 ]
42,571
lists.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-1/lists.lisp
(in-package :alexandria) (declaim (inline safe-endp)) (defun safe-endp (x) (declare (optimize safety)) (endp x)) (defun alist-plist (alist) "Returns a property list containing the same keys and values as the association list ALIST in the same order." (let (plist) (dolist (pair alist) (push (car pair...
14,161
Common Lisp
.lisp
331
32.725076
85
0.583527
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
b0917d5d7eb37eb856182d858f6c3770cf935efef4aef671e1447c2a1eaf8061
42,571
[ -1 ]
42,574
macros.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-1/macros.lisp
(in-package :alexandria) (defmacro with-gensyms (names &body forms) "Binds a set of variables to gensyms and evaluates the implicit progn FORMS. Each element within NAMES is either a symbol SYMBOL or a pair (SYMBOL STRING-DESIGNATOR). Bare symbols are equivalent to the pair (SYMBOL SYMBOL). Each pair (SYMBOL STRIN...
13,999
Common Lisp
.lisp
311
32.064309
96
0.529092
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
a224d72a89d0fcdbd32d33a5b9a0a2ebcc4766313226a467d46e25200ae53ad3
42,574
[ 126417 ]
42,575
ci-test.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/scripts/ci-test.lisp
;; Install all the deps (ql:quickload "alexandria/tests") ;; Run the tests! (asdf:test-system "alexandria")
109
Common Lisp
.lisp
4
26
33
0.75
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
16fed17d90b9079944a6c18240faf31fe63e48309f2a6e46b804dbc604b967ac
42,575
[ -1 ]
42,576
package.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-2/package.lisp
(in-package :cl-user) (defpackage :alexandria-2 (:nicknames :alexandria.2) (:use :cl :alexandria.1.0.0) #+sb-package-locks (:lock t) (:export ;; arrays #:dim-in-bounds-p #:row-major-index #:rmajor-to-indices ;; lists #:delete-from-plist* ;; control-flow #:line-up-first #:line-up-las...
427
Common Lisp
.lisp
19
19
85
0.625
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
6f966d7cff3360008d32af0aa3d1b49aa9ac7993b1690697f9c0bb97f070210c
42,576
[ -1 ]
42,577
sequences.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-2/sequences.lisp
(in-package :alexandria-2) (defun subseq* (sequence start &optional end) "Like SUBSEQ, but limits END to the length." (subseq sequence start (if end (min end (length sequence)))))
211
Common Lisp
.lisp
6
29
46
0.653465
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
2ea1038f64e06b03fda40adc8ae2e47428c14d690246bbfdcf268eb810a9bb86
42,577
[ -1 ]
42,578
tests.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-2/tests.lisp
(in-package :cl-user) (defpackage :alexandria-2/tests (:use :cl :alexandria-2 #+sbcl :sb-rt #-sbcl :rtest) (:import-from #+sbcl :sb-rt #-sbcl :rtest #:*compile-tests* #:*expected-failures*)) (in-package :alexandria-2/tests) ;; Arrays Tests (deftest dim-in-bounds-p.0 (dim-in-bounds-p '(2 2) 0 ...
4,849
Common Lisp
.lisp
162
21.012346
99
0.478755
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
4716b8882876e4743dbd58104f12a56ef4da1ec092f707d40557cf5b50b534a0
42,578
[ -1 ]
42,579
control-flow.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-2/control-flow.lisp
(in-package :alexandria-2) (defun line-up-iter (thread-first-p acc forms) "Iterative implementation for `thread-iter'. The THREAD-FIRST-P decides where to thread the FORMS, accumulating in ACC." (if forms (line-up-iter thread-first-p (let ((form (car forms))) (if (lis...
1,229
Common Lisp
.lisp
40
23.875
75
0.588785
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
213c7b6d0e0acac76a12a40e420d4c1c3691ee361d430dc3e40fab270b06485f
42,579
[ -1 ]
42,580
lists.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-2/lists.lisp
(in-package :alexandria-2) (defun delete-from-plist* (plist &rest keys) "Just like REMOVE-FROM-PLIST, but this version may destructively modify the provided PLIST. The second return value is an alist of the removed items, in unspecified order." ;; TODO: a plist? (declare (optimize speed)) (loop with head = pli...
944
Common Lisp
.lisp
23
30.521739
80
0.554348
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
1ab748a8b76bdc36cbe6f443383da670040b1c28ccab61df30e04ae280ec8e0d
42,580
[ -1 ]
42,581
arrays.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/alexandria-20220707-git/alexandria-2/arrays.lisp
(in-package :alexandria-2) (defun dim-in-bounds-p (dimensions &rest subscripts) "Mirrors cl:array-in-bounds-p, but takes dimensions (list of integers) as its first argument instead of an array. (array-in-bounds-p arr ...) == (dim-in-bounds-p (array-dimensions arr) ...)" (and (= (length dimensions) (length su...
2,142
Common Lisp
.lisp
40
46.325
95
0.654121
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
f0c715a2921b168a33e331eabd399750cf696974f2278b4b42f37a6092f563f0
42,581
[ -1 ]
42,582
encode.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/cl-base64-20201016-git/encode.lisp
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: encode.lisp ;;;; Purpose: cl-base64 encoding routines ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;...
13,400
Common Lisp
.lisp
311
25.842444
95
0.425906
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
ddcf9c0af0e1efeb4ad629f8336db131c17b1bc4efb4f2452315e1a8116aee14
42,582
[ -1 ]
42,583
package.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/cl-base64-20201016-git/package.lisp
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: package.lisp ;;;; Purpose: Package definition for cl-base64 ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 200...
3,332
Common Lisp
.lisp
83
32.650602
78
0.579191
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
dca3bbcffca967ce51178b39dd6ed36a5cb6c00845fcf97510032b9c0d515d1c
42,583
[ 458187 ]
42,584
decode.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/cl-base64-20201016-git/decode.lisp
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: encode.lisp ;;;; Purpose: cl-base64 encoding routines ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;...
11,324
Common Lisp
.lisp
243
25.946502
83
0.399855
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
77e850ac219adfe365bfbb04f31760d6908f0ff1317876c94d65a0b3de4b3540
42,584
[ 254678 ]
42,585
tests.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/cl-base64-20201016-git/tests.lisp
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: test.lisp ;;;; Purpose: Regression tests for cl-base64 ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Jan 2003 ;;...
6,673
Common Lisp
.lisp
154
32.681818
78
0.540295
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
16befb8cd6a2702f91a3c3346c8cdb00fa5ce394e180369cb973967e108169c0
42,585
[ -1 ]
42,586
mime-types.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-mimes-20221106-git/mime-types.lisp
#| This file is a part of Trivial-Mimes (c) 2014 Shirakumo http://tymoon.eu (shinmera@tymoon.eu) Author: Nicolas Hafner <shinmera@tymoon.eu> |# (defpackage #:trivial-mimes (:nicknames #:mimes #:org.tymoonnext.trivial-mimes) (:use #:cl) (:export #:*mime-db* #:find-mime.types #:mime-probe #:mime-lo...
5,936
Common Lisp
.lisp
143
34.216783
114
0.620797
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
fb5313422142f261e031e2f1b236159ac25db6c6c98407aa6bbf8f683eacb207
42,586
[ -1 ]
42,588
tf-xcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-xcl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-xcl.lisp --- XCL trivial-features implementation. ;;; ;;; Copyright (C) 2009, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; fi...
1,609
Common Lisp
.lisp
35
44.542857
75
0.731334
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
82f77568e1a61278d83f168bc4d7ac85537040b019cd19376b06ca887e17d314
42,588
[ 197592 ]
42,589
tf-abcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-abcl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-abcl.lisp --- ABCL trivial-features implementation. ;;; ;;; Copyright (C) 2009, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; ...
1,900
Common Lisp
.lisp
42
41.047619
76
0.685575
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
e860e429452e78e8289662730e9d52f366d67e2bcb2558dc704386daecfb09be
42,589
[ 3376 ]
42,590
tf-clasp.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-clasp.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-clasp.lisp --- CLASP implementation of trivial-features. ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "Software"), to deal in the Software without ;;; restri...
1,591
Common Lisp
.lisp
32
48.53125
77
0.734405
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
5102d7a4e695835ecffe38365dfd83992ccf9c01a35e142d3b7a9e78f0beb15b
42,590
[ 416599 ]
42,591
tf-mezzano.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-mezzano.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-mezzano.lisp --- Mezzano trivial-features implementation. ;;; ;;; Copyright (C) 2009, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentatio...
1,496
Common Lisp
.lisp
33
44.121212
70
0.743132
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
bbee4ded595a91e3d2a3d90d7eb64db57177b5c17436e8dfd85cc1f35e3b2d7f
42,591
[ 439607 ]
42,592
tf-mcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-mcl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-mcl.lisp --- Digitool MCL trivial-features implementation. ;;; ;;; Copyright (C) 2010, Chun Tian (binghe) <binghe.lisp@gmail.com> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentati...
1,603
Common Lisp
.lisp
36
43.083333
70
0.733804
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
a654e84d83c236bbf6c7c8fa2ab9bb312a76f4ba5d37cb50f54935788abdbbd2
42,592
[ 96341 ]
42,593
tf-openmcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-openmcl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-openmcl.lisp --- OpenMCL trivial-features implementation. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentatio...
1,817
Common Lisp
.lisp
41
42.609756
70
0.732011
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
9bc1db94b3b1e2b1a993aefecc3865daf8d8539432e0b4cb39fdec167b0bce69
42,593
[ 460782 ]
42,594
tf-corman.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-corman.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-corman.lisp --- Corman Lisp implementation of trivial-features. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated docume...
1,545
Common Lisp
.lisp
34
44.235294
70
0.743351
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
3d36e8da78e9a2bcc354574570b8fa611697c2ba1952f49410faa8e75c70741b
42,594
[ 415918 ]
42,595
tf-scl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-scl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-scl.lisp --- SCL implementation of trivial-features. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;;...
1,989
Common Lisp
.lisp
41
45.926829
73
0.701546
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
30acb12b5fd436c01bf7724baabee27b383e5a08428d7946223b3b6d954a0e28
42,595
[ 419272 ]
42,596
tf-genera.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-genera.lisp
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Package: CL-USER; Base: 10; -*- ;;; ;;; tf-genera.lisp --- Genera trivial-features implementation. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this softw...
1,610
Common Lisp
.lisp
35
44.742857
79
0.740741
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
d50641813a406c879cfac0c36f6d76f198f9305e91eb8efd3091e5a2ff888beb
42,596
[ 315264 ]
42,597
tf-mocl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-mocl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-mocl.lisp --- MOCL trivial-features implementation. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; ...
1,638
Common Lisp
.lisp
36
44.083333
70
0.730408
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
c5a220da0131c5189d36b0ef64cfb764f1a1859b7baa196a11b74531718a0fc5
42,597
[ 369918 ]
42,598
tf-sbcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-sbcl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-sbcl.lisp --- SBCL trivial-features implementation. ;;; ;;; Copyright (C) 2007-2009, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation...
2,025
Common Lisp
.lisp
44
43.363636
71
0.702484
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
27a56b6257ed0037bd4d32716bd36a994241676f262e5c66e8acbc2b0688faea
42,598
[ 434372 ]
42,599
tf-ecl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-ecl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-ecl.lisp --- ECL implementation of trivial-features. ;;; ;;; Copyright (C) 2007-2009, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentatio...
2,393
Common Lisp
.lisp
51
43.313725
74
0.692374
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
566139142ea132b4a226ae5f45cba4204d6dfd78ee0b69b2290ffc67447f5eb1
42,599
[ 291413 ]
42,600
tf-mkcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-mkcl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-mkcl.lisp --- MKCL implementation of trivial-features. ;;; ;;; Copyright (C) 2007-2009, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentat...
1,992
Common Lisp
.lisp
44
41.090909
71
0.687275
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
c68686a5f70605dfede7e50ba66e50000602f827f7efd32c26364e6cefd4618e
42,600
[ 479994 ]
42,601
tf-lispworks.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-lispworks.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-lispworks.lisp --- Lispworks implementation of trivial-features. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated docum...
2,252
Common Lisp
.lisp
49
43.142857
74
0.708676
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
d8bdcecc86c01dcec978fbd7fc93bc5890be71995eabb2762ffdc50fb43fb949
42,601
[ 29940 ]
42,602
tf-clisp.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-clisp.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-clisp.lisp --- CLISP trivial-features implementation. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;...
2,699
Common Lisp
.lisp
64
35.125
74
0.618521
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
d6207e8b42c951baeef5a956ada944251edb851fe32b578601de6b12bd590ca0
42,602
[ 309817 ]
42,603
tf-allegro.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-allegro.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-allegro.lisp --- Allegro implementation of trivial-features. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documenta...
1,878
Common Lisp
.lisp
42
43.285714
70
0.73494
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
27d3bb69aa6c67512049ad21952f677140211b33c636dd21df1ee44a9e75a26a
42,603
[ 2054 ]
42,604
tf-cmucl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/src/tf-cmucl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-cmucl.lisp --- CMUCL implementation of trivial-features. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation...
1,874
Common Lisp
.lisp
40
44.05
70
0.703886
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
16bcab2dfa005eb6d52754083a6e46c65c6b16a54be4dd70a4601fccb6686d84
42,604
[ 126877 ]
42,607
tests.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/trivial-features-20211209-git/tests/tests.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tests.lisp --- trivial-features tests. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "Soft...
4,013
Common Lisp
.lisp
117
29.196581
79
0.632964
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
34346cc9820ba056e6926e6f6daaf61368181ab8736e02ae742266e576db3af9
42,607
[ 44916 ]
42,609
usocket.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/usocket.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET -*- ;;;; See LICENSE for licensing information. (in-package :usocket) (defvar *ipv6-only-p* nil "When enabled, all USOCKET functions assume IPv6 addresses only.") (defparameter *wildcard-host* #(0 0 0 0) "Hostname to pass when all interfac...
27,820
Common Lisp
.lisp
621
38.059581
120
0.650803
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
64ecc3a301c329239199037d5d8353f1a5802bd5da3b1be666f2260aa94ff7de
42,609
[ -1 ]
42,610
package.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/package.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: CL-USER -*- ;;;; See the LICENSE file for licensing information. (defpackage :usocket (:use #-genera :common-lisp #+genera :future-common-lisp #+abcl :java :split-sequence) (:export #:*version* #:*wildcard-host* ...
4,316
Common Lisp
.lisp
109
26.357798
87
0.526517
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
5b1a7049f5cff5ce43382ebd199fbc77e2e53a685d1c1dd09be1c33ff3da3b20
42,610
[ -1 ]
42,611
server.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/server.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) (defvar *server*) (defun socket-server (host port function &optional arguments &key in-new-thread (protocol :stream) ;; for udp (timeout 1) (max-buffer-size +max-datagram-pack...
5,512
Common Lisp
.lisp
114
29.368421
111
0.468361
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
df3dc4e29692901c03ebaf5f1cf59845a60896cf608bb38d3c9458cb764850b7
42,611
[ -1 ]
42,612
option.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/option.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET -*- ;;;; SOCKET-OPTION, a high-level socket option get/set framework ;;;; See LICENSE for licensing information. (in-package :usocket) ;; put here because option.lisp is for native backend only (defparameter *backend* :native) ;;; Interface d...
11,506
Common Lisp
.lisp
381
24.401575
81
0.620121
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
51dd0fac48c716137ee19a5c9927c47cd8271e13fd38f28384dc4034c1d37b10
42,612
[ -1 ]
42,613
condition.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/condition.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET -*- ;;;; See LICENSE for licensing information. (in-package :usocket) ;; Condition signalled by operations with unsupported arguments ;; For trivial-sockets compatibility. (define-condition insufficient-implementation (error) ((feature :init...
8,860
Common Lisp
.lisp
210
35.761905
87
0.673396
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
e631a95fc1e671fa25e44e3c26d1d36b7e1ed9f587bb45667d5f402302476ed8
42,613
[ -1 ]
42,614
mcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/mcl.lisp
;; MCL backend for USOCKET 0.4.1 ;; Terje Norderhaug <terje@in-progress.com>, January 1, 2009 (in-package :usocket) (defun handle-condition (condition &optional socket (host-or-ip nil)) ; incomplete, needs to handle additional conditions (flet ((raise-error (&optional socket-condition host-or-ip) (if s...
11,738
Common Lisp
.lisp
233
42.549356
103
0.656754
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
4b7afd2ca3556cb0e57c7e3ae66fb2934a4507b79155ccc2b81cca92b1fab92a
42,614
[ -1 ]
42,615
genera.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/genera.lisp
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Package: USOCKET; Base: 10 -*- ;;;; See LICENSE for licensing information. (in-package :usocket) (defclass genera-socket () ((foreign-address :initform 0 :initarg :foreign-address :accessor gs-foreign-address) (foreign-port :initform 0 :initarg :foreign-port :...
9,940
Common Lisp
.lisp
231
37.796537
93
0.679413
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
0c1609521a79e660ea00e5ea22cafd3a44b1e6ee8a8a212817551f2a21a019ef
42,615
[ -1 ]
42,616
iolib.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/iolib.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) (defparameter *backend* :iolib) (export 'socket-option) (defparameter +iolib-error-map+ `((iolib/sockets:socket-address-in-use-error . address-in-use-error) (iolib/sockets:socket-address-family-not-supported-error . socket-type-not-support...
12,526
Common Lisp
.lisp
268
40.940299
170
0.671985
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
777149f5c453865ca189459ae7cebc0bda2a3d7d87066615eeb483599d68a0a7
42,616
[ -1 ]
42,617
allegro.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/allegro.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) #+cormanlisp (eval-when (:compile-toplevel :load-toplevel :execute) (require :acl-socket)) #+allegro (eval-when (:compile-toplevel :load-toplevel :execute) (require :sock) ;; for wait-for-input: (require :process) ;; note: the line below req...
8,808
Common Lisp
.lisp
205
34.385366
89
0.622435
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
4aae7888c9000291f35575619acc6cde34aa15cfa12b6b68a266c9c0c5e29f50
42,617
[ -1 ]
42,618
mocl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/mocl.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) (defun handle-condition (condition &optional (socket nil) (host-or-ip nil)) "Dispatch correct usocket condition." (declare (ignore socket)) (signal condition)) (defun socket-connect (host port &key (protocol :stream) (element-type 'character) ...
5,501
Common Lisp
.lisp
126
40.111111
98
0.646465
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
4f6c15b3ac99a23e5f81073af09734d9ba296046215b52b94c2d7cfc4277f245
42,618
[ -1 ]
42,619
clozure.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/clozure.lisp
;;;; See LICENSE for licensing information. ;;;; Functions for CCL 1.11 (IPv6) only, see openmcl.lisp for rest of functions. (in-package :usocket) #+ipv6 (defun socket-connect (host port &key (protocol :stream) element-type timeout deadline nodelay local-host local-port)...
4,597
Common Lisp
.lisp
85
30.505882
104
0.447082
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
9a86af9d1a83763d45bcf5ae3bcbf2c029052d6c52eea3a00161e24c40f2303a
42,619
[ -1 ]
42,620
lispworks.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/lispworks.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) (eval-when (:compile-toplevel :load-toplevel :execute) (require "comm") #+lispworks3 (error "LispWorks 3 is not supported")) ;;; --------------------------------------------------------------------------- ;;; Warn if multiprocessing is not run...
44,628
Common Lisp
.lisp
949
34.87039
125
0.570277
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
9bda4ce186f8e25c58f6ff40d0f6e21bab65ad5723ecfc665f7e4ea44f44bc1d
42,620
[ -1 ]
42,621
clisp.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/clisp.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) (eval-when (:compile-toplevel :load-toplevel :execute) #-ffi (warn "This image doesn't contain FFI package, GET-HOST-NAME won't work.") #-(or ffi rawsock) (warn "This image doesn't contain either FFI or RAWSOCK package, no UDP support.")) ;; u...
27,059
Common Lisp
.lisp
646
34.171827
109
0.624829
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
657eb2659f8438f023ec47b2b180e2100c384e0a774d75e19eff87bbb5bd6272
42,621
[ -1 ]
42,622
scl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/scl.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) (defparameter +scl-error-map+ (append +unix-errno-condition-map+ +unix-errno-error-map+)) (defun scl-map-socket-error (err &key condition socket) (let ((usock-err (cdr (assoc err +scl-error-map+ :test #'member)))) (cond (usock-err ...
10,034
Common Lisp
.lisp
234
33.961538
84
0.601556
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
8ee69637780f26162a783b06c9819abfd50b1055a678932d13b71177722d7350
42,622
[ -1 ]
42,623
clasp.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/clasp.lisp
(in-package :usocket) #-clasp (progn #-:wsock (ffi:clines "#include <errno.h>" "#include <sys/socket.h>" "#include <unistd.h>") #+:wsock (ffi:clines "#ifndef FD_SETSIZE" "#define FD_SETSIZE 1024" "#endif" "#include <winsock2.h>") (ffi:clines #+:msvc "#include <time.h>" #-:msvc "#in...
5,221
Common Lisp
.lisp
145
25.427586
82
0.508793
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
9999ec7ce881df39ef2ff30fd78740c1f1fd7883034993dc92454b10646f0d68
42,623
[ 480117 ]
42,624
mezzano.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/mezzano.lisp
;;;; -*- Mode: Common-Lisp -*- ;;;; See LICENSE for licensing information. (in-package :usocket) (defun handle-condition (condition &optional (socket nil) (host-or-ip nil)) (typecase condition ;; TODO: Add additional conditions as appropriate (mezzano.network.tcp:connection-timed-out (error 'timeout-e...
3,936
Common Lisp
.lisp
82
41.134146
109
0.685886
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
e5dce93da7d4060c8123ad520a12b0fec210eb33022dbacd15b7d9f728c4fb5f
42,624
[ -1 ]
42,625
openmcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/openmcl.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) (defun get-host-name () (ccl::%stack-block ((resultbuf 256)) (when (zerop (#_gethostname resultbuf 256)) (ccl::%get-cstring resultbuf)))) (defparameter +openmcl-error-map+ '((:address-in-use . address-in-use-error) (:connection-abort...
11,157
Common Lisp
.lisp
245
37.187755
93
0.635804
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
fb92b0d70f82b7a20c9f77169a43dc4b6cbe85d7ccf688798ce71e8df2cdd3d2
42,625
[ -1 ]
42,626
sbcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/sbcl.lisp
;;;; -*- Mode: Common-Lisp -*- ;;;; See LICENSE for licensing information. (in-package :usocket) #+sbcl (progn #-win32 (defun get-host-name () (sb-unix:unix-gethostname)) ;; we assume winsock has already been loaded, after all, ;; we already loaded sb-bsd-sockets and sb-alien #+win32 (defun get-host...
40,135
Common Lisp
.lisp
899
34.291435
102
0.578397
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
75a17af43991b9be3f0bb9ace393b639b145327d5fbab467d0de2f56e80cf442
42,626
[ -1 ]
42,627
ecl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/ecl.lisp
;;;; -*- Mode: Lisp -*- ;;;; Foreign functions defined by ECL's DFFI, used for #+ecl-bytecmp only. ;;;; See LICENSE for licensing information. (in-package :usocket) #+(and ecl-bytecmp windows) (eval-when (:load-toplevel :execute) (ffi:load-foreign-library "ws2_32.dll" :module "ws2_32")) #+(and ecl-bytecmp windows...
5,141
Common Lisp
.lisp
126
32.706349
94
0.610944
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
ee31e462f25bcdb8a6cf44ade3125c0e5a11867d852851cafa62209720de4060
42,627
[ 428877 ]
42,628
abcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/abcl.lisp
;;;; New ABCL networking support (replacement to old armedbear.lisp) ;;;; Author: Chun Tian (binghe) ;;;; See LICENSE for licensing information. (in-package :usocket) ;;; Java Classes ($*...) (defvar $*boolean (jclass "boolean")) (defvar $*byte (jclass "byte")) (defvar $*byte[] (jclass "[B")) (defvar $*int (jclass "...
20,392
Common Lisp
.lisp
384
48.979167
100
0.704842
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
1229115dbf8483cf14b0254ac02772ba1abecf0fad3a6b755d6209c1b76b38e1
42,628
[ -1 ]
42,629
cmucl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/backend/cmucl.lisp
;;;; See LICENSE for licensing information. (in-package :usocket) #+win32 (defun remap-for-win32 (z) (mapcar #'(lambda (x) (cons (mapcar #'(lambda (y) (+ 10000 y)) (car x)) (cdr x))) z)) (defparameter +cmucl-err...
11,657
Common Lisp
.lisp
267
34.254682
88
0.598697
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
33a69c474af076ca72342c405f60fdef762bcd4955ca2d63f2c0fca42009d94e
42,629
[ -1 ]
42,630
clisp-sockets.txt
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/notes/clisp-sockets.txt
http://clisp.cons.org/impnotes.html#socket (SOCKET:SOCKET-SERVER &OPTIONAL [port-or-socket]) (SOCKET:SOCKET-SERVER-HOST socket-server) (SOCKET:SOCKET-SERVER-PORT socket-server) (SOCKET:SOCKET-WAIT socket-server &OPTIONAL [seconds [microseconds]]) (SOCKET:SOCKET-ACCEPT socket-server &KEY :ELEMENT-TYPE :EXTERNAL-FORMAT ...
1,480
Common Lisp
.lisp
28
51.178571
100
0.786408
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
0a38ed8dd864a19e5080d4cec0efd1ef7fd6c081c0cb2ed219c0f97777b8b916
42,630
[ -1 ]
42,631
package.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/tests/package.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: CL-USER -*- ;;;; See the LICENSE file for licensing information. (in-package :cl-user) (defpackage :usocket-test (:use :common-lisp :usocket :regression-test) (:export #:do-tests #:run-usocket-tests))
279
Common Lisp
.lisp
9
28.666667
77
0.690299
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
a0caef1ec97cfc198515ab052085e0bdba01185da376f2257b5e0ca363d206e9
42,631
[ -1 ]
42,632
test-timeout.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/tests/test-timeout.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET-TEST -*- ;;;; See LICENSE for licensing information. (in-package :usocket-test) ;; echo server with binary protocol: ;; ;; msg = cmd-byte || length-byte || data* ;; tells server echo back the data bytes (defconstant +cmd-echo+ 0) ;; tells se...
3,730
Common Lisp
.lisp
88
33.659091
95
0.591247
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
24daecffb4e24a943c29b727f926a7dec025849328d7766a2d9368341dca9c96
42,632
[ -1 ]
42,633
test-condition.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/tests/test-condition.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET-TEST -*- ;;;; See LICENSE for licensing information. (in-package :usocket-test) (deftest ns-host-not-found-error.1 (with-caught-conditions (usocket:ns-host-not-found-error nil) (usocket:socket-connect "xxx" 123) t) nil) ;;; This t...
938
Common Lisp
.lisp
26
32.961538
82
0.733996
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
5810e28871b04a7bf408d272c2360d0c35fb6ae8eab521857a4232eb24b4c22e
42,633
[ -1 ]
42,634
test-datagram.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/tests/test-datagram.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET-TEST -*- ;;;; See LICENSE for licensing information. (in-package :usocket-test) (defvar *echo-server* nil) (defvar *echo-server-port* nil) (defun start-server () (multiple-value-bind (thread socket) (socket-server "127.0.0.1" 0 #'...
4,823
Common Lisp
.lisp
112
33.6875
106
0.581826
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
f732f72b1e01195f3d10bac61017b75a33652785796a8c4bd98b14d864761a48
42,634
[ -1 ]
42,635
wait-for-input.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/tests/wait-for-input.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET-TEST -*- ;;;; See LICENSE for licensing information. (in-package :usocket-test) (eval-when (:compile-toplevel :load-toplevel :execute) (defparameter *wait-for-input-timeout* 2)) (deftest wait-for-input.1 (with-caught-conditions (nil nil) ...
5,046
Common Lisp
.lisp
113
39.495575
94
0.67394
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
1488fe39f6bcb2f637f68ebe821b5fc222e22b6d5124beaec2e79327b8dfa3c2
42,635
[ -1 ]
42,636
test-usocket.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/tests/test-usocket.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET-TEST -*- ;;;; See LICENSE for licensing information. ;;;; Usage: (usoct:run-usocket-tests) or (usoct:do-tests) (in-package :usocket-test) (defparameter +non-existing-host+ "1.2.3.4" "The stringified IP address of a host on the same subnet. N...
7,493
Common Lisp
.lisp
189
29.883598
122
0.580814
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
3efab529113247db758062bca2f49d6fb3f05e97bbd71b1809aeae3c3e5867bd
42,636
[ 324085 ]
42,637
udp-one-shot.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/tests/udp-one-shot.lisp
;;;; -*- Mode: LISP; Base: 10; Syntax: ANSI-Common-lisp; Package: USOCKET-TEST -*- (in-package :usocket-test) ;; Test code from "INVALID-ARGUMENT-ERROR on socket-receive (#48)" ;; Author: @4lph4-Ph4un ;; Environment: SBCL 1.4.16, WSL on Windows 10 (defun UDP-one-shot-V1 (&optional (port 1232)) (let ((socket (usoc...
4,259
Common Lisp
.lisp
80
47.025
207
0.655883
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
52792ddb999f3b0e902ab4537bfe32bec1a29cc12357f7c2216fe06a6251f8be
42,637
[ -1 ]
42,638
OpenTransportUDP.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/vendor/OpenTransportUDP.lisp
;;;-*-Mode: LISP; Package: CCL -*- ;; ;;; OpenTransportUDP.lisp ;;; Copyright 2012 Chun Tian (binghe) <binghe.lisp@gmail.com> ;;; UDP extension to OpenTransport.lisp (with some TCP patches) (in-package "CCL") (eval-when (:compile-toplevel :load-toplevel :execute) (require :opentransport)) ;; MCL Issue 28: Passive...
6,398
Common Lisp
.lisp
135
42.266667
108
0.681862
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
475d77f9f344ab02fa9a88644b01eb1e4dc25bf713bd3d21a3a4a8e25ec8c862
42,638
[ 170825, 414085 ]
42,639
kqueue.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/usocket-0.8.5/vendor/kqueue.lisp
;;;-*-Mode: LISP; Package: CCL -*- ;; ;; KQUEUE.LISP ;; ;; KQUEUE - BSD kernel event notification mechanism support for Common LISP. ;; Copyright (C) 2007 Terje Norderhaug <terje@in-progress.com> ;; Released under LGPL - see <http://www.gnu.org>. ;; Alternative licensing available upon request. ;; ;; DISCLAIMER: The u...
19,988
Common Lisp
.lisp
433
37.632794
141
0.610296
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
aa70f8bdf3c449f442b31df96ef49f80ccbca65f9d8fc114a1031c7291a48fa5
42,639
[ 152419, 192570, 335290 ]
42,640
bordeaux-threads-test.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/test/bordeaux-threads-test.lisp
#| Copyright 2006,2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (defpackage bordeaux-threads/test (:use #:cl #:bordeaux-threads #:fiveam) (:shadow #:with-timeout)) (in-package #:bordeaux-threads/test) (def-suite :bordeaux-threads) (def-fixture using-lock () (let ((lock (make-lock)))...
10,373
Common Lisp
.lisp
259
30.181467
94
0.556569
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
5914f91fded82783146d50e599042571394e17e34495f13f7d83c4a4c87041bb
42,640
[ -1 ]
42,641
impl-clisp.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-clisp.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (deftype thread () 'mt:thread) ;;; Thread Creation (defun %make-thread (function name) (mt:make-thread function :name name ...
2,812
Common Lisp
.lisp
76
33.815789
76
0.719733
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
d61cdda99b7a03dd329d0ca947b25b82fca63ba5a4596d56f78a94c45feecd1c
42,641
[ 368805 ]
42,642
condition-variables.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/condition-variables.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; This file provides a portable implementation of condition ;;; variables (given a working WITH-LOCK-HELD and THREAD-YIELD), and ;;; should be used if there...
1,053
Common Lisp
.lisp
30
32.033333
70
0.746798
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
795d2b0fdef7c7dde02900ee8dc565ade8896f06629dcde520f972d0ff3ea37c
42,642
[ 442028 ]
42,643
impl-lispworks.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-lispworks.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; documentation on the LispWorks Multiprocessing interface can be found at ;;; http://www.lispworks.com/documentation/lw445/LWUG/html/lwuser-156.htm (defty...
4,032
Common Lisp
.lisp
105
33.961905
82
0.682181
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
e7e69b9365b7e256b2738ec8629524bd5bebbcec77e03e1af7d50bd29c9b5959
42,643
[ 404988 ]
42,644
impl-ecl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-ecl.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; documentation on the ECL Multiprocessing interface can be found at ;;; http://ecls.sourceforge.net/cgi-bin/view/Main/MultiProcessing (deftype thread () ...
2,741
Common Lisp
.lisp
76
32.605263
75
0.714829
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
6c569394193f90fb001ff19bfe7927c68d9526a9097291491a3a5a9aa76d090a
42,644
[ 156330 ]
42,645
impl-sbcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-sbcl.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; documentation on the SBCL Threads interface can be found at ;;; http://www.sbcl.org/manual/Threading.html (deftype thread () 'sb-thread:thread) ;;; Th...
3,547
Common Lisp
.lisp
92
35.5
80
0.723996
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
943c4cc0c605913cf52a004eda50cf5521fc1ac27f34e3d379eba5fa5679471d
42,645
[ 50725 ]
42,646
impl-lispworks-condition-variables.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-lispworks-condition-variables.lisp
;;;; -*- indent-tabs-mode: nil -*- (in-package #:bordeaux-threads) ;; Lispworks condition support is simulated, albeit via a lightweight wrapper over ;; its own polling-based wait primitive. Waiters register with the condition variable, ;; and use MP:process-wait which queries for permission to proceed at its own (u...
7,140
Common Lisp
.lisp
132
46.424242
141
0.668954
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
36a601416281cbc40bb43f76c8468441c9a1672023986987226e403e34fbc6bb
42,646
[ 69487 ]
42,648
impl-abcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-abcl.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Reimplemented with java.util.concurrent.locks.ReentrantLock by Mark Evenson 2011. Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; the implementation of the Armed Bear thread interface can be found in ;...
4,319
Common Lisp
.lisp
114
33.929825
81
0.720077
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
195a1bceb4ff5a46d75b537380bee535f5e453162ae6ff669a0e9a559a59fb3a
42,648
[ 304068, 366417 ]
42,649
impl-clasp.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-clasp.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; documentation on the ECL Multiprocessing interface can be found at ;;; http://ecls.sourceforge.net/cgi-bin/view/Main/MultiProcessing (deftype thread () ...
2,704
Common Lisp
.lisp
75
32.92
86
0.727728
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
0e3042c79e5b5fec48a16123a2564a13caedc6712df550a67d01fb946a98f411
42,649
[ 45473 ]
42,650
impl-scl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-scl.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2008 Scieneer Pty Ltd Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (deftype thread () 'thread:thread) (defun %make-thread (function name) (thread:thread-create function :name name)) (defun current-thread () thread:*th...
2,681
Common Lisp
.lisp
71
34.183099
74
0.720714
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
835f80113c16eba541c087d52b3a6f66818c92edda0702b99e047a8c2466b97e
42,650
[ 485412 ]
42,651
impl-genera.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-genera.lisp
;;;; -*- Mode: LISP; Syntax: Ansi-Common-Lisp; Package: BORDEAUX-THREADS; Base: 10; -*- #| Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (deftype thread () 'process:process) (defvar *thread-recursive-lock-key* 0) ;;; Thread Creation (defun %make-thread (function name) ...
7,481
Common Lisp
.lisp
163
37.226994
95
0.639747
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
94e5d7c307c3df734d4220e2e790ce440765f6724f38634c6e7d3ea9794048c6
42,651
[ -1 ]
42,652
impl-clozure.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-clozure.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; documentation on the OpenMCL Threads interface can be found at ;;; http://openmcl.clozure.com/Doc/Programming-with-Threads.html (deftype thread () 'ccl...
3,061
Common Lisp
.lisp
90
30.977778
67
0.729444
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
a844a943a0dccfbb26debfd02f84736397d3a22781e2cc0bb9bb3b9390449e6c
42,652
[ 471966 ]
42,653
impl-allegro.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-allegro.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) ;;; documentation on the Allegro Multiprocessing interface can be found at ;;; http://www.franz.com/support/documentation/8.1/doc/multiprocessing.htm ;;; Res...
3,752
Common Lisp
.lisp
107
30.803738
81
0.69299
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
c6daafb10c656c28b72dd1167eb3e6f808e3b7cafc602056161458e0040b4a6c
42,653
[ 493570 ]
42,654
pkgdcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/pkgdcl.lisp
;;;; -*- Mode: LISP; Syntax: ANSI-Common-lisp; Base: 10; Package: CL-USER -*- ;;;; The above modeline is required for Genera. Do not change. (cl:defpackage :bordeaux-threads (:nicknames #:bt) (:use #:cl #:alexandria) #+abcl (:import-from :java #:jnew #:jcall #:jmethod) (:export #:thread #:make-thread #:curre...
3,091
Common Lisp
.lisp
53
52.396226
92
0.737434
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
549f9608d251933bc0ea552d899da21a0b9221ede20e6b48c6e630acee57e2d3
42,654
[ 434426 ]
42,655
impl-mkcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-mkcl.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Copyright 2010 Jean-Claude Beaudoin. Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (deftype thread () 'mt:thread) ;;; Thread Creation (defun %make-thread (function name) (mt:thread-run-function name...
2,532
Common Lisp
.lisp
74
31.202703
73
0.721832
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
6937face500d1c34393f7e834e1873c16ee1bce685840f9abe0431a92bef02e4
42,655
[ 426956 ]
42,656
bordeaux-threads.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/bordeaux-threads.lisp
;;;; -*- Mode: LISP; Syntax: ANSI-Common-lisp; Base: 10; Package: BORDEAUX-THREADS -*- ;;;; The above modeline is required for Genera. Do not change. #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (defvar *supports-threads-p* nil "This sh...
7,091
Common Lisp
.lisp
159
37.716981
92
0.637614
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
549406405b8741ca89c41cd7ec6ea280a22e2d74f623eaad9539d11af6a45a7f
42,656
[ -1 ]
42,657
impl-cmucl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-cmucl.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (deftype thread () 'mp::process) ;;; Thread Creation (defun start-multiprocessing () (mp::startup-idle-and-top-level-loops)) (defun %make-thread (funct...
4,919
Common Lisp
.lisp
120
35.741667
82
0.671921
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
401dced616eb76b6e5f8447b9bdb9fda2c7e80c932fdb9a8b087790b34f4fdea
42,657
[ 83872 ]
42,658
impl-mezzano.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-mezzano.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Copyright 2016 Henry Harrington Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (deftype thread () 'mezzano.supervisor:thread) ;;; Thread Creation (defun %make-thread (function name) (mezzano.supervis...
3,581
Common Lisp
.lisp
91
34.714286
85
0.717347
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
076064af85642c7a3fe1c457394a5fdf4cb0ed6049caf1583e4202dcf8e13b6d
42,658
[ 84988 ]
42,659
default-implementations.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/default-implementations.lisp
;;;; -*- Mode: LISP; Syntax: ANSI-Common-lisp; Base: 10; Package: BORDEAUX-THREADS -*- ;;;; The above modeline is required for Genera. Do not change. (in-package #:bordeaux-threads) ;;; Helper macros (defmacro defdfun (name args doc &body body) `(eval-when (:compile-toplevel :load-toplevel :execute) (unless (...
14,854
Common Lisp
.lisp
305
44.44918
86
0.737648
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
e3705fa7611639bafad202a3e1136f8fb389d78b713fdb0f55f819fbe34b0243
42,659
[ 228690 ]
42,660
impl-mcl.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/bordeaux-threads-v0.8.8/src/impl-mcl.lisp
;;;; -*- indent-tabs-mode: nil -*- #| Copyright 2006, 2007 Greg Pfeil Distributed under the MIT license (see LICENSE file) |# (in-package #:bordeaux-threads) (deftype thread () 'ccl::process) ;;; Thread Creation (defun %make-thread (function name) (ccl:process-run-function name function)) (defun current-thre...
1,508
Common Lisp
.lisp
46
30.086957
56
0.722917
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
78016f5c728e429badcbd00b9c5ae16bf2c657c864ff97460c51160bc5113b2d
42,660
[ 323536 ]
42,661
encoding.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/encoding.lisp
(in-package :cl-user) (defpackage dexador.encoding (:use :cl) (:import-from :babel :list-character-encodings :*default-character-encoding*) (:import-from :ppcre :scan-to-strings) (:export :detect-charset)) (in-package :dexador.encoding) (defun parse-content-type ...
3,213
Common Lisp
.lisp
77
30.376623
111
0.533844
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
cf00cc24dfcc19456e97db048c6725453b59edf49e6a08d2a5c20dc1663c4c30
42,661
[ 360574 ]
42,662
dexador.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/dexador.lisp
(in-package :cl-user) (uiop:define-package dexador (:nicknames :dex) (:use :cl #-windows #:dexador.backend.usocket #+windows #:dexador.backend.winhttp) (:shadow :get :delete) (:import-from :dexador.connection-cache :*connection-pool* :*use-connection-po...
8,488
Common Lisp
.lisp
143
50.363636
260
0.690322
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
84b5705959da776b5af9b416490c683bab4ce553c310b790f501569f6df333f2
42,662
[ -1 ]
42,663
util.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/util.lisp
(in-package :cl-user) (defpackage dexador.util (:use :cl) (:import-from :fast-io :with-fast-output :fast-write-byte :fast-write-sequence) (:import-from :quri :uri-path :uri-query :uri-host :uri-port ...
7,444
Common Lisp
.lisp
165
35
106
0.585756
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
a3df0726df9686219b542fa4f0949684a96ccd9f510221243e3a8d512754bd07
42,663
[ -1 ]
42,664
error.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/error.lisp
(in-package :cl-user) (defpackage dexador.error (:use :cl) (:import-from :quri :render-uri) (:export :http-request-failed ;; 4xx :http-request-bad-request :http-request-unauthorized :http-request-payment-required :http-request-forbidden ...
5,721
Common Lisp
.lisp
118
30.90678
93
0.458952
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
3f080bb69b29afcb7750c8d4e4a272404261c3371711d8a08df031b28c69a8da
42,664
[ -1 ]
42,665
body.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/body.lisp
(defpackage #:dexador.body (:use #:cl) (:import-from #:dexador.encoding #:detect-charset) (:import-from #:dexador.decoding-stream #:make-decoding-stream) (:import-from #:dexador.util #:ascii-string-to-octets #:+crlf+) (:import-from #:babel ...
4,455
Common Lisp
.lisp
102
30.068627
122
0.528749
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
85c48df59e6d2afed5b57de8e7d9d6c0622a589bdf1dd08c96d16c6944ecd23b
42,665
[ -1 ]
42,666
decoding-stream.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/decoding-stream.lisp
(in-package :cl-user) (defpackage dexador.decoding-stream (:use :cl) (:import-from :trivial-gray-streams :fundamental-character-input-stream :stream-read-char :stream-unread-char :stream-read-byte :stream-read-sequence) (:import-from ...
6,514
Common Lisp
.lisp
146
35.739726
96
0.635548
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
f92edd8e34124937252ee1cc0b828b52d5d6953570dc50cd5470444340d54ae8
42,666
[ -1 ]
42,667
keep-alive-stream.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/keep-alive-stream.lisp
(in-package :cl-user) (defpackage dexador.keep-alive-stream (:use :cl) (:import-from :trivial-gray-streams :fundamental-input-stream :stream-read-byte :stream-read-sequence :stream-element-type :open-stream-p) (:import-from :alexandri...
5,415
Common Lisp
.lisp
107
43.009346
126
0.6678
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
51501b38019f018c26a8d8ae3d3ad4042a88407f3873f41555d896e2bd061a31
42,667
[ -1 ]
42,668
usocket.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/backend/usocket.lisp
(in-package :cl-user) (defpackage dexador.backend.usocket (:nicknames :dex.usocket) (:use :cl :dexador.encoding :dexador.util) (:import-from :dexador.connection-cache :steal-connection :push-connection) (:import-from :dexador.decoding-stream :make-...
43,220
Common Lisp
.lisp
824
31.947816
146
0.470327
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
6b520ded5bf0e302ea8b354a52d1af3b917241888e5f58b9c05504bd1aaf0c9d
42,668
[ -1 ]
42,669
winhttp.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/src/backend/winhttp.lisp
(defpackage #:dexador.backend.winhttp (:nicknames :dex.winhttp) (:use #:cl #:dexador.util #:winhttp) (:import-from #:dexador.body #:decode-body #:write-multipart-content #:decompress-body) (:import-from #:dexador.error #:http-reques...
12,362
Common Lisp
.lisp
240
30.225
109
0.450136
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
878703b732663754e4fdc1cbfb8e7c0140f109002e482d1159ca27410c15620d
42,669
[ 452879 ]
42,670
dexador.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/t/dexador.lisp
(in-package :cl-user) (defpackage dexador-test (:use :cl :rove) (:import-from :clack.test :*clack-test-port* :*clack-test-access-port* :port-available-p :localhost)) (in-package :dexador-test) (defun random-port () "Return a port number not ...
30,346
Common Lisp
.lisp
634
36.902208
824
0.568176
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
bc561376d96f5cc5d6f0316e87713ac3303e3fdd871fb981bbedc5f66259ccc2
42,670
[ -1 ]
42,671
benchmark.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/dexador-20221106-git/t/benchmark.lisp
(in-package :cl-user) (defpackage dexador-test.benchmark (:use :cl)) (in-package :dexador-test.benchmark) (defun run-benchmark () (clack:clackup (lambda (env) (declare (ignore env)) (list 200 ()))))
217
Common Lisp
.lisp
9
21.111111
36
0.676329
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
e04baa8b20aff884b8cade112d07ca2f7ada6d94e31c92b0dc39729646525e8e
42,671
[ 274237 ]
42,672
package.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/zpng-1.2.2/package.lisp
;;; ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions of source code must retain the above copyright ;;; notice, this lis...
2,085
Common Lisp
.lisp
67
28.38806
70
0.708974
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
80d370c9be6da7bd7953ea3cb764e5362232291f4c25d219419f16fc07df8e92
42,672
[ 400099 ]
42,673
specials.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/zpng-1.2.2/specials.lisp
;;; ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions of source code must retain the above copyright ;;; notice, this lis...
1,785
Common Lisp
.lisp
41
41.268293
70
0.725862
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
89b9ce19f525e3eafd5c21d81a9043e7aefa0264371f3baf4819b8161937f931
42,673
[ -1 ]
42,674
utils.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/zpng-1.2.2/utils.lisp
;;; ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions of source code must retain the above copyright ;;; notice, this lis...
1,755
Common Lisp
.lisp
37
45.864865
70
0.741108
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
832055d00ea4f6f1cf25f54948b98a29f259fac626e127d46f30664c80ddb7ca
42,674
[ -1 ]
42,675
png.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/zpng-1.2.2/png.lisp
;;; ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions of source code must retain the above copyright ;;; notice, this lis...
9,964
Common Lisp
.lisp
248
34.157258
76
0.654431
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
f714b9263219e39a71c4507dc1b2c458d100b4e303dc6f020da9184bedd15e27
42,675
[ 114161 ]
42,676
conditions.lisp
NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/zpng-1.2.2/conditions.lisp
;;; ;;; Copyright (c) 2008 Zachary Beane, All Rights Reserved ;;; ;;; Redistribution and use in source and binary forms, with or without ;;; modification, are permitted provided that the following conditions ;;; are met: ;;; ;;; * Redistributions of source code must retain the above copyright ;;; notice, this lis...
4,091
Common Lisp
.lisp
97
35.463918
79
0.670848
NailykSturm/Info805-TP
0
0
0
GPL-3.0
9/19/2024, 11:51:23 AM (Europe/Amsterdam)
d99f5302feb80e33122d6834f23eec5c8ea4029a03f4421b543b2b46c815c5b4
42,676
[ 134711 ]