- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 207 for profile (0.04 sec)
-
CHANGELOG/CHANGELOG-1.32.md
- Show a warning message to inform users that the `legacy` profile is planned to be deprecated. ([#127230](https://github.com/kubernetes/kubernetes/pull/127230), [@mochizuki875](https://github.com/mochizuki875)) [SIG CLI]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
} }; ComponentUtil.register(fessConfig, "fessConfig"); File propFile = File.createTempFile("test", ".properties"); FileUtil.writeBytes(propFile.getAbsolutePath(), new byte[0]); propFile.deleteOnExit(); systemProperties = new DynamicProperties(propFile); ComponentUtil.register(systemProperties, "systemProperties");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
try { // Register mock system properties File propFile = File.createTempFile("test", ".properties"); org.codelibs.core.io.FileUtil.writeBytes(propFile.getAbsolutePath(), new byte[0]); propFile.deleteOnExit(); DynamicProperties mockProperties = new DynamicProperties(propFile) { @Override public void reload(String path) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
"Flame graphs with $profiler for ${performanceScenario.scenario.scenario} | ${performanceScenario.testProject} " + "on ${os.asName()} (bucket $bucketIndex)", performanceSubProject = "performance", bucketIndex = bucketIndex, extraParameters =
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jul 29 03:24:58 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
cmdList.add("--sessionId"); cmdList.add(sessionId); final File propFile = ComponentUtil.getSystemHelper().createTempFile(getExecuteType() + "_", ".properties"); try { cmdList.add("-p"); cmdList.add(propFile.getAbsolutePath()); createSystemProperties(cmdList, propFile); final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
try { final File propFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_", ".properties"); if (propFile.delete() && logger.isDebugEnabled()) { logger.debug("Deleted a temp file: {}", propFile.getAbsolutePath()); } systemProperties.reload(propFile.getAbsolutePath()); propFile.deleteOnExit();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.9.md
* You can now disable AppArmor by setting the AppArmor profile to unconfined. ([#52395](https://github.com/kubernetes/kubernetes/pull/52395),[ @dixudx](https://github.com/dixudx))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
if (cleanup) { cmdList.add("--cleanup"); } final File propFile = ComponentUtil.getSystemHelper().createTempFile(getExecuteType() + "_", ".properties"); try { cmdList.add("-p"); cmdList.add(propFile.getAbsolutePath()); createSystemProperties(cmdList, propFile); final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
try { // Register mock system properties File propFile = File.createTempFile("test", ".properties"); propFile.deleteOnExit(); FileUtil.writeBytes(propFile.getAbsolutePath(), new byte[0]); DynamicProperties mockProperties = new DynamicProperties(propFile) { @Override public void reload(String path) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
public TimeoutTask testCreateTimeoutTask() { return super.createTimeoutTask(); } public void testCreateSystemProperties(List<String> cmdList, File propFile) { super.createSystemProperties(cmdList, propFile); } public String testGetLogName(String logPrefix) { return super.getLogName(logPrefix); } } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)