Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 438 for Decoders (0.58 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    		objects[i] = &Unknown{Raw: data}
    	}
    	return errors.NewAggregate(errs)
    }
    
    func decodeListItem(obj *Unknown, decoders []Decoder) (Object, error) {
    	for _, decoder := range decoders {
    		// TODO: Decode based on ContentType.
    		obj, err := Decode(decoder, obj.Raw)
    		if err != nil {
    			if IsNotRegisteredError(err) {
    				continue
    			}
    			return nil, err
    		}
    		return obj, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	encoderDecoratorFn func(runtime.Encoder) runtime.Encoder
    	// decoderDecoratorFn is optional and may wrap the provided decoders (can add new decoders). The order of
    	// returned decoders will be priority for attempt to decode.
    	decoderDecoratorFn func([]runtime.Decoder) []runtime.Decoder
    }
    
    // Apply overrides the provided config and options if the override has a value in that position
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. src/encoding/binary/binary_test.go

    		t.Fatal(err)
    	}
    
    	for _, dec := range decoders {
    		t.Run(dec.name, func(t *testing.T) {
    			defer func() {
    				if recover() == nil {
    					t.Fatal("did not panic")
    				}
    			}()
    			var u2 Unexported
    			dec.fn(LittleEndian, &u2, buf.Bytes())
    		})
    	}
    
    }
    
    func TestReadErrorMsg(t *testing.T) {
    	for _, dec := range decoders {
    		t.Run(dec.name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go

    	NewEncoder(w io.Writer) Encoder
    	NewDecoder(r io.ReadCloser) Decoder
    }
    
    type decoder struct {
    	reader    io.ReadCloser
    	decoder   runtime.Decoder
    	buf       []byte
    	maxBytes  int
    	resetRead bool
    }
    
    // NewDecoder creates a streaming decoder that reads object chunks from r and decodes them with d.
    // The reader is expected to return ErrShortRead if the provided buffer is not large enough to read
    // an entire object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 25 14:51:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     * limitations under the License.
     */
    
    /**
     * This subsystem implements serialization of configuration state.
     * <h2>Key abstractions</h2>
     *
     * <h3>Encoders and Decoders</h3>
     *  <p>
     *  Serialization of an object that is supported by the configuration cache is performed by an {@link org.gradle.internal.serialize.graph.EncodingProvider}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    	ut := userType(rt)
    	return getType(name, ut, ut.base)
    }
    
    // getType returns the Gob type describing the given reflect.Type.
    // Should be called only when handling GobEncoders/Decoders,
    // which may be pointers. All other types are handled through the
    // base type, never a pointer.
    // typeLock must be held.
    func getType(name string, ut *userTypeInfo, rt reflect.Type) (gobType, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/encoding/gob/decode.go

    // The callers to the individual decoders are expected to have used decAlloc.
    // The individual decoders don't need it.
    func decAlloc(v reflect.Value) reflect.Value {
    	for v.Kind() == reflect.Pointer {
    		if v.IsNil() {
    			v.Set(reflect.New(v.Type().Elem()))
    		}
    		v = v.Elem()
    	}
    	return v
    }
    
    // decBool decodes a uint and stores it as a boolean in value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  8. src/compress/flate/inflate.go

    	// Input source.
    	r       Reader
    	rBuf    *bufio.Reader // created if provided io.Reader does not implement io.ByteReader
    	roffset int64
    
    	// Input bits, in top of b.
    	b  uint32
    	nb uint
    
    	// Huffman decoders for literal/length, distance.
    	h1, h2 huffmanDecoder
    
    	// Length arrays used to define Huffman codes.
    	bits     *[maxNumLit + maxNumDist]int
    	codebits *[numCodes]int
    
    	// Output history, buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. src/encoding/gob/encoder_test.go

    	}
    
    	// Now test with a running encoder/decoder pair that we recognize a type mismatch.
    	err = enc.Encode(et1)
    	if err != nil {
    		t.Error("round 3: encoder fail:", err)
    	}
    	newEt2 := new(ET2)
    	err = dec.Decode(newEt2)
    	if err == nil {
    		t.Fatal("round 3: expected `bad type' error decoding ET2")
    	}
    }
    
    // Run one value through the encoder/decoder, but use the wrong type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. docs/de/docs/reference/encoders.md

    # Encoder – `jsonable_encoder`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Feb 19 15:54:52 UTC 2024
    - 72 bytes
    - Viewed (0)
Back to top