Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 451 - 460 of 808 for encodes (0.5 seconds)

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

       * double-duty to make sure the counting and content are consistent, particularly when it comes
       * to awkward operations like measuring the encoded length of header strings, or the
       * length-in-digits of an encoded integer.
       */
      @Throws(IOException::class)
      private fun writeOrCountBytes(
        sink: BufferedSink?,
        countBytes: Boolean,
      ): Long {
        var sink = sink
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/request-forms-and-files.md

    /// warning | Alertes
    
    Vous pouvez déclarer plusieurs paramètres `File` et `Form` dans un *chemin d'accès*, mais vous ne pouvez pas aussi déclarer des champs `Body` que vous vous attendez à recevoir en JSON, car la requête aura le corps encodé en `multipart/form-data` au lieu de `application/json`.
    
    Ce n'est pas une limitation de **FastAPI**, cela fait partie du protocole HTTP.
    
    ///
    
    ## Récapitulatif { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  3. docs/uk/docs/how-to/general.md

    ## Перетворити будь-які дані на сумісні з JSON { #convert-any-data-to-json-compatible }
    
    Щоб перетворити будь-які дані на сумісні з JSON, прочитайте документацію [Навчальний посібник - Кодувальник, сумісний з JSON](../tutorial/encoder.md).
    
    ## Метадані OpenAPI - Документація { #openapi-metadata-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  4. docs/fr/docs/_llm-test.md

    * le service cloud
    
    * le développement
    * les étapes de développement
    
    * le dict
    * le dictionnaire
    * l’énumération
    * l’enum
    * le membre d’enum
    
    * l’encodeur
    * le décodeur
    * encoder
    * décoder
    
    * l’exception
    * lever
    
    * l’expression
    * l’instruction
    
    * le frontend
    * le backend
    
    * la discussion GitHub
    * le ticket GitHub
    
    * la performance
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  5. cmd/admin-handlers.go

    			// previous result back to the client
    			if prevResult.Version != "" {
    				if err := enc.Encode(prevResult); err != nil {
    					return
    				}
    			} else {
    				// first result is not yet obtained, keep writing
    				// empty entry to prevent client from disconnecting.
    				if err := enc.Encode(madmin.SpeedTestResult{}); err != nil {
    					return
    				}
    			}
    			xhttp.Flush(w)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 99.7K bytes
    - Click Count (0)
  6. cmd/peer-rest-server.go

    	for {
    		select {
    		case <-ctx.Done():
    			grid.PutByteBuffer(buf.Bytes())
    			return nil
    		case ev := <-ch:
    			buf.Reset()
    			tmpEvt.Records[0] = ev
    			if err := enc.Encode(tmpEvt); err != nil {
    				peersLogOnceIf(ctx, err, "event: Encode failed")
    				continue
    			}
    			out <- grid.NewBytesWithCopyOf(buf.Bytes())
    		}
    	}
    }
    
    // TraceHandler sends http trace messages back to peer rest client
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 53.6K bytes
    - Click Count (0)
  7. tests/test_sse.py

        assert "event: special\n" in text
        assert 'data: "custom-event"\n' in text
        assert '"name"' in text
    
    
    def test_string_data_json_encoded(client: TestClient):
        """Strings are always JSON-encoded (quoted)."""
        response = client.get("/items/stream-string")
        assert response.status_code == 200
        assert 'data: "plain text data"\n' in response.text
    
    
    def test_server_sent_event_null_id_rejected():
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 09:21:52 GMT 2026
    - 9.8K bytes
    - Click Count (0)
  8. docs/pt/docs/how-to/general.md

    ## Converter qualquer dado para compatível com JSON { #convert-any-data-to-json-compatible }
    
    Para converter qualquer dado para um formato compatível com JSON, leia a documentação de [Tutorial - Codificador Compatível com JSON](../tutorial/encoder.md).
    
    ## OpenAPI Metadata - Docs { #openapi-metadata-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java

            return asJson(new ApiResult.ApiLogFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Downloads a specific log file by ID.
         *
         * @param id the base64-encoded filename of the log file to download
         * @return stream response containing the log file content
         */
        // GET /api/admin/log/file/{id}
        @Execute
        public StreamResponse get$file(final String id) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  10. okhttp/src/jvmTest/resources/web-platform-test-toascii.json

      },
      {
        "input": "نامه‌ای",
        "output": "xn--mgba3gch31f060k"
      },
      {
        "comment": "U+FFFD",
        "input": "\uFFFD.com",
        "output": null
      },
      {
        "comment": "U+FFFD character encoded in Punycode",
        "input": "xn--zn7c.com",
        "output": null
      },
      {
        "comment": "Label longer than 63 code points",
        "input": "x01234567890123456789012345678901234567890123456789012345678901x",
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 5.2K bytes
    - Click Count (0)
Back to Top