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
29,063
hgenetic_algorithm_refined.lsp
AndreaCimminoArriaga_ColoreadoDeGrafos/HGenetic Algorithm refined/hgenetic_algorithm_refined.lsp
;;Importing data from file 'data.lsp' (load "data.lsp") ;;.______________________________________________________________________________________________________________.;; ;;| |;; ;;| Initialice genetic algorithm parameters as described in the paper: |;; ;;|___________________...
15,863
Common Lisp
.l
276
52.92029
232
0.324682
AndreaCimminoArriaga/ColoreadoDeGrafos
0
0
0
GPL-2.0
9/19/2024, 11:37:01 AM (Europe/Amsterdam)
ae7c52489bacfd59ab8bf9a5b75c2e97b42285099a721fc01bec0cc862b7c7f1
29,063
[ -1 ]
29,065
islands_model.lsp
AndreaCimminoArriaga_ColoreadoDeGrafos/Islands Model/islands_model.lsp
;;Importing data from file 'data.lsp' (load "data.lsp") ;;Importing functions from file 'functions.lsp' (load "functions.lsp") ;;.______________________________________________________________________________________________________________.;; ;;| |;; ;;| Initialice genetic algorithm a...
17,260
Common Lisp
.l
300
51.993333
155
0.376219
AndreaCimminoArriaga/ColoreadoDeGrafos
0
0
0
GPL-2.0
9/19/2024, 11:37:01 AM (Europe/Amsterdam)
c45ddbc46a63e4cecc4d6d2811ed163b00dd76ef7794cae2d38e19b6c954c753
29,065
[ -1 ]
29,066
functions.lsp
AndreaCimminoArriaga_ColoreadoDeGrafos/Islands Model/functions.lsp
;;| |;; ;;| ############################################################## |;; ;;| ##### Main and auxiliar functions ###### |;; ;;| ############################################################## |;; ;;| |;; ;;| ...
17,727
Common Lisp
.l
287
58.034843
144
0.330297
AndreaCimminoArriaga/ColoreadoDeGrafos
0
0
0
GPL-2.0
9/19/2024, 11:37:01 AM (Europe/Amsterdam)
d7fbe6b46ac38510061aaac1bf97faf3aa09ad02c7f943adc232e7f7d5241910
29,066
[ -1 ]
29,094
patternmatch4.lsp
elainekmao_pattern-matcher/patternmatch4.lsp
(defun match (p d) (rpm p d nil)) (defun rpm (p d a) (cond ((and (null p)(null d)) (cond (a a) (t t))) ((and (or (null p) (null d)) (not (or (equal '* (first p)) (equal '* (first d))))) nil) ((is-vbl (first p)) (cond ((assoc (first p) a) (cond ((equal (first d) (cd...
2,377
Common Lisp
.l
49
32.55102
114
0.385278
elainekmao/pattern-matcher
0
0
0
GPL-2.0
9/19/2024, 11:37:17 AM (Europe/Amsterdam)
d73136ee4f4341ec81661d68323dd17f57274cde2cf00dfd226df271d3e1377e
29,094
[ -1 ]
29,110
tic-tac-toe.lisp
selsah_lisp-mastery/tic-tac-toe.lisp
;;;;;play a game of tic tac toe with computer that has knowledge of basic strategy (defparameter *board* (list 'board 0 0 0 0 0 0 0 0 0)) ;converts binary symbol into eith an "x" or "o" to be printed (defun convert-to-letter (number) (cond ((equal 10 number) "x") ((equal 1 number) "o") (t " "))) ;prints a...
4,695
Common Lisp
.lisp
124
32.766129
120
0.609097
selsah/lisp-mastery
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
8a36af574568b8f4b1053a011fc2d1bec909f53c7fc4781282590c8a3d0530de
29,110
[ -1 ]
29,127
bpirate-uart.lisp
grepz_bpirate-cl/src/bpirate-uart.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defparameter +BP-UART-SPEED+ (list sb-posix:B300 #b0000 sb-posix:B1200 #b0001 sb-posix:B2400 #b0010 sb-posix:B4800 #b0011 sb-posix:B9600 #b0100 sb-posix:B19200 #b0101 ;; 0110=31250 sb-posix:B38400 #b0111 sb-...
7,592
Common Lisp
.lisp
158
44.436709
78
0.720504
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
9559361cfd0cd20e10e9824e5eed8b798576216fa82b409a8686e900d7df0cbe
29,127
[ -1 ]
29,128
package.lisp
grepz_bpirate-cl/src/package.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (defpackage #:bpirate-cl (:use :cl :sb-sys) (:export :bpirate-start :bpirate-stop))
156
Common Lisp
.lisp
6
23.166667
60
0.644295
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
f24684a0b03f0959af662c0cadebe7da8ea202e4f541aa1560732dd7f57b0277
29,128
[ -1 ]
29,129
serial.lisp
grepz_bpirate-cl/src/serial.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defconstant +FIONREAD+ #x541B) (defun serial-open (path baud &key (vmin 0) (vtime 1)) ;; sb-posix:O-NDELAY sb-posix:O-NONBLOCK (let* ((fd (sb-posix:open path (logior sb-posix:O-NOCTTY sb-posix:O-RDWR))) (old (sb-posix:tcget...
1,656
Common Lisp
.lisp
45
32.044444
77
0.647756
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
926c2cca10a0fc0a7978c4e6e0fc09591fac9d35f7c88e00b1bfd33c25ff9f56
29,129
[ -1 ]
29,130
bpirate-mode.lisp
grepz_bpirate-cl/src/bpirate-mode.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defparameter +BB-MODE-SIG+ "BBIO1") (defparameter +BB-SPI-MODE-SIG+ "SPI1") (defparameter +BB-I2C-MODE-SIG+ "I2C1") (defparameter +BB-UART-MODE-SIG+ "ART1") (defparameter +BB-1WIRE-MODE-SIG+ "1W01") (defparame...
1,070
Common Lisp
.lisp
23
45.130435
62
0.660577
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
9b734534a878851bb9a26d92c8fb530d94e8ee8d3b315d7b83dedf6ec6bff376
29,130
[ -1 ]
29,131
bpirate.lisp
grepz_bpirate-cl/src/bpirate.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defparameter +BB-TRY+ 20) (defparameter +BB-BP-RESET-CMD+ #b1111) (defparameter +BB-PINOUT-MASK+ #b01000000) (defparameter +BB-ONOFF-MASK+ #b10000000) (defparameter +BB-MODE-EXIT+ #xFF) (defclass bpirate () ((stream :reader...
2,527
Common Lisp
.lisp
71
31.478873
73
0.678557
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
4faeb8ba386664bd36700f4b58004b4a13f03b0058e2d0da207dee0648b56c9d
29,131
[ -1 ]
29,132
utils.lisp
grepz_bpirate-cl/src/utils.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defmacro with-bp-cmd ((var s cmd &key (timeout 0.1)) &body body) `(let ((,var (gensym))) (serial-write ,s ,cmd) (sleep ,timeout) (setf ,var (serial-read ,s)) ,@body)) (defun oct-to-string (oct) (let* ((len...
1,099
Common Lisp
.lisp
34
27.5
66
0.596226
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
526c3058715ac32f612d9c20c387c259457acf15a2defc44ccc027a1ea963a54
29,132
[ -1 ]
29,133
bpirate-test.lisp
grepz_bpirate-cl/src/bpirate-test.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defparameter +BB-SELFTEST-SHORT-CMD+ #b10000) (defparameter +BB-SELFTEST-LONG-CMD+ #b10001) (defclass bpirate-test-mode (bpirate-mode) ()) (defmethod bpirate-mode-start ((obj bpirate-test-mode) stream &key long-test...
799
Common Lisp
.lisp
21
32.428571
72
0.658473
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
c12cee16d2e5fa29e6fc1371beb6c1075a1a05ad5fd5854c9686205aa16434db
29,133
[ -1 ]
29,134
bpirate-pwm.lisp
grepz_bpirate-cl/src/bpirate-pwm.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defparameter +BP-OSC-FREQ+ 32000000) (defparameter +BP-PRESCALER-VALUES+ '(1 0 8 1 64 2 256 3)) ;; Plist (defparameter +BB-PWM-CMD+ #b10010) (defparameter +BB-PWM-CLR-CMD+ #b10011) (defclass bpirate-pwm-mode (bpirate-mode) ...
1,314
Common Lisp
.lisp
31
37.774194
80
0.643192
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
41825f8007b8907b3e183b30246ceceed10a2a488dce19e5496b2f9e53919c97
29,134
[ -1 ]
29,135
test.lisp
grepz_bpirate-cl/src/test.lisp
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (in-package #:bpirate-cl) (defparameter *test* nil) ;; XXX: Start (setq *test* nil) (setq *test* (make-instance 'bpirate :path "/dev/bp4" :bbmode t)) (bpirate-status *test*) ;; XXX: PWM (bpirate-init-mode *test* :pwm) (bpirate-mode-start (bpirate-mode *t...
2,285
Common Lisp
.lisp
62
32.951613
70
0.638462
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
a42c4939dd5a10180ba14a5a129b4d111d004456f6d477695d200eb0e1c6af53
29,135
[ -1 ]
29,136
bpirate-cl.asd
grepz_bpirate-cl/bpirate-cl.asd
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8 -*- (asdf:defsystem bpirate-cl :version "0" :description "BusPirate v4 binary interface" :maintainer "Stanislav M. Ivankin <lessgrep@gmail.com>" :author "Stanislav M. Ivankin <lessgrep@gmail.com>" :licence "GPLv2" :depends-on (:sb-posix :flexi-stream...
696
Common Lisp
.asd
22
26.454545
60
0.625557
grepz/bpirate-cl
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
c22cbc0f4f40bd019a82d1d4a583121a65960dcf5571d87dc27438b4431902fb
29,136
[ -1 ]
29,163
documentation-builder.lisp
foss-santanu_code-tools/code-docs/documentation-builder.lisp
;;; This is a wrapper around USER-MANUAL and XREF ;;; Collects the outputs from the tools in strings ;;; then preprocesses the strings to save in Markdown format (cl:defpackage "CODE-DOCS" (:use "COMMON-LISP") (:export #:create-xrefdb-for-source #:save-docs-for-source #:build-documentation)) ...
5,377
Common Lisp
.lisp
100
44.6
100
0.634239
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
49ed7b4b0c54b70661b0e21bec9136cad32dc15c0090b7c037fd398142cf899f
29,163
[ -1 ]
29,164
xref-patterns-for-macl.lisp
foss-santanu_code-tools/xref/xref-patterns-for-macl.lisp
;;; Thu Nov 15 21:50:05 1990 by Mark Kantrowitz <mkant@A.GP.CS.CMU.EDU> ;;; xref-patterns-for-macl.lisp ;;; **************************************************************** ;;; XREF Patterns for MACL ObjectLisp Functions ******************** ;;; **************************************************************** ;;; ;;; W...
3,142
Common Lisp
.lisp
82
35.841463
71
0.700033
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
aef89be7fe97ca7901fd7b1e162f6b24daf1b5834e957482c9b986e7e461889f
29,164
[ -1 ]
29,165
xref-test.lisp
foss-santanu_code-tools/xref/xref-test.lisp
;;; Mon Jan 21 15:43:39 1991 by Mark Kantrowitz <mkant@GLINDA.OZ.CS.CMU.EDU> ;;; xref-test.lisp ;;; **************************************************************** ;;; Test Source File for XREF ************************************** ;;; **************************************************************** ;;; ;;; This fil...
2,393
Common Lisp
.lisp
98
20.693878
76
0.575678
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
d31f656f463ba36743dc665ddf6088c117d2b9ef52677b077a3148e75940b3b9
29,165
[ 216987 ]
29,166
code-docs.asd
foss-santanu_code-tools/code-docs/code-docs.asd
;; ASDF system definition file for CODE-DOCS ;; so that XREF can be loaded with ql:quickload (defpackage #:code-docs-sys (:use :cl :asdf)) (in-package :code-docs-sys) (defsystem #:code-docs :serial t :description "Documentation generator for a Lisp codebase" :author "Santanu Chakrabarti <santanu.chakrabarti@...
449
Common Lisp
.asd
14
29.642857
63
0.732102
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
dfdfcbfda832975af8a768e2563b2a884f8fce7d41773ec4038248869788c9b6
29,166
[ -1 ]
29,167
user-man.asd
foss-santanu_code-tools/user_man/user-man.asd
;; ASDF system definition file for USER-MAN ;; so that XREF can be loaded with ql:quickload (defpackage #:user-man-sys (:use :cl :asdf)) (in-package :user-man-sys) (defsystem #:user-man :serial t :components ((:file "user-manual")))
241
Common Lisp
.asd
8
28.125
47
0.714286
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
4be22eabf7f25996bdffcf6198a9dc12e777ed228563082484dd3cce1fe09db0
29,167
[ -1 ]
29,168
xref.asd
foss-santanu_code-tools/xref/xref.asd
;; ASDF system definition file for XREF ;; so that XREF can be loaded with ql:quickload (defpackage #:xref-asd (:use :cl :asdf)) (in-package :xref-asd) (defsystem #:xref :serial t :components ((:file "xref") (:file "xref-patterns-for-macl")))
267
Common Lisp
.asd
9
26
49
0.666667
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
5257e90d6136134dc4e38a2c9c0584e83b4f14bacb9f5b77d9455d16cb534062
29,168
[ -1 ]
29,171
user_manual.md
foss-santanu_code-tools/user_manual.md
## Rudimentary Documentation for XREF.LISP *Containing Directory /host/santanu/programming/Lisp/code-tools/xref/* ### API Documentation #### LOOKUP (symbol environment) [FUNCTION] --- #### CAR-EQ (list item) [FUNCTION] --- #### \*...
46,604
Common Lisp
.l
779
57.58665
389
0.710083
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
938032ede714d1bbe9d975d3c17ad4843c6bcde6d97cab7658a61f304aafa4e4
29,171
[ -1 ]
29,173
user-manual.ps
foss-santanu_code-tools/user_man/user-manual.ps
%! PS-Adobe-2.0 %%Creator: dvips by Radical Eye Software %%Title: zut.dvi %%Pages: 4 -1 %%BoundingBox: 0 0 612 792 %%EndComments %%BeginDocument: texc.pro /TeXDict 200 dict def TeXDict begin /bdf{bind def}def /@rigin{72 Resolution div dup neg scale translate}bdf /@letter{Resolution dup -10 mul @rigin}bdf /@landscape{[0...
39,490
Common Lisp
.l
525
74.207619
78
0.843783
foss-santanu/code-tools
0
0
0
GPL-2.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
36f7690c59bddb82e22b0bbb88b0aba5aeef9449c65246256057758706a267c8
29,173
[ -1 ]
29,190
example-schema.lisp
mpemer_delta-base/example-schema.lisp
((:create-table mkt ((id :type integer) (symbol :type text) (desc :type (or s-sql:db-null text)))) (:create-table bs_ass_val ((id :type integer) (bs_id :type integer) (name :type text) (value :type numeric))) (:create-table bs ((id :type integer) (instr_id :type integer) (date :type d...
1,528
Common Lisp
.lisp
58
22.310345
47
0.636301
mpemer/delta-base
0
0
0
GPL-3.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
d1cc86db3d62d925c9eda6290f66b1d7b876458150e8939560565a246e2f5d38
29,190
[ -1 ]
29,191
delta-base.lisp
mpemer_delta-base/delta-base.lisp
;;; -*- Mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (C) by Marcus Pemer <mpemer@gmail.com> ;;; ;;; This file is part of DELTA-BASE. ;;; ;;; DELTA-BASE is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundat...
6,761
Common Lisp
.lisp
168
36.059524
111
0.693191
mpemer/delta-base
0
0
0
GPL-3.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
c462e50fcad4524dea9ae8046d8f4bd07021595bec71ddd2f4b438ba692746c3
29,191
[ -1 ]
29,192
bundle.lisp
mpemer_delta-base/bundle.lisp
;;; -*- Mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (C) by Marcus Pemer <mpemer@gmail.com> ;;; ;;; This file is part of DELTA-BASE. ;;; ;;; DELTA-BASE is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundat...
3,985
Common Lisp
.lisp
100
36.2
88
0.685974
mpemer/delta-base
0
0
0
GPL-3.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
7526c4154391fddf1cc2fa617e25d9358db10d262cdeb3cc924e97424a273495
29,192
[ -1 ]
29,193
test.lisp
mpemer_delta-base/test.lisp
(in-package :delta-base) (define-test schema-diff (assert-equal ;; equal nil (schema-diff '((:CREATE-TABLE MKT ((ID :TYPE INTEGER) (SYMBOL :TYPE TEXT) (DESC :TYPE (OR DB-NULL TEXT))))) '((:CREATE-TABLE MKT ((ID :TYPE INTEGER) (SYMBOL :TYPE TEXT) (DESC :TYPE (OR DB-NULL TEXT))))))) (...
1,576
Common Lisp
.lisp
40
34.575
85
0.622295
mpemer/delta-base
0
0
0
GPL-3.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
c979a0773ad2c88e73cb476988d5d30d136c4c82b16ba377d56d9c9a0123d04f
29,193
[ -1 ]
29,194
delta-base.asd
mpemer_delta-base/delta-base.asd
(in-package :asdf) (defsystem "delta-base" :name "delta-base" :version "0.0.0" :maintainer "Marcus Pemer <mpemer@gmail.com>" :author "Marcus Pemer <mpemer@gmail.com>" :description "Delta-base" :long-description "Lisp implementation of database schema delta calculation" :depends-on (:iterate :post...
436
Common Lisp
.asd
13
29.307692
78
0.684086
mpemer/delta-base
0
0
0
GPL-3.0
9/19/2024, 11:37:25 AM (Europe/Amsterdam)
a62d42913f558e947d4fa27a9d6fceeab35685233e7f511f6d70547354a0765f
29,194
[ -1 ]
29,215
main.lisp
KaiQ_search_algorithms/main.lisp
#!/usr/bin/sbcl --script (load "algorithmen.lisp") (format t "OCC: ~A~%" *occ*) (format t "Border: ~A~%" *border*) (format t "Border: ~A~%" *strong-border*) (timing (format t "Schiebe:~%~5TErgebnis: ~A~%~%" (schiebe *alphabet* *such*))) (format t "~%Anzahl = ~A~%" (get-Anzahl)) (timing (format t "Schiebe last-o...
745
Common Lisp
.lisp
13
55.846154
119
0.629477
KaiQ/search_algorithms
0
0
0
GPL-3.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
90efe7e4ff46049d9402361c202d0e2b65d90323cb1b5f35df177967b7170a38
29,215
[ -1 ]
29,216
algorithmen.lisp
KaiQ_search_algorithms/algorithmen.lisp
(load "lib.lisp") (defun schiebe (alphabet such) (get_map alphabet such)) (defun last-occ (such) (let ((m (length such))) (remove-duplicates (loop for i from 0 to (- m 2) for p = (position (aref such i) such :from-end t :end (- m 1)) collect (list (aref such i) (if (null p) m (-...
2,531
Common Lisp
.lisp
75
25.813333
110
0.509202
KaiQ/search_algorithms
0
0
0
GPL-3.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
7de8f82e4ff3209c995e8aeb7d66bec36be83eba7fbd5b6d63f6cb3520308156
29,216
[ -1 ]
29,217
lib.lisp
KaiQ_search_algorithms/lib.lisp
(defparameter *alphabet* "aaaaaaaaaa@@łłµµæſðæðđŋſđħ€¶ŧł←ŧþ€¶đðøħðđ«„↓ſð„↓ſð↓ŋſ↓ðaabbbbbbbbbbbbccccccccccccdddddddddabcabcabababcdabab") (defparameter *such* "abcd") (if (third *posix-argv*) (setf *alphabet* (make-string-input-stream (third *posix-argv*))) (setf *alphabet* *standard-input*)) (if (second *posi...
2,405
Common Lisp
.lisp
73
23.575342
113
0.519417
KaiQ/search_algorithms
0
0
0
GPL-3.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
ac8604678b7c7f3323d619d2807beffb7d06592ef020187e76a6c403941cbc43
29,217
[ -1 ]
29,236
digest-file.lisp
leongithub_cl-exercise/digest-file.lisp
;;;; cl版本的 sha1 和 md5 校验码,可以在 windows 上用 cl 方便的校验文件 (defun sha1sum (pathname) (digest-sum :sha1 pathname)) (defun md5sum (pathname) (digest-sum :md5 pathname)) (defmacro digest-sum (digest-name pathname) (let ((digester (gensym))) `(let ((,digester (ironclad:make-digest ,digest-name))) (ironclad:byt...
437
Common Lisp
.lisp
10
35.9
59
0.703125
leongithub/cl-exercise
0
0
0
GPL-2.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
f89855878a69676d3c5fdb7f6fe2405cfa613227bf718bcdca090e9eaf3ddadc
29,236
[ -1 ]
29,237
web-spider.lisp
leongithub_cl-exercise/web-spider/web-spider.lisp
;;;; web-spider.lisp ;; 用法: ;; (ql:quickload :web-spider) ;; (in-package :web-spider) ;; (sicp-exercise-*) (in-package #:web-spider) ;;; "web-spider" goes here. Hacks and glory await! ;; 由于搬新家,可能暂时没有网络,所以写个迷你爬虫,把 sicp 的习题爬下来 ;; 当然,这个小程序离真正的爬虫还远,只满足目前的需求 (defparameter *base-path* "/Users/leon/Documents/sicp-exercis...
2,775
Common Lisp
.lisp
63
34.015873
80
0.675352
leongithub/cl-exercise
0
0
0
GPL-2.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
ae4bf87d291f5194f128b21a8dec5bb5b936ac51b86860cb17466b7df9e17509
29,237
[ -1 ]
29,238
web-spider.asd
leongithub_cl-exercise/web-spider/web-spider.asd
;;;; web-spider.asd (asdf:defsystem #:web-spider :description "Describe web-spider here" :author "Your Name <your.name@example.com>" :license "Specify license here" :depends-on (#:drakma #:cl-ppcre) :serial t :components ((:file "package") (:file "web-spider")))
307
Common Lisp
.asd
10
25.3
45
0.630508
leongithub/cl-exercise
0
0
0
GPL-2.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
ad8c4f69645b51622fd503ae2648affc4050e88d05a228f5c5b3f9483df72783
29,238
[ -1 ]
29,256
initfn.lisp
thinkum_ltp-main/src/test/lsp/initfn.lisp
;; initfn.lisp - prototypes onto portable &env application (in-package #:ltp/common) (defmacro frob-env (&environment env) `(values ,env)) (defun mk-initfunction-lambda (form environment) (multiple-value-bind (vars vals store-vars writer-form reader-form) (get-setf-expansion form environment) (declare...
1,905
Common Lisp
.lisp
41
41.634146
76
0.691391
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
eda1a1f48872a308a0b6a926f2daf94ad2cb8ec2a28607d6442bc72bf6872ba7
29,256
[ -1 ]
29,257
with-condition-restart.lisp
thinkum_ltp-main/src/test/lsp/with-condition-restart.lisp
;; with-condition-restart.lisp -- portable condition/restart integration ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of t...
12,926
Common Lisp
.lisp
239
42.34728
80
0.598659
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
825fcefd985f2c32139f8a67233fc9fe658ba76e9eae43413466fe3b51bf7383
29,257
[ -1 ]
29,258
acc-package.lisp
thinkum_ltp-main/src/main/lsp/base-class/acc-package.lisp
;; acc-package.lisp - Package Definition for ltp-base-class-acc system ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the...
1,012
Common Lisp
.lisp
26
36.653846
80
0.61687
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
53fcd3b04bdfc8d0fd43e9517ab8db7f3c1ecb4ecae7a31921eca45c6d3ea6a0
29,258
[ -1 ]
29,259
acc-gen.lisp
thinkum_ltp-main/src/main/lsp/base-class/acc-gen.lisp
;; acc-gen.lisp - Accessor Function Definition for ltp-base-class-fdef system ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms...
34,361
Common Lisp
.lisp
742
39.854447
89
0.662267
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
7b7298d09418fef79941d85f76372b7c769dce2d5ca20e7eb587993cedf45466
29,259
[ -1 ]
29,260
defsys-ex.lisp
thinkum_ltp-main/src/main/lsp/common/defsys-ex.lisp
;; defsys-ex.lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this d...
19,224
Common Lisp
.lisp
432
40.923611
814
0.597125
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
70f9c9484cacac2fa026d955ee7bf871cbbf24ec630553825819b24d431696fc
29,260
[ -1 ]
29,261
common-type-sbcl.lisp
thinkum_ltp-main/src/main/lsp/common/common-type-sbcl.lisp
;; common-type-sbcl.lisp - Implementation-specific type system reflection, SBCL ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; ter...
6,256
Common Lisp
.lisp
163
34.478528
93
0.623443
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
f90c69ea330ae8ff70673450bf422860b44be638d5be4db46b55a33d5e394e7f
29,261
[ -1 ]
29,262
common-opt.lisp
thinkum_ltp-main/src/main/lsp/common/common-opt.lisp
;; common-opt.lisp - onto compiler optimizations ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public Licens...
1,776
Common Lisp
.lisp
44
37.022727
80
0.621951
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
29aae56266365da527362cff5e6dc4ca9d7444e7120e9315be62de3f8cf6ad94
29,262
[ -1 ]
29,263
common-misc.lisp
thinkum_ltp-main/src/main/lsp/common/common-misc.lisp
;; common-misc.lisp - lisp compiler integration (misc) ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public ...
5,674
Common Lisp
.lisp
131
33.251908
80
0.549076
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
676c078c43a85784ea20249df8e801e8a1909ba30ff5c28fa6cb032d7fda41a3
29,263
[ -1 ]
29,264
common-condition.lisp
thinkum_ltp-main/src/main/lsp/common/common-condition.lisp
;; codition-utils.lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies t...
4,665
Common Lisp
.lisp
112
37
80
0.690539
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
a472ce3b372f5fa70d024f622d20c40dd72b6d75b66e17cf28479776a7f61326
29,264
[ -1 ]
29,265
common-print.lisp
thinkum_ltp-main/src/main/lsp/common/common-print.lisp
;; print-utils.lisp - utilities for object printing ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public Lic...
13,648
Common Lisp
.lisp
335
37.137313
86
0.694661
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
6839174600819013681e8db6d833fd9016b570caca678f266e1089d7b783f15f
29,265
[ -1 ]
29,266
common-package.lisp
thinkum_ltp-main/src/main/lsp/common/common-package.lisp
;; common-package.lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies t...
3,320
Common Lisp
.lisp
116
24.818966
94
0.66436
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
d8f0740df7d85c881553a1eac3304ae039d155cd0c0763e279521460bf61f997
29,266
[ -1 ]
29,267
common-fn.lisp
thinkum_ltp-main/src/main/lsp/common/common-fn.lisp
;; fn-utils.lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this di...
5,584
Common Lisp
.lisp
161
30.52795
80
0.639043
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
25f7066f4e2078754d385516b051e97d75295b09dc3c7cb493570ee877379784
29,267
[ -1 ]
29,268
common-stream.lisp
thinkum_ltp-main/src/main/lsp/common/common-stream.lisp
;; stream-utils.lisp - stream utilities ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 wh...
1,722
Common Lisp
.lisp
46
34.5
80
0.635762
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
62d075f4cd43a891b53d1bc758fe03af44b56bdf0ab0bc7e795aaf2b2e176dfa
29,268
[ -1 ]
29,269
common-list.lisp
thinkum_ltp-main/src/main/lsp/common/common-list.lisp
;; common-list.lisp - utilities for Common Lisp lists ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public L...
4,649
Common Lisp
.lisp
123
29.357724
80
0.491767
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
e3cf5f1710b4942117d12777ee43e6068e20a27229d74e4265465ca10d648d4f
29,269
[ -1 ]
29,270
common-macro.lisp
thinkum_ltp-main/src/main/lsp/common/common-macro.lisp
;; macro-utils.lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this...
5,193
Common Lisp
.lisp
119
38.07563
80
0.629652
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
193b7da91b83d810f17eea64ce2e32b29c8c1c220f2877774a2ac6ed05083882
29,270
[ -1 ]
29,271
common-name.lisp
thinkum_ltp-main/src/main/lsp/common/common-name.lisp
;; name-utils.lisp - symbol/name utilities ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0...
32,176
Common Lisp
.lisp
581
51.387263
128
0.689966
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
b3cfc08c98d142690b752d3292c82ea954e1aed41befb80b0906b8c0e5d06c6e
29,271
[ -1 ]
29,272
common-reader.lisp
thinkum_ltp-main/src/main/lsp/common/common-reader.lisp
;; reader-utils.lisp - reader utilities ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 wh...
6,561
Common Lisp
.lisp
167
35.479042
113
0.637192
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
e5c1eb79433e974fcb29f953a4474c89f7382e40a00e40ab8ed8538af9edca73
29,272
[ -1 ]
29,273
common-string.lisp
thinkum_ltp-main/src/main/lsp/common/common-string.lisp
;; common-string.lisp - string utilities for Common Lisp programs ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Ecli...
6,233
Common Lisp
.lisp
165
32.769697
80
0.614264
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
a36bd2501fb1d1027aee704d873cc2ada7655af6b25bbb84a047a0dd21f4c893
29,273
[ -1 ]
29,274
common-sym.lisp
thinkum_ltp-main/src/main/lsp/common/common-sym.lisp
;; common-sym.lisp - utilities for Common Lisp Symbols ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public ...
2,448
Common Lisp
.lisp
66
32.136364
80
0.608291
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
9fac955c21555a9bfb9a88643b095bfc1c5815ac3f46c73e355658d7768f67e0
29,274
[ -1 ]
29,275
common-clos.lisp
thinkum_ltp-main/src/main/lsp/common/common-clos.lisp
;; clos-utils.lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this ...
3,287
Common Lisp
.lisp
75
37.066667
80
0.616881
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
a132a9d7a49c6e76b9010f65bf95d2ab40ce0de6421a0cb12dc506e8f607b756
29,275
[ -1 ]
29,276
common-type.lisp
thinkum_ltp-main/src/main/lsp/common/common-type.lisp
;; common-type.lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this...
2,443
Common Lisp
.lisp
62
36.403226
80
0.663421
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
fd4d7b6b0dc48a062cadf43f2f329eb203b65bc458c7a8f6fb549633423fa29e
29,276
[ -1 ]
29,277
common-seq.lisp
thinkum_ltp-main/src/main/lsp/common/common-seq.lisp
;; common-seq.lisp - utilities generalized for Common Lisp sequnces ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Ec...
4,611
Common Lisp
.lisp
85
50.847059
80
0.732254
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
22ddf8bf0eee6635963c888c730800c973553e551ebb99b35580e170b5b070d3
29,277
[ -1 ]
29,278
ltp-proc.lisp
thinkum_ltp-main/src/main/lsp/common/ltp-proc.lisp
;; ltp-proc.lisp - ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2018 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this ...
3,644
Common Lisp
.lisp
63
55.31746
222
0.668158
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
437c4b3570d5b1df587afa6c07254aaefc52f9876a702308b1578bfce54a14d2
29,278
[ -1 ]
29,279
common-vec.lisp
thinkum_ltp-main/src/main/lsp/common/common-vec.lisp
;; common-vec.lisp - utilities for Common Lisp vectors ;;----------------------------------------------------------------------------- ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public L...
2,005
Common Lisp
.lisp
53
33.207547
80
0.581095
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
47fbceb10471334d08bc8411ccba5dc5bea31edad373edae8d33246eda3f6750
29,279
[ -1 ]
29,280
common-mop-package.lisp
thinkum_ltp-main/src/main/lsp/mop/common/common-mop-package.lisp
;; mop-pkg.lisp - package definition for info.metacommunity.cltl.utils.mop ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of...
2,504
Common Lisp
.lisp
76
28.276316
80
0.62966
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
5e11ba7657c78901c75a238e48f9d6f55ac2122757590107d9ad5adce2e6f49a
29,280
[ -1 ]
29,281
spec-mop.lisp
thinkum_ltp-main/src/main/lsp/mop/common/spec-mop.lisp
;; spec-mop.lisp - a demonstration about standard MOP method calls (in-package #:ltp/common/mop) (defgeneric frob-call (a b c)) (macrolet ((mk-specialization (types) (let ((vardecls (mapcar #'(lambda (typ) (list (gensym (symbol-name typ)) ...
1,651
Common Lisp
.lisp
40
32.575
73
0.565625
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
01e7b19cb5055a742b541edc5919d5b02db55714bc3a10fe34a8aef8c3d65521
29,281
[ -1 ]
29,282
finalize.lisp
thinkum_ltp-main/src/main/lsp/mop/common/finalize.lisp
(in-package #:ltp/common/mop) ;; (defgeneric finalize-reachable-subclass (sub super)) (define-condition class-finalization-condition () ((class :initarg :class :reader class-finalization-condition-class))) (define-condition class-finalization-error (error class-finalization-condition) ()) (define-...
2,623
Common Lisp
.lisp
62
36.032258
71
0.682802
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
6abd97217942f3ac4a272fdfb9edc26b48cda62ee094c250bb868a1eeb627a91
29,282
[ -1 ]
29,283
spec.lisp
thinkum_ltp-main/src/main/lsp/mop/common/spec.lisp
;; spec.lisp - local prototypes for method specialization onto MOP ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Ecl...
74,918
Common Lisp
.lisp
1,631
35.011036
101
0.583395
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
7bb5784eed2cb797d510a58c45074de162de38da5baf541f9c0911c8c45ad4e6
29,283
[ -1 ]
29,284
mop-utils.lisp
thinkum_ltp-main/src/main/lsp/mop/common/mop-utils.lisp
;; mop-utils.lisp - utilities onto MOP implementations ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public ...
3,194
Common Lisp
.lisp
71
37.014085
80
0.59897
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
d04ff0df861d8b121b23326e4a4650206ed7919340237136454c226340413160
29,284
[ -1 ]
29,285
aclass.lisp
thinkum_ltp-main/src/main/lsp/mop/index/aclass.lisp
;; aclass.lisp - protocol for generic tabular indexing onto CLOS ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclip...
8,880
Common Lisp
.lisp
218
35.362385
85
0.659814
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
178445ec79c28c665a1a6f1b63ac498f0ee2a4d041f86d366a49d9ee03dcb637
29,285
[ -1 ]
29,286
singleton.lisp
thinkum_ltp-main/src/main/lsp/mop/singleton/singleton.lisp
;; singleton.lisp - ltp-common-mop-singleton protocol definitions ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse P...
65,459
Common Lisp
.lisp
1,478
34.238836
119
0.576609
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
da1702b772694f30ef999a5194d490f833ec9418aa8975ffe59603efe3f2ccf7
29,286
[ -1 ]
29,287
guarding.lisp
thinkum_ltp-main/src/main/lsp/mt/guarding.lisp
;; guarding.lisp - WITH-WRITE-GUARD, OBJECT-POOL, GUARDED-FUNCALL - Impl & Suppt ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; te...
17,065
Common Lisp
.lisp
379
39.709763
95
0.654679
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
3a9f7091dcc9bff3c47aef9966dbabb6cd9e68d73a8683c3233370fff24b9191
29,287
[ -1 ]
29,288
defportable.lisp
thinkum_ltp-main/src/main/lsp/mt/defportable.lisp
;; defportable.lisp - Portable Signature Definition and Implementation in Lisp ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; term...
17,367
Common Lisp
.lisp
458
29.733624
102
0.580459
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
f2a4c1935276116c298bbb7cdf07206f0ef43a5ae9a1344d3c324afafeb4ff40
29,288
[ -1 ]
29,289
common-impl-type.lisp
thinkum_ltp-main/src/main/lsp/impl/common-impl-type.lisp
;; common-impl-type.lisp - Implementation Support for Type Sys. Reflection, SBCL ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; te...
1,675
Common Lisp
.lisp
39
39
80
0.635583
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
2dcd05d4b7321d555a3e39bb61a1435a31ac7dd34f150a027992882db37c56bb
29,289
[ -1 ]
29,290
sstor-enum.lisp
thinkum_ltp-main/src/main/lsp/stor/sstor-enum.lisp
(in-package #:ltp/common) ;; NB: Concerning development of the storage protocol ;; and subsequent applications, refer to ;; ltp-main:src/main/lsp/stor/README.md (defpackage #:ltp/common/mop/enum (:use #:ltp/common/singleton #:ltp/common/mop #:ltp/common #:cl)) (in-package #:ltp/com...
27,652
Common Lisp
.lisp
673
31.506686
80
0.57776
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
5c9b87f55602227cb2eaf6742c7d7c2c73d572895514a58814e0ec48462e227f
29,290
[ -1 ]
29,291
iter.lisp
thinkum_ltp-main/src/main/lsp/stor/iter.lisp
;; iter.lisp - generalized formalisms for typed iteration ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Publ...
20,097
Common Lisp
.lisp
435
35.783908
86
0.587833
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
8e1140ede229aeddf081a141790e9a3c90b3128da04bdf9560cef78de25c8f81
29,291
[ -1 ]
29,292
ext-utils.lisp
thinkum_ltp-main/src/main/lsp/asdf/ext-utils.lisp
;; ext-utils.lisp - utilities onto ASDF ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 wh...
3,266
Common Lisp
.lisp
85
34.152941
80
0.652628
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
6d59267cdc0c3a8140a1bc232d5ac65ad7afbcc8fb3cb41014e06b8c28de05e7
29,292
[ -1 ]
29,293
ltp-asdf-utils-package.lisp
thinkum_ltp-main/src/main/lsp/asdf/ltp-asdf-utils-package.lisp
;; ext-pkg.lisp - defpackage for ASDF extensions [MCi] ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public ...
1,222
Common Lisp
.lisp
40
27.225
80
0.609548
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
141fab90d2d84c8bee6404d843493b37ea673e7b07da868a4f624406b7e299b3
29,293
[ -1 ]
29,294
ext-alias.lisp
thinkum_ltp-main/src/main/lsp/asdf/ext-alias.lisp
;; ext-alias.lisp - system aliasing extension for ASDF ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public ...
1,948
Common Lisp
.lisp
45
37.733333
82
0.611287
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
c56897441f827ba96fbd38ab51fb921db1f9f2da0847bbb0a7fd700ac2a3c5f8
29,294
[ -1 ]
29,295
ext-star.lisp
thinkum_ltp-main/src/main/lsp/asdf/ext-star.lisp
;; ext-star.lisp - platform-specific subclasses for components ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse...
1,153
Common Lisp
.lisp
29
35.793103
80
0.60644
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
d16fa5659dc88d3cd0747f27a46b155ee71077c4fc212504f7be8080eb5c0986
29,295
[ -1 ]
29,296
buffer.lisp
thinkum_ltp-main/src/sandbox/buffer/buffer.lisp
;; an early prototype for a generic buffering library ;; ;; abandoned due to generic complexity, 25 Dec 2015 (in-package #:cl-user) (eval-when (:compile-toplevel :load-toplevel :exeucte) #+asdf (asdf:operate 'asdf:load-op '#:bordeaux-threads) (defpackage #:buffer (:use #:libfoo #:bt #:cl) (:export )...
6,237
Common Lisp
.lisp
154
32.181818
80
0.612823
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
34257f1c726a451e8f5f9ae60d69ba888a2b6bd58d5e4f750707027173a0e303
29,296
[ -1 ]
29,297
eval-proto.lisp
thinkum_ltp-main/src/sandbox/testkit/eval-proto.lisp
(defmacro eval-when-test ((&rest specifers) &body body &enviroment environment) ;; Synopsis / Overview: ;; Generalization of eval-when semmantics onto, in manner, "DevOps" Processes ;; ;; Synopsis / Application: ;; Provide a simple semantics for developing "In...
2,259
Common Lisp
.lisp
52
40.673077
80
0.66818
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
807e32145116ea9810fa12cdbe119975f6f60c144c42496e042883c0ca1eec34
29,297
[ -1 ]
29,298
model-prototype.lisp
thinkum_ltp-main/src/sandbox/uri-impl/model-prototype.lisp
(in-package #:cl-user) (defclass model-class (standard-class) ;; TBD: Model [property] ()) (defclass abstract-model-class (model-class) ()) (defclass element (#+NIL metaclass) ;; protocol class - cf. UML ;; see e.g http://www.uml-diagrams.org/namespace.html () (:metaclass abstract-model-class)) (def...
553
Common Lisp
.lisp
20
24.6
55
0.711027
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
702b7828f5b1ad1c20d5eb8a18eb231af1adfa0b973180d64e439df4932fe3c7
29,298
[ -1 ]
29,299
uri-prototype.lisp
thinkum_ltp-main/src/sandbox/uri-impl/uri-prototype.lisp
(in-package #:cl-user) ;; Generic Identifier Class Model (defclass identifier () ()) (defclass identifier-kind (standard-class) ()) ;; Identifier Class Registry (defconstant %ident-cache-extent% 8) (declaim (type (array ident-kind (*)) %ident)) (defvar %ident% (make-array %ident-cache-extent% ...
2,750
Common Lisp
.lisp
80
29.2875
68
0.658425
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
e1035698f1e170cf1cdc17c8b6638eb914bf186fdd22efe258656a24e820954d
29,299
[ -1 ]
29,300
resolver.lisp
thinkum_ltp-main/src/sandbox/name-resolver/resolver.lisp
(in-package #:cl-user) ;; cf. CORBA Naming Service 1.3 (2004) #| Commentary: FELDSPAR IDL mapping for Common Lisp The following source code proposes a representation for IDL in Common Lisp, alternate to the conventional IDL to Lisp mapping. TO DO: * Implement, Test, and Document the following prototype for...
26,421
Common Lisp
.lisp
681
32.975037
83
0.677533
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
005d0598ca3f5843f4fabfd06565c778f63e639391c3ef506bf802ba8bb19c8d
29,300
[ -1 ]
29,301
advise.lisp
thinkum_ltp-main/src/sandbox/portable-advise/advise.lisp
;; advise.lisp - portable reflective value wrapping for Common Lisp functions (in-package #:cl-user) (eval-when (:compile-toplevel :load-toplevel :execute) (defpackage #:reflexion (:use ;; #:libfoo #:cl ) (:export #:defadvise #:unadvise ))) ;; EVAL-WHEN (in-package #:reflexion) (deftype...
8,251
Common Lisp
.lisp
221
27.248869
84
0.525334
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
ee7405c68502650ef4204ac122a399e921a7835a339ea7097ec1f86e44f87086
29,301
[ -1 ]
29,302
module-asdf.lisp
thinkum_ltp-main/src/sandbox/impl-utils/impl-utils-sbcl/module-asdf.lisp
;; module-asdf.lisp - Provide SBCL contrib systems via ASDF, for REQUIRE ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2018 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of t...
5,747
Common Lisp
.lisp
131
36.541985
178
0.614151
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
298772cd6b6427f18f478fc28cf530e2e0ffc6f49c6c474b36a3317a9342dbe7
29,302
[ -1 ]
29,303
file.lisp
thinkum_ltp-main/src/template/cltl/file.lisp
;; %%BASENAME%% - %%SYNOPSIS%% ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) %%YEAR%% %%WHOM%% and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompan...
655
Common Lisp
.lisp
22
28.681818
80
0.52057
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
546c1d028565101b9801b986062e2bf0ab6519dd1a3db7278a3f630d797c5f06
29,303
[ -1 ]
29,304
file_copynotice.lisp
thinkum_ltp-main/src/template/cltl/file_copynotice.lisp
;;------------------------------------------------------------------------------ ;; ;; Copyright (c) %%YEAR%% %%WHOM%% and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompanies this distribution ;; and is...
523
Common Lisp
.lisp
11
46.454545
80
0.511719
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
36c4ab53ef48e30df93f7adb25abf0de76c4e534e1958d91d00abceaf7e2f60e
29,304
[ -1 ]
29,305
ltp-base-class-acc.asd
thinkum_ltp-main/src/main/lsp/base-class/ltp-base-class-acc.asd
;; ltp-base-class-fdef.asd - Function Definitions after DEFSTRUCT -*-lisp-*- ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; te...
1,058
Common Lisp
.asd
28
34.785714
80
0.588465
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
6bc052bf9a4368dfeb6a8b08a5c28aeaa94f699f50a65f53ad2928d4da51cb51
29,305
[ -1 ]
29,306
ltp-common.asd
thinkum_ltp-main/src/main/lsp/common/ltp-common.asd
;; ltp-common.asd - generic utilitiess system, LTP -*-lisp-*- ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; te...
3,448
Common Lisp
.asd
97
27.402062
80
0.541342
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
2bf079d7d8cd0ea6dd01d85baa5dbd08a2f20f9d258057d2cec0a8a1732997df
29,306
[ -1 ]
29,307
ltp-common-mop.asd
thinkum_ltp-main/src/main/lsp/mop/common/ltp-common-mop.asd
;; ltp-common-mop.asd -*- lisp -*- ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; te...
1,344
Common Lisp
.asd
34
35.647059
80
0.568688
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
227dda52f8729b669701532fba702c2314d3abddcf4fd4aba77ac70c4950a250
29,307
[ -1 ]
29,308
ltp-common-singleton.asd
thinkum_ltp-main/src/main/lsp/mop/singleton/ltp-common-singleton.asd
;; ltp-common-mop.asd -*- lisp -*- ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2019 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms o...
1,165
Common Lisp
.asd
31
33.83871
80
0.552702
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
a8ff5b78f100194e62223eb39286b5e1b61a41cf94c795b3a452574997fadeec
29,308
[ -1 ]
29,310
ltp-asdf-utils.asd
thinkum_ltp-main/src/main/lsp/asdf/ltp-asdf-utils.asd
;; ltp-asdf-utils.asd - LTP utilties for ASDF system definitions -*-lisp-*- ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) 2014-2017 Sean Champ and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; te...
1,223
Common Lisp
.asd
33
33.909091
80
0.589873
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
1057364641356c5f75b32b05cce6214b447414f0d1fcafc8df3278acf63f7ffd
29,310
[ -1 ]
29,316
doclifter_gendocs.sh
thinkum_ltp-main/doc/docbook/ltp-eo/doclifter_gendocs.sh
#!/usr/bin/env bash set -e ## -- DOCLIFTER=/usr/local/bin/doclifter ## -- THIS=$(basename "$0") HERE=$(dirname $(readlink -f "$0")) msg() { echo "#-- ${THIS}: $@" } fail() { msg "$@" 1>&2 exit } fail_doc_not_found(){ fail "Not found: $@" } ## -- ROFF="" for DOCSPEC in "$@"; do SECTION=${DOCSPEC##*...
1,048
Common Lisp
.cl
39
24.179487
82
0.612513
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
b185fdd7996e2699b415f74b37ee6e3c253c0a3078c4bb67b121233efb17dfdc
29,316
[ -1 ]
29,368
file.el
thinkum_ltp-main/src/template/elisp/file.el
;; %%BASENAME%% - %%SYNOPSIS%% ;;------------------------------------------------------------------------------ ;; ;; Copyright (c) %%YEAR%% %%WHOM%% and others. All rights reserved. ;; ;; This program and the accompanying materials are made available under the ;; terms of the Eclipse Public License v1.0 which accompan...
690
Common Lisp
.l
24
27.541667
80
0.52259
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
fab93cb5e9099130d08bcfb04ff2dbae35e1b65f8546da091f18558cb1e4bc90
29,368
[ -1 ]
29,371
rtld.1.xml
thinkum_ltp-main/doc/docbook/ltp-eo/rtld.1.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- lifted from mdoc+troff by doclifter --> <refentry xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en' xml:id='doclifter-rtld1'> <!-- Copyright (c) 1995 Paul Kranenburg All rights reserved. --> <!-- Redistribution and use in source and binary forms, with or with...
18,434
Common Lisp
.l
511
34.996086
109
0.791832
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
5121015a0ab3933e601b0482aea013d1bf2194e982f48a27a2c3aad92c112db0
29,371
[ -1 ]
29,372
ld.1.xml
thinkum_ltp-main/doc/docbook/ltp-eo/ld.1.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- lifted from pod2man+man+troff by doclifter --> <refentry xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en' xml:id='doclifter-ld1'> <refentryinfo><date>2010-10-30</date></refentryinfo> <refmeta> <refentrytitle>LD</refentrytitle> <manvolnum>1</manvolnum> <refmis...
164,054
Common Lisp
.l
3,010
52.139203
457
0.74191
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
e8552323e88397ded97165abbd966ff38bdaaf4b83fb92c241204a9a0228ada2
29,372
[ -1 ]
29,373
dlopen.3.xml
thinkum_ltp-main/doc/docbook/ltp-eo/dlopen.3.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- lifted from mdoc+troff by doclifter --> <refentry xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en' xml:id='doclifter-dlopen3'> <!-- This source code is a product of Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is inclu...
15,473
Common Lisp
.l
455
32.8
103
0.793177
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
e78e7559e5c070c2e34ed18507271a8dbdf47f4629ad12afaff06da90b0c6724
29,373
[ -1 ]
29,374
dlinfo.3.xml
thinkum_ltp-main/doc/docbook/ltp-eo/dlinfo.3.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- lifted from mdoc+troff by doclifter --> <refentry xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en' xml:id='doclifter-dlinfo3'> <!-- Copyright (c) 2003 Alexey Zelkin &lt;phantom@FreeBSD.org&gt; All rights reserved. --> <!-- Redistribution and use in source a...
12,402
Common Lisp
.l
359
33.21727
103
0.77701
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
3f90185ff20a198d6ce331d850fce1c0f7559e1667b2eb67a7fa8688d7887051
29,374
[ -1 ]
29,375
dlfcn.castxml.xml
thinkum_ltp-main/doc/docbook/ltp-eo/dlfcn.castxml.xml
<?xml version="1.0"?> <CastXML format="1.1.4"> <Namespace id="_1" name="::" members="_2 _3 _4 _5 _6 _7 _8 _9 _10 _11 _12 _13 _14 _15 _16 _17 _18 _19 _20 _21 _22 _23 _24 _25 _26 _27 _28 _29 _30 _31 _32 _33 _34 _35 _36 _37 _38 _39 _40 _41 _42 _43 _44 _45 _46 _47 _48 _49 _50 _51 _52 _53 _54 _55 _56 _57 _58 _59 _60 _61 _...
20,541
Common Lisp
.l
233
84.95279
506
0.619805
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
61c462b31f85f9d9251797977b2123f5fc02c5827d169e3aeed37af30aca70f8
29,375
[ -1 ]
29,376
dladdr.3.xml
thinkum_ltp-main/doc/docbook/ltp-eo/dladdr.3.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- lifted from mdoc+troff by doclifter --> <refentry xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en' xml:id='doclifter-dladdr3'> <!-- Copyright (c) 1998 John D. Polstra All rights reserved. --> <!-- Redistribution and use in source and binary forms, with or w...
6,163
Common Lisp
.l
165
36.187879
103
0.789764
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
4e464c2407450745de7030d32cd8bbff2beb006313c6d13cd24625467eb1dbab
29,376
[ -1 ]
29,377
link.5.xml
thinkum_ltp-main/doc/docbook/ltp-eo/link.5.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- lifted from mdoc+troff by doclifter --> <refentry xmlns='http://docbook.org/ns/docbook' version='5.0' xml:lang='en' xml:id='doclifter-link5'> <!-- Copyright (c) 1993 Paul Kranenburg All rights reserved. --> <!-- Redistribution and use in source and binary forms, with or with...
27,911
Common Lisp
.l
844
31.949052
161
0.774877
thinkum/ltp-main
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
85fa4b66c78bec179fe70a49dd9b85e2a8f0c94d53d87b8221f9decb03bf95cd
29,377
[ -1 ]
29,393
test-interface.lisp
thinkum_affta/src/main/cltl/test-interface.lisp
;; test-interface.lisp - interface [AFFTA] (in-package #:mcicl.test) #+NIL ;; Regression test onto ASSOCIATIVE-INDEX (progn (defsuite frob) (deftest frob-1 (frob) (:lambda () (break "FROB"))) ;; test integration with instance indexing protocol (compute-key (deftest frob-1 (frob) (:lambda () (break "FROB"))) ...
18,546
Common Lisp
.lisp
413
34.007264
85
0.568872
thinkum/affta
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
78f9dc71a5f8888ffa4a1f7ecb0699f3b4147a0accdad08d2f52aed3cb4fe4b6
29,393
[ -1 ]
29,394
test-reporting.lisp
thinkum_affta/src/main/cltl/test-reporting.lisp
;; test-reporting.lisp - Test result reporting [AFFTA] (in-package #:mcicl.test) ;; FIXME: Merge into file test-recording.lisp (define-condition test-condition () ((test :initarg :test :reader test-condition-test))) (defgeneric format-test-results (condition stream)) (define-condition test-result (test-c...
2,281
Common Lisp
.lisp
53
37.301887
74
0.69276
thinkum/affta
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
4c1fcbfa5a7feaedb3ff8425d35de889812866ee169fdcc48eccb2cb54940d35
29,394
[ -1 ]
29,395
test-utils.lisp
thinkum_affta/src/main/cltl/test-utils.lisp
;; test-utils.lisp - utility forms [AFFTA] (in-package #:mcicl.test) (defclass closure-container () ;; cf. PREDICATE (?) ;; FIXME: Reevaluate this class' application ((environment :initarg :environment :initform nil :accessor container-environment))) ;;; % Set Equivalence Operations (defmacro do-se...
2,958
Common Lisp
.lisp
80
31.6375
75
0.633788
thinkum/affta
0
0
0
EPL-1.0
9/19/2024, 11:37:33 AM (Europe/Amsterdam)
db88c6046bafac069acdea7a9fc1b1f7c4cd7b5cefbc80483709b07e08df8a3e
29,395
[ -1 ]