Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,025 for Lannon (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java

            if (Objects.requireNonNull(groupId, "groupId cannot be null").isEmpty()) {
                throw new IllegalArgumentException("groupId cannot be empty");
            }
            if (Objects.requireNonNull(artifactId, "artifactId cannot be null").isEmpty()) {
                throw new IllegalArgumentException("artifactId cannot be empty");
            }
    
            if (model != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/UnknownRepositoryLayoutException.java

        public UnknownRepositoryLayoutException(String repositoryId, String layoutId) {
            super("Cannot find ArtifactRepositoryLayout instance for: " + layoutId, repositoryId);
            this.layoutId = layoutId;
        }
    
        public UnknownRepositoryLayoutException(String repositoryId, String layoutId, ComponentLookupException e) {
            super("Cannot find ArtifactRepositoryLayout instance for: " + layoutId, repositoryId, e);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NetbiosAddress.java

         *             if the host cannot be resolved to find out.
         */
        boolean isActive ( CIFSContext tc ) throws UnknownHostException;
    
    
        /**
         * Determines if this address is set to be permanent.
         * 
         * @param tc
         *            context to use
         * @return whether this address is permanent
         *
         * @throws UnknownHostException
         *             if the host cannot be resolved to find out.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  4. cmd/bucket-versioning-handler.go

    			HTTPStatusCode: http.StatusBadRequest,
    		}, r.URL)
    		return
    	}
    	if rc, _ := getReplicationConfig(ctx, bucket); rc != nil && v.Suspended() {
    		writeErrorResponse(ctx, w, APIError{
    			Code:           "InvalidBucketState",
    			Description:    "A replication configuration is present on this bucket, bucket wide versioning cannot be suspended.",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java

                @Nonnull Session session, @Nonnull Collection<? extends ArtifactCoordinate> coordinates) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .coordinates(nonNull(coordinates, "coordinates cannot be null"))
                    .build();
        }
    
        @NotThreadSafe
        class ArtifactResolverRequestBuilder {
            Session session;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/DefaultMetadataReader.java

            Objects.requireNonNull(input, "input cannot be null");
    
            return read(Files.newInputStream(input.toPath()), options);
        }
    
        public Metadata read(Reader input, Map<String, ?> options) throws IOException {
            Objects.requireNonNull(input, "input cannot be null");
    
            try (Reader in = input) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/Config.java

    import java.util.StringTokenizer;
    
    import jcifs.smb1.util.LogStream;
    
    /**
     * This class uses a static {@link java.util.Properties} to act
     * as a cental repository for all jCIFS configuration properties. It cannot be
     * instantiated. Similar to <code>System</code> properties the namespace
     * is global therefore property names should be unique. Before use,
     * the <code>load</code> method should be called with the name of a
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java

        @Nonnull
        static ArtifactInstallerRequest build(Session session, Collection<Artifact> artifacts) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .artifacts(nonNull(artifacts, "artifacts cannot be null"))
                    .build();
        }
    
        @NotThreadSafe
        class ArtifactInstallerRequestBuilder {
            Session session;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactoryRequest.java

        static DependencyCoordinateFactoryRequest build(@Nonnull Session session, @Nonnull ArtifactCoordinate coordinate) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .groupId(nonNull(coordinate, "coordinate cannot be null").getGroupId())
                    .artifactId(coordinate.getArtifactId())
                    .version(coordinate.getVersion().asString())
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The groupId cannot be empty.");
            }
    
            if (artifactId == null) {
                throw new InvalidArtifactRTException(
                        groupId, artifactId, getVersion(), type, "The artifactId cannot be empty.");
            }
    
            if (type == null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
Back to top