Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 221 for Boundary (0.53 sec)

  1. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

      @get:JvmName("type") val type: MediaType,
      @get:JvmName("parts") val parts: List<Part>,
    ) : RequestBody() {
      private val contentType: MediaType = "$type; boundary=$boundary".toMediaType()
      private var contentLength = -1L
    
      @get:JvmName("boundary")
      val boundary: String
        get() = boundaryByteString.utf8()
    
      /** The number of parts in this multipart body. */
      @get:JvmName("size")
      val size: Int
        get() = parts.size
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    // FirstBoundaryInString returns the position i of the first boundary in s
    // or -1 if s contains no boundary.
    func (f Form) FirstBoundaryInString(s string) int {
    	return f.firstBoundary(inputString(s), len(s))
    }
    
    // NextBoundary reports the index of the boundary between the first and next
    // segment in b or -1 if atEOF is false and there are not enough bytes to
    // determine this boundary.
    func (f Form) NextBoundary(b []byte, atEOF bool) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

        val body =
          MultipartBody.Builder("123")
            .addPart("Hello, World!".toRequestBody(null))
            .build()
        assertThat(body.boundary).isEqualTo("123")
        assertThat(body.type).isEqualTo(MultipartBody.MIXED)
        assertThat(body.contentType().toString())
          .isEqualTo("multipart/mixed; boundary=123")
        assertThat(body.parts.size).isEqualTo(1)
        assertThat(body.contentLength()).isEqualTo(33L)
        val buffer = Buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/mime/multipart/multipart_test.go

    	// Single empty part, ended with --boundary immediately after headers.
    	{
    		name: "single empty part, --boundary",
    		sep:  "abc",
    		in:   "--abc\r\nFoo: bar\r\n\r\n--abc--",
    		want: []headerBody{
    			{textproto.MIMEHeader{"Foo": {"bar"}}, ""},
    		},
    	},
    
    	// Single empty part, ended with \r\n--boundary immediately after headers.
    	{
    		name: "single empty part, \r\n--boundary",
    		sep:  "abc",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/MediaTypeTest.kt

      }
    
      @Test fun testParse() {
        val mediaType = parse("text/plain;boundary=foo;charset=utf-8")
        assertEquals("text", mediaType.type)
        assertEquals("plain", mediaType.subtype)
        assertEquals("UTF-8", mediaType.charsetName())
        assertEquals("text/plain;boundary=foo;charset=utf-8", mediaType.toString())
        assertEquals(mediaType, parse("text/plain;boundary=foo;charset=utf-8"))
        assertEquals(
          mediaType.hashCode(),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/mime/multipart/example_test.go

    import (
    	"fmt"
    	"io"
    	"log"
    	"mime"
    	"mime/multipart"
    	"net/mail"
    	"strings"
    )
    
    func ExampleNewReader() {
    	msg := &mail.Message{
    		Header: map[string][]string{
    			"Content-Type": {"multipart/mixed; boundary=foo"},
    		},
    		Body: strings.NewReader(
    			"--foo\r\nFoo: one\r\n\r\nA section\r\n" +
    				"--foo\r\nFoo: two\r\n\r\nAnd another\r\n" +
    				"--foo--\r\n"),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  7. releasenotes/notes/46597.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 46597
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 243 bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

        }
        public int getTailSpace() {
            return buf.length - index;
        }
        public byte[] getBuffer() {
            return buf;
        }
        public int align(int boundary, byte value) {
            int n = align(boundary);
            int i = n;
            while (i > 0) {
                buf[index - i] = value;
                i--;
            }
            return n;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            return this.buf.length - this.index;
        }
    
    
        public byte[] getBuffer () {
            return this.buf;
        }
    
    
        public int align ( int boundary, byte value ) {
            int n = align(boundary);
            int i = n;
            while ( i > 0 ) {
                this.buf[ this.index - i ] = value;
                i--;
            }
            return n;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelVersionParser.java

                }
            }
    
            @Override
            public Boundary getUpperBoundary() {
                org.eclipse.aether.version.VersionRange.Bound bound = delegate.getUpperBound();
                if (bound == null) {
                    return null;
                }
                return new Boundary() {
                    @Override
                    public Version getVersion() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top