Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 16 for ENVIRONMENT (0.06 seconds)

  1. build-logic-settings/build-environment/src/main/kotlin/gradlebuild.build-environment.settings.gradle.kts

    József Bartók <******@****.***> 1774424991 +0200
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

     */
    object BuildEnvironment {
    
        /**
         * A selection of environment variables injected into the environment by the `codeql-env.sh` script.
         */
        private
        val CODEQL_ENVIRONMENT_VARIABLES = arrayOf(
            "CODEQL_JAVA_HOME",
            "CODEQL_EXTRACTOR_JAVA_SCRATCH_DIR",
            "CODEQL_ACTION_RUN_MODE",
            "CODEQL_ACTION_VERSION",
            "CODEQL_DIST",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  3. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            }
        }
    
        /**
         * Get the environment map.
         * @return The environment map.
         */
        protected Map<String, String> getEnvMap() {
            if (envMap != null) {
                return envMap;
            }
            return System.getenv();
        }
    
        /**
         * Set the environment map.
         * @param envMap The environment map.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

            final ApiStartJobResponse response = new ApiStartJobResponse();
            response.status(Status.OK);
            // version is initialized from SystemHelper.getProductVersion()
            // In test environment it may be null, but the field should exist
            assertEquals(0, response.status);
        }
    
        // ===================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                        }
                    }
                }
            }
        }
    
        /**
         * Gets a map of filtered environment variables.
         *
         * @param keyPattern The pattern to filter environment variable keys.
         * @return A map of filtered environment variables.
         */
        public Map<String, String> getFilteredEnvMap(final String keyPattern) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            protected List<Map<String, String>> fessProps;
            /** Bug report properties. */
            protected List<Map<String, String>> bugReportProps;
    
            /**
             * Sets the environment properties.
             * @param envProps The environment properties.
             * @return This ApiSystemInfoResponse instance.
             */
            public ApiSystemInfoResponse envProps(final List<Map<String, String>> envProps) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            } catch (Exception e) {
                // Expected in test environment
                assertTrue(true);
            }
        }
    
        @Test
        public void test_getUserInfo_nullUserCode() {
            try {
                var result = searchLogHelper.getUserInfo(null);
                assertFalse(result.isPresent());
            } catch (Exception e) {
                // Expected in test environment
                assertTrue(true);
            }
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  8. .idea/gradle.xml

                      <project path="$PROJECT_DIR$/build-logic-settings" />
                      <project path="$PROJECT_DIR$/build-logic-settings/architecture-docs" />
                      <project path="$PROJECT_DIR$/build-logic-settings/build-environment" />
                      <project path="$PROJECT_DIR$/build-logic-settings/configuration-cache-compatibility" />
                      <project path="$PROJECT_DIR$/build-logic-settings/default-settings-plugins" />
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 10:18:20 GMT 2026
    - 25.5K bytes
    - Click Count (0)
  9. CONTRIBUTING.md

    There is no need to ask for an assignment or for permission to work on those issues, just comment and start working on it.
    
    ## Setting up your development environment
    
    In order to make changes to Gradle, you'll need:
    
    * [Adoptium JDK](https://adoptium.net/temurin/archive/?version=17) (Java Development Kit) **version 17**. Fixed version is required to use [remote cache](#remote-build-cache).
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_en.properties

    labels.failure_url_error_log=Log
    labels.failure_url_web_config_name=Web Crawl Config
    labels.failure_url_file_config_name=File Crawl Config
    labels.system_info_configuration=System Info
    labels.system_info_env_title=Environment Variable Properties
    labels.system_info_prop_title=System Properties
    labels.system_info_fess_prop_title=App Properties
    labels.system_info_bug_report_title=Bug Report Properties
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
Back to Top