Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unexpectedly (0.23 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmService.java

            nonNull(algorithms, "algorithms");
            try {
                return calculate(new ByteArrayInputStream(data), algorithms);
            } catch (IOException e) {
                throw new UncheckedIOException(e); // really unexpected
            }
        }
    
        @Override
        public Map<ChecksumAlgorithm, String> calculate(ByteBuffer data, Collection<ChecksumAlgorithm> algorithms) {
            nonNull(data, "data");
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 21 08:05:10 GMT 2023
    - 7K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmService.java

            nonNull(algorithms, "algorithms");
            try {
                return calculate(new ByteArrayInputStream(data), algorithms);
            } catch (IOException e) {
                throw new UncheckedIOException(e); // really unexpected
            }
        }
    
        @Override
        public Map<ChecksumAlgorithm, String> calculate(ByteBuffer data, Collection<ChecksumAlgorithm> algorithms) {
            nonNull(data, "data");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                        mojoExecutions.addAll(mojoExecutionsFromLifecycle);
                    }
                } else {
                    throw new IllegalStateException("unexpected task " + task);
                }
            }
            return mojoExecutions;
        }
    
        private Map<String, List<MojoExecution>> calculateLifecycleMappings(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

            } catch (XMLStreamException e) {
                throw new IOException(e.getMessage(), e);
            }
    
            if (!"extension".equals(dom.getName())) {
                throw new IOException("Unexpected root element \"" + dom.getName() + "\", expected \"extension\"");
            }
    
            extensionDescriptor.setExportedPackages(parseStrings(dom.getChild("exportedPackages")));
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
Back to top