Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for GetCanonicalName (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractSourceGenerator.java

        }
    
        protected static Splitter nameSplitter() {
            return Splitter.on(SEPARATOR_PATTERN);
        }
    
        protected void addImport(Class<?> clazz) throws IOException {
            addImport(clazz.getCanonicalName());
        }
    
        protected void addImport(String clazz) throws IOException {
            writeLn("import " + clazz + ";");
        }
    
        protected void writeLn() throws IOException {
            writer.write(ln);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationUtils.java

        }
    
        private static boolean isAnnotationOfType(AnnotationMirror annotation, Class<? extends Annotation> type) {
            return annotation.getAnnotationType().toString().equals(type.getCanonicalName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 08:22:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

            Compilation compilation = compile(givenSource)
    
            then:
            def capability = type.getInterceptorMarkerInterface().getCanonicalName() - (type.getInterceptorMarkerInterface().package.name + ".")
            def factoryCapability = type.getInterceptorFactoryMarkerInterface().getCanonicalName() - (type.getInterceptorFactoryMarkerInterface().package.name + ".")
            def expectedJvmInterceptors = source """
                package my;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/Attribute.java

         * @param <T> the type of the attribute
         * @return an attribute with the given name and type
         */
        public static <T> Attribute<T> of(Class<T> type) {
            return of(WordUtils.uncapitalize(type.getCanonicalName()), type);
        }
    
        private Attribute(String name, Class<T> type) {
            this.name = name;
            this.type = type;
            int hashCode = name.hashCode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 22 02:54:35 UTC 2019
    - 4K bytes
    - Viewed (0)
Back to top