Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for marshaling (0.29 sec)

  1. src/encoding/json/decode_test.go

    		err:      &UnmarshalTypeError{Value: "object", Type: reflect.TypeFor[map[unmarshaler]string](), Offset: 1},
    	},
    
    	// related to issue 13783.
    	// Go 1.7 changed marshaling a slice of typed byte to use the methods on the byte type,
    	// similar to marshaling a slice of typed int.
    	// These tests check that, assuming the byte type also has valid decoding methods,
    	// either the old base64 string encoding or the new per-element encoding can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    	empty        = ""
    )
    
    // Unless explicitly stated as such (or *Plain), all of the
    // tests below are two-way tests. When introducing new tests,
    // please try to make them two-way as well to ensure that
    // marshaling and unmarshaling are as symmetrical as feasible.
    var marshalTests = []struct {
    	Value          any
    	ExpectXML      string
    	MarshalOnly    bool
    	MarshalError   string
    	UnmarshalOnly  bool
    	UnmarshalError string
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // request. Valid values are:
      // - All: all dry run stages will be processed
      // +optional
      repeated string dryRun = 5;
    }
    
    // Duration is a wrapper around time.Duration which supports correct
    // marshaling to YAML and JSON. In particular, it marshals into strings, which
    // can be used as map keys in json.
    message Duration {
      optional int64 duration = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // - All: all dry run stages will be processed
      // +optional
      // +listType=atomic
      repeated string dryRun = 5;
    }
    
    // Duration is a wrapper around time.Duration which supports correct
    // marshaling to YAML and JSON. In particular, it marshals into strings, which
    // can be used as map keys in json.
    message Duration {
      optional int64 duration = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	KeyUsage            KeyUsage
    
    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    	// parsed by this package. When marshaling certificates, the Extensions
    	// field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    	// ExtraExtensions contains extensions to be copied, raw, into any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. internal/bucket/lifecycle/lifecycle_test.go

    				t.Fatalf("%d: Expected %v during validation but got %v", i+1, tc.expectedValidationErr, err)
    			}
    		})
    	}
    }
    
    // TestMarshalLifecycleConfig checks if lifecycleconfig xml
    // marshaling/unmarshaling can handle output from each other
    func TestMarshalLifecycleConfig(t *testing.T) {
    	// Time at midnight UTC
    	midnightTS := ExpirationDate{time.Date(2019, time.April, 20, 0, 0, 0, 0, time.UTC)}
    	lc := Lifecycle{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    		"1.2.3.4/32",
    		"0.0.0.0/0",
    		"::/0",
    		"::1/128",
    		"2001:db8::/32",
    	}
    
    	for _, s := range tests {
    		t.Run(s, func(t *testing.T) {
    			// Ensure that JSON  (and by extension, text) marshaling is
    			// sane by entering quoted input.
    			orig := `"` + s + `"`
    
    			var p Prefix
    			if err := json.Unmarshal([]byte(orig), &p); err != nil {
    				t.Fatalf("failed to unmarshal: %v", err)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// Do we need to store an allocation result from Reserve?
    	if allocation != nil {
    		buffer, err := json.Marshal(allocation)
    		if err != nil {
    			return nil, fmt.Errorf("marshaling AllocationResult failed: %v", err)
    		}
    		allocationPatch = fmt.Sprintf(`"driverName": %q, "allocation": %s, `, state.informationsForClaim[index].allocationDriverName, string(buffer))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. cmd/storage-datatypes_gen_test.go

    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgBaseOptions(b *testing.B) {
    	v := BaseOptions{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bts, _ = v.MarshalMsg(bts[0:0])
    	}
    }
    
    func BenchmarkUnmarshalBaseOptions(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
  10. cmd/bucket-stats_gen.go

    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z *ReplicationLastMinute) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 1
    	// string "LastMinute"
    	o = append(o, 0x81, 0xaa, 0x4c, 0x61, 0x73, 0x74, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65)
    	o, err = z.LastMinute.MarshalMsg(o)
    	if err != nil {
    		err = msgp.WrapError(err, "LastMinute")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top