Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for connection (0.17 sec)

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

            } catch (IllegalArgumentException e) {
                throw new ChecksumAlgorithmServiceException("unsupported algorithm", e);
            }
        }
    
        @Override
        public Collection<ChecksumAlgorithm> select(Collection<String> algorithmNames) {
            nonNull(algorithmNames, "algorithmNames");
            try {
                return checksumAlgorithmFactorySelector.selectList(new ArrayList<>(algorithmNames)).stream()
    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)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmService.java

            } catch (IllegalArgumentException e) {
                throw new ChecksumAlgorithmServiceException("unsupported algorithm", e);
            }
        }
    
        @Override
        public Collection<ChecksumAlgorithm> select(Collection<String> algorithmNames) {
            nonNull(algorithmNames, "algorithmNames");
            try {
                return checksumAlgorithmFactorySelector.selectList(new ArrayList<>(algorithmNames)).stream()
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 21 08:05:10 GMT 2023
    - 7K bytes
    - Viewed (0)
Back to top