Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unmarshal_failure (0.13 sec)

  1. pkg/wasm/monitoring.go

    	checksumMismatch = "checksum_mismatched"
    
    	// For Wasm conversion metric.
    	conversionSuccess   = "success"
    	noRemoteLoad        = "no_remote_load"
    	marshalFailure      = "marshal_failure"
    	unmarshalFailure    = "unmarshal_failure"
    	fetchFailure        = "fetch_failure"
    	missRemoteFetchHint = "miss_remote_fetch_hint"
    )
    
    var (
    	hitTag    = monitoring.CreateLabel("hit")
    	resultTag = monitoring.CreateLabel("result")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/wasm/convert.go

    		go func(i int) {
    			defer wg.Done()
    			extConfig, wasmHTTPConfig, wasmNetworkConfig, err := tryUnmarshal(resources[i])
    			if err != nil {
    				wasmConfigConversionCount.
    					With(resultTag.Value(unmarshalFailure)).
    					Increment()
    				convertErrs[i] = err
    				return
    			}
    
    			if extConfig == nil || (wasmHTTPConfig == nil && wasmNetworkConfig == nil) {
    				// If there is no config, it is not wasm config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top