- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 228 for SetProperty (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
okhttp/src/jvmTest/kotlin/okhttp3/JSSETest.kt
private val server = MockWebServer() @BeforeEach fun setUp() { // Default after JDK 14, but we are avoiding tests that assume special setup. // System.setProperty("jdk.tls.client.enableSessionTicketExtension", "true") // System.setProperty("jdk.tls.server.enableSessionTicketExtension", "true") platform.assumeJdk9() } @Test fun testTlsv13Works() {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Jun 18 12:28:21 GMT 2025 - 5.5K bytes - Click Count (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/util/ProfileUtil.java
private static final String SPRING_PROFILES_ACTIVE = "spring.profiles.active"; public static void setup() { final List<String> list = new ArrayList<String>(); final String values = System.getProperty(SPRING_PROFILES_ACTIVE); if (values != null) { for (final String value : values.split(",")) { list.add(value); } }
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/FessBoot.java
// update java.io.tmpdir final String tempPath = System.getProperty(FESS_TEMP_PATH); if (tempPath != null) { System.setProperty(JAVA_IO_TMPDIR, tempPath); } final TomcatBoot tomcatBoot = new FessBoot(getPort(), getContextPath()) // .useTldDetect(); // for JSP final String varPath = System.getProperty(FESS_VAR_PATH); if (varPath != null) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 11.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
assertEquals(System.getProperty("user.dir"), value); } @Test void testValueExtractionFromSystemPropertiesWithMissingProject() throws Exception { String sysprop = "PPEET_sysprop1"; Properties executionProperties = new Properties(); if (executionProperties.getProperty(sysprop) == null) { executionProperties.setProperty(sysprop, "value"); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 19.4K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
request.setLocalRepository(getLocalRepository()); // native Properties properties = new Properties(); properties.setProperty("maven.resolver.transport", "apache"); request.setSystemProperties(properties); Map<String, Object> configProperties = systemSessionFactory.newRepositorySession(request).getConfigProperties();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 19.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/CrawlerContainer.java
final String value = System.getProperty("java.protocol.handler.pkgs"); if (StringUtil.isEmpty(value)) { buf.append("org.codelibs.fess.net.protocol"); } else if (!value.contains("org.codelibs.fess.net.protocol")) { buf.append("|org.codelibs.fess.net.protocol"); } if (buf.length() > 0) { System.setProperty("java.protocol.handler.pkgs", buf.toString()); }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
version = prop.getProperty("fess.version", "0.0.0"); final String[] values = version.split("\\."); majorVersion = Integer.parseInt(values[0]); minorVersion = Integer.parseInt(values[1]); productVersion = majorVersion + "." + minorVersion; System.setProperty("fess.version", version); System.setProperty("fess.product.version", productVersion);Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 20 08:30:43 GMT 2025 - 36.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/impl/MavenSimpleConfiguration.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Oct 08 21:10:33 GMT 2025 - 2.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/ComplexActivationTest.java
} @Test void testAndConditionInActivation() throws Exception { Properties sysProperties = new Properties(); sysProperties.setProperty("myproperty", "test"); ModelBuilder builder = new DefaultModelBuilderFactory().newInstance(); assertNotNull(builder); DefaultModelBuildingRequest request = new DefaultModelBuildingRequest();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 2.1K bytes - Click Count (0)