Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for AppendNil (0.23 sec)

  1. internal/config/cache/remote_gen.go

    	if z.IfModifiedSince == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendTime(o, *z.IfModifiedSince)
    	}
    	// string "IfUnModifiedSince"
    	o = append(o, 0xb1, 0x49, 0x66, 0x55, 0x6e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x63, 0x65)
    	if z.IfUnModifiedSince == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendTime(o, *z.IfUnModifiedSince)
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Nov 22 21:46:17 GMT 2023
    - 18.9K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-rebalance_gen.go

    	// string "rss"
    	o = append(o, 0xa3, 0x72, 0x73, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.PoolStats)))
    	for za0001 := range z.PoolStats {
    		if z.PoolStats[za0001] == nil {
    			o = msgp.AppendNil(o)
    		} else {
    			o, err = z.PoolStats[za0001].MarshalMsg(o)
    			if err != nil {
    				err = msgp.WrapError(err, "PoolStats", za0001)
    				return
    			}
    		}
    	}
    	return
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  3. cmd/batch-expire_gen.go

    	o = msgp.AppendDuration(o, z.OlderThan)
    	// string "CreatedBefore"
    	o = append(o, 0xad, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65)
    	if z.CreatedBefore == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendTime(o, *z.CreatedBefore)
    	}
    	// string "Tags"
    	o = append(o, 0xa4, 0x54, 0x61, 0x67, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.Tags)))
    	for za0001 := range z.Tags {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Dec 02 10:51:33 GMT 2023
    - 19.8K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-decom_gen.go

    	// string "lu"
    	o = append(o, 0xa2, 0x6c, 0x75)
    	o = msgp.AppendTime(o, z.LastUpdate)
    	// string "dec"
    	o = append(o, 0xa3, 0x64, 0x65, 0x63)
    	if z.Decommission == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o, err = z.Decommission.MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Decommission")
    			return
    		}
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Jul 04 21:02:54 GMT 2022
    - 26.7K bytes
    - Viewed (0)
  5. cmd/object-api-datatypes_gen.go

    	o = msgp.AppendInt64(o, z.Size)
    	// string "ActualSize"
    	o = append(o, 0xaa, 0x41, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x53, 0x69, 0x7a, 0x65)
    	if z.ActualSize == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendInt64(o, *z.ActualSize)
    	}
    	// string "IsDir"
    	o = append(o, 0xa5, 0x49, 0x73, 0x44, 0x69, 0x72)
    	o = msgp.AppendBool(o, z.IsDir)
    	// string "ETag"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 69.8K bytes
    - Viewed (0)
Back to top