Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for propertyKey2 (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .teamcity/scripts/CheckRemoteProjectRef.java

    /**
     * Verifies that the given "remote project ref" properties exist in {@code gradle.properties}.
     *
     * Usage (Java 11+ single-file source execution):
     *   java .teamcity/scripts/CheckRemoteProjectRef.java <propertyKey1> <propertyKey2> ...
     *
     * The check currently enforces:
     * - Each requested key exists in {@code gradle.properties}
     * - Its value is non-empty
     */
    public class CheckRemoteProjectRef {
    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)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java

                private String getFromCache(final String propertyKey) {
                    try {
                        return cache.get(propertyKey, () -> {
                            final String value = System.getProperty(Constants.FESS_CONFIG_PREFIX + propertyKey, super.get(propertyKey));
                            if (value == null) {
                                throw new KeyNotFoundException(propertyKey);
                            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 09:31:58 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top