Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,266 for getBase (0.13 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

                                    })));
                        default:
                            throw new IllegalArgumentException("Unknown file type: " + fileMetadata.getType());
                    }
                }))
                .map(FileSystemLocationSnapshot::getHash);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

                throw new IllegalArgumentException("Could not instantiate annotation processor '" + processorClass.getName() + "'", unwrapCause(e));
            }
        }
    
        private Throwable unwrapCause(Throwable throwable) {
            if (throwable instanceof InvocationTargetException) {
                return throwable.getCause();
            }
            return throwable;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                if (throwable == null) {
                    out.nullValue();
                } else if (throwable.getMessage() == null && throwable.getCause() != null) {
                    write(out, throwable.getCause());
                } else {
                    out.beginObject();
                    if (throwable.getMessage() != null) {
                        out.name("message");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

                return instantiator.newInstance(type);
            } catch (ObjectInstantiationException e) {
                throw new PluginInstantiationException(String.format("Could not create plugin of type '%s'.", type.getSimpleName()), e.getCause());
            }
        }
    
        @Override
        public <P extends Plugin> P addImperativePlugin(PluginImplementation<P> plugin) {
            doApply(plugin);
            Class<? extends P> pluginClass = plugin.asClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            final String thumbnailId = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldId(), String.class);
            final Tuple3<String, String, String> task = new Tuple3<>(getName(), thumbnailId, path);
            if (logger.isDebugEnabled()) {
                logger.debug("Create thumbnail task: {}", task);
            }
            return task;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Types.java

          String methodName = method.getName();
          Method typeVariableMethod = typeVariableMethods.get(methodName);
          if (typeVariableMethod == null) {
            throw new UnsupportedOperationException(methodName);
          } else {
            try {
              return typeVariableMethod.invoke(typeVariableImpl, args);
            } catch (InvocationTargetException e) {
              throw e.getCause();
            }
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            if (enclosingClass == null) {
                return null;
            }
            for (Field field : cls.getDeclaredFields()) {
                if (!field.isSynthetic() || !field.getName().startsWith("this$") || field.getType() != enclosingClass) {
                    continue;
                }
                field.setAccessible(true);
                try {
                    return field.get(innerClassInstance);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/Types.java

          String methodName = method.getName();
          Method typeVariableMethod = typeVariableMethods.get(methodName);
          if (typeVariableMethod == null) {
            throw new UnsupportedOperationException(methodName);
          } else {
            try {
              return typeVariableMethod.invoke(typeVariableImpl, args);
            } catch (InvocationTargetException e) {
              throw e.getCause();
            }
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/TimeoutTest.java

                    for ( Thread t : threadsAfter ) {
                        if ( t.getName().startsWith("Transport") ) {
                            leaked.add(t);
                        }
                    }
                    assertTrue("Leaked transport threads, have " + leaked, leaked.size() == 0);
                    throw (ConnectionTimeoutException) e.getCause();
                }
                throw e;
            }
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            1 * repositoryFactory.createMavenCentralRepository() >> repository
            repository.getName() >> "name"
    
            then:
            handler.mavenCentral().is(repository)
        }
    
        public void testMavenCentralWithMap() {
            when:
            MavenArtifactRepository repository = Mock(TestMavenArtifactRepository) { getName() >> "name" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top