Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for config (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    "fess_config.failure_url", //
                    "fess_config.file_authentication", //
                    "fess_config.file_config", //
                    "fess_config.job_log", //
                    "fess_config.key_match", //
                    "fess_config.label_type", //
                    "fess_config.path_mapping", //
                    "fess_config.related_content", //
                    "fess_config.related_query", //
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                PlexusConfiguration config = configuration.getChild(parameter.getName(), false);
                if (config != null) {
                    String expression = config.getValue(null);
    
                    try {
                        value = expressionEvaluator.evaluate(expression);
    
                        if (value == null) {
                            value = config.getAttribute("default-value", null);
                        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String installationLink = fessConfig.getOnlineHelpInstallation();
            runtime.registerData("installationLink", getHelpUrl(installationLink));
            runtime.registerData("storageEnabled",
                    StringUtil.isNotBlank(fessConfig.getStorageEndpoint()) && StringUtil.isNotBlank(fessConfig.getStorageBucket()));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                    dom = new XmlNodeImpl(dom.getName(), null, null, children, null);
                    PlexusConfiguration config = XmlPlexusConfiguration.toPlexusConfiguration(dom);
                    configProps.put("aether.transport.wagon.config." + server.getId(), config);
    
                    // Translate to proper resolver configuration properties as well (as Plexus XML above is Wagon specific
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

            Model model = loadPom(session, request, result);
            if (model != null) {
                Map<String, Object> config = session.getConfigProperties();
                ArtifactDescriptorReaderDelegate delegate =
                        (ArtifactDescriptorReaderDelegate) config.get(ArtifactDescriptorReaderDelegate.class.getName());
    
                if (delegate == null) {
                    delegate = this.delegate;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

              BinaryOperator<V> mergeFunction) {
        return CollectCollectors.toImmutableSortedMap(
            comparator, keyFunction, valueFunction, mergeFunction);
      }
    
      /*
       * TODO(kevinb): Confirm that ImmutableSortedMap is faster to construct and
       * uses less memory than TreeMap; then say so in the class Javadoc.
       */
      private static final Comparator<?> NATURAL_ORDER = Ordering.natural();
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
Back to top