Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for putString (0.22 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java

         */
        void putString(@Nonnull String source, @Nonnull Charset charset, @Nonnull URI relativeTarget);
    
        /**
         * PUTs the source string using UTF8 charset to target URI. The target MUST BE relative from the
         * {@link RemoteRepository#getUrl()} root.
         *
         * @throws RuntimeException If PUT fails for any reason.
         */
        default void putString(@Nonnull String source, @Nonnull URI relativeTarget) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

                    }
                }
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        @Override
        public void putString(String source, Charset charset, URI relativeTarget) {
            requireNonNull(source, "source string is null");
            requireNonNull(charset, "charset is null");
            putBytes(source.getBytes(charset), relativeTarget);
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

                    }
                }
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        @Override
        public void putString(String source, Charset charset, URI relativeTarget) {
            requireNonNull(source, "source string is null");
            requireNonNull(charset, "charset is null");
            putBytes(source.getBytes(charset), relativeTarget);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  4. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

        /**
         * This default mode for combining children DOMs during merge means that where element names match, the process will
         * try to merge the element data, rather than putting the dominant and recessive elements (which share the same
         * element name) as siblings in the resulting DOM.
         */
        String DEFAULT_CHILDREN_COMBINATION_MODE = CHILDREN_COMBINATION_MERGE;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Nov 27 23:11:34 GMT 2023
    - 4.3K bytes
    - Viewed (0)
Back to top