Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fnv1 (0.04 sec)

  1. pkg/config/validation/validation_test.go

    			&extensions.WasmPlugin{
    				Url: "test.com/test",
    				VmConfig: &extensions.VmConfig{
    					Env: []*extensions.EnvVar{
    						{
    							Name:  "ENV1",
    							Value: "VAL1",
    						},
    						{
    							Name:  "ENV1",
    							Value: "VAL1",
    						},
    					},
    				},
    			},
    			"duplicate env", "",
    		},
    		{
    			"target-ref-good",
    			&extensions.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    }
    
    type NotBasic Basic
    
    type DeepEqualTest struct {
    	a, b any
    	eq   bool
    }
    
    // Simple functions for DeepEqual tests.
    var (
    	fn1 func()             // nil.
    	fn2 func()             // nil.
    	fn3 = func() { fn1() } // Not nil.
    )
    
    type self struct{}
    
    type Loop *Loop
    type Loopy any
    
    var loop1, loop2 Loop
    var loopy1, loopy2 Loopy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512_test.go

    	}
    }
    
    func TestMarshalMismatch(t *testing.T) {
    	h := []func() hash.Hash{
    		New,
    		New384,
    		New512_224,
    		New512_256,
    	}
    
    	for i, fn1 := range h {
    		for j, fn2 := range h {
    			if i == j {
    				continue
    			}
    
    			h1 := fn1()
    			h2 := fn2()
    
    			state, err := h1.(encoding.BinaryMarshaler).MarshalBinary()
    			if err != nil {
    				t.Errorf("i=%d: could not marshal: %v", i, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        %0 = "tf.B"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
        %1 = "tf.D"(%0) {array_attr_funcs = [@referenced_func0, @referenced_func1]} : (tensor<?xi32>) -> tensor<?xi32>
        %2 = "tf.E"(%1) {dictionary_attr_funcs = {fn1 = @referenced_func2, fn2 = @referenced_func3}} : (tensor<?xi32>) -> tensor<?xi32>
        func.return %0 : tensor<?xi32>
      }
    
      func.func @referenced_func0(%arg0: tensor<?xi32>) -> tensor<?xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
Back to top