Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newgolines (0.18 sec)

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

         * with Chrome's behavior (which also experimentally seems to match what IE does), but if you
         * actually want to have a good chance of things working, please avoid double-quotes, newlines,
         * percent signs, and the like in your field names.
         */
        internal fun StringBuilder.appendQuotedString(key: String) {
          append('"')
          for (i in 0 until key.length) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. internal/s3select/csv/reader_contrib_test.go

    				if fields < 10 {
    					opts := sql.WriteCSVOpts{
    						FieldDelimiter: ',',
    						Quote:          '"',
    						QuoteEscape:    '"',
    						AlwaysQuote:    false,
    					}
    					// Write with fixed delimiters, newlines.
    					err := record.WriteCSV(&result, opts)
    					if err != nil {
    						t.Error(err)
    					}
    				}
    				fields++
    			}
    			r.Close()
    			if err != io.EOF {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  3. cmd/streaming-signature-v4.go

    			}
    		}
    		if string(tmp[:]) != "\n\r\n" {
    			if cr.debug {
    				fmt.Printf("signature, want %q, got %q", "\n\r\n", string(tmp[:]))
    			}
    			return errMalformedEncoding
    		}
    		// No need to write final newlines to buffer.
    		break
    	}
    
    	// Verify signature.
    	sig := signatureBuffer.Bytes()
    	if !bytes.HasPrefix(sig, []byte("x-amz-trailer-signature:")) {
    		if cr.debug {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top