This file contains 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
#Использовать asserts | |
#Использовать moskito | |
#Использовать "./Моки" | |
#Использовать "../src/model" | |
#Использовать "../src/controllers" | |
Функция ПолучитьСписокТестов(юТест) Экспорт | |
ВсеТесты = Новый Массив; |
This file contains 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
81 EmptyRegionDiagnostic | |
85 NonStandardRegionDiagnostic | |
115 DuplicateRegionDiagnostic | |
211 CompilationDirectiveLostDiagnostic | |
349 SpaceAtStartCommentDiagnostic | |
515 CanonicalSpellingKeywordsDiagnostic | |
529 CompilationDirectiveNeedLessDiagnostic | |
625 NumberOfParamsDiagnostic | |
629 ThisObjectAssignDiagnostic | |
645 UnknownPreprocessorSymbolDiagnostic |
This file contains 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 MIT License | |
/// | |
/// Copyright (c) 2019 Plague Fox | |
/// | |
/// 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, distribute, sublicense, and/or sell | |
/// copies of the Software, and to permit persons to whom the Software is |
This file contains 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
@echo off | |
chcp 65001 > nul | |
set E1C_RAS=localhost:3545 | |
set E1C_RAC=C:\Program Files\1cv8\current\bin\rac.exe | |
set DB_SERVER=localhost:3541 | |
set DB_NAME=1C_DATABASE | |
set DB_USER=1C_ADMINISTRATOR | |
set DB_PWD=1C_PASSWORD | |
set PGUSER=PG_ADMINISTRATOR |
This file contains 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
# coding: utf-8 | |
################################################################################ | |
# В данном файле описана заготовка для создания скриптов для | |
# 1С:Центра Автоматизации. Все поставляемые скрипты написаны по данному шаблону, | |
# поэтому можно любой скрипт использовать как пример. | |
################################################################################ | |
This file contains 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
@echo off | |
set v8version=8.3.14.1779 | |
set v8path="C:\Program Files\1cv8\%v8version%\bin\1cv8" | |
set edtprojectpath=%cd%\dp | |
set tmpdir=%cd%\tmp | |
set buildpath=%edtprojectpath%\bin | |
md "%tmpdir%" | |
md "%tmpdir%\ws" |
This file contains 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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"servers": { | |
"type": "array", | |
"items": { | |
"oneOf": [ | |
{ | |
"type": "object", |
This file contains 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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"serverId": { | |
"type": "string", | |
"description": "Unique ID of SonarQube connection" | |
}, | |
"projectKey": { | |
"type": "string", |
This file contains 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
// Обработка предназначена для автоматизированного расчета цикломатической сложности кода | |
// Адрес публикации на Инфорстарте: http://infostart.ru/public/166182/ | |
// Вы можете использовать обработку по своему усмотрению в рамках действующего законодательства. | |
// Единственная просьба: если у вас есть замечания или предложения по улучшению обработки, а также в случае нахождения багов - пишите мне об этом на http://infostart.ru/profile/101097/ | |
#Использовать cmdline | |
#Использовать logos | |
Перем МассивСтрокМодуля Экспорт; | |
Перем ДеревоРезультатовАнализа; |
This file contains 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
def labels = ['slave-2', 'slave-3'] // labels for Jenkins node types we will build on | |
def builders = [:] | |
for (x in labels) { | |
def label = x // Need to bind the label variable before the closure - can't do 'for (label in labels)' | |
// Create a map to pass in to the 'parallel' step so we can fire all the builds at once | |
builders[label] = { | |
node(label) { | |
update_to('8.3.12.1616') | |
} |
NewerOlder