Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for unmarshaling (0.16 sec)

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

    	if err != nil {
    		t.Errorf("Error when marshaling object: %v", err)
    		return
    	}
    
    	unstr := make(map[string]interface{})
    	err = json.Unmarshal(data, &unstr)
    	if err != nil {
    		t.Errorf("Error when unmarshaling to unstructured: %v", err)
    		return
    	}
    
    	data, err = json.Marshal(unstr)
    	if err != nil {
    		t.Errorf("Error when marshaling unstructured: %v", err)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder_test.go

    		t.Fatalf("unexpected error unmarshaling yaml: %v", err)
    	}
    	if _, ok := sliceWithInteger[0].(int64); !ok {
    		t.Fatalf(`Expected number in slice to be int64 but got "%T"`, sliceWithInteger[0])
    	}
    
    	integerBytes := []byte(`1`)
    	var integer interface{}
    	if err := Unmarshal(integerBytes, &integer); err != nil {
    		t.Fatalf("unexpected error unmarshaling yaml: %v", err)
    	}
    	if _, ok := integer.(int64); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/encoding/xml/xml_test.go

    	}
    	if len(c.C.XMLName.Space) != 0 {
    		t.Errorf("overidding with empty namespace: after marshaling & unmarshaling, got %s, want empty\n", a.C.XMLName.Space)
    	}
    }
    
    func TestIssue20396(t *testing.T) {
    
    	var attrError = UnmarshalError("XML syntax error on line 1: expected attribute name in element")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. pkg/api/testing/unstructured_test.go

    	if err != nil {
    		t.Errorf("Error when marshaling object: %v", err)
    		return
    	}
    	unstr := make(map[string]interface{})
    	err = json.Unmarshal(data, &unstr)
    	if err != nil {
    		t.Errorf("Error when unmarshaling to unstructured: %v", err)
    		return
    	}
    
    	data, err = json.Marshal(unstr)
    	if err != nil {
    		t.Errorf("Error when marshaling unstructured: %v", err)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/filters/filters.go

    	// EnvoyJwtFilterPayload is the struct field for the payload in dynamic metadata in Envoy JWT filter.
    	EnvoyJwtFilterPayload = "payload"
    )
    
    // Define static filters to be reused across the codebase. This avoids duplicate marshaling/unmarshaling
    // This should not be used for filters that will be mutated
    var (
    	RetryPreviousHosts = &route.RetryPolicy_RetryHostPredicate{
    		Name: "envoy.retry_host_predicates.previous_hosts",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/encoding/json/decode.go

    // The JSON null value unmarshals into an interface, map, pointer, or slice
    // by setting that Go value to nil. Because null is often used in JSON to mean
    // “not present,” unmarshaling a JSON null into any other Go type has no effect
    // on the value and produces no error.
    //
    // When unmarshaling quoted strings, invalid UTF-8 or
    // invalid UTF-16 surrogate pairs are not treated as an error.
    // Instead, they are replaced by the Unicode replacement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. pkg/wasm/convert.go

    		return fmt.Errorf("wasm remote fetch %+v does not have httpUri specified for config %s", remote, configName)
    	}
    	// checksum sent by istiod can be "nil" if not set by user - magic value used to avoid unmarshaling errors
    	if remote.Sha256 == "nil" {
    		remote.Sha256 = ""
    	}
    
    	// Default timeout, without this, if a user does not specify a timeout in the config, it fails with deadline exceeded
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.pb.go

    		}
    		if depth == 0 {
    			return iNdEx, nil
    		}
    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/IgnoreKotlinCompilerWarningIntegrationTest.groovy

        void dontWarnOnKotlinCompilerWarning() {
            buildFile << '''
    System.err.println(\'''
    Compilation with Kotlin compile daemon was not successful
    java.rmi.UnmarshalException: Error unmarshaling return header; nested exception is:
    \tjava.io.EOFException
    \tat java.rmi/sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:254)
    \tat java.rmi/sun.rmi.server.UnicastRef.invoke(UnicastRef.java:164)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/crypto/elliptic/elliptic_test.go

    		b := make([]byte, 1+2*byteLen)
    		b[0] = 4 // uncompressed point
    		x.FillBytes(b[1 : 1+byteLen])
    		y.FillBytes(b[1+byteLen : 1+2*byteLen])
    
    		x1, y1 := Unmarshal(curve, b)
    		if x1 != nil || y1 != nil {
    			t.Errorf("unmarshaling a point not on the curve succeeded")
    		}
    	})
    }
    
    func TestInfinity(t *testing.T) {
    	t.Parallel()
    	testAllCurves(t, testInfinity)
    }
    
    func isInfinity(x, y *big.Int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top