hexsha
stringlengths 40
40
| size
int64 11
739k
| ext
stringclasses 5
values | lang
stringclasses 1
value | max_stars_repo_path
stringlengths 5
137
| max_stars_repo_name
stringclasses 556
values | max_stars_repo_head_hexsha
stringclasses 556
values | max_stars_repo_licenses
sequencelengths 1
4
| max_stars_count
int64 1
16.6k
⌀ | max_stars_repo_stars_event_min_datetime
stringclasses 272
values | max_stars_repo_stars_event_max_datetime
stringclasses 272
values | max_issues_repo_path
stringlengths 5
137
| max_issues_repo_name
stringclasses 557
values | max_issues_repo_head_hexsha
stringclasses 557
values | max_issues_repo_licenses
sequencelengths 1
4
| max_issues_count
int64 1
3.68k
⌀ | max_issues_repo_issues_event_min_datetime
stringclasses 158
values | max_issues_repo_issues_event_max_datetime
stringclasses 158
values | max_forks_repo_path
stringlengths 5
137
| max_forks_repo_name
stringclasses 557
values | max_forks_repo_head_hexsha
stringclasses 557
values | max_forks_repo_licenses
sequencelengths 1
4
| max_forks_count
int64 1
4.07k
⌀ | max_forks_repo_forks_event_min_datetime
stringclasses 207
values | max_forks_repo_forks_event_max_datetime
stringclasses 207
values | content
stringlengths 11
739k
| avg_line_length
float64 4.67
9.43k
| max_line_length
int64 8
376k
| alphanum_fraction
float64 0
0.89
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
850335263cde3c7e3251e33d6533a815418fba52 | 145 | cbl | COBOL | scripts/testsbe/cobol/test1.cbl | BharathEluri/dbb-zappbuild-1 | d1916283eea383eca14f9fd412b2bf7cfd776fe1 | [
"Apache-2.0"
] | null | null | null | scripts/testsbe/cobol/test1.cbl | BharathEluri/dbb-zappbuild-1 | d1916283eea383eca14f9fd412b2bf7cfd776fe1 | [
"Apache-2.0"
] | null | null | null | scripts/testsbe/cobol/test1.cbl | BharathEluri/dbb-zappbuild-1 | d1916283eea383eca14f9fd412b2bf7cfd776fe1 | [
"Apache-2.0"
] | null | null | null | IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO1.
PROCEDURE DIVISION.
DISPLAY "Hello world!".
STOP RUN. | 24.166667 | 34 | 0.537931 |
a2496b01297fc79572dbb33dbb38113184736447 | 1,383 | cob | COBOL | Report_1/Step_2/nonUseFunc_Or_useFunc/nonUseFunc_Or_useFunc.cob | alstn2468/CSE_Programming_Language | 2d38cd8c7109f1715bced8ffa6cc388df7f82f8e | [
"MIT"
] | null | null | null | Report_1/Step_2/nonUseFunc_Or_useFunc/nonUseFunc_Or_useFunc.cob | alstn2468/CSE_Programming_Language | 2d38cd8c7109f1715bced8ffa6cc388df7f82f8e | [
"MIT"
] | null | null | null | Report_1/Step_2/nonUseFunc_Or_useFunc/nonUseFunc_Or_useFunc.cob | alstn2468/CSE_Programming_Language | 2d38cd8c7109f1715bced8ffa6cc388df7f82f8e | [
"MIT"
] | null | null | null | IDENTIFICATION DIVISION.
PROGRAM-ID. nonUseFunc
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 N PIC 9(3) VALUE ZERO.
77 I PIC 9(3) VALUE ZERO.
PROCEDURE DIVISION.
MAIN-PARA.
PERFORM ACCEPT-PARA.
PERFORM PROCESS-PARA.
STOP RUN.
ACCEPT-PARA.
DISPLAY 'ENTER N VALUE'.
ACCEPT N.
PROCESS-PARA.
MOVE 1 TO I.
PERFORM UNTIL I > N
DISPLAY I
ADD 1 TO I
END-PERFORM.
END PROGRAM nonUseFUnc
identification division.
program-id. useFunc
data division.
01 x comp-1 value 1.
88 done value 0.
01 y comp-1.
01 z comp-1.
01 mul_or_div pic x(8).
procedure division.
perform until done
display 'Enter first number (enter 0 to end the program): '
accept value of x
if not done
display 'Enter second number (not 0 if dividing): '
accept value of y
display 'Enter mul or div: '
accept value of mul_or_div
if mul_or_div equals 'mul'
call 'mul' using x y z
display value 'Product is: ' z
else
call 'div' using x y z
display value 'Quotient is: ' z.
exit program.
identification division.
program-id. div.
data division.
linkage section.
01 a comp-1.
01 b comp-1.
01 c comp-1.
procedure division using a b c.
compute c = a/b.
exit program.
| 21.276923 | 67 | 0.616052 |
cc6df4c383e1483c369b88a7ba2e46dd82c7a2c4 | 436 | cpy | COBOL | temp.yml.cpy | hackleman/server | 056b874c29cc074e16d59c3ff475af3d5d9d734d | [
"MIT"
] | null | null | null | temp.yml.cpy | hackleman/server | 056b874c29cc074e16d59c3ff475af3d5d9d734d | [
"MIT"
] | 1 | 2021-05-08T21:34:04.000Z | 2021-05-08T21:34:04.000Z | temp.yml.cpy | hackleman/server | 056b874c29cc074e16d59c3ff475af3d5d9d734d | [
"MIT"
] | 1 | 2020-04-12T01:19:01.000Z | 2020-04-12T01:19:01.000Z | version: '3'
services:
app:
container_name: docker-node-mongo
restart: always
build: .
ports:
- '4000:4000'
- '5000:5000'
- '8001:8001'
oracle-xe:
container_name: oracle-xe
image: hackleman/oracleproject
ports:
- '32118:1521'
- '35518:5500'
volumes:
- ../data/oracle:/opt/oracle/oradata
environment:
- ORACLE_PWD=Oracle18
| 18.956522 | 43 | 0.543578 |
8898a5e6683ebe7ccfc0b9d93d1003eb5c1fd568 | 2,049 | cbl | COBOL | chapter-04/GroupItems/src/GroupItems.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2022-01-04T20:05:39.000Z | 2022-01-21T10:03:14.000Z | chapter-04/GroupItems/src/GroupItems.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | null | null | null | chapter-04/GroupItems/src/GroupItems.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2021-10-06T00:55:11.000Z | 2022-01-31T16:44:59.000Z | *****************************************************************
* *
* Copyright (C) 2020-2022 Micro Focus. All Rights Reserved. *
* This software may be used, modified, and distributed *
* (provided this notice is included without modification) *
* solely for demonstration purposes with other *
* Micro Focus software, and is otherwise subject to the EULA at *
* https://www.microfocus.com/en-us/legal/software-licensing. *
* *
* THIS SOFTWARE IS PROVIDED "AS IS" AND ALL IMPLIED *
* WARRANTIES, INCLUDING THE IMPLIED WARRANTIES OF *
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, *
* SHALL NOT APPLY. *
* TO THE EXTENT PERMITTED BY LAW, IN NO EVENT WILL *
* MICRO FOCUS HAVE ANY LIABILITY WHATSOEVER IN CONNECTION *
* WITH THIS SOFTWARE. *
* *
*****************************************************************
program-id GroupItems.
Working-storage section.
01 cust-record.
03 cust-name pic x(80).
03 cust-address.
05 address-line pic x(80) occurs 3.
05 zip-code pic x(8).
05 uk-post-code redefines zip-code.
07 outward-code pic x(4).
07 inward-code pic x(4).
03 age pic 9(4) comp-x.
procedure division.
move "Director General" to cust-name
move "BBC" to address-line(1)
move "W1A" to outward-code
move "1AA" to inward-code.
| 55.378378 | 71 | 0.398731 |
52aa0258301e8f85de9785193f480282fab15ea5 | 133 | cbl | COBOL | src/test/resources/io/proleap/cobol/preprocessor/tandem/InlineCommentNoWs.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/preprocessor/tandem/InlineCommentNoWs.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/preprocessor/tandem/InlineCommentNoWs.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. INLINE-COMMENT.
PROCEDURE DIVISION.
*>DISPLAY SOME-TEXT.
DISPLAY SOME-TEXT-2. | 26.6 | 28 | 0.691729 |
6e2794dd67bb7f4e8a2e39a86fff3d3273ffbdc2 | 75 | cob | COBOL | scripts/talon_drag.cob | techannihilation/TA | 2b70333fd2617d0372cc0c9795f5f3b9c158205b | [
"CC-BY-4.0"
] | 38 | 2017-01-20T08:12:28.000Z | 2022-03-05T16:50:40.000Z | scripts/talon_drag.cob | techannihilation/TA | 2b70333fd2617d0372cc0c9795f5f3b9c158205b | [
"CC-BY-4.0"
] | 1,067 | 2016-12-09T20:14:49.000Z | 2022-02-20T12:57:29.000Z | scripts/talon_drag.cob | techannihilation/TA | 2b70333fd2617d0372cc0c9795f5f3b9c158205b | [
"CC-BY-4.0"
] | 68 | 2016-12-10T09:20:25.000Z | 2021-09-07T10:44:52.000Z | < |