Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 358 for unmarshaling (0.74 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/fuzz/worker.go

    	}
    	mem.setValue(inp)
    	entryOut = entryIn
    	entryOut.Values, err = unmarshalCorpusFile(inp)
    	if err != nil {
    		return CorpusEntry{}, minimizeResponse{}, fmt.Errorf("workerClient.minimize unmarshaling provided value: %v", err)
    	}
    	for i, v := range entryOut.Values {
    		if !isMinimizable(reflect.TypeOf(v)) {
    			continue
    		}
    
    		wc.memMu <- mem
    		args.Index = i
    		c := call{Minimize: &args}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1alpha1/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
    - 14.8K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/v1/conversion.go

    			}
    			out.Spec.Metrics = outMetrics
    		}
    	}
    
    	if behaviorEnc, hasConstraints := out.Annotations[autoscaling.BehaviorSpecsAnnotation]; hasConstraints {
    		// TODO: this is unmarshaling an internal type. Fix this without breaking backwards compatibility.
    		var behavior autoscaling.HorizontalPodAutoscalerBehavior
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 16 03:29:22 UTC 2021
    - 21.2K bytes
    - Viewed (0)
  8. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    		}
    		if depth == 0 {
    			return iNdEx, nil
    		}
    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthApi        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowApi          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupApi = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    			*p.ResourceVersion,
    			objMeta.GetResourceVersion())
    		return NewInvalidObjError(key, err)
    	}
    	return nil
    }
    
    // Interface offers a common interface for object marshaling/unmarshaling operations and
    // hides all the storage-related operations behind it.
    type Interface interface {
    	// Returns Versioner associated with this interface.
    	Versioner() Versioner
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.pb.go

    		}
    		if depth == 0 {
    			return iNdEx, nil
    		}
    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthApi        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowApi          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupApi = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top