Upload Files

This commit is contained in:
NikolaiMamatov 2026-01-23 01:11:16 +03:00
parent 1f09aa4109
commit aa69820b03
545 changed files with 299201 additions and 0 deletions

BIN
java_ex/example1.class Normal file

Binary file not shown.

5
java_ex/example1.java Normal file
View File

@ -0,0 +1,5 @@
public class example1 {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

BIN
java_ex/example2.class Normal file

Binary file not shown.

8
java_ex/example2.java Normal file
View File

@ -0,0 +1,8 @@
public class example2 {
public static void main(String[] args) {
int num = 100;
System.out.println("num: " + num);
num = num * 2;
System.out.println("num * 2 = " + num);
}
}

BIN
java_ex/example3.class Normal file

Binary file not shown.

18
java_ex/example3.java Normal file
View File

@ -0,0 +1,18 @@
public class example3 {
public static void main(String[] args) {
int s, d;
s = 10;
d = 20;
if (s < d) {
System.out.println("S < D");
}
s = s * 2;
if (s == d) {
System.out.println("S = D");
}
s = s * d;
if (s > d) {
System.out.println("S > D");
}
}
}

10
java_ex/example4.java Normal file
View File

@ -0,0 +1,10 @@
import java.util.Scanner;
public class example4 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Input a number:");
int num = in.nextInt();
System.out.println("Your number" + num);
in.close();
}
}

16
java_ex/example5.java Normal file
View File

@ -0,0 +1,16 @@
import java.util.Scanner;
public class example5 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Input name: ");
String name = in.nextLine();
System.out.println("Input age: ");
int age = in.nextInt();
System.out.println("Input height: ");
float height = in.nextFloat();
System.out.println("Name: " + name);
System.out.println("Age: " + age);
System.out.println("Height: " + height);
in.close();
}
}

0
laba 2/.metadata/.lock Normal file
View File

View File

@ -0,0 +1,4 @@
#Thu Jan 22 20:56:36 MSK 2026
host=DESKTOP-Q5UO807
process-id=15956
user=\u0412\u043B\u0430\u0434\u0430

65
laba 2/.metadata/.log Normal file
View File

@ -0,0 +1,65 @@
!SESSION 2026-01-22 20:55:42.988 -----------------------------------------------
eclipse.buildId=4.38.0.20251204-0849
java.version=21.0.9
java.vendor=Eclipse Adoptium
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=ru_RU
Framework arguments: -product org.eclipse.epp.package.java.product
Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.java.product
!ENTRY ch.qos.logback.classic 1 0 2026-01-22 20:55:50.342
!MESSAGE Activated before the state location was initialized. Retry after the state location is initialized.
!ENTRY ch.qos.logback.classic 1 0 2026-01-22 20:56:37.899
!MESSAGE Logback config file: C:\java_ex\laba 2\.metadata\.plugins\org.eclipse.m2e.logback\logback.2.7.101.20251017-1242.xml
!ENTRY org.eclipse.terminal.view.ui 2 0 2026-01-22 20:56:39.695
!MESSAGE Join was called on job "Detect WSL Instances" while JobManager is suspended, this will not work as expected!
!STACK 0
java.lang.IllegalStateException
at org.eclipse.core.internal.jobs.JobManager.join(JobManager.java:1014)
at org.eclipse.core.internal.jobs.InternalJob.join(InternalJob.java:363)
at org.eclipse.core.runtime.jobs.Job.join(Job.java:601)
at org.eclipse.terminal.view.ui.internal.local.showin.detectors.DetectWSL.getEntries(DetectWSL.java:79)
at org.eclipse.terminal.view.ui.internal.local.showin.detectors.DetectWSL.hasEntries(DetectWSL.java:49)
at org.eclipse.terminal.view.ui.internal.local.showin.ExternalExecutablesManager.hasEntries(ExternalExecutablesManager.java:68)
at org.eclipse.terminal.view.ui.internal.ExternalExecutablesState.<init>(ExternalExecutablesState.java:29)
at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:236)
at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:1034)
at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:286)
at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:65)
at org.eclipse.ui.internal.services.WorkbenchServiceRegistry.getSourceProviders(WorkbenchServiceRegistry.java:168)
at org.eclipse.ui.internal.services.SourceProviderService.readRegistry(SourceProviderService.java:104)
at org.eclipse.ui.internal.Workbench$33.runWithException(Workbench.java:2435)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:35)
at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:183)
at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:136)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:4896)
at org.eclipse.ui.internal.StartupThreading.runWithoutExceptions(StartupThreading.java:93)
at org.eclipse.ui.internal.Workbench.initializeDefaultServices(Workbench.java:2430)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1775)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2886)
at org.eclipse.ui.internal.Workbench.lambda$3(Workbench.java:670)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:339)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:583)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:173)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:185)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:219)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:149)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:115)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:467)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:298)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:615)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:563)
at org.eclipse.equinox.launcher.Main.run(Main.java:1415)
!ENTRY org.eclipse.egit.ui 2 0 2026-01-22 20:56:58.056
!MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
user global configuration and to define the default location to store repositories: 'C:\Users\Влада'. If this is
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
EGit might behave differently since they see different configuration options.
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,36 @@
package lab2a;
import java.util.Scanner;
public class example7 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Timus 1000 — A + B
System.out.println("Задача Timus 1000 (A + B)");
System.out.print("Введите первое число: ");
int a = scanner.nextInt();
System.out.print("Введите второе число: ");
int b = scanner.nextInt();
System.out.println("Сумма: " + (a + b));
// Timus 1409 — Two Gangsters
System.out.println("\nЗадача Timus 1409 (Two Gangsters)");
System.out.print("Введите количество банок у Гарри: ");
int harry = scanner.nextInt();
System.out.print("Введите количество банок у Ларри: ");
int larry = scanner.nextInt();
System.out.println("Результат: " + (larry - 1) + " " + (harry - 1));
// Timus 1264 — Hot Bath
System.out.println("\nЗадача Timus 1264 (Hot Bath)");
System.out.print("Введите количество людей: ");
int n = scanner.nextInt();
System.out.print("Введите количество минут: ");
int m = scanner.nextInt();
System.out.println("Результат: " + (n * (m + 1)));
scanner.close();
}
}

