- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 223 for setProperty (0.24 sec)
-
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java
env.stringPropertyNames() .forEach(k -> properties.put("env." + k, env.getProperty(k))); return properties; } else if ("getUserProperties".equals(method.getName())) { return Map.of();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/EnumsTest.java
: parseJavaClassPath().toArray(new URL[0]); } /** * Returns the URLs in the class path specified by the {@code java.class.path} {@linkplain * System#getProperty system property}. */ // TODO(b/65488446): Make this a public API. @J2ktIncompatible @GwtIncompatible private static ImmutableList<URL> parseJavaClassPath() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 29 16:29:37 UTC 2024 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
if (factory != null) { handler = factory.createURLStreamHandler(protocol); } if (handler == null) { String path = System.getProperty(HANDLER_PKGS_PROPERTY); StringTokenizer tokenizer = new StringTokenizer(path, "|"); while (tokenizer.hasMoreTokens()) { String provider = tokenizer.nextToken().trim();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
return false; } return true; } protected static Map<String, String> createPropItem(final String key) { return createItem(key, System.getProperty(key)); } protected static Map<String, String> createItem(final Object label, final Object value) { final Map<String, String> map = new HashMap<>(2);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
protected String searchPreference; protected String[] targetIndices; public FesenClient() { address = System.getProperty(HTTP_ADDRESS, "localhost:9200").trim(); final String targets = System.getProperty(TARGET_INDICES); if (StringUtil.isNotBlank(targets)) { targetIndices = Arrays.stream(targets.split(",")).map(String::trim).toArray(n -> new String[n]);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 19.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/Utils.java
requireNonNull(properties, "properties"); HashMap<String, String> map = new HashMap<>(); for (String key : properties.stringPropertyNames()) { map.put(key, properties.getProperty(key)); } return map; } @Nonnull public static Properties toProperties(Map<String, String> properties) { requireNonNull(properties, "properties");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java
} @Override public String getUserProperty(String key) { return context.userProperties.computeIfAbsent( key, k -> request.getUserProperties().getProperty(key)); } @Override public Model getRawModel(Path from, String gId, String aId) { Model model = findRawModel(from, gId, aId); if (model != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
if ( factory != null ) { handler = factory.createURLStreamHandler(protocol); } if ( handler == null ) { String path = System.getProperty(HANDLER_PKGS_PROPERTY); StringTokenizer tokenizer = new StringTokenizer(path, "|"); while ( tokenizer.hasMoreTokens() ) { String provider = tokenizer.nextToken().trim();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
*/ package jcifs.smb1.util; import java.io.OutputStream; import java.io.PrintStream; /** */ public class Hexdump { private static final String NL = System.getProperty( "line.separator" ); private static final int NL_LENGTH = NL.length(); private static final char[] SPACE_CHARS = { ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 5.5K bytes - Viewed (0)