This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//The Liskov substitution principle violation | |
public abstract class Animal | |
{ | |
public abstract void Eat(Food food); | |
public abstract void Walk(int meters); | |
} | |
public class Dog : Animal | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"exception": "DevExpress.ExpressApp.Actions.ActionExecutionException", | |
"message": "Исполнение Sql 'insert into \"DocumentRemarks\"(\"Oid\",\"TargetType\",\"TargetKey\",\"OptimisticLockField\",\"GCRecord\")values(E'6bb7849a-bdd6-4084-b5f7-3c80c88e536e',E'PromAktiv.Module.Активы.ОбъектРемонта',E'22e54ffc-264f-11e9-ada7-e7da96c02eb0',1,null)' с параметрами '' исключение 'Npgsql.PostgresException (0x80004005): 53100: could not extend file \"base/404610/405557\": No space left on device\r\n в Npgsql.NpgsqlConnector.<>c__DisplayClass161_0.<<ReadMessage>g__ReadMessageLong|0>d.MoveNext()\r\n--- Конец трассировка стека из предыдущего расположения, где возникло исключение ---\r\n в System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()\r\n в Npgsql.NpgsqlConnector.<>c__DisplayClass161_0.<<ReadMessage>g__ReadMessageLong|0>d.MoveNext()\r\n--- Конец трассировка стека из предыдущего расположения, где возникло исключение ---\r\n в System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()\r\n в S |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://by01-xafari-dev.topsoft.local/eam-rzd/1.0.5/eam/odata/DefectJournalItem?$orderby=Number&$top=20&$select=Oid,Number,Date,Наименование,IsFailure,DefectCategory,DateDetect,DateBeginPlan,DateEndPlan,DurationPlan,DateBeginFact,DateEndFact,DurationFact,DateAccept,AssetDocumentState,DocumentState,AsString,CorrectionDescription,Description,DP,Dpo,ExternalID,HistoryCreate,HistoryCreateActionExecutor,HistoryCreateDate,HistoryDelete,HistoryDeleteActionExecutor,HistoryDeleteDate,HistoryModify,HistoryModifyActionExecutor,HistoryModifyDate,Image,ISIndex,Код,СтроковоеПредставление&$expand=Kind($select=Наименование),Asset($select=Наименование),TechnicalPlace($select=Наименование),ManufUnit($select=Наименование),Employee($select=Наименование),Defect($select=Наименование),AcceptReport($select=Наименование),DefectCause($select=Наименование),DefectType($select=Наименование),EmployeeAccept($select=Наименование),Author($select=Наименование),Component($select=Код,Наименование),Assembly($select=Наименование),SerialNumber($se |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: jmeter-server | |
# Required-Start: $syslog $local_fs | |
# Required-Stop: $syslog $local_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Apache JMeter Remote Server | |
# Description: Apache JMeter Remote Server runs JMeter tests issued from a remote server. | |
### END INIT INFO |