View File

@ -0,0 +1,10 @@
package laba2;
public class example2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,21 @@
package lab2;
import java.util.Scanner;
public class example4 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Введите число: ");
int number = scanner.nextInt();
if (number % 4 == 0 && number >= 10) {
System.out.println("Число удовлетворяет условиям");
} else {
System.out.println("Число не удовлетворяет условиям");
}
scanner.close();
}
}

View File

@ -0,0 +1,10 @@
package laba2;
public class example6 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,21 @@
package laba2;
import java.util.Scanner;
public class Example5 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Введите число: ");
int number = scanner.nextInt();
if (number >= 5 && number <= 10) {
System.out.println("Число входит в диапазон от 5 до 10");
} else {
System.out.println("Число не входит в диапазон от 5 до 10");
}
scanner.close();
}
}

View File

@ -0,0 +1,23 @@
package laba2;
package lab2;
import java.util.Scanner;
public class example2 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Введите число: ");
int number = scanner.nextInt();
if (number % 3 == 0) {
System.out.println("Число делится на 3");
} else {
System.out.println("Число не делится на 3");
}
scanner.close();
}
}

View File

@ -0,0 +1,10 @@
package laba2;
public class example1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,8 @@
/**
*
*/
/**
*
*/
module laba2 {
}

View File

@ -0,0 +1,10 @@
package laba2;
public class example4 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,10 @@
package laba2;
public class example5 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,27 @@
package laba2;
import java.util.Scanner;
public class Example7 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Timus 1000 — A + B
int a = scanner.nextInt();
int b = scanner.nextInt();
System.out.println(a + b);
// Timus 1409 — Two Gangsters
int harry = scanner.nextInt();
int larry = scanner.nextInt();
System.out.println((larry - 1) + " " + (harry - 1));
// Timus 1264 — Hot Bath
int n = scanner.nextInt();
int m = scanner.nextInt();
System.out.println(n * (m + 1));
scanner.close();
}
}

View File

@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
org.eclipse.jdt.core.compiler.compliance=21
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=21

View File

@ -0,0 +1,27 @@
package laba2;
import java.util.Scanner;
public class example7 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Timus 1000 — A + B
int a = scanner.nextInt();
int b = scanner.nextInt();
System.out.println(a + b);
// Timus 1409 — Two Gangsters
int harry = scanner.nextInt();
int larry = scanner.nextInt();
System.out.println((larry - 1) + " " + (harry - 1));
// Timus 1264 — Hot Bath
int n = scanner.nextInt();
int m = scanner.nextInt();
System.out.println(n * (m + 1));
scanner.close();
}
}

View File

