Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for MediaType (0.18 sec)

  1. pkg/wasm/imagefetcher_test.go

    			diffID: v1.Hash{
    				Algorithm: "sha256",
    				Hex:       hex.EncodeToString(hasher.Sum(make([]byte, 0, hasher.Size()))),
    			},
    			mediaType: mediaType,
    		},
    	)
    }
    
    type mockLayer struct {
    	raw       []byte
    	diffID    v1.Hash
    	mediaType types.MediaType
    }
    
    func (r *mockLayer) DiffID() (v1.Hash, error) { return v1.Hash{}, nil }
    func (r *mockLayer) Uncompressed() (io.ReadCloser, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. pkg/api/testing/serialization_proto_test.go

    	for _, mediaType := range []string{"application/json", "application/yaml", "application/vnd.kubernetes.protobuf"} {
    		info, ok := runtime.SerializerInfoForMediaType(legacyscheme.Codecs.SupportedMediaTypes(), mediaType)
    		if !ok {
    			t.Fatal(mediaType)
    		}
    		buf := &bytes.Buffer{}
    		if err := info.Serializer.Encode(expected, buf); err != nil {
    			t.Fatalf("%s: %v", mediaType, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-ResponseCommon.kt

    import okio.Buffer
    import okio.IOException
    import okio.Source
    import okio.Timeout
    import okio.buffer
    
    internal class UnreadableResponseBody(
      private val mediaType: MediaType?,
      private val contentLength: Long,
    ) : ResponseBody(), Source {
      override fun contentType() = mediaType
    
      override fun contentLength() = contentLength
    
      override fun source() = buffer()
    
      override fun read(
        sink: Buffer,
        byteCount: Long,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/mime/multipart/example_test.go

    		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"),
    	}
    	mediaType, params, err := mime.ParseMediaType(msg.Header.Get("Content-Type"))
    	if err != nil {
    		log.Fatal(err)
    	}
    	if strings.HasPrefix(mediaType, "multipart/") {
    		mr := multipart.NewReader(msg.Body, params["boundary"])
    		for {
    			p, err := mr.NextPart()
    			if err == io.EOF {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. okhttp-testing-support/src/main/kotlin/okhttp3/internal/duplex/AsyncRequestBody.kt

     */
    package okhttp3.internal.duplex
    
    import java.util.concurrent.BlockingQueue
    import java.util.concurrent.LinkedBlockingQueue
    import java.util.concurrent.TimeUnit.SECONDS
    import okhttp3.MediaType
    import okhttp3.RequestBody
    import okio.BufferedSink
    import org.junit.jupiter.api.Assertions.assertTrue
    
    /** A duplex request body that keeps the provided sinks so they can be written to later.  */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    	for _, d := range serializers {
    		decoders = append(decoders, d.Serializer)
    		for _, mediaType := range d.AcceptContentTypes {
    			if _, ok := alreadyAccepted[mediaType]; ok {
    				continue
    			}
    			alreadyAccepted[mediaType] = struct{}{}
    			info := runtime.SerializerInfo{
    				MediaType:        d.ContentType,
    				EncodesAsText:    d.EncodesAsText,
    				Serializer:       d.Serializer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    		mediaType, _ := negotiation.NegotiateMediaTypeOptions(req.Header.Get("Accept"), wrapped.s.SupportedMediaTypes(), DiscoveryEndpointRestrictions)
    		// mediaType.Convert looks at the request accept headers and is used to control whether the discovery document will be aggregated.
    		if IsAggregatedDiscoveryGVK(mediaType.Convert) {
    			wrapped.aggHandler.ServeHTTP(resp, req)
    			return
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/options/configfile.go

    func encodeConfig(cfg *config.KubeSchedulerConfiguration) (*bytes.Buffer, error) {
    	buf := new(bytes.Buffer)
    	const mediaType = runtime.ContentTypeYAML
    	info, ok := runtime.SerializerInfoForMediaType(scheme.Codecs.SupportedMediaTypes(), mediaType)
    	if !ok {
    		return buf, fmt.Errorf("unable to locate encoder -- %q is not a supported media type", mediaType)
    	}
    
    	var encoder runtime.Encoder
    	switch cfg.TypeMeta.APIVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun mediaType() {
        val mediaType: MediaType = "".toMediaType()
        val defaultCharset: Charset? = mediaType.charset()
        val charset: Charset? = mediaType.charset(Charsets.UTF_8)
        val type: String = mediaType.type
        val subtype: String = mediaType.subtype
        val parse: MediaType? = "".toMediaTypeOrNull()
      }
    
      @Test
      fun mockResponse() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/FormBody.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3
    
    import java.io.IOException
    import java.nio.charset.Charset
    import okhttp3.MediaType.Companion.toMediaType
    import okhttp3.internal.toImmutableList
    import okhttp3.internal.url.FORM_ENCODE_SET
    import okhttp3.internal.url.canonicalizeWithCharset
    import okhttp3.internal.url.percentDecode
    import okio.Buffer
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top