hexsha stringlengths 40 40 | size int64 3 1.05M | ext stringclasses 163
values | lang stringclasses 53
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 112 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count float64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 113 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count float64 1 116k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 113 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 3 1.05M | avg_line_length float64 1 966k | max_line_length int64 1 977k | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
176339d27c2184ab9879ab5c9fa41cc607835e66 | 5,606 | pas | Pascal | RDTPTerrainClient.pas | randydom/commonx | 2315f1acf41167bd77ba4d040b3f5b15a5c5b81a | [
"MIT"
] | 1 | 2020-08-25T00:02:54.000Z | 2020-08-25T00:02:54.000Z | RDTPTerrainClient.pas | jpluimers/commonx | c49e51b4edcc61b2b51e78590a5168d574b66282 | [
"MIT"
] | null | null | null | RDTPTerrainClient.pas | jpluimers/commonx | c49e51b4edcc61b2b51e78590a5168d574b66282 | [
"MIT"
] | 1 | 2020-08-25T00:02:55.000Z | 2020-08-25T00:02:55.000Z | unit RDTPTerrainClient;
{GEN}
{TYPE CLIENT}
{CLASS TTerrainClient}
{IMPLIB RDTPTerrainClientImplib}
{TEMPLATE RDTP_gen_client_template.pas}
{RQFILE RDTPTerrainRQs.txt}
{END}
interface
uses
TerrainData, PacketHelpers_TerrainData, packet, betterobject, systemx, genericRDTPClient, variants, packethelpers, debug, typex... | 25.026786 | 142 | 0.659294 |
6aa530e752c8c18c3952d4aacb47199ffbcc45d0 | 2,164 | pas | Pascal | windows/src/ext/jedi/jvcl/tests/restructured/examples/RALib/RaEditor/fJvHLEdPropDlgTestMain.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 219 | 2017-06-21T03:37:03.000Z | 2022-03-27T12:09:28.000Z | windows/src/ext/jedi/jvcl/tests/restructured/examples/RALib/RaEditor/fJvHLEdPropDlgTestMain.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 4,451 | 2017-05-29T02:52:06.000Z | 2022-03-31T23:53:23.000Z | windows/src/ext/jedi/jvcl/tests/restructured/examples/RALib/RaEditor/fJvHLEdPropDlgTestMain.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 72 | 2017-05-26T04:08:37.000Z | 2022-03-03T10:26:20.000Z | unit fJvHLEdPropDlgTestMain;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
JvHLEdPropDlg, StdCtrls, Buttons, JvButtons, JvEditor, JvHLEditor,
fJvHLEdPropDlgTestParams, JvRegAuto;
type
TForm1 = class(TForm)
RAHLEditor1: TJvHLEditor;
RAhtButton1: TJvHTButton;
... | 23.021277 | 75 | 0.753697 |
6a1699b82e3904e8e20abe83f3f13c7958e227b6 | 227 | pas | Pascal | test_pascal/data/FIBO4.pas | tranleduy2000/pascalnide | c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01 | [
"Apache-2.0"
] | 81 | 2017-05-07T13:26:56.000Z | 2022-03-03T19:39:15.000Z | test_pascal/data/FIBO4.pas | tranleduy2000/pascalnide | c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01 | [
"Apache-2.0"
] | 52 | 2017-06-13T08:46:43.000Z | 2021-06-09T09:50:07.000Z | test_pascal/data/FIBO4.pas | tranleduy2000/pascalnide | c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01 | [
"Apache-2.0"
] | 28 | 2017-05-22T21:09:58.000Z | 2021-09-07T13:05:27.000Z | const
e = 1000007;
var
f1, f2, f3, n, i : longint;
begin
readln(n);
f1 := 1;
f2 := 1;
f3 := 1;
for i := 3 to n do
begin
f3 := (f1 + f2) mod e;
f1 := f2;
f2 := f3;
end;
write(f3);
readln;
end.
| 11.35 | 29 | 0.45815 |
6ae260ea1f1354a8619f2e0e83f6247be046319c | 3,720 | pas | Pascal | Lib/Classes/2D Barcodes/Detector/ZXing.QrCode.Internal.AlignmentPatternImplementation.pas | grahamegrieve/ZXing.Delphi | fb5f9c82dc799c6d1bfe0efec9a68c7a6b22c990 | [
"Apache-2.0"
] | 12 | 2018-06-30T13:48:57.000Z | 2022-02-27T22:42:05.000Z | Lib/Classes/2D Barcodes/Detector/ZXing.QrCode.Internal.AlignmentPatternImplementation.pas | grahamegrieve/ZXing.Delphi | fb5f9c82dc799c6d1bfe0efec9a68c7a6b22c990 | [
"Apache-2.0"
] | 1 | 2021-10-06T07:25:45.000Z | 2021-10-06T07:25:45.000Z | Lib/Classes/2D Barcodes/Detector/ZXing.QrCode.Internal.AlignmentPatternImplementation.pas | grahamegrieve/ZXing.Delphi | fb5f9c82dc799c6d1bfe0efec9a68c7a6b22c990 | [
"Apache-2.0"
] | 6 | 2018-06-30T11:57:45.000Z | 2021-10-05T19:04:38.000Z | {
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or... | 31.260504 | 107 | 0.726882 |
17463ff5e49cf9422ef7c4d77a9f31453d77f2d0 | 1,901 | pas | Pascal | RN_DetourNavMeshHelper.pas | Kromster80/RecastNavigationDelphi | 495420d3e16454ede6805ad72a3cd9a1eba0bf5d | [
"Zlib"
] | 11 | 2015-12-11T06:39:07.000Z | 2019-07-28T04:35:04.000Z | RN_DetourNavMeshHelper.pas | amwfhv/RecastNavigationDelphi | 495420d3e16454ede6805ad72a3cd9a1eba0bf5d | [
"Zlib"
] | null | null | null | RN_DetourNavMeshHelper.pas | amwfhv/RecastNavigationDelphi | 495420d3e16454ede6805ad72a3cd9a1eba0bf5d | [
"Zlib"
] | 4 | 2015-12-19T17:57:44.000Z | 2018-12-31T14:41:35.000Z | //
// Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
// Permission is granted to anyone to use this software for any purpose... | 31.683333 | 88 | 0.728038 |
6a5616c75aee75eb8b70e41a2b48bbc6677f3d5a | 1,015 | pas | Pascal | test/Basic/testset2.pas | alexkowalenko/lacsap | 77eef134d2bfc66ff032225649816f43320a32e7 | [
"ISC"
] | 25 | 2015-03-07T05:12:30.000Z | 2021-07-14T21:39:39.000Z | test/Basic/testset2.pas | alexkowalenko/lacsap | 77eef134d2bfc66ff032225649816f43320a32e7 | [
"ISC"
] | 1 | 2021-05-20T01:41:29.000Z | 2021-11-05T22:07:37.000Z | test/Basic/testset2.pas | alexkowalenko/lacsap | 77eef134d2bfc66ff032225649816f43320a32e7 | [
"ISC"
] | 5 | 2018-08-25T22:10:09.000Z | 2022-01-03T12:31:47.000Z | program testset2;
Type
Day = (mon,tue,wed,thu,fri,sat,sun);
Days = set of Day;
Procedure PrintDays(W : Days);
Var
D : Day;
first : boolean;
begin
first := true;
write('[');
For D:=mon to sun do
begin
if D in W then
begin
if not first then
write(',');
firs... | 19.901961 | 70 | 0.503448 |
cdde9568df826944f37714b2794db81ee3381721 | 1,039 | pas | Pascal | sdk/components/ElPack/BCBDemos/TrayDays/CalOptions.pas | acidicMercury8/xray-1.5 | ae094d82b76a8ce916e196654c163894bbf00146 | [
"Linux-OpenIB"
] | 10 | 2021-05-04T06:40:27.000Z | 2022-01-20T20:24:28.000Z | sdk/components/ElPack/BCBDemos/TrayDays/CalOptions.pas | acidicMercury8/xray-1.5 | ae094d82b76a8ce916e196654c163894bbf00146 | [
"Linux-OpenIB"
] | null | null | null | sdk/components/ElPack/BCBDemos/TrayDays/CalOptions.pas | acidicMercury8/xray-1.5 | ae094d82b76a8ce916e196654c163894bbf00146 | [
"Linux-OpenIB"
] | 2 | 2021-11-07T16:57:19.000Z | 2021-12-05T13:17:12.000Z | unit CalOptions;
interface
uses
ElCalendar, Graphics, SysUtils, ElCalendarDefs;
type TCalOpts = record
ShowWarning : boolean;
WeekEndColor,
HolidayColor,
PeriodsColor: TColor;
ShowHolidays,
ShowPeriods : boolean;
PeriodInterval,
PeriodLength: i... | 20.372549 | 50 | 0.608277 |
6a09d65b5184a45c4a49d9de33a7a836d7b86df9 | 176,019 | dfm | Pascal | Source/UMLModel/ModelLinks/XMI/BoldUMLDTDData.dfm | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 121 | 2020-09-22T10:46:20.000Z | 2021-11-17T12:33:35.000Z | Source/UMLModel/ModelLinks/XMI/BoldUMLDTDData.dfm | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 8 | 2020-09-23T12:32:23.000Z | 2021-07-28T07:01:26.000Z | Source/UMLModel/ModelLinks/XMI/BoldUMLDTDData.dfm | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 42 | 2020-09-22T14:37:20.000Z | 2021-10-04T10:24:12.000Z | object dmUML13DTD: TdmUML13DTD
OldCreateOrder = False
Left = 291
Top = 196
Height = 150
Width = 215
object UML13DTD: TBoldTemplateHolder
Template.Strings = (
'Behavioral_Elements.Activity_Graphs.ActionState=Foundation.Core.' +
'ModelElement.name, Foundation.Core.ModelElement.visib... | 71.378345 | 76 | 0.733961 |
aaee012c50e00601d61bc3d61826331f47f4c23a | 1,776 | lpr | Pascal | src/trxreader.lpr | natugle/Noso-TrxReader | 957d8c660093bc59fdd2e857dcb5b90775416e0d | [
"Unlicense"
] | null | null | null | src/trxreader.lpr | natugle/Noso-TrxReader | 957d8c660093bc59fdd2e857dcb5b90775416e0d | [
"Unlicense"
] | null | null | null | src/trxreader.lpr | natugle/Noso-TrxReader | 957d8c660093bc59fdd2e857dcb5b90775416e0d | [
"Unlicense"
] | null | null | null | program trxreader;
{$mode objfpc}{$H+}
{ Noso TrxReader v 0.1.
Made in 2021 by P Bjørn Biermann Madsen
The Noso TrxReader is partly based on code made by NosoCoin Project.
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
... | 37.787234 | 73 | 0.760135 |
61a1d047e922fdd1bd5e0ff37062932a4ad6f997 | 1,416 | pas | Pascal | units/feli_config.pas | felixyeungdev/pascal-custom-stack-tracer | 1d9fa63cb9b8fe2d77bb4f58b6a9da8418007c92 | [
"MIT"
] | null | null | null | units/feli_config.pas | felixyeungdev/pascal-custom-stack-tracer | 1d9fa63cb9b8fe2d77bb4f58b6a9da8418007c92 | [
"MIT"
] | null | null | null | units/feli_config.pas | felixyeungdev/pascal-custom-stack-tracer | 1d9fa63cb9b8fe2d77bb4f58b6a9da8418007c92 | [
"MIT"
] | null | null | null | unit feli_config;
{$mode objfpc}
interface
type
FeliConfig = class(TObject)
public
class function getShowLogs(): boolean; static;
class function getIsDebug(): boolean; static;
end;
implementation
uses
feli_file,
feli_logger,
feli_constants,
feli_stack_tracer,
fpjs... | 21.784615 | 139 | 0.66596 |
61275511f630265aa22ec1150ce487bf8476a2e7 | 35,955 | pas | Pascal | widgets/dialogs.pas | seryal/Pas2JS_Widget | 2d3e1b86e5308709c87bec750b43bf9796d50f6a | [
"MIT"
] | 5 | 2020-12-11T15:39:54.000Z | 2021-08-22T06:41:04.000Z | widgets/dialogs.pas | seryal/Pas2JS_Widget | 2d3e1b86e5308709c87bec750b43bf9796d50f6a | [
"MIT"
] | null | null | null | widgets/dialogs.pas | seryal/Pas2JS_Widget | 2d3e1b86e5308709c87bec750b43bf9796d50f6a | [
"MIT"
] | null | null | null | {
MIT License
Copyright (c) 2018 Hélio S. Ribeiro and Anderson J. Gado da Silva
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 restriction, including without limitation the rig... | 68.87931 | 4,829 | 0.861883 |
6a76f6fd64349317a0550748f3c01cd5537d817b | 203 | dpr | Pascal | Demos/psvPHP/sample2/Project1.dpr | bgarrels/php4delphi | 041fed9bb6898faed25076f6ff893bfee93e41cd | [
"PHP-3.0"
] | 19 | 2015-08-10T15:42:28.000Z | 2021-11-23T02:04:02.000Z | Demos/psvPHP/sample2/Project1.dpr | bgarrels/php4delphi | 041fed9bb6898faed25076f6ff893bfee93e41cd | [
"PHP-3.0"
] | 2 | 2018-06-22T12:45:58.000Z | 2020-11-30T09:05:57.000Z | Demos/psvPHP/sample2/Project1.dpr | bgarrels/php4delphi | 041fed9bb6898faed25076f6ff893bfee93e41cd | [
"PHP-3.0"
] | 13 | 2015-05-02T14:39:20.000Z | 2021-11-18T19:50:05.000Z | program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
PHP4Delphi;
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
| 13.533333 | 41 | 0.655172 |
6a2eb6a8ded90c8d53d78992d8e4da9c38df24e0 | 5,246 | pas | Pascal | lazarus/lazutils/extendedstrings.pas | rarnu/golcl-liblcl | 6f238af742857921062365656a1b13b44b2330ce | [
"Apache-2.0"
] | 3 | 2021-06-10T12:33:29.000Z | 2021-12-13T06:59:48.000Z | iscbase/lazutils/extendedstrings.pas | isyscore/isc-fpbase | ce2469c977eba901005982dc7f89fee2d0718f76 | [
"MIT"
] | null | null | null | iscbase/lazutils/extendedstrings.pas | isyscore/isc-fpbase | ce2469c977eba901005982dc7f89fee2d0718f76 | [
"MIT"
] | null | null | null | {
/***************************************************************************
extendedstrings.pas
-------------------
***************************************************************************/
*************************************************************... | 25.842365 | 80 | 0.70244 |
61ec5c2704519940cc628a346f5e1e0ae2c9be26 | 1,057 | pas | Pascal | drives/0071.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 11 | 2015-12-12T05:13:15.000Z | 2020-10-14T13:32:08.000Z | drives/0071.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | null | null | null | drives/0071.pas | nickelsworth/swag | 7c21c0da2291fc249b9dc5cfe121a7672a4ffc08 | [
"BSD-2-Clause"
] | 8 | 2017-05-05T05:24:01.000Z | 2021-07-03T20:30:09.000Z | {
▒ Anybody know a realitively easy way to determine the file allocation
▒ unit size offa hard/floppy drive?? Pascal source would be prefered over
▒ pascal assembly as I know next to nothing about assembly.
}
{───────────────────────────────────────────────────────────────}
Function GetUA(Drive: Byte:LongInt;... | 50.333333 | 76 | 0.435194 |
6a52c3b5624d7a535dee8b1b5daad967e64a2368 | 2,417 | dfm | Pascal | samples/mfolwer-interval/Form.Interval.dfm | bogdanpolak/observable-delphi | 0524d597078f93debdb8809090fae857b90208c7 | [
"MIT"
] | 6 | 2019-09-10T18:22:30.000Z | 2020-11-11T02:58:12.000Z | samples/mfolwer-interval/Form.Interval.dfm | bogdanpolak/observable-delphi | 0524d597078f93debdb8809090fae857b90208c7 | [
"MIT"
] | 1 | 2019-08-11T09:07:21.000Z | 2019-08-11T09:07:21.000Z | samples/mfolwer-interval/Form.Interval.dfm | bogdanpolak/observable-delphi | 0524d597078f93debdb8809090fae857b90208c7 | [
"MIT"
] | 5 | 2019-09-18T17:42:39.000Z | 2020-11-26T13:47:49.000Z | object Form1: TForm1
Left = 0
Top = 0
Caption = 'Interval Form'
ClientHeight = 302
ClientWidth = 271
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCreate = FormCre... | 21.017391 | 74 | 0.580885 |
6a064728c0e41624965aebd8cbceb8bbf3e7aa06 | 196 | pas | Pascal | implementations/pascal/FHIRDigitalSignatures.pas | intervention-engine/fhir-golang-generator | 6011e2b77b34cbb8b9d460a58fc6549c1d3e404d | [
"BSD-3-Clause"
] | 11 | 2016-08-23T01:35:31.000Z | 2021-01-09T20:46:37.000Z | implementations/pascal/FHIRDigitalSignatures.pas | intervention-engine/fhir-golang-generator | 6011e2b77b34cbb8b9d460a58fc6549c1d3e404d | [
"BSD-3-Clause"
] | 8 | 2015-06-22T17:58:54.000Z | 2017-02-16T00:24:39.000Z | implementations/pascal/FHIRDigitalSignatures.pas | intervention-engine/fhir-golang-generator | 6011e2b77b34cbb8b9d460a58fc6549c1d3e404d | [
"BSD-3-Clause"
] | 5 | 2016-07-02T21:08:11.000Z | 2018-11-02T18:13:17.000Z | unit FHIRDigitalSignatures;
interface
uses
AdvObjects,
DigitalSignatures;
type
TFHIRDigitalSignature = class (TAdvObject)
private
public
end;
implementation
end.
| 10.888889 | 45 | 0.704082 |
6a804c3c469d6af5961ae54a15d0c48c2e50e254 | 192 | dpr | Pascal | delphi/ExerDlp5MatrizesVetores/Media2.dpr | vitorebatista/my-tests | 696b2290259d8179d0b3399569dd9e77e6eaa750 | [
"MIT"
] | null | null | null | delphi/ExerDlp5MatrizesVetores/Media2.dpr | vitorebatista/my-tests | 696b2290259d8179d0b3399569dd9e77e6eaa750 | [
"MIT"
] | null | null | null | delphi/ExerDlp5MatrizesVetores/Media2.dpr | vitorebatista/my-tests | 696b2290259d8179d0b3399569dd9e77e6eaa750 | [
"MIT"
] | null | null | null | program Media2;
uses
Forms,
UnMedia2 in 'UnMedia2.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
| 13.714286 | 41 | 0.661458 |
6a494a76bb9cfe5a6765253ac44c2a7e229d6a7c | 2,817 | pas | Pascal | Source/uLogExcept.pas | thecocce/MarkdownShellExtensions | 2bdf031e4efe5693db780aac00d2cc765b085d62 | [
"Apache-2.0"
] | 9 | 2021-06-29T23:12:31.000Z | 2021-11-11T20:33:34.000Z | Source/uLogExcept.pas | thecocce/MarkdownShellExtensions | 2bdf031e4efe5693db780aac00d2cc765b085d62 | [
"Apache-2.0"
] | 1 | 2021-09-06T19:21:59.000Z | 2021-09-07T15:40:48.000Z | Source/uLogExcept.pas | thecocce/MarkdownShellExtensions | 2bdf031e4efe5693db780aac00d2cc765b085d62 | [
"Apache-2.0"
] | 4 | 2021-06-29T00:46:04.000Z | 2021-09-07T10:24:42.000Z | // **************************************************************************************************
//
// Unit uLogExcept
// unit for the Delphi Preview Handler https://github.com/RRUZ/delphi-preview-handler
//
// The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
... | 27.617647 | 119 | 0.656372 |
cdf5704f110fee229e0f33110515a659b23845c2 | 6,026 | lpr | Pascal | subtrees/ultibohub/Examples/05-TimeDate/RPi2/TimeDate.lpr | markfirmware/ultibo-kernel-sampler | e2965229925f20383b22e27b1437eeca5d2b0ca3 | [
"MIT"
] | null | null | null | subtrees/ultibohub/Examples/05-TimeDate/RPi2/TimeDate.lpr | markfirmware/ultibo-kernel-sampler | e2965229925f20383b22e27b1437eeca5d2b0ca3 | [
"MIT"
] | null | null | null | subtrees/ultibohub/Examples/05-TimeDate/RPi2/TimeDate.lpr | markfirmware/ultibo-kernel-sampler | e2965229925f20383b22e27b1437eeca5d2b0ca3 | [
"MIT"
] | null | null | null | program TimeDate;
{$mode objfpc}{$H+}
{ Example 05 Time Date }
{ }
{ The Raspberry Pi has no real time clock built in to the board so the normal }
{ way to get the correct time is fro... | 44.308824 | 172 | 0.683372 |
cde9c9fd6fe8bb788da7d56900c158e09cad4835 | 3,250 | pas | Pascal | samples/custom_exception_handling/WebModuleU.pas | JensMertelmeyer/delphimvcframework | 1c9bcea41cbded5eacffeaab3275b9b9aa9761de | [
"Apache-2.0"
] | 2 | 2021-01-27T06:04:26.000Z | 2021-09-15T07:30:24.000Z | samples/custom_exception_handling/WebModuleU.pas | JensMertelmeyer/delphimvcframework | 1c9bcea41cbded5eacffeaab3275b9b9aa9761de | [
"Apache-2.0"
] | null | null | null | samples/custom_exception_handling/WebModuleU.pas | JensMertelmeyer/delphimvcframework | 1c9bcea41cbded5eacffeaab3275b9b9aa9761de | [
"Apache-2.0"
] | 1 | 2021-09-08T12:47:25.000Z | 2021-09-08T12:47:25.000Z | unit WebModuleU;
interface
uses
System.SysUtils,
System.Classes,
MVCFramework,
Web.HTTPApp,
System.NetEncoding;
type
TMyWebModule = class(TWebModule)
procedure WebModuleCreate(Sender: TObject);
procedure WebModuleDestroy(Sender: TObject);
private
FMVC: TMVCEngine;
public
{ Public decl... | 28.017241 | 91 | 0.654154 |
6ab8020aa2148ae785a4e6189d455f4b773bdf1f | 4,983 | pas | Pascal | unit2.pas | frosttho/ksg-score | 588f20c2b611cf439a946f8dd9a47ef03e2c110f | [
"BSD-3-Clause"
] | 2 | 2019-04-07T20:03:51.000Z | 2020-01-21T15:35:32.000Z | unit2.pas | frosttho/ksg-score | 588f20c2b611cf439a946f8dd9a47ef03e2c110f | [
"BSD-3-Clause"
] | null | null | null | unit2.pas | frosttho/ksg-score | 588f20c2b611cf439a946f8dd9a47ef03e2c110f | [
"BSD-3-Clause"
] | null | null | null | unit Unit2;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
StdCtrls, ComCtrls, Buttons, IdHTTP, fpjson, jsonparser;
type
{ TForm2 }
TForm2 = class(TForm)
BitBtn1: TBitBtn;
Button1: TButton;
Button7: TButton;
Button8: TButton;
... | 26.505319 | 103 | 0.67068 |
6aa31e80cf353e62061b8848848d36308e042963 | 4,405 | pas | Pascal | Source/Services/SimpleEmailV2/Base/Transform/AWS.SESv2.Transform.ListCustomVerificationEmailTemplatesResponseUnmarshaller.pas | herux/aws-sdk-delphi | 4ef36e5bfc536b1d9426f78095d8fda887f390b5 | [
"Apache-2.0"
] | 67 | 2021-07-28T23:47:09.000Z | 2022-03-15T11:48:35.000Z | Source/Services/SimpleEmailV2/Base/Transform/AWS.SESv2.Transform.ListCustomVerificationEmailTemplatesResponseUnmarshaller.pas | herux/aws-sdk-delphi | 4ef36e5bfc536b1d9426f78095d8fda887f390b5 | [
"Apache-2.0"
] | 5 | 2021-09-01T09:31:16.000Z | 2022-03-16T18:19:21.000Z | Source/Services/SimpleEmailV2/Base/Transform/AWS.SESv2.Transform.ListCustomVerificationEmailTemplatesResponseUnmarshaller.pas | herux/aws-sdk-delphi | 4ef36e5bfc536b1d9426f78095d8fda887f390b5 | [
"Apache-2.0"
] | 13 | 2021-07-29T02:41:16.000Z | 2022-03-16T10:22:38.000Z | unit AWS.SESv2.Transform.ListCustomVerificationEmailTemplatesResponseUnmarshaller;
interface
uses
AWS.SESv2.Model.ListCustomVerificationEmailTemplatesResponse,
AWS.Transform.ResponseUnmarshaller,
AWS.Runtime.Model,
AWS.Transform.JsonUnmarshallerContext,
AWS.SESv2.Transform.CustomVerificationEmailTemplat... | 40.045455 | 227 | 0.814756 |
6a0da8dc057bc4e9723d05cc56ad7c7015e629e5 | 2,896 | pas | Pascal | source/Db/Fido.Win.Db.Connections.Ado.pas | BasvRossem/FidoLib | e2dbf32c487aa56a4971c4543f372de92bfa4946 | [
"MIT"
] | 1 | 2021-11-28T20:30:36.000Z | 2021-11-28T20:30:36.000Z | source/Db/Fido.Win.Db.Connections.Ado.pas | BasvRossem/FidoLib | e2dbf32c487aa56a4971c4543f372de92bfa4946 | [
"MIT"
] | null | null | null | source/Db/Fido.Win.Db.Connections.Ado.pas | BasvRossem/FidoLib | e2dbf32c487aa56a4971c4543f372de92bfa4946 | [
"MIT"
] | 1 | 2021-11-28T20:30:38.000Z | 2021-11-28T20:30:38.000Z | (*
* Copyright 2021 Mirko Bianco (email: writetomirko@gmail.com)
*
* 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 restriction, including without limitation the rights
* to use,... | 31.478261 | 99 | 0.765193 |
6adb033acf4d4e9a5929253a74aafd3a639389c7 | 3,494 | pas | Pascal | test/code/LogActor_test.pas | VencejoSoftware/ooLog | c799c7185a3685ebba09c8409d8d841c5dd780ad | [
"BSD-3-Clause"
] | 3 | 2020-02-06T08:16:33.000Z | 2022-01-04T02:09:33.000Z | test/code/LogActor_test.pas | VencejoSoftware/ooLog | c799c7185a3685ebba09c8409d8d841c5dd780ad | [
"BSD-3-Clause"
] | null | null | null | test/code/LogActor_test.pas | VencejoSoftware/ooLog | c799c7185a3685ebba09c8409d8d841c5dd780ad | [
"BSD-3-Clause"
] | 3 | 2019-11-21T03:01:33.000Z | 2021-07-26T09:13:33.000Z | {
Copyright (c) 2020, Vencejo Software
Distributed under the terms of the Modified BSD License
The full license is distributed with this software
}
unit LogActor_test;
interface
{$IFDEF FPC}
{$MODE objfpc}{$H+}
{$ENDIF}
uses
SysUtils,
InsensitiveTextMatch,
LogMock,
ScapeTranslate,
Log,
TemplateLog,... | 23.931507 | 120 | 0.735547 |
6a59bccf051755d122d9852646b728ecfd3fd9c8 | 11,040 | dfm | Pascal | src/TagDlg.dfm | baobabx/NyanFi_x64 | 0f63856c427f2d46b9c079845bfd3ca0d82e920e | [
"MIT"
] | 21 | 2019-03-11T15:02:20.000Z | 2022-01-06T04:13:10.000Z | src/TagDlg.dfm | baobabx/NyanFi_x64 | 0f63856c427f2d46b9c079845bfd3ca0d82e920e | [
"MIT"
] | null | null | null | src/TagDlg.dfm | baobabx/NyanFi_x64 | 0f63856c427f2d46b9c079845bfd3ca0d82e920e | [
"MIT"
] | 2 | 2019-04-13T17:10:37.000Z | 2021-06-29T10:15:11.000Z | object TagManDlg: TTagManDlg
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
ClientHeight = 291
ClientWidth = 310
Color = clBtnFace
Constraints.MinHeight = 320
Constraints.MinWidth = 320
ParentFont = True
KeyPreview = True
OldCreateOrder = False
Position = poDesigned
ShowHint = True
OnClose = ... | 25.148064 | 104 | 0.600543 |
613f9336b8a605096c4cba32acdcb6a767ed1da5 | 1,979 | pas | Pascal | code/ooFS.Archive.InUse.pas | VencejoSoftware/ooFileSystem | fd1e8937326e648bfb371f7d9f13edcb0bad4ad6 | [
"BSD-3-Clause"
] | null | null | null | code/ooFS.Archive.InUse.pas | VencejoSoftware/ooFileSystem | fd1e8937326e648bfb371f7d9f13edcb0bad4ad6 | [
"BSD-3-Clause"
] | null | null | null | code/ooFS.Archive.InUse.pas | VencejoSoftware/ooFileSystem | fd1e8937326e648bfb371f7d9f13edcb0bad4ad6 | [
"BSD-3-Clause"
] | 2 | 2019-11-21T03:19:12.000Z | 2021-01-26T04:52:12.000Z | {$REGION 'documentation'}
{
Copyright (c) 2016, Vencejo Software
Distributed under the terms of the Modified BSD License
The full license is distributed with this software
}
{
Command to check if a file is in use
@created(10/02/2016)
@author Vencejo Software <www.vencejosoft.com>
}
{$ENDREGION}
unit ooFS.Ar... | 23.282353 | 102 | 0.738252 |
6ab78a2f9f20cc96f32cf241dc7f4ad002884e65 | 1,047 | pas | Pascal | src/app.pas | fanoframework/fano-fcgi-unix | 8f6f73c94a60c9ca24305fecb194a93280541f5e | [
"MIT"
] | null | null | null | src/app.pas | fanoframework/fano-fcgi-unix | 8f6f73c94a60c9ca24305fecb194a93280541f5e | [
"MIT"
] | null | null | null | src/app.pas | fanoframework/fano-fcgi-unix | 8f6f73c94a60c9ca24305fecb194a93280541f5e | [
"MIT"
] | null | null | null | (*!------------------------------------------------------------
* [[APP_NAME]] ([[APP_URL]])
*
* @link [[APP_REPOSITORY_URL]]
* @copyright Copyright (c) [[COPYRIGHT_YEAR]] [[COPYRIGHT_HOLDER]]
* @license [[LICENSE_URL]] ([[LICENSE]])
*------------------------------------------------------------- *)
program... | 28.297297 | 97 | 0.481375 |
61ab8894796b9c2671c5c369eb756a13f4d4c52a | 48,790 | pas | Pascal | VirtualMachine/uVM.pas | penavon/BookPart2 | c73e83331b95c2b5cad9e0c8e0bbc7fa3f7de472 | [
"Apache-2.0"
] | 6 | 2020-03-22T09:49:46.000Z | 2021-11-28T19:47:20.000Z | VirtualMachine/uVM.pas | Irwin1985/BookPart_2 | 4e8c2e47cd09b77c6e5bd3455ddfe7492adf26bf | [
"Apache-2.0"
] | null | null | null | VirtualMachine/uVM.pas | Irwin1985/BookPart_2 | 4e8c2e47cd09b77c6e5bd3455ddfe7492adf26bf | [
"Apache-2.0"
] | 3 | 2020-11-05T17:02:37.000Z | 2021-12-21T04:56:54.000Z | // Developed using Delphi for Windows and Mac platforms.
// *** Ths source is distributed under Apache 2.0 ***
// Copyright (C) 2019-2020 Herbert M Sauro
// Author Contact Information:
// email: hsauro@gmail.com
{$DEFINE STACKCHECK}
unit uVM;
interface
Uses System.SysUtils, System.Diagnostics, System.TimeSpan, u... | 27.030471 | 167 | 0.651179 |
61154edec5e0b54759427b016723c5b4871d4041 | 6,160 | dfm | Pascal | unitDM.dfm | pierrialexander/Controle_de_estoque | f0c2178e4960d16d57272138a93d22f49fd8f5ed | [
"MIT"
] | null | null | null | unitDM.dfm | pierrialexander/Controle_de_estoque | f0c2178e4960d16d57272138a93d22f49fd8f5ed | [
"MIT"
] | null | null | null | unitDM.dfm | pierrialexander/Controle_de_estoque | f0c2178e4960d16d57272138a93d22f49fd8f5ed | [
"MIT"
] | null | null | null | object DM: TDM
OldCreateOrder = False
Height = 417
Width = 490
object Conexao: TFDConnection
Params.Strings = (
'Database=estoque'
'User_Name=root'
'DriverID=MySQL')
Connected = True
LoginPrompt = False
Left = 64
Top = 64
end
object tbProdutos: TFDTable
Active = Tru... | 24.541833 | 76 | 0.633766 |
6a9162d1bc19c19bd10599a9e1e1c7d2c13503c8 | 2,789 | pas | Pascal | samples/StreamCoderDEMO/DiocpStreamServer/ufrmMain.pas | Stoby/diocp-v5 | 7d10768e5deadba5fee3b330f3ea05e9913012a1 | [
"BSD-2-Clause"
] | 229 | 2015-02-25T14:32:37.000Z | 2022-03-29T13:54:06.000Z | samples/StreamCoderDEMO/DiocpStreamServer/ufrmMain.pas | Stoby/diocp-v5 | 7d10768e5deadba5fee3b330f3ea05e9913012a1 | [
"BSD-2-Clause"
] | 3 | 2016-12-30T15:08:57.000Z | 2019-08-15T02:06:11.000Z | samples/StreamCoderDEMO/DiocpStreamServer/ufrmMain.pas | Stoby/diocp-v5 | 7d10768e5deadba5fee3b330f3ea05e9913012a1 | [
"BSD-2-Clause"
] | 127 | 2015-02-23T16:29:52.000Z | 2022-02-23T01:10:31.000Z | unit ufrmMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ActnList, diocp_tcp_server, ExtCtrls,
ComObj, ComCtrls, utils_safeLogger;
type
TfrmMain = class(TForm)
edtPort: TEdit;
btnOpen: TButton;
actlstMain: TActionList;
actOpen... | 20.357664 | 76 | 0.72535 |
6adb684370e40613cdaa19f732a6183b78429a3f | 3,024 | pas | Pascal | sources/array/25v.pas | prgpascal/programmi-pascal | fd71bd671d0d6be169b47c5bfa40f9b97588196f | [
"Apache-2.0"
] | null | null | null | sources/array/25v.pas | prgpascal/programmi-pascal | fd71bd671d0d6be169b47c5bfa40f9b97588196f | [
"Apache-2.0"
] | null | null | null | sources/array/25v.pas | prgpascal/programmi-pascal | fd71bd671d0d6be169b47c5bfa40f9b97588196f | [
"Apache-2.0"
] | null | null | null | (*
* Copyright (C) 2008 Riccardo Leschiutta
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... | 21 | 82 | 0.71164 |
6a6df47f3701f1df20d5d03648c396b7fad56f8d | 3,975 | pas | Pascal | windows/src/developer/TIKE/debug/UfrmDebugStatus_Key.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 1 | 2021-03-08T09:31:47.000Z | 2021-03-08T09:31:47.000Z | windows/src/developer/TIKE/debug/UfrmDebugStatus_Key.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | null | null | null | windows/src/developer/TIKE/debug/UfrmDebugStatus_Key.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | null | null | null | (*
Name: UfrmDebugStatus_Key
Copyright: Copyright (C) SIL International.
Documentation:
Description:
Create Date: 14 Sep 2006
Modified Date: 3 Aug 2015
Authors: mcdurdin
Related Files:
Dependencies:
Bugs:
Todo:
No... | 28.597122 | 125 | 0.697358 |
6a785aa6eac355776c629502fd485941240bc3db | 8,856 | pas | Pascal | POP3_mailbox_checker/MainForm.pas | delphi-pascal-archive/pop3-mailbox-checker | 60ddfaf69011285102337edff08fda1f583b8906 | [
"Unlicense"
] | null | null | null | POP3_mailbox_checker/MainForm.pas | delphi-pascal-archive/pop3-mailbox-checker | 60ddfaf69011285102337edff08fda1f583b8906 | [
"Unlicense"
] | null | null | null | POP3_mailbox_checker/MainForm.pas | delphi-pascal-archive/pop3-mailbox-checker | 60ddfaf69011285102337edff08fda1f583b8906 | [
"Unlicense"
] | null | null | null | unit MainForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, ToolWin, StdCtrls, Menus, ActnList, IniFiles,
IdAntiFreezeBase, IdAntiFreeze, IdBaseComponent, IdComponent,
IdTCPConnection, IdTCPClient, IdMessageClient, IdPOP3, IdMessage;
type
Tfo... | 29.036066 | 99 | 0.675248 |
616a6c00e6c7715c1edb2d3288d995f69d47a4cf | 2,725 | pas | Pascal | Components/uniqueinstance/simpleipcwrapper.pas | Nik-vr/bookkeeper-free | be975210e9ed9157d9754d8c17a89bc42f817c94 | [
"BSD-3-Clause"
] | 3 | 2015-03-16T13:07:21.000Z | 2016-12-10T20:24:26.000Z | Components/uniqueinstance/simpleipcwrapper.pas | Nik-vr/bookkeeper-free | be975210e9ed9157d9754d8c17a89bc42f817c94 | [
"BSD-3-Clause"
] | null | null | null | Components/uniqueinstance/simpleipcwrapper.pas | Nik-vr/bookkeeper-free | be975210e9ed9157d9754d8c17a89bc42f817c94 | [
"BSD-3-Clause"
] | 4 | 2016-03-03T06:24:28.000Z | 2021-04-29T06:05:05.000Z | unit SimpleIPCWrapper;
// SimpleIPC has a flaw under unix (bug 17248).
// Use this workaround since there's no way to extend SimpleIPC classes directly (bug 19136)
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, SimpleIPC;
procedure InitServer(Server: TSimpleIPCServer);
function IsServerRunn... | 23.695652 | 115 | 0.685138 |
445a9d3438d933293bc0b8a6662725a2297540de | 248 | pas | Pascal | synapse/source/demo/FreePascal/testping.pas | markfirmware/docker-alpine-fpc | a47d714c60c9778c0bcc2c0f887fe05f0de9b01e | [
"MIT"
] | null | null | null | synapse/source/demo/FreePascal/testping.pas | markfirmware/docker-alpine-fpc | a47d714c60c9778c0bcc2c0f887fe05f0de9b01e | [
"MIT"
] | null | null | null | synapse/source/demo/FreePascal/testping.pas | markfirmware/docker-alpine-fpc | a47d714c60c9778c0bcc2c0f887fe05f0de9b01e | [
"MIT"
] | null | null | null | {$MODE DELPHI}
Program testping;
uses
pingsend, sysutils;
var
ping:TPingSend;
begin
ping:=TPingSend.Create;
try
ping.ping(ParamStr(1));
Writeln (IntTostr(ping.pingtime));
finally
ping.Free;
end;
end.
| 12.4 | 41 | 0.616935 |
616aef4d3612152de8b0d8aa7617e2d7c0e0eb01 | 251,322 | pas | Pascal | Components/JVCL/common/CfgMgr32.pas | sabatex/Delphi | 0efbe6eb38bf8aa2bf269d1866741266e90b9cbf | [
"MIT"
] | null | null | null | Components/JVCL/common/CfgMgr32.pas | sabatex/Delphi | 0efbe6eb38bf8aa2bf269d1866741266e90b9cbf | [
"MIT"
] | null | null | null | Components/JVCL/common/CfgMgr32.pas | sabatex/Delphi | 0efbe6eb38bf8aa2bf269d1866741266e90b9cbf | [
"MIT"
] | 1 | 2019-12-24T08:39:18.000Z | 2019-12-24T08:39:18.000Z | {******************************************************************}
{ }
{ Borland Delphi Runtime Library }
{ Config Manager API interface unit }
{ ... | 49.914995 | 143 | 0.767147 |
6a83a28f53f5ebf197c9e222b1d150f389b4b879 | 713 | pas | Pascal | Chapter04/GameOfMemory/uGameUtils.pas | PacktPublishing/Expert-Delpi | b80f67884cfde32fff4c88cd8bd8dab30bfb8270 | [
"MIT"
] | 22 | 2017-09-13T23:05:34.000Z | 2022-01-09T11:36:41.000Z | Chapter04/GameOfMemory/uGameUtils.pas | Nitin-Mane/Expert-Delphi | b80f67884cfde32fff4c88cd8bd8dab30bfb8270 | [
"MIT"
] | null | null | null | Chapter04/GameOfMemory/uGameUtils.pas | Nitin-Mane/Expert-Delphi | b80f67884cfde32fff4c88cd8bd8dab30bfb8270 | [
"MIT"
] | 11 | 2017-10-30T17:31:21.000Z | 2021-08-29T22:39:39.000Z | unit uGameUtils;
interface
function GameTimeToStr(Value: TTime): string;
implementation
uses
System.SysUtils;
function Pad3Zeros(Value: string): string; inline;
var i: integer;
begin
i := Length(Value);
if i = 3 then
Result := Value
else if i = 2 then
Result := '0' + Value
else if i = 1 then
... | 16.97619 | 63 | 0.611501 |
6a239912d0ca7ba523be1549a815969030190dad | 5,222 | pas | Pascal | Codigos/unitQRNF.pas | MDsolucoesTI/Eros | c9a6e08cfa3b7c63930058d14d8b34c6da3fd00e | [
"MIT"
] | null | null | null | Codigos/unitQRNF.pas | MDsolucoesTI/Eros | c9a6e08cfa3b7c63930058d14d8b34c6da3fd00e | [
"MIT"
] | null | null | null | Codigos/unitQRNF.pas | MDsolucoesTI/Eros | c9a6e08cfa3b7c63930058d14d8b34c6da3fd00e | [
"MIT"
] | 1 | 2021-12-03T08:21:07.000Z | 2021-12-03T08:21:07.000Z | //////////////////////////////////////////////////////////////////////////
// Criação...........: 02/2001
// Ultima modificação: 08/2004
// Módulo............: Relatório - Nota Fiscal
// Sistema...........: Eros - Controle de Vendas
// Integração........: Olimpo - Automação Comercial
// Analistas.........: Marile... | 25.473171 | 75 | 0.631367 |
611887b970cf43358c5d9e0498a56225a11c62fd | 780 | pas | Pascal | test/code/sort/stub/SortOrderNone.pas | VencejoSoftware/ooEntity | 0c49ad7c2420f8fe1fb57942fff27c55fdfd41bc | [
"BSD-3-Clause"
] | 1 | 2022-01-04T02:17:53.000Z | 2022-01-04T02:17:53.000Z | test/code/sort/stub/SortOrderNone.pas | VencejoSoftware/ooEntity | 0c49ad7c2420f8fe1fb57942fff27c55fdfd41bc | [
"BSD-3-Clause"
] | null | null | null | test/code/sort/stub/SortOrderNone.pas | VencejoSoftware/ooEntity | 0c49ad7c2420f8fe1fb57942fff27c55fdfd41bc | [
"BSD-3-Clause"
] | 2 | 2019-11-21T02:57:52.000Z | 2021-01-26T04:45:05.000Z | {
Copyright (c) 2018, Vencejo Software
Distributed under the terms of the Modified BSD License
The full license is distributed with this software
}
unit SortOrderNone;
interface
uses
SysUtils,
Key,
SortOrder;
type
TSortOrderNone = class sealed(TInterfacedObject, ISortOrder)
public
function Key: I... | 16.595745 | 62 | 0.75641 |
612acfce2e303eb429b517bcb6ff791badf7822b | 586 | pas | Pascal | desktop/REL/u_frmlistagemcurso.pas | rpcajr/TransporteApp | 665555340d8cd49ce875d672a5b043fc31c6e4db | [
"MIT"
] | 1 | 2021-05-12T23:09:21.000Z | 2021-05-12T23:09:21.000Z | desktop/REL/backup/u_frmlistagemcurso.pas | bravesoftdz/TransporteApp | 4e298ec94e4c02455f5b1b9e38aa36a0869b01c0 | [
"MIT"
] | null | null | null | desktop/REL/backup/u_frmlistagemcurso.pas | bravesoftdz/TransporteApp | 4e298ec94e4c02455f5b1b9e38aa36a0869b01c0 | [
"MIT"
] | 2 | 2021-03-12T00:39:19.000Z | 2021-05-12T23:09:22.000Z | unit U_FrmListagemCurso;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, RLReport, RLPDFFilter, RLXLSXFilter, Forms,
Controls, Graphics, Dialogs, U_FrmRelatorioBase, db, sqldb;
type
{ TFrmListagemCurso }
TFrmListagemCurso = class(TFrmRelatorioBase)
RLBand1: TRLBand;
RLBand2: TRLBan... | 15.025641 | 74 | 0.720137 |
6a6f174b4f843512aabaa47b5f3ba8e900b65b56 | 1,159 | pas | Pascal | Apps/IDEGrip/IDEGripActions.pas | GDKsoftware/OpenTestGrip | a06f7840aea852c9d84ea2178e792d93866bf797 | [
"MIT"
] | 5 | 2017-11-08T22:44:16.000Z | 2019-08-16T10:02:39.000Z | Apps/IDEGrip/IDEGripActions.pas | GDKsoftware/OpenTestGrip | a06f7840aea852c9d84ea2178e792d93866bf797 | [
"MIT"
] | 18 | 2016-05-18T10:33:07.000Z | 2019-04-10T13:50:33.000Z | Apps/IDEGrip/IDEGripActions.pas | GDKsoftware/OpenTestGrip | a06f7840aea852c9d84ea2178e792d93866bf797 | [
"MIT"
] | 2 | 2016-04-30T11:25:35.000Z | 2018-03-02T06:58:37.000Z | unit IDEGripActions;
interface
uses
uDefinitionSearch;
type
TIDEGripActions = class
public
class procedure CopyInterface;
end;
implementation
uses
ToolsAPI, uIDEHelper, uCodeHelpers, Clipbrd;
class procedure TIDEGripActions.CopyInterface;
var
sProjectFile: string;
sSearchFor: string;
sCode: st... | 21.462963 | 98 | 0.731665 |
61e4d1063a0802282b5a888910a6d85c5c57a199 | 60,740 | pas | Pascal | dmuMain.pas | gandf/Firebird-Management-Studio | aab257c46697df41cc0c94252bb15e66269cbc0a | [
"Apache-2.0"
] | 3 | 2019-08-15T17:23:28.000Z | 2021-03-04T08:14:37.000Z | dmuMain.pas | gandf/Firebird-Management-Studio | aab257c46697df41cc0c94252bb15e66269cbc0a | [
"Apache-2.0"
] | null | null | null | dmuMain.pas | gandf/Firebird-Management-Studio | aab257c46697df41cc0c94252bb15e66269cbc0a | [
"Apache-2.0"
] | 2 | 2017-10-02T05:24:31.000Z | 2021-03-04T04:46:09.000Z | unit dmuMain;
{$mode objfpc}{$H+}
interface
uses
LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, IBCustomDataSet, IBDatabase, Db, IB, zluibcClasses,
sqldb, StdCtrls, DBGrids, IBSQL,
IBDatabaseInfo, SynEdit;
type
TdmMain = class(TDataModule)
private
{ Private declarations }
... | 32.274176 | 173 | 0.615147 |
612fad8e23ead61dee8baa774c1f9a1dc4dd2661 | 4,410 | pas | Pascal | Packages/Order Entry Results Reporting/CPRS/CPRS-Chart/Orders/fOrdersVerify.pas | rjwinchester/VistA | 6ada05a153ff670adcb62e1c83e55044a2a0f254 | [
"Apache-2.0"
] | 72 | 2015-02-03T02:30:45.000Z | 2020-01-30T17:20:52.000Z | Packages/Order Entry Results Reporting/CPRS/CPRS-Chart/Orders/fOrdersVerify.pas | rjwinchester/VistA | 6ada05a153ff670adcb62e1c83e55044a2a0f254 | [
"Apache-2.0"
] | 80 | 2016-04-19T12:04:06.000Z | 2020-01-31T14:35:19.000Z | Packages/Order Entry Results Reporting/CPRS/CPRS-Chart/Orders/fOrdersVerify.pas | rjwinchester/VistA | 6ada05a153ff670adcb62e1c83e55044a2a0f254 | [
"Apache-2.0"
] | 67 | 2015-01-27T16:47:56.000Z | 2020-02-12T21:23:56.000Z | unit fOrdersVerify;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
fAutoSz, StdCtrls, ORFn, ORCtrls, ExtCtrls, VA508AccessibilityManager;
type
TfrmVerifyOrders = class(TfrmAutoSz)
Panel1: TPanel;
lblVerify: TLabel;
lstOrders: TCaptionListBox;
Panel2: TP... | 26.407186 | 98 | 0.715873 |
6accdf0dd084648784cfbab95b8007c112710cf8 | 556 | pas | Pascal | Code/P/k_big.pas | EdmundLuan/NOIP14-16 | c4277dfc7467346d6c67dd4cfae9a9caa08b487c | [
"MIT"
] | null | null | null | Code/P/k_big.pas | EdmundLuan/NOIP14-16 | c4277dfc7467346d6c67dd4cfae9a9caa08b487c | [
"MIT"
] | null | null | null | Code/P/k_big.pas | EdmundLuan/NOIP14-16 | c4277dfc7467346d6c67dd4cfae9a9caa08b487c | [
"MIT"
] | null | null | null | program k_big;
var i,n,k:longint;
a:array[0..100001]of longint;
procedure quicksort(l,r:longint);
var mid,tl,tr,tmp:longint;
begin
mid:=a[(l+r)div 2];
tl:=l;tr:=r;
repeat
while a[tl]>mid do
inc(tl);
while a[tr]<mid do
dec(tr);
if(tl<=tr) then
begin
tmp:=a[tl];
a[tl]:=a[tr];
a[tr]:=tmp;
... | 15.885714 | 33 | 0.586331 |
6a54c20563478b991fe1d37b00e002acbcd835ba | 10,300 | pas | Pascal | examples/music/01_simple_A_major/main.pas | mr-highball/wfc | e2bc0d06303d0793aca97851d281ec01598908be | [
"MIT"
] | 4 | 2021-01-11T01:04:23.000Z | 2021-04-22T02:29:15.000Z | examples/music/01_simple_A_major/main.pas | mr-highball/wfc | e2bc0d06303d0793aca97851d281ec01598908be | [
"MIT"
] | 4 | 2021-01-11T02:25:09.000Z | 2022-01-25T23:12:17.000Z | examples/music/01_simple_A_major/main.pas | mr-highball/wfc | e2bc0d06303d0793aca97851d281ec01598908be | [
"MIT"
] | 1 | 2021-04-22T02:29:24.000Z | 2021-04-22T02:29:24.000Z | (*
MIT License
Copyright (c) 2021 mr-highball
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 restriction, including without limitation the rights
to use, copy, modify, merge, publish, di... | 27.105263 | 244 | 0.704563 |
6a857bbd2f5e168428fb65d34230b1de6b496645 | 4,962 | pas | Pascal | Components/JVCL/examples/JvBackground/BackgroundControl/TVDemoMain.pas | sabatex/Delphi | 0efbe6eb38bf8aa2bf269d1866741266e90b9cbf | [
"MIT"
] | null | null | null | Components/JVCL/examples/JvBackground/BackgroundControl/TVDemoMain.pas | sabatex/Delphi | 0efbe6eb38bf8aa2bf269d1866741266e90b9cbf | [
"MIT"
] | null | null | null | Components/JVCL/examples/JvBackground/BackgroundControl/TVDemoMain.pas | sabatex/Delphi | 0efbe6eb38bf8aa2bf269d1866741266e90b9cbf | [
"MIT"
] | 1 | 2019-12-24T08:39:18.000Z | 2019-12-24T08:39:18.000Z | unit TVDemoMain;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
JvBackgroundTreeview, ComCtrls, Menus, JvBackgrounds, StdCtrls, ExtCtrls;
type
TJvBackgroundDemoFrm = class(TForm)
MainMenu1: TMainMenu;
AppearanceMenu: TMenuItem;
FontItem: TMenuItem;
Font... | 23.971014 | 90 | 0.681983 |
6a64f5e5d481efcf8403fd82c6691d0a16167602 | 39,949 | pas | Pascal | Codigos/unitPagaPedido.pas | MDsolucoesTI/Eros | c9a6e08cfa3b7c63930058d14d8b34c6da3fd00e | [
"MIT"
] | null | null | null | Codigos/unitPagaPedido.pas | MDsolucoesTI/Eros | c9a6e08cfa3b7c63930058d14d8b34c6da3fd00e | [
"MIT"
] | null | null | null | Codigos/unitPagaPedido.pas | MDsolucoesTI/Eros | c9a6e08cfa3b7c63930058d14d8b34c6da3fd00e | [
"MIT"
] | 1 | 2021-12-03T08:21:07.000Z | 2021-12-03T08:21:07.000Z | //////////////////////////////////////////////////////////////////////////
// Cria��o...........: 02/2001
// Ultima modifica��o: 08/2004
// M�dulo............: Pagamento de Pedido
// Sistema...........: Eros - Controle de Vendas
// Integra��o........: Olimpo - Automa��o Comercial
// Analistas.........: Marilene E... | 30.635736 | 93 | 0.6276 |
6aee4aba37a6c4811d7d5b42665c44945218bff9 | 269,725 | pas | Pascal | DirectX/DirectDraw.pas | pksoft72/X1_Tenis | bdb95d1909ae0e6495311c32a4220e69e975a924 | [
"MIT"
] | null | null | null | DirectX/DirectDraw.pas | pksoft72/X1_Tenis | bdb95d1909ae0e6495311c32a4220e69e975a924 | [
"MIT"
] | null | null | null | DirectX/DirectDraw.pas | pksoft72/X1_Tenis | bdb95d1909ae0e6495311c32a4220e69e975a924 | [
"MIT"
] | null | null | null | {******************************************************************************}
{* *}
{* Copyright (C) Microsoft Corporation. All Rights Reserved. *}
{* ... | 37.42542 | 201 | 0.65628 |
6ab17b2106f5314d62dcd2bef2b566f3c124c4db | 387 | pas | Pascal | fileservice/client/delphi/uTools.pas | Blank-Xu/examples | 32e61e63a47c6a7c1b2cc3ad3737fc9785f51468 | [
"Apache-2.0"
] | null | null | null | fileservice/client/delphi/uTools.pas | Blank-Xu/examples | 32e61e63a47c6a7c1b2cc3ad3737fc9785f51468 | [
"Apache-2.0"
] | null | null | null | fileservice/client/delphi/uTools.pas | Blank-Xu/examples | 32e61e63a47c6a7c1b2cc3ad3737fc9785f51468 | [
"Apache-2.0"
] | null | null | null | unit uTools;
interface
uses
System.Classes,
System.SysUtils;
const
KB = 1024;
MB = 1024 * KB;
function BytesToStr(ABytes: Integer): string;
implementation
function BytesToStr(ABytes: Integer): string;
var
iKb: Integer;
begin
iKb := Round(ABytes / KB);
if iKb > 1000 then
Result := Format('%.2f MB/s', [... | 12.9 | 45 | 0.658915 |
6a6677803c8515a1c8420d82eda0caf5a8eeb213 | 229,844 | dfm | Pascal | Main.dfm | UrangBanua/WebApp_BPKAD | a28708e74cf9cc5c2c489f6c61ce9795bb0bca50 | [
"MIT"
] | null | null | null | Main.dfm | UrangBanua/WebApp_BPKAD | a28708e74cf9cc5c2c489f6c61ce9795bb0bca50 | [
"MIT"
] | null | null | null | Main.dfm | UrangBanua/WebApp_BPKAD | a28708e74cf9cc5c2c489f6c61ce9795bb0bca50 | [
"MIT"
] | null | null | null | object MainForm: TMainForm
Left = 0
Top = 0
Width = 999
Height = 638
Caption = 'MainForm'
OnShow = UniFormShow
OldCreateOrder = False
AutoScroll = True
MonitoredKeys.Keys = <>
Layout = 'auto'
PixelsPerInch = 96
TextHeight = 13
object UniPanel1: TUniPanel
Left = 0
Top = 0
Width = 24... | 72.164521 | 80 | 0.823615 |
614202b4854cc2db0f27e0af6991fe84ce9580c3 | 3,871 | dfm | Pascal | windows/src/ext/jedi/jvcl/tests/RxLib/Source/JvExcptDlg.dfm | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 219 | 2017-06-21T03:37:03.000Z | 2022-03-27T12:09:28.000Z | windows/src/ext/jedi/jvcl/tests/RxLib/Source/JvExcptDlg.dfm | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 4,451 | 2017-05-29T02:52:06.000Z | 2022-03-31T23:53:23.000Z | windows/src/ext/jedi/jvcl/tests/RxLib/Source/JvExcptDlg.dfm | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 72 | 2017-05-26T04:08:37.000Z | 2022-03-03T10:26:20.000Z | object JvErrorDialog: TJvErrorDialog
Left = 202
Top = 100
ActiveControl = OKBtn
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
ClientHeight = 252
ClientWidth = 380
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans S... | 21.505556 | 45 | 0.545337 |
aa47b78ee9e6bc308506e31586dbfcc64811efc4 | 1,965 | pas | Pascal | Source/Services/Rekognition/Base/Transform/AWS.Rekognition.Transform.MustacheUnmarshaller.pas | juliomar/aws-sdk-delphi | 995a0af808c7f66122fc6a04763d68203f8502eb | [
"Apache-2.0"
] | 67 | 2021-07-28T23:47:09.000Z | 2022-03-15T11:48:35.000Z | Source/Services/Rekognition/Base/Transform/AWS.Rekognition.Transform.MustacheUnmarshaller.pas | juliomar/aws-sdk-delphi | 995a0af808c7f66122fc6a04763d68203f8502eb | [
"Apache-2.0"
] | 5 | 2021-09-01T09:31:16.000Z | 2022-03-16T18:19:21.000Z | Source/Services/Rekognition/Base/Transform/AWS.Rekognition.Transform.MustacheUnmarshaller.pas | landgraf-dev/aws-sdk-delphi | 995a0af808c7f66122fc6a04763d68203f8502eb | [
"Apache-2.0"
] | 13 | 2021-07-29T02:41:16.000Z | 2022-03-16T10:22:38.000Z | unit AWS.Rekognition.Transform.MustacheUnmarshaller;
interface
uses
AWS.Rekognition.Model.Mustache,
AWS.Transform.JsonUnmarshallerContext,
AWS.Transform.ResponseUnmarshaller,
AWS.Internal.Request,
AWS.Transform.SimpleTypeUnmarshaller;
type
IMustacheUnmarshaller = IUnmarshaller<TMustache, TJsonUnmarsh... | 27.291667 | 102 | 0.764377 |
cdfdf708a97d0d645240bc41d0c6a85305a25ab6 | 19,278 | pas | Pascal | tesseractocr.pagelayout.pas | thachngopl/TTesseractOCR4 | b8575a8966c78bdcd49ac1a70f86480f093d734c | [
"MIT"
] | 102 | 2017-08-07T20:54:39.000Z | 2022-03-29T06:50:06.000Z | tesseractocr.pagelayout.pas | thachngopl/TTesseractOCR4 | b8575a8966c78bdcd49ac1a70f86480f093d734c | [
"MIT"
] | 16 | 2017-08-21T08:30:38.000Z | 2021-06-11T11:47:33.000Z | tesseractocr.pagelayout.pas | thachngopl/TTesseractOCR4 | b8575a8966c78bdcd49ac1a70f86480f093d734c | [
"MIT"
] | 31 | 2017-08-07T20:03:41.000Z | 2022-03-14T08:08:10.000Z | unit tesseractocr.pagelayout;
{ The MIT License (MIT)
TTesseractOCR4
Copyright (c) 2018 Damian Woroch, http://rime.ddns.net/
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 restrict... | 36.305085 | 132 | 0.700124 |
6197efeaacd240f8142dd1fdd36990e55317223b | 123 | pas | Pascal | Test/FailureScripts/error_directives.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 79 | 2015-03-18T10:46:13.000Z | 2022-03-17T18:05:11.000Z | Test/FailureScripts/error_directives.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 6 | 2016-03-29T14:39:00.000Z | 2020-09-14T10:04:14.000Z | Test/FailureScripts/error_directives.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 25 | 2016-05-04T13:11:38.000Z | 2021-09-29T13:34:31.000Z | {$HINT 'first hint'}
{$HINT }
{$WARNING 'second warn'}
{$ERROR 'then error'}
{$FATAL 'all ends here'}
{$HINT 'bug!'}
| 17.571429 | 25 | 0.577236 |
61c51513f8718f3858bb003d126fe38ad3744a28 | 2,464 | dpr | Pascal | Tests/Tests.dpr | dsapolska/dccontainers | f098cc9491b99cee8cc95758b6acdb1f01cbdba0 | [
"MIT"
] | 6 | 2019-02-01T02:33:13.000Z | 2022-02-21T11:29:31.000Z | Tests/Tests.dpr | dsapolska/dccontainers | f098cc9491b99cee8cc95758b6acdb1f01cbdba0 | [
"MIT"
] | null | null | null | Tests/Tests.dpr | dsapolska/dccontainers | f098cc9491b99cee8cc95758b6acdb1f01cbdba0 | [
"MIT"
] | 1 | 2020-09-26T03:04:57.000Z | 2020-09-26T03:04:57.000Z | // Uncomment the following directive to create a console application
// or leave commented to create a GUI application...
// {$APPTYPE CONSOLE}
program Tests;
uses
// FastMM4,
TestFramework {$IFDEF LINUX},
QForms,
QGUITestRunner {$ELSE},
Forms,
GUITestRunner {$ENDIF},
TextTestRunner,
rbtree in '..\RBT... | 34.704225 | 69 | 0.761364 |
6ac64f45e2f5e06d377c5ceb61e553a3faaf89bb | 4,576 | pas | Pascal | Chapter 10/Playground/Forms.Main.pas | atkins126/Delphi-GUI-Programming-with-FireMonkey- | d92b32d143762eb274f05e237c4a1b1876592add | [
"MIT"
] | 24 | 2020-10-29T20:58:47.000Z | 2022-01-12T13:49:09.000Z | Chapter 10/Playground/Forms.Main.pas | atkins126/Delphi-GUI-Programming-with-FireMonkey- | d92b32d143762eb274f05e237c4a1b1876592add | [
"MIT"
] | 1 | 2021-05-22T07:00:36.000Z | 2021-05-22T07:00:36.000Z | Chapter 10/Playground/Forms.Main.pas | atkins126/Delphi-GUI-Programming-with-FireMonkey- | d92b32d143762eb274f05e237c4a1b1876592add | [
"MIT"
] | 7 | 2020-11-06T20:01:18.000Z | 2021-11-06T14:31:06.000Z | unit Forms.Main;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.Controls.Presentation, FMX.StdCtrls, FMX.Objects, FMX.Ani, FMX.Layouts,
FMX.ListBox, System.Rtti, FMX.Edit;
type
TMainForm = cla... | 29.522581 | 117 | 0.752185 |
cd8c84d249bcdd704b7e72401dda170d751c44fc | 240,835 | pas | Pascal | Sources/ObjectData.pas | PassByYou888/zInstaller | 68c70a89f5c98834542f3417802a23bf0fb75638 | [
"MIT"
] | 12 | 2019-10-05T12:37:30.000Z | 2021-09-03T12:06:51.000Z | Sources/ObjectData.pas | PassByYou888/zInstaller | 68c70a89f5c98834542f3417802a23bf0fb75638 | [
"MIT"
] | null | null | null | Sources/ObjectData.pas | PassByYou888/zInstaller | 68c70a89f5c98834542f3417802a23bf0fb75638 | [
"MIT"
] | 8 | 2019-10-09T06:50:59.000Z | 2021-02-06T07:57:12.000Z | { ****************************************************************************** }
{ * Low Object DB Imp library * }
{ * https://zpascal.net * }
{ * https://github.com/PassByYou888/zAI ... | 33.725669 | 201 | 0.654095 |
6a5585fc463a6891529ddba0a6e2e3f2b25412a1 | 1,003 | pas | Pascal | examples/Delphi/Simple/ObjectSpace/CustomAttributes/BAName.pas | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 121 | 2020-09-22T10:46:20.000Z | 2021-11-17T12:33:35.000Z | examples/Delphi/Simple/ObjectSpace/CustomAttributes/BAName.pas | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 8 | 2020-09-23T12:32:23.000Z | 2021-07-28T07:01:26.000Z | examples/Delphi/Simple/ObjectSpace/CustomAttributes/BAName.pas | LenakeTech/BoldForDelphi | 3ef25517d5c92ebccc097c6bc2f2af62fc506c71 | [
"MIT"
] | 42 | 2020-09-22T14:37:20.000Z | 2021-10-04T10:24:12.000Z | {*******************************}
{ This unit was created by }
{ the BoldSoft Attribute Wizard }
{ 2000-02-28 10:28:51 }
{*******************************}
unit BAName;
interface
uses
BoldMemberTypeDictionary,
BoldElements,
BoldValueInterfaces,
BoldAttributes,
BoldSystem,
BoldDefs;
// To i... | 16.177419 | 80 | 0.646062 |
cd9dfd80111dd41d54429f7a786d09d369033a99 | 515,863 | pas | Pascal | source/HTMLSubs.pas | reftp740/HtmlViewer | a22764a925faa50c04012dbc316ce7023a4d34cb | [
"MIT"
] | null | null | null | source/HTMLSubs.pas | reftp740/HtmlViewer | a22764a925faa50c04012dbc316ce7023a4d34cb | [
"MIT"
] | null | null | null | source/HTMLSubs.pas | reftp740/HtmlViewer | a22764a925faa50c04012dbc316ce7023a4d34cb | [
"MIT"
] | null | null | null | {
Version 11.7
Copyright (c) 1995-2008 by L. David Baldwin
Copyright (c) 2008-2016 by HtmlViewer Team
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 restriction, including without limit... | 31.638332 | 199 | 0.627027 |
8508304b53cb9216af0d0c3cc201396260e7d6e5 | 18,757 | pas | Pascal | Indy10/System/IdStackBSDBase.pas | fabioxgn/IRC | dcfbaeb863b9feea95313212d5d5b0d7e2785df1 | [
"MIT"
] | 4 | 2018-10-11T15:33:15.000Z | 2021-08-18T22:13:34.000Z | Indy10/System/IdStackBSDBase.pas | fabioxgn/IRC | dcfbaeb863b9feea95313212d5d5b0d7e2785df1 | [
"MIT"
] | null | null | null | Indy10/System/IdStackBSDBase.pas | fabioxgn/IRC | dcfbaeb863b9feea95313212d5d5b0d7e2785df1 | [
"MIT"
] | 1 | 2021-08-18T22:13:36.000Z | 2021-08-18T22:13:36.000Z | {
$Project$
$Workfile$
$Revision$
$DateUTC$
$Id$
This file is part of the Indy (Internet Direct) project, and is offered
under the dual-licensing agreement described on the Indy website.
(http://www.indyproject.org/)
Copyright:
(c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r... | 33.735612 | 183 | 0.696113 |
6172c03055801b970485d734cacd13a87854cb61 | 6,411 | pas | Pascal | d2dFrames.pas | fireton/d2dge | 46708bd8cf22a8a22e22a0eae89c539fdee244c8 | [
"Apache-2.0"
] | 4 | 2017-12-04T22:53:35.000Z | 2021-03-01T04:40:06.000Z | d2dFrames.pas | fireton/d2dge | 46708bd8cf22a8a22e22a0eae89c539fdee244c8 | [
"Apache-2.0"
] | null | null | null | d2dFrames.pas | fireton/d2dge | 46708bd8cf22a8a22e22a0eae89c539fdee244c8 | [
"Apache-2.0"
] | 1 | 2018-08-02T05:44:53.000Z | 2018-08-02T05:44:53.000Z | unit d2dFrames;
interface
uses
d2dTypes,
d2dInterfaces;
type
Td2dHorizontalFrameParts = (hfpLeft, hfpMiddle, hfpRight);
Td2dVerticalFrameParts = (vfpTop, vfpMiddle, vfpBottom);
Td2dHorizFrame = class
private
f_Height : Integer;
f_Quad : array [Td2dHorizontalFrameParts] of Td2dQuad;
f_Width : ... | 28.748879 | 121 | 0.663703 |
6acd3bc6a0d2d853828a5eb6d3601dd52c370649 | 3,153 | pas | Pascal | samples/jsonrpc/MainControllerU.pas | compubinkie/delphimvcframework | a4381ec71984f941d44210d615df821c062a736f | [
"Apache-2.0"
] | 3 | 2020-04-23T04:15:18.000Z | 2021-11-16T11:24:54.000Z | samples/jsonrpc/MainControllerU.pas | darckbleu/danieleteti-delphimvcframework | 674c9feac96a777cfeca0ed34bdb364bcbb4bade | [
"Apache-2.0"
] | null | null | null | samples/jsonrpc/MainControllerU.pas | darckbleu/danieleteti-delphimvcframework | 674c9feac96a777cfeca0ed34bdb364bcbb4bade | [
"Apache-2.0"
] | null | null | null | unit MainControllerU;
interface
uses
MVCFramework, MVCFramework.Commons, MVCFramework.JSONRPC, JsonDataObjects,
Data.DB, BusinessObjectsU;
type
TMyJSONRPCController = class(TMVCJSONRPCController)
public
function Subtract(aValue1, aValue2: Integer): Integer;
function ReverseString(aString: string): st... | 24.068702 | 95 | 0.708214 |
6ae21aee9ce0539097b0be108da50f321625f896 | 183,540 | pas | Pascal | src/Common/ExportCIMXML.pas | PMeira/dss_capi | 8b80035730c9d470d057f6643db0a4d4623d70f4 | [
"BSD-3-Clause"
] | 4 | 2017-12-18T15:23:43.000Z | 2019-02-05T18:22:53.000Z | src/Common/ExportCIMXML.pas | PMeira/dss_capi | 8b80035730c9d470d057f6643db0a4d4623d70f4 | [
"BSD-3-Clause"
] | 28 | 2018-02-12T20:13:26.000Z | 2019-02-11T17:27:51.000Z | src/Common/ExportCIMXML.pas | PMeira/dss_capi | 8b80035730c9d470d057f6643db0a4d4623d70f4 | [
"BSD-3-Clause"
] | 1 | 2018-07-30T22:57:42.000Z | 2018-07-30T22:57:42.000Z | unit ExportCIMXML;
{
----------------------------------------------------------
Copyright (c) 2009-2021, Electric Power Research Institute, Inc.
All rights reserved.
----------------------------------------------------------
}
// Write a CIM XML file using RDF Schema for the Common Distribution
// Power Syste... | 40.276498 | 166 | 0.569353 |
cde26ad1eabb0f826130fa57219ca3630a678bb7 | 7,709 | pas | Pascal | amqp.tcp_socket.pas | sonadorje/rabbitmq-delphi | e4931fc10be22d84d0bafe83e3349403dbeb3b9b | [
"Apache-2.0"
] | 15 | 2021-10-31T04:07:35.000Z | 2022-03-03T21:26:40.000Z | amqp.tcp_socket.pas | lvjh10363/rabbitmq-delphi | e4931fc10be22d84d0bafe83e3349403dbeb3b9b | [
"Apache-2.0"
] | null | null | null | amqp.tcp_socket.pas | lvjh10363/rabbitmq-delphi | e4931fc10be22d84d0bafe83e3349403dbeb3b9b | [
"Apache-2.0"
] | 3 | 2021-11-03T11:31:58.000Z | 2021-12-23T16:52:08.000Z | unit amqp.tcp_socket;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$INCLUDE config.inc}
//DEFINE EAGAIN Operation would have caused the process to be suspended.
interface
uses AMQP.Types, amqp.socket,
{$IFNDEF FPC}
{$IFDEF _WIN32}
Net.Winsock2, Net.Wship6,
{$ELSE}
... | 26.767361 | 119 | 0.653262 |
aade562e0ba15abf0aaba7662c98cdfcf1fe90d4 | 2,753 | pas | Pascal | windows/src/ext/jedi/jvcl/donations/SIMDView/JvSIMDCpuInfo.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 219 | 2017-06-21T03:37:03.000Z | 2022-03-27T12:09:28.000Z | windows/src/ext/jedi/jvcl/donations/SIMDView/JvSIMDCpuInfo.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 4,451 | 2017-05-29T02:52:06.000Z | 2022-03-31T23:53:23.000Z | windows/src/ext/jedi/jvcl/donations/SIMDView/JvSIMDCpuInfo.pas | bravogeorge/keyman | c0797e36292de903d7313214d1f765e3d9a2bf4d | [
"MIT"
] | 72 | 2017-05-26T04:08:37.000Z | 2022-03-03T10:26:20.000Z | {-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/MPL-1.1.html... | 26.990196 | 103 | 0.705049 |
6a96613950ecc08be14a5595b8420ab65b4020ce | 2,774 | dpr | Pascal | references/mORMot/SQLite3/Samples/31 - WebSockets/Project31ChatServer.dpr | zekiguven/alcinoe | e55c5368ee8bfe7cd6d92424c29ab07d8a3e844c | [
"Apache-2.0"
] | 2 | 2020-02-17T18:42:30.000Z | 2020-11-14T04:57:48.000Z | references/mORMot/SQLite3/Samples/31 - WebSockets/Project31ChatServer.dpr | zekiguven/alcinoe | e55c5368ee8bfe7cd6d92424c29ab07d8a3e844c | [
"Apache-2.0"
] | 2 | 2019-06-23T00:02:43.000Z | 2019-10-12T22:39:28.000Z | references/mORMot/SQLite3/Samples/31 - WebSockets/Project31ChatServer.dpr | zekiguven/alcinoe | e55c5368ee8bfe7cd6d92424c29ab07d8a3e844c | [
"Apache-2.0"
] | null | null | null | /// simple SOA server using callbacks for a chat room
program Project31ChatServer;
{$APPTYPE CONSOLE}
uses
{$I SynDprUses.inc} // use FastMM4 on older versions of Delphi
SysUtils,
Classes,
SynCommons,
SynLog,
mORMot,
SynBidirSock,
mORMotHttpServer,
Project31ChatCallbackInterface in 'Pr... | 28.895833 | 99 | 0.710526 |
85064148dbd307042b120b3b6229bde7b25fe616 | 1,918 | pas | Pascal | src/Civ2UIA_SortedAbstractList.pas | FoxAhead/Civ2disassembling | 384ccc3ccae00bd3e5780b5396a52a6caa5e75f6 | [
"MIT"
] | null | null | null | src/Civ2UIA_SortedAbstractList.pas | FoxAhead/Civ2disassembling | 384ccc3ccae00bd3e5780b5396a52a6caa5e75f6 | [
"MIT"
] | null | null | null | src/Civ2UIA_SortedAbstractList.pas | FoxAhead/Civ2disassembling | 384ccc3ccae00bd3e5780b5396a52a6caa5e75f6 | [
"MIT"
] | null | null | null | unit Civ2UIA_SortedAbstractList;
interface
uses
Classes;
type
TSortedAbstractList = class
private
FBaseAddress: Pointer;
FSizeOfElement: Integer;
FCursorLimit: Integer;
function GetCount: Integer;
function GetItem(Index: Integer): Pointer;
procedure SetItem(Index: Integer; const Value: ... | 22.045977 | 98 | 0.754432 |
6a964a9082a12460727b5cf8a769992e97d949cc | 216,171 | pas | Pascal | server/indexing_r2.pas | danka74/fhirserver | 1fc53b6fba67a54be6bee39159d3db28d42eb8e2 | [
"BSD-3-Clause"
] | null | null | null | server/indexing_r2.pas | danka74/fhirserver | 1fc53b6fba67a54be6bee39159d3db28d42eb8e2 | [
"BSD-3-Clause"
] | null | null | null | server/indexing_r2.pas | danka74/fhirserver | 1fc53b6fba67a54be6bee39159d3db28d42eb8e2 | [
"BSD-3-Clause"
] | null | null | null | unit indexing_r2;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{
Copyright (c) 2001+, Health Intersections Pty Ltd (http://www.healthintersections.com.au)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions ar... | 61.83381 | 228 | 0.767365 |
6a1e3b86b8d43ca80ff92d4e83d3a4c7449ee0fc | 21,061 | dpr | Pascal | jedisdl/lesson10/JEDISDLOpenGL10.dpr | neozhou2009/nehe-opengl | 9f073e5b092ad8dbcb21393871a2855fe86a65c6 | [
"MIT"
] | 177 | 2017-12-31T04:44:27.000Z | 2022-03-23T10:08:03.000Z | jedisdl/lesson10/JEDISDLOpenGL10.dpr | neozhou2009/nehe-opengl | 9f073e5b092ad8dbcb21393871a2855fe86a65c6 | [
"MIT"
] | 2 | 2018-06-28T20:28:33.000Z | 2018-09-09T17:34:44.000Z | jedisdl/lesson10/JEDISDLOpenGL10.dpr | neozhou2009/nehe-opengl | 9f073e5b092ad8dbcb21393871a2855fe86a65c6 | [
"MIT"
] | 72 | 2018-01-07T16:41:29.000Z | 2022-03-18T17:57:38.000Z | program JEDISDLOpenGL10;
{******************************************************************}
{ }
{ Borland Delphi SDL with OpenGL Example }
{ Conversion of the SDL OpenGL Examples }
{ ... | 31.86233 | 102 | 0.56042 |
61842279829d79539de3b25f413f3279deb5568e | 10,918 | pas | Pascal | Patches/GLScene/GLFileOBSP.pas | osman-turan/openbsp-legacy | 083c4dd18bd5f5a6cf3e50fff4fd84de38b64da7 | [
"MIT"
] | 6 | 2018-12-09T01:58:52.000Z | 2022-03-20T03:31:21.000Z | Patches/GLScene/GLFileOBSP.pas | osman-turan/openbsp-legacy | 083c4dd18bd5f5a6cf3e50fff4fd84de38b64da7 | [
"MIT"
] | 1 | 2018-08-13T12:09:56.000Z | 2018-08-15T14:33:40.000Z | Patches/GLScene/GLFileOBSP.pas | osman-turan/OpenBSP-Legacy | 083c4dd18bd5f5a6cf3e50fff4fd84de38b64da7 | [
"MIT"
] | null | null | null | //
// This unit is part of the GLScene Project, http://glscene.org
//
{: GLFileOBSP<p>
Support-code to load OpenBSP Files into TGLFreeForm-Components in GLScene.<p>
Note that you must manually add this unit to one of your project's uses
to enable support for OpenBSP at run-time.<p>
VERY IMPORTANT NOTE... | 34.225705 | 130 | 0.577212 |
6ae85cda23c64c0706346104e33b5cb0c6735f61 | 5,849 | pas | Pascal | gif/Demo/Quantize/Main.pas | commandus/util | 05c89c3f7418ee790b79c053d2b4dee3c8c3ce96 | [
"MIT"
] | null | null | null | gif/Demo/Quantize/Main.pas | commandus/util | 05c89c3f7418ee790b79c053d2b4dee3c8c3ce96 | [
"MIT"
] | null | null | null | gif/Demo/Quantize/Main.pas | commandus/util | 05c89c3f7418ee790b79c053d2b4dee3c8c3ce96 | [
"MIT"
] | null | null | null | ////////////////////////////////////////////////////////////////////////////////
// //
// Project: TGIFImage demo application. //
// Description: Color Quantization. ... | 29.841837 | 103 | 0.509831 |
61892abcc81b0972f410cc0872cc09edab41b3bb | 6,532 | pas | Pascal | main.pas | Raf20076/Lazspell-2 | aab5128ccee713275bef68ec196c37a09238559d | [
"CC0-1.0"
] | null | null | null | main.pas | Raf20076/Lazspell-2 | aab5128ccee713275bef68ec196c37a09238559d | [
"CC0-1.0"
] | null | null | null | main.pas | Raf20076/Lazspell-2 | aab5128ccee713275bef68ec196c37a09238559d | [
"CC0-1.0"
] | null | null | null | {Unit Main License is https://creativecommons.org/publicdomain/zero/1.0/deed.en}
unit Main;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls,
Menus,LazFileUtils, LCLProc, RichMemo, LazUtils, LazUtf8, Variants;
type
{ TMainForm }
... | 31.863415 | 462 | 0.701164 |
850c9f5fca1ede5826f86be8801ca4f36946198f | 13,556 | dfm | Pascal | source/uFrmEtiqClientes.dfm | roneysousa/info_financeiro | 1e5135396b2c02ee47658a71ef83855cddfb73eb | [
"MIT"
] | 1 | 2021-01-31T20:00:45.000Z | 2021-01-31T20:00:45.000Z | source/uFrmEtiqClientes.dfm | roneysousa/info_financeiro | 1e5135396b2c02ee47658a71ef83855cddfb73eb | [
"MIT"
] | null | null | null | source/uFrmEtiqClientes.dfm | roneysousa/info_financeiro | 1e5135396b2c02ee47658a71ef83855cddfb73eb | [
"MIT"
] | 1 | 2021-01-31T20:00:47.000Z | 2021-01-31T20:00:47.000Z | object frmSelecioneCliente: TfrmSelecioneCliente
Left = 195
Top = 114
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Etiquetas de Clientes'
ClientHeight = 341
ClientWidth = 566
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name ... | 40.225519 | 140 | 0.762467 |
61018e79ea05bdea31882005bbb005884cd23d02 | 4,379 | dpr | Pascal | src/UnitTest/hyCalendarTest.dpr | takashi-ishio/hyCalendar | f3ec03232fe6374316b0e743a0b2ab42cc5d7d6a | [
"MIT"
] | null | null | null | src/UnitTest/hyCalendarTest.dpr | takashi-ishio/hyCalendar | f3ec03232fe6374316b0e743a0b2ab42cc5d7d6a | [
"MIT"
] | null | null | null | src/UnitTest/hyCalendarTest.dpr | takashi-ishio/hyCalendar | f3ec03232fe6374316b0e743a0b2ab42cc5d7d6a | [
"MIT"
] | null | null | null | program hyCalendarTest;
uses
Forms,
TestFrameWork,
GUITestRunner,
ImportTest in 'ImportTest.pas',
ImportText in '..\ImportText.pas',
CalendarItem in '..\CalendarItem.pas',
CalendarDocument in '..\CalendarDocument.pas',
RangeItemList in '..\RangeItemList.pas',
RangeItem in '..\RangeItem.pas',
Docume... | 46.094737 | 112 | 0.763645 |
61770032d608afd8acc2346d7eda4fa5708ec0b6 | 13,228 | pas | Pascal | engine/Projects/ThundaxTDPETests/lib/Array/Testtdpe.lib.vector.pas | jomael/thundax-delphi-physics-engine | a86f38cdaba1f00c5ef5296a8ae67b816a59448e | [
"MIT"
] | 56 | 2015-03-15T10:22:50.000Z | 2022-02-22T11:58:08.000Z | engine/Projects/ThundaxTDPETests/lib/Array/Testtdpe.lib.vector.pas | jomael/thundax-delphi-physics-engine | a86f38cdaba1f00c5ef5296a8ae67b816a59448e | [
"MIT"
] | 2 | 2016-07-10T07:57:05.000Z | 2019-10-14T15:49:06.000Z | engine/Projects/ThundaxTDPETests/lib/Array/Testtdpe.lib.vector.pas | jomael/thundax-delphi-physics-engine | a86f38cdaba1f00c5ef5296a8ae67b816a59448e | [
"MIT"
] | 18 | 2015-07-17T19:24:39.000Z | 2022-01-20T05:40:46.000Z | (*
* Copyright (c) 2010-2012 Thundax Delphi Physics Engine
* 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
... | 33.573604 | 155 | 0.693756 |
6a2bfad8df89750dd5b9348a10dc41135e6ba896 | 5,640 | pas | Pascal | WSSecurity200306.pas | ronaldhoek/SOAPStuff | 898acc163c83aa1b5f63f7bc5c7404ace0391330 | [
"MIT"
] | 1 | 2022-03-14T18:14:07.000Z | 2022-03-14T18:14:07.000Z | WSSecurity200306.pas | ronaldhoek/SOAPStuff | 898acc163c83aa1b5f63f7bc5c7404ace0391330 | [
"MIT"
] | null | null | null | WSSecurity200306.pas | ronaldhoek/SOAPStuff | 898acc163c83aa1b5f63f7bc5c7404ace0391330 | [
"MIT"
] | null | null | null | unit WSSecurity200306;
interface
uses
System.SysUtils, System.Types,
Soap.InvokeRegistry, Soap.SOAPHTTPClient, Soap.XSBuiltIns;
const
IS_OPTN = $0001;
IS_ATTR = $0010;
IS_TEXT = $0020;
IS_REF = $0080;
IS_QUAL = $0100;
type
AttributedString = class(TRemotable)
private
FText:... | 29.072165 | 119 | 0.690071 |
6a75181d34921587b471602d3939b8324371c082 | 5,495 | pas | Pascal | old/serverClientIO.pas | dgoedkoop/stwsim | bb40b2850aa73cbd244ae3ea0679ac33f86a00ab | [
"FSFAP"
] | null | null | null | old/serverClientIO.pas | dgoedkoop/stwsim | bb40b2850aa73cbd244ae3ea0679ac33f86a00ab | [
"FSFAP"
] | 4 | 2015-01-27T21:45:53.000Z | 2015-03-26T20:04:29.000Z | old/serverClientIO.pas | dgoedkoop/stwsim | bb40b2850aa73cbd244ae3ea0679ac33f86a00ab | [
"FSFAP"
] | null | null | null | unit serverClientIO;
interface
uses SysUtils, Classes, WSocket;
const
KB = 1024;
BlockSize = 128*KB;
LFd = #$0A;
LFs = #$0D#$0A;
type
PArray = ^TArray;
TArray = array[0..0] of byte;
TConnInfo = record
Username: string;
Gebied: string;
user_ok: boolean;
area_ok: boolean;
... | 24.100877 | 77 | 0.683894 |
6a9cc3ce0215897f7ba53a33e5c5f6a2367e0d1d | 40,164 | pas | Pascal | dependencies/Indy10/OpenSSL/static/IdOpenSSLHeaders_engine.pas | grahamegrieve/fhirserver | 28f69977bde75490adac663e31a3dd77bc016f7c | [
"BSD-3-Clause"
] | 132 | 2015-02-02T00:22:40.000Z | 2021-08-11T12:08:08.000Z | dependencies/Indy10/OpenSSL/static/IdOpenSSLHeaders_engine.pas | grahamegrieve/fhirserver | 28f69977bde75490adac663e31a3dd77bc016f7c | [
"BSD-3-Clause"
] | 113 | 2015-03-20T01:55:20.000Z | 2021-10-08T16:15:28.000Z | dependencies/Indy10/OpenSSL/static/IdOpenSSLHeaders_engine.pas | grahamegrieve/fhirserver | 28f69977bde75490adac663e31a3dd77bc016f7c | [
"BSD-3-Clause"
] | 49 | 2015-04-11T14:59:43.000Z | 2021-03-30T10:29:18.000Z | {******************************************************************************}
{ }
{ Indy (Internet Direct) - Internet Protocols Simplified }
{ ... | 55.860918 | 163 | 0.691141 |
6abf5c78e0bdc2b85287655f18ebbb8a9d273963 | 2,209 | pas | Pascal | app/src/main/assets/CodeSample/Android/battery_info.pas | tranleduy2000/pascalnide | c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01 | [
"Apache-2.0"
] | 81 | 2017-05-07T13:26:56.000Z | 2022-03-03T19:39:15.000Z | app/src/main/assets/CodeSample/Android/battery_info.pas | tranleduy2000/pascalnide | c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01 | [
"Apache-2.0"
] | 52 | 2017-06-13T08:46:43.000Z | 2021-06-09T09:50:07.000Z | app/src/main/assets/CodeSample/Android/battery_info.pas | tranleduy2000/pascalnide | c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01 | [
"Apache-2.0"
] | 28 | 2017-05-22T21:09:58.000Z | 2021-09-07T13:05:27.000Z | uses aBattery, crt;
var
status, health, level : Integer;
plugType : Integer;
tech : string;
vol : Integer;
temp : Integer;
procedure printStatus(i : Integer);
begin
{Returns the most recently received battery status data:
1 - unknown;
2 - charging;
3 - discharging;
4 - not charging;
5 - full;}
... | 19.548673 | 58 | 0.663196 |
cdf3426f6632a1698eecb5c0accd488ae8288a28 | 1,445 | dfm | Pascal | demos/Editors/AudioProcessorDemo/Main.dfm | JackTrapper/newac | a755625536a3c5e42484e067300a8541fe2840b9 | [
"DOC",
"Unlicense"
] | 1 | 2021-12-01T15:56:54.000Z | 2021-12-01T15:56:54.000Z | demos/Editors/AudioProcessorDemo/Main.dfm | JoseJimeniz/newac | a755625536a3c5e42484e067300a8541fe2840b9 | [
"DOC",
"Unlicense"
] | null | null | null | demos/Editors/AudioProcessorDemo/Main.dfm | JoseJimeniz/newac | a755625536a3c5e42484e067300a8541fe2840b9 | [
"DOC",
"Unlicense"
] | 1 | 2018-09-28T12:51:23.000Z | 2018-09-28T12:51:23.000Z | object Form1: TForm1
Left = 0
Top = 0
Caption = 'AudioProcessor Demo'
ClientHeight = 49
ClientWidth = 240
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCen... | 20.942029 | 42 | 0.615225 |
61f8be739d225103917ac36fc2e218a178c5be94 | 52,106 | pas | Pascal | lgenerics/lgtreemap.pas | avk959/LGenerics | a57a501c914726b245c347056c666717f4bb44ee | [
"Apache-2.0"
] | 76 | 2018-06-20T07:36:46.000Z | 2022-03-17T19:19:46.000Z | lgenerics/lgtreemap.pas | avk959/LGenerics | a57a501c914726b245c347056c666717f4bb44ee | [
"Apache-2.0"
] | 6 | 2019-02-04T10:09:49.000Z | 2022-03-10T07:54:41.000Z | lgenerics/lgtreemap.pas | avk959/LGenerics | a57a501c914726b245c347056c666717f4bb44ee | [
"Apache-2.0"
] | 13 | 2019-11-15T10:54:17.000Z | 2022-01-02T15:13:35.000Z | {****************************************************************************
* *
* This file is part of the LGenerics package. *
* Generic sorted map implementations on top of AVL tree. *
* ... | 28.70854 | 117 | 0.739723 |
6102fce230e87358927cdf54a9ee4e9801f23227 | 3,043 | pas | Pascal | rx/Units/Rxdconst.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | 6 | 2019-02-15T02:47:02.000Z | 2021-08-02T22:34:34.000Z | rx/Units/Rxdconst.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | null | null | null | rx/Units/Rxdconst.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | 7 | 2020-05-04T21:44:13.000Z | 2021-04-02T12:42:23.000Z | {*******************************************************}
{ }
{ Delphi VCL Extensions (RX) }
{ }
{ Copyright (c) 1995, 1996 AO ROSNO }
{ Copyright (c) 1997 M... | 27.414414 | 67 | 0.538285 |
aacd0511f49081e038a192d96c05c58eaa13eb47 | 2,320 | pas | Pascal | ThFortFunc.pas | delphi-pascal-archive/mhc-fs2 | f76dfdedec849687ac114c69451fcf504aa8d8bd | [
"Unlicense"
] | null | null | null | ThFortFunc.pas | delphi-pascal-archive/mhc-fs2 | f76dfdedec849687ac114c69451fcf504aa8d8bd | [
"Unlicense"
] | null | null | null | ThFortFunc.pas | delphi-pascal-archive/mhc-fs2 | f76dfdedec849687ac114c69451fcf504aa8d8bd | [
"Unlicense"
] | null | null | null | unit ThFortFunc;
interface
uses
Classes, Math, Graphics, OpenML;
type TFloat = extended;
type TIntegType = Integer;
TFunction = function(x: TFloat): TFloat;
type
TThFortFunc = class(TThread)
private
Result: TFloat;
protected
procedure Execute; override;
public
constructo... | 22.307692 | 175 | 0.681897 |
6a270d1ca3a96261b1957cedbe5ff96975a4b483 | 5,886 | pas | Pascal | vcl/XLSReadWrite6/Samples/ExportHtml/Main.pas | 1aq/PBox | 67ced599ee36ceaff097c6584f8100cf96006dfe | [
"MIT"
] | null | null | null | vcl/XLSReadWrite6/Samples/ExportHtml/Main.pas | 1aq/PBox | 67ced599ee36ceaff097c6584f8100cf96006dfe | [
"MIT"
] | null | null | null | vcl/XLSReadWrite6/Samples/ExportHtml/Main.pas | 1aq/PBox | 67ced599ee36ceaff097c6584f8100cf96006dfe | [
"MIT"
] | null | null | null | unit Main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, CheckLst, ExtCtrls, IniFiles, XLSUtils5, Xc12Utils5,
XLSSheetData5, XLSReadWriteII5, XLSExport5, XLSExportHTML5, ComCtrls,
XPMan;
type
TfrmMain = class(TForm)
Panel1: TPanel;
btnR... | 25.261803 | 115 | 0.738702 |
cdbaeb2bade459d647a702d2277a5671098b1650 | 19,590 | pas | Pascal | source/ALIniFiles.pas | arvanus/alcinoe | 78e3a610011f8776fc6b531a52f773cfb4adf488 | [
"Apache-2.0"
] | null | null | null | source/ALIniFiles.pas | arvanus/alcinoe | 78e3a610011f8776fc6b531a52f773cfb4adf488 | [
"Apache-2.0"
] | null | null | null | source/ALIniFiles.pas | arvanus/alcinoe | 78e3a610011f8776fc6b531a52f773cfb4adf488 | [
"Apache-2.0"
] | null | null | null | {**********************************************************
Description: AnsiString version of delphi Unicode Tinifile
***********************************************************}
unit ALIniFiles;
{$R-,T-,H+,X+}
interface
{$IF CompilerVersion >= 25} {Delphi XE4}
{$LEGACYIFEND ON} // http://docwiki.emb... | 38.336595 | 146 | 0.561154 |
6a9926f2ec0b95e9261a2d744bf33cf4378eb6d5 | 1,954 | pas | Pascal | Client/fEmployeesTotalAvailabilityFilter.pas | Sembium/Sembium3 | 0179c38c6a217f71016f18f8a419edd147294b73 | [
"Apache-2.0"
] | null | null | null | Client/fEmployeesTotalAvailabilityFilter.pas | Sembium/Sembium3 | 0179c38c6a217f71016f18f8a419edd147294b73 | [
"Apache-2.0"
] | null | null | null | Client/fEmployeesTotalAvailabilityFilter.pas | Sembium/Sembium3 | 0179c38c6a217f71016f18f8a419edd147294b73 | [
"Apache-2.0"
] | 3 | 2021-06-30T10:11:17.000Z | 2021-07-01T09:13:29.000Z | unit fEmployeesTotalAvailabilityFilter;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, fFilterForm, DB, AbmesFields, DBClient, AbmesClientDataSet,
JvComponent, JvCaptionButton, ActnList, JvExControls, JvDBLookup,
Buttons, StdCtrls, ExtCtrls, JvExStd... | 28.735294 | 78 | 0.758444 |
619cc90833fa37fbc5fba0e6979f680427899673 | 1,755 | pas | Pascal | PROG_ADMIN/SelFecha.pas | carlosthieme/FerrePOS | 54232bb0e02e4f7383c8d99ec6a9112b4e95b10e | [
"Unlicense"
] | null | null | null | PROG_ADMIN/SelFecha.pas | carlosthieme/FerrePOS | 54232bb0e02e4f7383c8d99ec6a9112b4e95b10e | [
"Unlicense"
] | null | null | null | PROG_ADMIN/SelFecha.pas | carlosthieme/FerrePOS | 54232bb0e02e4f7383c8d99ec6a9112b4e95b10e | [
"Unlicense"
] | null | null | null | unit SelFecha;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, Buttons, ComCtrls;
type
TSelFechaForm = class(TForm)
Panel1: TPanel;
Label1: TLabel;
FechaSel: TDateTimePicker;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
Grupo: TRadioGr... | 25.434783 | 151 | 0.613675 |
6aedf2c6f73d7a74e11eb9a85eb79e1157b9b24a | 5,236 | pas | Pascal | crypto/serpent/sp_ofb.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | 6 | 2019-02-15T02:47:02.000Z | 2021-08-02T22:34:34.000Z | crypto/serpent/sp_ofb.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | null | null | null | crypto/serpent/sp_ofb.pas | amikey/delphi-crypto | a79895f25bff69819f354e9bf27c19e2f00fed19 | [
"Unlicense"
] | 7 | 2020-05-04T21:44:13.000Z | 2021-04-02T12:42:23.000Z | unit SP_OFB;
(*************************************************************************
DESCRIPTION : Serpent OFB functions
Because of buffering en/decrypting is associative
REQUIREMENTS : TP5-7, D1-D7/D9-D10/D12, FPC, VP
EXTERNAL DATA : ---
MEMORY USAGE : ---
DISPLAY MODE... | 30.265896 | 99 | 0.599694 |
6a688cc3a4f6a2c70f0d41510000e18f70142c5b | 792 | pas | Pascal | ObjectPascal/PascalSST.pas | Shahimat/SimpleStructuralText | 6e9d664bc20f2aa13ceadc2e9ea52edbcbf8065c | [
"MIT"
] | 1 | 2019-08-09T10:09:17.000Z | 2019-08-09T10:09:17.000Z | ObjectPascal/PascalSST.pas | Shahimat/SimpleStructuralText | 6e9d664bc20f2aa13ceadc2e9ea52edbcbf8065c | [
"MIT"
] | null | null | null | ObjectPascal/PascalSST.pas | Shahimat/SimpleStructuralText | 6e9d664bc20f2aa13ceadc2e9ea52edbcbf8065c | [
"MIT"
] | null | null | null | (*===========================================================================*)
(* *)
(* The MIT License (MIT) *)
(* *)
... | 41.684211 | 79 | 0.258838 |
6ac40093f3bb6f3f241e9c9696407f0c27889a17 | 186 | pas | Pascal | CAT/tests/07. buil-in functions/static_assert/static_assert_2.pas | SkliarOleksandr/NextPascal | 4dc26abba6613f64c0e6b5864b3348711eb9617a | [
"Apache-2.0"
] | 19 | 2018-10-22T23:45:31.000Z | 2021-05-16T00:06:49.000Z | CAT/tests/07. buil-in functions/static_assert/static_assert_2.pas | SkliarOleksandr/NextPascal | 4dc26abba6613f64c0e6b5864b3348711eb9617a | [
"Apache-2.0"
] | 1 | 2019-06-01T06:17:08.000Z | 2019-12-28T10:27:42.000Z | CAT/tests/07. buil-in functions/static_assert/static_assert_2.pas | SkliarOleksandr/NextPascal | 4dc26abba6613f64c0e6b5864b3348711eb9617a | [
"Apache-2.0"
] | 6 | 2018-08-30T05:16:21.000Z | 2021-05-12T20:25:43.000Z | unit static_assert_2;
interface
implementation
procedure Test;
begin
StaticAssert(SizeOf(Int32) = 4, 'Int32 must be 4 byte size');
end;
initialization
Test();
finalization
end. | 10.941176 | 63 | 0.752688 |
17c5f98b339e5655ec9c36344e3d42c0c2dc3222 | 2,909 | pas | Pascal | Server/Controller/Controller.Membro.pas | helio65/eBike | 0de58eaf9e7d27d1e307e78eeed73fc4d18a3416 | [
"MIT"
] | null | null | null | Server/Controller/Controller.Membro.pas | helio65/eBike | 0de58eaf9e7d27d1e307e78eeed73fc4d18a3416 | [
"MIT"
] | null | null | null | Server/Controller/Controller.Membro.pas | helio65/eBike | 0de58eaf9e7d27d1e307e78eeed73fc4d18a3416 | [
"MIT"
] | null | null | null | unit Controller.Membro;
interface
uses
System.SysUtils, System.StrUtils, MVCFramework.Logger, MVCFramework, MVCFramework.Commons;
type
[MVCPath('/eBike')]
TControllerMembro = class(TMVCController)
public
[MVCPath]
[MVCHTTPMethod([httpGET])]
procedure Index;
protected
procedure OnBeforeAct... | 21.07971 | 114 | 0.710553 |
61a740d54bd108288a5d1641cfcf5fd90432c12f | 3,151 | pas | Pascal | Source/Services/SimpleNotificationService/Base/Model/AWS.SNS.Model.ListPlatformApplicationsResponse.pas | gabrielbaltazar/aws-sdk-delphi | ea1713b227a49cbbc5a2e1bf04cbf2de1f9b611a | [
"Apache-2.0"
] | 1 | 2021-08-18T21:02:27.000Z | 2021-08-18T21:02:27.000Z | Source/Services/SimpleNotificationService/Base/Model/AWS.SNS.Model.ListPlatformApplicationsResponse.pas | gabrielbaltazar/aws-sdk-delphi | ea1713b227a49cbbc5a2e1bf04cbf2de1f9b611a | [
"Apache-2.0"
] | null | null | null | Source/Services/SimpleNotificationService/Base/Model/AWS.SNS.Model.ListPlatformApplicationsResponse.pas | gabrielbaltazar/aws-sdk-delphi | ea1713b227a49cbbc5a2e1bf04cbf2de1f9b611a | [
"Apache-2.0"
] | null | null | null | unit AWS.SNS.Model.ListPlatformApplicationsResponse;
interface
uses
Bcl.Types.Nullable,
System.Generics.Collections,
AWS.Runtime.Model,
AWS.SNS.Model.PlatformApplication;
type
TListPlatformApplicationsResponse = class;
IListPlatformApplicationsResponse = interface(IAmazonWebServiceResponse)
fun... | 31.19802 | 128 | 0.822913 |
cdd217d8add4fbcd6b10480daa19cc83bd9375f7 | 6,483 | pas | Pascal | semant.pas | bradbowes/tiger | 7ac89604fbd3171abd12861f61d23ff9f9a16d92 | [
"Unlicense"
] | null | null | null | semant.pas | bradbowes/tiger | 7ac89604fbd3171abd12861f61d23ff9f9a16d92 | [
"Unlicense"
] | null | null | null | semant.pas | bradbowes/tiger | 7ac89604fbd3171abd12861f61d23ff9f9a16d92 | [
"Unlicense"
] | null | null | null | unit semant;
interface
uses bindings, types, nodes;
function type_check(n: node; env, tenv: frame): spec;
implementation
uses utils, ops;
function type_check(n: node; env, tenv: frame): spec;
var
ty1, ty2 : spec;
op: op_tag;
it: node_list_item;
begin
case n^.tag of
assign_node: begin
... | 34.301587 | 130 | 0.534938 |
6ae890940a356ddafd2df77a2de94e358a164fb5 | 6,718 | pas | Pascal | Source/Components/Pascal/LKSL.Threads.Components.pas | LaKraven/LKSL | 65b8798f4af3cc642bdbd70471b38e7aa535d6c1 | [
"RSA-MD"
] | 44 | 2015-01-04T13:03:08.000Z | 2021-11-16T14:21:26.000Z | Source/Components/Pascal/LKSL.Threads.Components.pas | LaKraven/LKSL | 65b8798f4af3cc642bdbd70471b38e7aa535d6c1 | [
"RSA-MD"
] | 123 | 2015-01-07T14:17:57.000Z | 2018-01-11T11:42:34.000Z | Source/Components/Pascal/LKSL.Threads.Components.pas | LaKraven/LKSL | 65b8798f4af3cc642bdbd70471b38e7aa535d6c1 | [
"RSA-MD"
] | 13 | 2015-04-15T07:25:45.000Z | 2020-01-18T18:35:35.000Z | {
LaKraven Studios Standard Library [LKSL]
Copyright (c) 2014-2016, Simon J Stuart, All Rights Reserved
Original Source Location: https://github.com/LaKraven/LKSL
License:
- You may use this library as you see fit, including use within commercial applications.
- You may modify this library to suit you... | 30.39819 | 100 | 0.761536 |
6a62fd59b08fb8be47921ae88ba3e2fdbdb4aa1a | 66,821 | pas | Pascal | source/uWVCoreWebView2Args.pas | khongten001/WebView4Delphi | b5c33eb9fc52cde0763afef0e1260573795e1c58 | [
"MIT"
] | 99 | 2021-12-03T22:21:56.000Z | 2022-03-26T20:19:23.000Z | source/uWVCoreWebView2Args.pas | khongten001/WebView4Delphi | b5c33eb9fc52cde0763afef0e1260573795e1c58 | [
"MIT"
] | 20 | 2021-12-04T10:12:45.000Z | 2022-03-01T09:37:51.000Z | source/uWVCoreWebView2Args.pas | khongten001/WebView4Delphi | b5c33eb9fc52cde0763afef0e1260573795e1c58 | [
"MIT"
] | 17 | 2021-12-04T09:32:31.000Z | 2022-03-24T15:15:44.000Z | unit uWVCoreWebView2Args;
{$IFDEF FPC}{$MODE Delphi}{$ENDIF}
interface
uses
{$IFDEF FPC}
Types, ActiveX,
{$ELSE}
System.Types, Winapi.ActiveX,
{$ENDIF}
uWVTypeLibrary, uWVTypes;
type
TCoreWebView2AcceleratorKeyPressedEventArgs = class
protected
FBaseIntf : ICoreWebView2AcceleratorKeyPressedE... | 30.456244 | 178 | 0.719459 |
851865bf14436a8877e702668aabf9c764fc8793 | 37 | pas | Pascal | Test/SimpleScripts/string_bounds2.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 79 | 2015-03-18T10:46:13.000Z | 2022-03-17T18:05:11.000Z | Test/SimpleScripts/string_bounds2.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 6 | 2016-03-29T14:39:00.000Z | 2020-09-14T10:04:14.000Z | Test/SimpleScripts/string_bounds2.pas | skolkman/dwscript | b9f99d4b8187defac3f3713e2ae0f7b83b63d516 | [
"Condor-1.1"
] | 25 | 2016-05-04T13:11:38.000Z | 2021-09-29T13:34:31.000Z | var s = 'string';
PrintLn(s[0]);
| 9.25 | 18 | 0.513514 |
6a0278d1559957125633fb8b8fa86957dc2eb5d6 | 310 | pas | Pascal | Chapter06/Null object/Logger.Intf.pas | PacktPublishing/Hands-On-Design-Patterns-with-Delphi | 30f6ab51e61d583f822be4918f4b088e2255cd82 | [
"MIT"
] | 38 | 2019-02-28T06:22:52.000Z | 2022-03-16T12:30:43.000Z | Chapter06/Null object/Logger.Intf.pas | alefragnani/Hands-On-Design-Patterns-with-Delphi | 3d29e5b2ce9e99e809a6a9a178c3f5e549a8a03d | [
"MIT"
] | null | null | null | Chapter06/Null object/Logger.Intf.pas | alefragnani/Hands-On-Design-Patterns-with-Delphi | 3d29e5b2ce9e99e809a6a9a178c3f5e549a8a03d | [
"MIT"
] | 18 | 2019-03-29T08:36:14.000Z | 2022-03-30T00:31:28.000Z | unit Logger.Intf;
interface
type
ILogger = interface ['{738C066A-0777-4BA8-ACB6-2DE68A3968AD}']
function Initialize: boolean;
procedure Log(const msg: string); overload;
procedure Log(const msg: string; const params: array of const); overload;
procedure Close;
end;
implementation
end.
| 19.375 | 77 | 0.725806 |
61a32fae60dccb82ce8d311183d1f039ef03baff | 3,582 | dfm | Pascal | net.ssa/Editors/LevelEditor/PropertiesEvent.dfm | ixray-team/xray-vss-archive | b245c8601dcefb505b4b51f58142da6769d4dc92 | [
"Linux-OpenIB"
] | 1 | 2022-03-26T17:00:19.000Z | 2022-03-26T17:00:19.000Z | net.ssa/Editor/PropertiesEvent.dfm | ixray-team/xray-vss-archive | b245c8601dcefb505b4b51f58142da6769d4dc92 | [
"Linux-OpenIB"
] | null | null | null | net.ssa/Editor/PropertiesEvent.dfm | ixray-team/xray-vss-archive | b245c8601dcefb505b4b51f58142da6769d4dc92 | [
"Linux-OpenIB"
] | 1 | 2022-03-26T17:00:21.000Z | 2022-03-26T17:00:21.000Z | object frmPropertiesEvent: TfrmPropertiesEvent
Left = 675
Top = 404
BorderStyle = bsDialog
Caption = 'Event properties'
ClientHeight = 367
ClientWidth = 492
Color = 10528425
Constraints.MaxWidth = 500
Constraints.MinWidth = 500
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
... | 27.343511 | 73 | 0.664992 |
6a672d02bafa8edd0e353b37661949e0ccae4493 | 1,752 | pas | Pascal | ALG-1/lista_07/vetores_02/insere_remove.pas | leommartin/ERE-2-UFPR | b6dfe367507566b4bd7fa10aa15ed7567880a4d2 | [
"MIT"
] | null | null | null | ALG-1/lista_07/vetores_02/insere_remove.pas | leommartin/ERE-2-UFPR | b6dfe367507566b4bd7fa10aa15ed7567880a4d2 | [
"MIT"
] | null | null | null | ALG-1/lista_07/vetores_02/insere_remove.pas | leommartin/ERE-2-UFPR | b6dfe367507566b4bd7fa10aa15ed7567880a4d2 | [
"MIT"
] | null | null | null | program ordenacao;
const max = 200;
type vetor = array [1..max] of real;
var v: vetor;
escolha,tam: integer;
procedure ordena_vetor (var v:vetor; tam: integer);
var i,j:integer;
aux:real;
begin
for i:=1 to tam do
begin
for j:=i+1 to tam do
begin
if(... | 19.252747 | 83 | 0.579338 |
cdfe4f7fb7073d5f90e0e3df495c6cebb936da16 | 54,387 | pas | Pascal | toolkit/ValueSetEditor.pas | niaz819/fhirserver | fee45e1e57053a776b893dba543f700dd9cb9075 | [
"BSD-3-Clause"
] | null | null | null | toolkit/ValueSetEditor.pas | niaz819/fhirserver | fee45e1e57053a776b893dba543f700dd9cb9075 | [
"BSD-3-Clause"
] | null | null | null | toolkit/ValueSetEditor.pas | niaz819/fhirserver | fee45e1e57053a776b893dba543f700dd9cb9075 | [
"BSD-3-Clause"
] | null | null | null | unit ValueSetEditor;
{
Copyright (c) 2017+, Health Intersections Pty Ltd (http://www.healthintersections.com.au)
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 co... | 35.687008 | 147 | 0.709802 |
Subsets and Splits
HTML Code Excluding Scripts
The query retrieves a limited set of HTML content entries that are longer than 8 characters and do not contain script tags, offering only basic filtering with minimal analytical value.