This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root: 6817/9502, runs: 0, nodes-runs: 0, mem: 3235716 => 3187692, mark: 3.3ms, sweep: 1.0ms | |
| root: 6817/9502, runs: 1, nodes-runs: 0, mem: 5433132 => 4310808, mark: 6.9ms, sweep: 2.1ms | |
| actor/open: connection | |
| init-odbc | |
| OPEN-ENVIRONMENT [ | |
| SQLAllocHandle 0 | |
| henv/value = 57279696 | |
| SQLSetEnvAttr 0 | |
| ] | |
| init-odbc: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root: 6817/9502, runs: 0, nodes-runs: 0, mem: 3235604 => 3187580, mark: 5.2ms, sweep: 1.0ms | |
| root: 6817/9502, runs: 1, nodes-runs: 0, mem: 5433124 => 4310800, mark: 5.8ms, sweep: 1.0ms | |
| actor/open: connection | |
| init-odbc | |
| OPEN-ENVIRONMENT [ | |
| SQLAllocHandle 0 | |
| henv/value = 57017552 | |
| SQLSetEnvAttr 0 | |
| ] | |
| init-odbc: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root: 6817/9502, runs: 0, nodes-runs: 0, mem: 3235588 => 3187564, mark: 9.7ms, sweep: 1.0ms | |
| root: 6817/9502, runs: 1, nodes-runs: 0, mem: 5433108 => 4310784, mark: 5.5ms, sweep: 2.2ms | |
| actor/open: connection | |
| init-odbc | |
| OPEN-ENVIRONMENT [ | |
| SQLAllocHandle 0 | |
| henv/value = 57017552 | |
| SQLSetEnvAttr 0 | |
| ] | |
| init-odbc: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "Code to generate an Access Violation" | |
| Note: "Below you will find the DB creation script, tested on SQL Server 2016" | |
| ] | |
| connection: open make port! [ | |
| scheme: 'odbc | |
| target: "driver={SQL Server};server=192.168.x.x\SQLXXXX;database=mytest;uid=someid;pwd=somepw;AutoTranslate=yes" | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;Red [] | |
| Rebol [ | |
| Title: "Args Test" | |
| Notes: { | |
| https://github.com/red/red/wiki/%5BDOC%5D-Guru-Meditations#literal-arguments-and-get-arguments | |
| https://github.com/red/red/issues/1850 | |
| https://github.com/red/red/issues/2622 | |
| https://github.com/red/red/issues/3840 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;Red [] | |
| Rebol [ | |
| Title: "Args Test" | |
| Description: "Test the working of ARGS" | |
| ] | |
| ;---- Z is here for STUB ---- | |
| z: %testfile.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "Delimit elements" | |
| Description: "Delimit and quotes elements for parse" | |
| Version: 1.1 | |
| ] | |
| delimit-elements: func [ | |
| "Delimits and quotes a block of elements to be used with parse" | |
| block [block!] | |
| /local |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "Speed comparison with context keeping" | |
| Description: { | |
| This test compares the same function with and without the | |
| initialization phase | |
| The purpose of this the is to test context reusing: | |
| A function has ofen an check and init phase. In stict loops | |
| many of these checks and inits could be bypassed after the first | |
| one if part of the function context could be passed again | |
| at each run. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "List of function by refinements length" | |
| Description: { | |
| This is a list of function sorted by number of refinements | |
| It was obtained with the help of my parse-specs function | |
| } | |
| Date: 07/02/2025 | |
| RED-VERSION: [ branch: "master" tag: #v0.6.5 ahead: 222 date: 4-Dec-2024/13:53:00 commit: #ba5228d9a1afe5f6005df0f72f47f1c18f3e85a5 ] | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Red [ | |
| Title: "Leak checks" | |
| Description: { | |
| Checks the system/words context for words leaking | |
| * You can use inline in your code or | |
| * Check a block | |
| * Check a file (it must have an #assert [code] test inside and | |
| run at least once | |
| } | |
| Usage: { |
NewerOlder