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
| load(":rule.bzl", "my_rule", "my_rule2") | |
| my_rule( | |
| name = "test" | |
| ) | |
| my_rule2( | |
| name = "test2" | |
| ) |
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
| load(":my_rule.bzl", "my_rule") | |
| my_rule( | |
| name = "foo", | |
| deps = [":bar"], | |
| ) | |
| my_rule( | |
| name = "bar", |
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
| load(":aspect.bzl", "rule_order1", "rule_order2") | |
| filegroup( | |
| name = "data", | |
| ) | |
| rule_order1( | |
| name = "target_order1", | |
| deps = [":data"], | |
| ) |
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
| sh_test( | |
| name = "foo_test", | |
| srcs = ["foo_test.sh"], | |
| ) | |
| test_suite( | |
| name = "all_tests", | |
| testonly = 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
| raco pkg install: version mismatch for dependency | |
| for package: 2d-lib | |
| mismatch packages: | |
| base (have 6.12, need 6.90.0.19) |
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
| #!/usr/bin/env racket | |
| #lang racket/base | |
| (require | |
| file/convertible | |
| net/base64 | |
| plot/no-gui | |
| ) | |
| (define (write-image img port) |
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
| src/main/native/fsevents.cc:88:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete] | |
| delete pathsArray; | |
| ^ | |
| [] | |
| src/main/native/fsevents.cc:78:29: note: allocated with 'new[]' here | |
| CFStringRef *pathsArray = new CFStringRef[length]; | |
| ^ | |
| 1 warning generated. |
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
| #lang racket | |
| (require | |
| (for-syntax syntax/parse racket/syntax racket/list)) | |
| (begin-for-syntax | |
| (define-syntax-class pattern1 | |
| #:attributes (pred extract vars) | |
| (pattern x:number | |
| #:attr pred #'(lambda (v) (equal? v x)) |
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
| #lang racket | |
| (struct variant-val (variant-name fields) #:transparent) | |
| (struct bytes-val (v) #:transparent) | |
| (define form | |
| #' | |
| (define (parse-function-definition2692 sexp2785) | |
| (match |
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
| git_repository( | |
| name = "repo1", | |
| remote = "https://gist.github.com/bc70d4d577240398b4fa.git" | |
| commit = "36a43017e0f5b42d76fd49fdae7d57003a9e6930" | |
| ) |
NewerOlder