@ -0,0 +1,10 @@
package laba2;
public class example3 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,10 @@
package laba2;
public class example7 {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,3 @@
eclipse.preferences.version=1
encoding=UTF-8
version=1

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.core.variables.valueVariables=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<valueVariables/>\r\n

View File

@ -0,0 +1,4 @@
eclipse.preferences.version=1
org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<launchPerspectives/>\r\n
org.eclipse.debug.ui.save_dirty_editors_before_launch=always
preferredTargets=default\:default|

View File

@ -0,0 +1,6 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
org.eclipse.jdt.core.compiler.compliance=21
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=21

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.jdt.junit.content_assist_favorite_static_members_migrated=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<vmSettings defaultVM\="57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType13,1769104628865">\r\n <vmType id\="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">\r\n <vm id\="1769104628865" javadocURL\="https\://docs.oracle.com/en/java/javase/21/docs/api/" name\="jre" path\="C\:\\Users\\\u0412\u043B\u0430\u0434\u0430\\.p2\\pool\\plugins\\org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_21.0.9.v20251105-0741\\jre"/>\r\n </vmType>\r\n</vmSettings>\r\n

View File

@ -0,0 +1,9 @@
content_assist_number_of_computers=15
content_assist_proposals_background=255,255,255
content_assist_proposals_foreground=0,0,0
eclipse.preferences.version=1
org.eclipse.jdt.ui.formatterprofiles.version=23
spelling_locale_initialized=true
typefilter_migrated_2=true
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.jsch.core.hasChangedDefaultWin32SshHome=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
mylyn.attention.migrated=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true

View File

@ -0,0 +1,3 @@
eclipse.preferences.version=1
org.eclipse.mylyn.tasks.ui.filters.nonmatching=true
org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true

View File

@ -0,0 +1,2 @@
browsers=<?xml version\="1.0" encoding\="UTF-8"?>\r\n<web-browsers current\="0">\r\n<system/>\r\n<external location\="C\:\\Program Files\\Internet Explorer\\iexplore.exe" name\="Internet Explorer"/>\r\n<external location\="C\:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe" name\="Microsoft Edge"/>\r\n<external location\="C\:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" name\="Chrome"/>\r\n</web-browsers>
eclipse.preferences.version=1

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
showIntro=false

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/laba2/src/laba2/example1.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_EXCLUDE_TEST_CODE" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="laba2.example1"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="laba2"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="laba2"/>
</launchConfiguration>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/laba2/src/laba2/example2.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_EXCLUDE_TEST_CODE" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="laba2.example2"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="laba2"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="laba2"/>
</launchConfiguration>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/laba2/src/laba2/example4.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_EXCLUDE_TEST_CODE" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="laba2.example4"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="laba2"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="laba2"/>
</launchConfiguration>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/laba2/src/laba2/example5.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_EXCLUDE_TEST_CODE" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="laba2.example5"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="laba2"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="laba2"/>
</launchConfiguration>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/laba2/src/laba2/example6.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_EXCLUDE_TEST_CODE" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="laba2.example6"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="laba2"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="laba2"/>
</launchConfiguration>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/laba2/src/laba2/example7.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_EXCLUDE_TEST_CODE" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="laba2.example7"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="laba2"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="laba2"/>
</launchConfiguration>

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchHistory>
<launchGroup id="org.eclipse.debug.ui.launchGroup.debug">
<mruHistory>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example7&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example6&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example4&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example2&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example1&quot;/&gt;&#13;&#10;"/>
</mruHistory>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.debug.ui.launchGroup.profile">
<mruHistory/>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.eclemma.ui.launchGroup.coverage">
<mruHistory>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example7&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example6&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example4&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example2&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example1&quot;/&gt;&#13;&#10;"/>
</mruHistory>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.ui.externaltools.launchGroup">
<mruHistory/>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.debug.ui.launchGroup.run">
<mruHistory>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example7&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example6&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example4&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example2&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;example1&quot;/&gt;&#13;&#10;"/>
</mruHistory>
<favorites/>
</launchGroup>
</launchHistory>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>.org.eclipse.egit.core.cmp</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8

View File

@ -0,0 +1 @@
java

View File

@ -0,0 +1,3 @@
INDEX VERSION 1.134+C:\java_ex\laba 2\.metadata\.plugins\org.eclipse.jdt.core
1076312245.index
1865797976.index

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<dirs>
<entry loc="C:\Users\Влада\.p2\pool\plugins\org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_21.0.9.v20251105-0741" stamp="1769104509838"/>
<entry loc="C:\Users\Влада\.p2\pool\plugins\org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_21.0.9.v20251105-0741\jre" stamp="1769104509823"/>
<entry loc="C:\Program Files\Java\jdk-25.0.2" stamp="1769092532644"/>
</dirs>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<libraryInfos>
<libraryInfo home="C:\Users\Влада\.p2\pool\plugins\org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_21.0.9.v20251105-0741" version="21.0.9">
<bootpath>
<entry path="null"/>
</bootpath>
<extensionDirs>
<entry path="null"/>
</extensionDirs>
<endorsedDirs>
<entry path="null"/>
</endorsedDirs>
</libraryInfo>
<libraryInfo home="C:\Users\Влада\.p2\pool\plugins\org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_21.0.9.v20251105-0741\jre" version="21.0.9"/>
<libraryInfo home="C:\Program Files\Java\jdk-25.0.2" version="25.0.2"/>
</libraryInfos>

Binary file not shown.

After

Width:  |  Height:  |  Size: 857 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
2026-01-22 20:56:57,567 [Worker-8: Loading available Gradle versions] INFO o.e.b.c.i.u.g.PublishedGradleVersions - Gradle version information cache is not available. Remote download required.

View File

@ -0,0 +1,41 @@
<configuration scan="true">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>${org.eclipse.m2e.log.console.threshold:-OFF}</level> <!-- change to DEBUG to mimic '-consolelog' behaviour -->
</filter>
</appender>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<File>${org.eclipse.m2e.log.dir}/0.log</File>
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
<FileNamePattern>${org.eclipse.m2e.log.dir}/%i.log</FileNamePattern>
<MinIndex>1</MinIndex>
<MaxIndex>10</MaxIndex>
</rollingPolicy>
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
<MaxFileSize>10MB</MaxFileSize>
</triggeringPolicy>
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
</appender>
<appender name="EclipseLog" class="org.eclipse.m2e.logback.appender.EclipseLogAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>WARN</level>
</filter>
</appender>
<appender name="MavenConsoleLog" class="org.eclipse.m2e.logback.appender.MavenConsoleAppender">
</appender>
<root level="INFO">
<appender-ref ref="FILE" />
<appender-ref ref="STDOUT" />
<appender-ref ref="EclipseLog" />
<appender-ref ref="MavenConsoleLog" />
</root>
</configuration>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<setup:Workspace
xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
name="workspace"/>

View File

@ -0,0 +1,5 @@
{
"description" : "AutoLaunch Protocols Preregistration",
"name" : "Protocol Preregistration",
"version" : "1.0.0.10"
}

View File

@ -0,0 +1,119 @@
{
"allow": [
{
"origins": [
"https://.get.microsoft.com",
"https://.apps.microsoft.com"
],
"protocol": "ms-windows-store"
},
{
"origins": [
"https://.onedrive.com",
"https://.onedrive.live.com",
"https://sharepoint.com"
],
"protocol": "ms-word"
},
{
"origins": [
"https://[a-z1-9-]*word-edit.officeapps.live.com",
"https://[a-z1-9-]*word-view.officeapps.live.com",
"https://[a-z1-9-]*onenote.officeapps.live.com",
"https://[a-z1-9-]*eap.officeapps.live.com",
"https://[a-z1-9-]*shared.officeapps.live.com",
"https://[a-z1-9-]*afhs.officeapps.live.com",
"https://[a-z1-9-]*vhs.officeapps.live.com",
"https://[a-z1-9-]*optin.online.office.com"
],
"use_regex": true,
"protocol": "ms-word"
},
{
"origins": [
"https://.onedrive.com",
"https://.onedrive.live.com",
"https://sharepoint.com"
],
"protocol": "ms-excel"
},
{
"origins": [
"https://[a-z1-9-]*excel.officeapps.live.com",
"https://[a-z1-9-]*onenote.officeapps.live.com",
"https://[a-z1-9-]*eap.officeapps.live.com",
"https://[a-z1-9-]*shared.officeapps.live.com",
"https://[a-z1-9-]*afhs.officeapps.live.com",
"https://[a-z1-9-]*vhs.officeapps.live.com",
"https://[a-z1-9-]*optin.online.office.com"
],
"use_regex": true,
"protocol": "ms-excel"
},
{
"origins": [
"https://.onedrive.com",
"https://.onedrive.live.com",
"https://sharepoint.com"
],
"protocol": "ms-powerpoint"
},
{
"origins": [
"https://[a-z1-9-]*powerpoint.officeapps.live.com",
"https://[a-z1-9-]*onenote.officeapps.live.com",
"https://[a-z1-9-]*eap.officeapps.live.com",
"https://[a-z1-9-]*shared.officeapps.live.com",
"https://[a-z1-9-]*afhs.officeapps.live.com",
"https://[a-z1-9-]*vhs.officeapps.live.com",
"https://[a-z1-9-]*optin.online.office.com"
],
"use_regex": true,
"protocol": "ms-powerpoint"
},
{
"origins": [
"https://.onedrive.com",
"https://.onedrive.live.com",
"https://sharepoint.com"
],
"protocol": "ms-visio"
},
{
"origins": [
"https://[a-z1-9-]*visio.officeapps.live.com",
"https://[a-z1-9-]*onenote.officeapps.live.com",
"https://[a-z1-9-]*eap.officeapps.live.com",
"https://[a-z1-9-]*shared.officeapps.live.com",
"https://[a-z1-9-]*afhs.officeapps.live.com",
"https://[a-z1-9-]*vhs.officeapps.live.com",
"https://[a-z1-9-]*optin.online.office.com"
],
"use_regex": true,
"protocol": "ms-visio"
},
{
"origins": [
"https://www.microsoft.com",
"https://copilot.microsoft.com"
],
"protocol": "ms-copilot"
}
],
"warn": [
{
"origins": [
"*"
],
"protocol": "ms-test-warn"
}
],
"block": [
{
"origins": [
"*"
],
"protocol": "ms-test-block"
}
]
}

View File

@ -0,0 +1,57 @@
0:14:00 Tab4 StartNav26 #typed
0:14:00 Tab4 FinishNav26
0:14:00 Tab4 PageLoad
0:14:09 Tab4 StartNav27 #typed
0:14:09 Tab4 FinishNav27
0:14:09 Tab4 PageLoad
0:14:10 Tab4 StartNav28 #typed
0:14:10 Tab4 FinishNav28
0:14:10 Tab4 PageLoad
0:16:06 Microsoft.NewBrowser_Popup
0:16:06 Microsoft.BrowserList.AddBrowser
0:16:06 Browser5 Insert active Tab5 at 0
0:16:06 Tab5 StartNav29 #auto_toplevel
0:16:06 Tab5 StartNav30 #typed
0:16:06 Tab5 FinishNav29
0:16:06 Tab5 PageLoad
0:16:06 Tab5 FinishNav30
0:16:06 Tab5 PageLoad
0:16:25 Tab5 StartNav31 #typed
0:16:25 Tab5 FinishNav31
0:16:25 Tab5 PageLoad
0:16:25 Tab5 StartNav32 #typed
0:16:25 Tab5 FinishNav32
0:16:25 Tab5 PageLoad
0:16:38 Tab5 StartNav33 #typed
0:16:38 Tab5 FinishNav33
0:16:38 Tab5 PageLoad
0:16:41 Tab5 StartNav34 #typed
0:16:41 Tab5 FinishNav34
0:16:41 Tab5 PageLoad
0:16:43 Tab5 StartNav35 #typed
0:16:43 Tab5 FinishNav35
0:16:43 Tab5 PageLoad
0:16:51 Tab5 StartNav36 #typed
0:16:51 Tab5 FinishNav36
0:16:51 Tab5 PageLoad
0:18:50 Tab5 StartNav37 #typed
0:18:50 Tab5 FinishNav37
0:18:50 Tab5 PageLoad
0:19:18 Tab5 StartNav38 #typed
0:19:18 Tab5 FinishNav38
0:19:18 Tab5 PageLoad
0:19:28 Tab5 StartNav39 #typed
0:19:28 Tab5 FinishNav39
0:19:28 Tab5 PageLoad
0:24:35 Microsoft.NewBrowser_Popup
0:24:35 Microsoft.BrowserList.AddBrowser
0:24:35 Browser6 Insert active Tab6 at 0
0:24:35 Tab6 StartNav40 #auto_toplevel
0:24:35 Tab6 StartNav41 #typed
0:24:35 Tab6 FinishNav40
0:24:35 Tab6 PageLoad
0:24:35 Tab6 FinishNav41
0:24:35 Tab6 PageLoad
0:24:36 Tab6 StartNav42 #typed
0:24:36 Tab6 FinishNav42
0:24:36 Tab6 PageLoad

View File

@ -0,0 +1,5 @@
{
"description": "Microsoft CRLSet",
"name": "MicrosoftCRLSet",
"version": "6498.2025.9.4"
}

View File

@ -0,0 +1 @@
level=none expiry=0

Some files were not shown because too many files have changed in this diff Show More