Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for testPipe (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                .toString()
            return new TestFile(immutableOutputDirPath.toString())
        }
    
        TestFile gradleUserHomeOutputDir(String from, String to, Closure<String> stream = { output }) {
            outputDir(from, to, this.&gradleUserHomeOutputDirs, stream)
        }
    
        Set<TestFile> allOutputDirs(String from, String to, Closure<String> stream = { output }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	}
    }
    
    func TestAll(t *testing.T) {
    	testType(t, 1, TypeOf((int8)(0)), "int8")
    	testType(t, 2, TypeOf((*int8)(nil)).Elem(), "int8")
    
    	typ := TypeOf((*struct {
    		c chan *int32
    		d float32
    	})(nil))
    	testType(t, 3, typ, "*struct { c chan *int32; d float32 }")
    	etyp := typ.Elem()
    	testType(t, 4, etyp, "struct { c chan *int32; d float32 }")
    	styp := etyp
    	f := styp.Field(0)
    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. cmd/server_test.go

    	client     *http.Client
    }
    
    type check struct {
    	*testing.T
    	testType string
    }
    
    // Assert - checks if gotValue is same as expectedValue, if not fails the test.
    func (c *check) Assert(gotValue interface{}, expectedValue interface{}) {
    	c.Helper()
    	if !reflect.DeepEqual(gotValue, expectedValue) {
    		c.Fatalf("Test %s expected %v, got %v", c.testType, expectedValue, gotValue)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512_test.go

    				continue
    			}
    
    			if err := h2.(encoding.BinaryUnmarshaler).UnmarshalBinary(state); err == nil {
    				t.Errorf("i=%d, j=%d: got no error, expected one: %v", i, j, err)
    			}
    		}
    	}
    }
    
    func TestSize(t *testing.T) {
    	c := New()
    	if got := c.Size(); got != Size {
    		t.Errorf("Size = %d; want %d", got, Size)
    	}
    	c = New384()
    	if got := c.Size(); got != Size384 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %0 = "tf.Cumprod"(%arg, %axis) : (tensor<8x16xf32>, tensor<i32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    }
    
    // -----
    
    func.func @testTile(%arg0: tensor<2x3x?xf32>) {
      %cst = arith.constant dense <[2, 3, 4]> : tensor<3xi32>
      %0 = "tf.Tile"(%arg0, %cst) : (tensor<2x3x?xf32>, tensor<3xi32>) -> tensor<4x9x?xf32>
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top