Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 400 for marshaling (0.18 sec)

  1. src/crypto/x509/pkcs8.go

    		}
    		privKey.PrivateKey = MarshalPKCS1PrivateKey(k)
    
    	case *ecdsa.PrivateKey:
    		oid, ok := oidFromNamedCurve(k.Curve)
    		if !ok {
    			return nil, errors.New("x509: unknown curve while marshaling to PKCS#8")
    		}
    		oidBytes, err := asn1.Marshal(oid)
    		if err != nil {
    			return nil, errors.New("x509: failed to marshal curve OID: " + err.Error())
    		}
    		privKey.Algo = pkix.AlgorithmIdentifier{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct/direct.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package direct provides functions for marshaling and unmarshaling between arbitrary Go values and
    // CBOR data, with behavior that is compatible with that of the CBOR serializer. In particular,
    // types that implement cbor.Marshaler and cbor.Unmarshaler should use these functions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/marshal_test.go

    	}
    
    	for _, c := range cases {
    		result, err := json.Marshal(&c.input)
    		if err != nil {
    			t.Errorf("Unexpected error marshaling input '%v': %v", c.input, err)
    		}
    		if string(result) != c.result {
    			t.Errorf("Failed to marshal input '%v': expected: %q, got %q", c.input, c.result, string(result))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 15 16:26:13 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue13171.go

    package main
    
    // Make sure the compiler knows that DUFFCOPY clobbers X0
    
    import "fmt"
    
    //go:noinline
    func f(x float64) float64 {
    	// y is allocated to X0
    	y := x + 5
    	// marshals z before y.  Marshaling z
    	// calls DUFFCOPY.
    	return g(z, y)
    }
    
    //go:noinline
    func g(b [64]byte, y float64) float64 {
    	return y
    }
    
    var z [64]byte
    
    func main() {
    	got := f(5)
    	if got != 10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 00:13:35 UTC 2016
    - 588 bytes
    - Viewed (0)
  5. istioctl/pkg/util/proto/messageslice.go

    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    // MessageSlice allows us to marshal slices of protobuf messages like clusters/listeners/routes/endpoints correctly
    type MessageSlice []proto.Message
    
    // MarshalJSON handles marshaling of slices of proto messages
    func (pSlice MessageSlice) MarshalJSON() ([]byte, error) {
    	buffer := bytes.NewBufferString("[")
    	sliceLength := len(pSlice)
    	for index, msg := range pSlice {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 19 21:53:59 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue16760.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure we don't start marshaling (writing to the stack)
    // arguments until those arguments are evaluated and known
    // not to unconditionally panic. If they unconditionally panic,
    // we write some args but never do the call. That messes up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 22 22:53:51 UTC 2021
    - 796 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/marshal_test.go

    	}
    
    	for _, c := range cases {
    		result, err := json.Marshal(&c.input)
    		if err != nil {
    			t.Errorf("Unexpected error marshaling input '%v': %v", c.input, err)
    		}
    		if string(result) != c.result {
    			t.Errorf("Failed to marshal input '%v': expected: %q, got %q", c.input, c.result, string(result))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 10 12:12:24 UTC 2018
    - 7.1K bytes
    - Viewed (0)
  8. src/encoding/xml/typeinfo.go

    	xmlName = "XMLName"
    )
    
    var tinfoMap sync.Map // map[reflect.Type]*typeInfo
    
    var nameType = reflect.TypeFor[Name]()
    
    // getTypeInfo returns the typeInfo structure with details necessary
    // for marshaling and unmarshaling typ.
    func getTypeInfo(typ reflect.Type) (*typeInfo, error) {
    	if ti, ok := tinfoMap.Load(typ); ok {
    		return ti.(*typeInfo), nil
    	}
    
    	tinfo := &typeInfo{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/hash/hash.go

    //
    // Hash implementations in the standard library (e.g. [hash/crc32] and
    // [crypto/sha256]) implement the [encoding.BinaryMarshaler] and
    // [encoding.BinaryUnmarshaler] interfaces. Marshaling a hash implementation
    // allows its internal state to be saved and used for additional processing
    // later, without having to re-write the data previously written to the hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/duration.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"encoding/json"
    	"time"
    )
    
    // 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.
    type Duration struct {
    	time.Duration `protobuf:"varint,1,opt,name=duration,casttype=time.Duration"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 00:11:06 UTC 2020
    - 1.9K bytes
    - Viewed (0)
Back to top