- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 1,732 for sysmem (0.05 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DependenciesGraphPlugin.java
public void apply(Project project) { project.getRootProject().getPluginManager().apply(DependenciesGraphHookPlugin.class); final String url = System.getenv("SCA_URL"); final String token = System.getenv("SCA_TOKEN"); TaskProvider<DependenciesGraphTask> depsGraph = project.getTasks().register("dependenciesGraph", DependenciesGraphTask.class); depsGraph.configure(t -> {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.8K bytes - Click Count (0) -
.teamcity/scripts/CheckRemoteProjectRef.java
if (args.length == 0) { System.err.println("Usage: java CheckRemoteProjectRef.java <propertyKey1> <propertyKey2> ..."); System.exit(2); } Path propsPath = Paths.get("gradle.properties"); if (!Files.exists(propsPath)) { System.err.println("gradle.properties not found at: " + propsPath.toAbsolutePath()); System.exit(2); }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmMessage.java
this.role = role; this.content = content; } /** * Creates a system message with the specified content. * * @param content the message content * @return a new system message */ public static LlmMessage system(final String content) { return new LlmMessage(ROLE_SYSTEM, content); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 3.3K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/pom/PomMemoryAnalyzer.java
for (GroupAnalysis group : sortedGroups) { System.out.printf("%nPaths ending with '%s':%n", group.name); System.out.printf("Total potential savings: %dKB%n", group.totalSavings / 1024); System.out.printf("Total memory: %dKB%n", group.totalMemory / 1024); System.out.printf("Total unique values: %d%n", group.totalUnique); System.out.printf("Total occurrences: %d%n", group.totalOccurrences);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
PrintStream originalErr = System.err; try { ByteArrayOutputStream errContent = new ByteArrayOutputStream(); System.setErr(new PrintStream(errContent)); String[] args = { "--help" }; // Note: main calls System.exit, so we can't test it directly // Instead, we test the parsing logic separately System.setErr(originalErr);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.2K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
void setUp() { cli = new MavenCli(); origBasedir = System.getProperty(MavenCli.MULTIMODULE_PROJECT_DIRECTORY); } @AfterEach void tearDown() throws Exception { if (origBasedir != null) { System.setProperty(MavenCli.MULTIMODULE_PROJECT_DIRECTORY, origBasedir); } else { System.getProperties().remove(MavenCli.MULTIMODULE_PROJECT_DIRECTORY); } }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 30.9K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
verify(mockNdrBuffer).enc_ndr_string("system"); verify(mockNdrBuffer).enc_ndr_long(123); } @Test @DisplayName("Should encode input with null system name") void testEncodeInNullSystemName() throws NdrException { // Given: Connect2 message with null system name
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 33.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java
// Add events to buffer ComponentUtil.getLogNotificationHelper() .offer(new LogNotificationEvent(System.currentTimeMillis(), "ERROR", "org.test", "msg1", null)); ComponentUtil.getLogNotificationHelper() .offer(new LogNotificationEvent(System.currentTimeMillis(), "WARN", "org.test", "msg2", null));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 4.7K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/PerCallSettings.java
.readTimeout(500, TimeUnit.MILLISECONDS) .build(); try (Response response = client1.newCall(request).execute()) { System.out.println("Response 1 succeeded: " + response); } catch (IOException e) { System.out.println("Response 1 failed: " + e); } // Copy to customize OkHttp for this request. OkHttpClient client2 = client.newBuilder()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun May 22 01:29:42 GMT 2016 - 1.9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/SwitchableHttpClient.java
* The client implementation is determined by the system property. */ public SwitchableHttpClient() { super(); selectClient(); } /** * Selects the appropriate HTTP client based on system property. */ protected void selectClient() { final String clientType = System.getProperty(HTTP_CLIENT_PROPERTY);Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 04:17:06 GMT 2026 - 4.9K bytes - Click Count (0)