Search Options

Results per page
Sort
Preferred Languages
Advance

Results 611 - 620 of 962 for Encode (0.05 sec)

  1. internal/config/identity/openid/jwt.go

    )
    
    type publicKeys struct {
    	*sync.RWMutex
    
    	// map of kid to public key
    	pkMap map[string]interface{}
    }
    
    func (pk *publicKeys) parseAndAdd(b io.Reader) error {
    	var jwk JWKS
    	err := json.NewDecoder(b).Decode(&jwk)
    	if err != nil {
    		return err
    	}
    
    	for _, key := range jwk.Keys {
    		pkey, err := key.DecodePublicKey()
    		if err != nil {
    			return err
    		}
    		pk.add(key.Kid, pkey)
    	}
    
    	return nil
    }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 02:46:36 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. cmd/peer-rest-client.go

    }
    
    // DownloadProfileData - download profiled data from a remote node.
    func (client *peerRESTClient) DownloadProfileData(ctx context.Context) (data map[string][]byte, err error) {
    	respBody, err := client.callWithContext(ctx, peerRESTMethodDownloadProfilingData, nil, nil, -1)
    	if err != nil {
    		return
    	}
    	defer xhttp.DrainBody(respBody)
    	err = gob.NewDecoder(respBody).Decode(&data)
    	return data, err
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 09 16:58:30 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/web-platform-test-toascii.json

      },
      {
        "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",
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional string metricName = 2;
    
      // targetValue is the target value of the metric (as a quantity).
      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetValue = 3;
    
      // selector is the string-encoded form of a standard kubernetes label selector for the given metric
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. api/go1.10.txt

    pkg time, func LoadLocationFromTZData(string, []uint8) (*Location, error)
    pkg unicode, const Version = "10.0.0"
    pkg unicode, var Masaram_Gondi *RangeTable
    pkg unicode, var Nushu *RangeTable
    pkg unicode, var Regional_Indicator *RangeTable
    pkg unicode, var Soyombo *RangeTable
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/response-directly.md

    # ๐Ÿ“จ ๐Ÿ“จ ๐Ÿ”—
    
    ๐Ÿ•โ” ๐Ÿ‘† โœ **FastAPI** *โžก ๐Ÿ› ๏ธ* ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ›Ž ๐Ÿ“จ ๐Ÿ™† ๐Ÿ“Š โšช๏ธโžก๏ธ โšซ๏ธ: `dict`, `list`, Pydantic ๐Ÿท, ๐Ÿ’ฝ ๐Ÿท, โ™’๏ธ.
    
    ๐Ÿ”ข, **FastAPI** ๐Ÿ”œ ๐Ÿ” ๐Ÿ—œ ๐Ÿ‘ˆ ๐Ÿ“จ ๐Ÿ’ฒ ๐ŸŽป โš™๏ธ `jsonable_encoder` ๐Ÿ”ฌ [๐ŸŽป ๐Ÿ”— ๐Ÿ”ข](../tutorial/encoder.md){.internal-link target=_blank}.
    
    โคด๏ธ, โ›… ๐ŸŽ‘, โšซ๏ธ ๐Ÿ”œ ๐Ÿšฎ ๐Ÿ‘ˆ ๐ŸŽป-๐Ÿ”— ๐Ÿ’ฝ (โœ… `dict`) ๐Ÿ”˜ `JSONResponse` ๐Ÿ‘ˆ ๐Ÿ”œ โš™๏ธ ๐Ÿ“จ ๐Ÿ“จ ๐Ÿ‘ฉโ€๐Ÿ’ป.
    
    โœ‹๏ธ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ“จ `JSONResponse` ๐Ÿ”— โšช๏ธโžก๏ธ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ*.
    
    โšซ๏ธ ๐Ÿ’ช โš , ๐Ÿ–ผ, ๐Ÿ“จ ๐Ÿ›ƒ ๐ŸŽš โš–๏ธ ๐Ÿช.
    
    ## ๐Ÿ“จ `Response`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. docs/zh/docs/how-to/general.md

    ๅœจๆ–‡ๆกฃ็•Œ้ขไธญๆ˜พ็คบๅผƒ็”จ็š„**่ทฏๅพ„ๆ“ไฝœ**๏ผŒ่ฏท้˜…่ฏป [ๆ•™็จ‹ - ่ทฏๅพ„ๆ“ไฝœ้…็ฝฎ - ๅผƒ็”จ](../tutorial/path-operation-configuration.md#deprecate-a-path-operation){.internal-link target=_blank} ๆ–‡ๆกฃใ€‚
    
    ## ๅฐ†ไปปไฝ•ๆ•ฐๆฎ่ฝฌๆขไธบ JSON ๅ…ผๅฎนๆ ผๅผ
    
    ่ฆๅฐ†ไปปไฝ•ๆ•ฐๆฎ่ฝฌๆขไธบ JSON ๅ…ผๅฎนๆ ผๅผ๏ผŒ่ฏท้˜…่ฏป [ๆ•™็จ‹ - JSON ๅ…ผๅฎน็ผ–็ ๅ™จ](../tutorial/encoder.md){.internal-link target=_blank} ๆ–‡ๆกฃใ€‚
    
    ## OpenAPI ๅ…ƒๆ•ฐๆฎ - ๆ–‡ๆกฃ
    
    ่ฆๆทปๅŠ  OpenAPI ็š„ๅ…ƒๆ•ฐๆฎ๏ผŒๅŒ…ๆ‹ฌ่ฎธๅฏ่ฏใ€็‰ˆๆœฌใ€่”็ณปๆ–นๅผ็ญ‰๏ผŒ่ฏท้˜…่ฏป [ๆ•™็จ‹ - ๅ…ƒๆ•ฐๆฎๅ’Œๆ–‡ๆกฃ URL](../tutorial/metadata.md){.internal-link target=_blank} ๆ–‡ๆกฃใ€‚
    
    ## OpenAPI ่‡ชๅฎšไน‰ URL
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Apr 22 23:41:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

            int start = bufferIndex;
            FileInformation inf = createFileInformation();
            if ( inf != null ) {
                bufferIndex += inf.decode(buffer, bufferIndex, getDataCount());
                this.info = inf;
            }
            return bufferIndex - start;
        }
    
    
        private FileInformation createFileInformation () {
            FileInformation inf;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/dfs/Referral.java

    
        /**
         * @return the rpath
         */
        public final String getRpath () {
            return this.rpath;
        }
    
    
        /**
         * @return the node
         */
        public final String getNode () {
            return this.node;
        }
    
    
        /**
         * @return the specialName
         */
        public final String getSpecialName () {
            return this.specialName;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

    import java.io.IOException
    import okhttp3.Headers
    import okhttp3.Request
    import okhttp3.Response
    import okhttp3.Route
    import okhttp3.internal.connection.RealCall
    import okio.Sink
    import okio.Source
    
    /** Encodes HTTP requests and decodes HTTP responses. */
    interface ExchangeCodec {
      /** The connection or CONNECT tunnel that owns this codec. */
      val carrier: Carrier
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top