Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for GetCanonicalName (0.2 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    webConfig.setId("01T");
                    webConfig.setName("__TEMPLATE__");
                    return OptionalEntity.of(webConfig);
                }
            }, WebConfigService.class.getCanonicalName());
            ComponentUtil.register(new FileConfigService() {
                @Override
                public OptionalEntity<FileConfig> getFileConfig(final String id) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java

                    return Collections.emptyList();
                }
            };
            ComponentUtil.register(webAuthenticationService, WebAuthenticationService.class.getCanonicalName());
            RequestHeaderService requestHeaderService = new RequestHeaderService() {
                @Override
                public List<RequestHeader> getRequestHeaderList(final String webConfigId) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                }
    
                String errorName;
                final Throwable cause = e.getCause();
                if (cause != null) {
                    errorName = cause.getClass().getCanonicalName();
                } else {
                    errorName = e.getClass().getCanonicalName();
                }
                storeFailureUrl(crawlerContext, urlQueue, errorName, e);
            } catch (final ContainerNotAvailableException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

                        String.format(" * Requested key serializer type (%s) doesn't match current cache type (%s)",
                            keySerializer.getClass().getCanonicalName(),
                            parameters.getKeySerializer().getClass().getCanonicalName()));
                }
            }
    
            private void checkCompatibleValueSerializer(Collection<String> faultMessages, Serializer<V> valueSerializer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskCollection.java

            return new InvalidUserDataException(String.format("The task '%s' (%s) is not a subclass of the given type (%s).", name, actual.getCanonicalName(), expected.getCanonicalName()));
        }
    
        @Override
        public TaskProvider<T> named(String name) throws UnknownTaskException {
            return (TaskProvider<T>) super.named(name);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

        }
    
        /**
         * Output: The ${task} task has been deprecated.
         */
        @CheckReturnValue
        public static DeprecationMessageBuilder.DeprecateTask deprecateTask(String task) {
            return new DeprecationMessageBuilder.DeprecateTask(task);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-base/src/main/java/org/gradle/caching/internal/origin/OriginMetadataFactory.java

            return outputStream -> {
                Properties properties = new Properties();
                properties.setProperty(BUILD_INVOCATION_ID_KEY, currentBuildInvocationId);
                properties.setProperty(TYPE_KEY, workType.getCanonicalName());
                properties.setProperty(IDENTITY_KEY, identity);
                properties.setProperty(CACHE_KEY, buildCacheKey.toString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/ComponentUtil.java

                    throw new ContainerNotAvailableException(clazz.getCanonicalName(), e);
                }
                throw new ContainerNotAvailableException(clazz.getCanonicalName());
            } catch (final ComponentNotFoundException | AutoBindingFailureException e) {
                if (componentMap.containsKey(clazz.getCanonicalName())) {
                    return (T) componentMap.get(clazz.getCanonicalName());
                }
                throw e;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

     */
    public class PropertyResourceBundleFallbackCharset extends Charset {
    
        public PropertyResourceBundleFallbackCharset() {
            super(PropertyResourceBundleFallbackCharset.class.getCanonicalName(), new String[0]);
        }
    
        @Override
        public boolean contains(Charset charset) {
            return false;
        }
    
        @Override
        public CharsetDecoder newDecoder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

                try {
                    client.close();
                } catch (final Exception e) {
                    logger.warn("Faild to close {}.", client.getClass().getCanonicalName(), e);
                }
            });
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top