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
| @Test | |
| void deliveryDateFilterTest() { | |
| // с нужной датой | |
| ZonedDateTime zonedDeliveryDate1 = ZonedDateTime.now(); | |
| Product product1 = createTestModel().getAllModelProducts().get(0); | |
| Order order = createOrder(product1, zonedDeliveryDate1); | |
| Product product2 = createTestModel().getAllModelProducts().get(0); | |
| createOrder(product2, zonedDeliveryDate1); | |
| // другой датой | |
| ZonedDateTime zonedDeliveryDate2 = ZonedDateTime.now().plusDays(2); |
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
| C:\Users\user\.jdks\corretto-17.0.10\bin\java.exe -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:49964,suspend=y,server=n -XX:TieredStopAtLevel=1 -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-Dmanagement.endpoints.jmx.exposure.include=*" -javaagent:C:\Users\user\AppData\Local\JetBrains\IntelliJIdea2023.3\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8 @C:\Users\user\AppData\Local\Temp\idea_arg_file1532809046 ru.selsup.Main | |
| Connected to the target VM, address: '127.0.0.1:49964', transport: 'socket' | |
| 10:11:21.221 [Thread-0] DEBUG org.springframework.boot.devtools.restart.classloader.RestartClassLoader - Created RestartClassLoader org.springframework.boot.devtools.restart.classloader.RestartClassLoader@6ef9b517 | |
| . ____ _ __ _ _ | |
| /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ | |
| ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ | |
| \\/ ___)| |_)| | | | | || (_| | ) ) ) ) | |
| ' |
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
| C:\Users\user\.jdks\corretto-17.0.10\bin\java.exe -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:61662,suspend=y,server=n -XX:TieredStopAtLevel=1 -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-Dmanagement.endpoints.jmx.exposure.include=*" -javaagent:C:\Users\user\AppData\Local\JetBrains\IntelliJIdea2023.3\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8 @C:\Users\user\AppData\Local\Temp\idea_arg_file8950985 ru.selsup.Main | |
| Connected to the target VM, address: '127.0.0.1:61662', transport: 'socket' | |
| 11:21:25.782 [Thread-0] DEBUG org.springframework.boot.devtools.restart.classloader.RestartClassLoader - Created RestartClassLoader org.springframework.boot.devtools.restart.classloader.RestartClassLoader@3dcbfc7d | |
| . ____ _ __ _ _ | |
| /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ | |
| ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ | |
| \\/ ___)| |_)| | | | | || (_| | ) ) ) ) | |
| ' |_ |
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://github.com/Menelaii/Digital-Spring | |
| Фитбек от СимбирСофта: | |
| Страницы для реализации: | |
| ⵔ Список лиг/соревнований - Выполнено | |
| ⵔ Список команд - Выполнено | |
| ⵔ Календарь лиги - список матчей лиги/соревнования - Выполнено | |
| ⵔ Календарь одной команды - список матчей команды - Выполнено |
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
| package com.shikkeram.server.repositories; | |
| import com.shikkeram.server.models.Furniture; | |
| import com.shikkeram.server.models.FurniturePage; | |
| import com.shikkeram.server.models.FurnitureSearchCriteria; | |
| import jakarta.persistence.EntityManager; | |
| import jakarta.persistence.PersistenceContext; | |
| import jakarta.persistence.TypedQuery; | |
| import jakarta.persistence.criteria.CriteriaBuilder; | |
| import jakarta.persistence.criteria.CriteriaQuery; |
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
| using System; | |
| using System.IO; | |
| namespace Lab8N3 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string[] allLines = File.ReadAllLines("in.txt"); |
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
| using System; | |
| namespace Lab8N2 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Notebook notebook = new Notebook(0); | |
| string userInput; |
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
| using System; | |
| namespace ConsoleApp4 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int n, m; | |
| Console.Write("n = "); |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| namespace ConsoleApp3 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
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
| using System; | |
| using System.Collections.Generic; | |
| namespace lab6N2 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var teacher = new Teacher(10); |
NewerOlder