Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 291 for cat2 (0.08 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/Slf4jLoggingConfigurerTest.groovy

    import org.gradle.internal.time.Time
    import org.slf4j.Logger
    import org.slf4j.LoggerFactory
    import spock.lang.Specification
    
    class Slf4jLoggingConfigurerTest extends Specification {
        Logger logger = LoggerFactory.getLogger("cat1")
        OutputEventListener listener = Mock()
        Slf4jLoggingConfigurer configurer = new Slf4jLoggingConfigurer(listener)
    
        def cleanup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                    }
                    variant('runtime1') {
                        attribute('custom2', 'c1')
                        capability('cap2')
                    }
                    variant('runtime2') {
                        attribute('custom2', 'c2')
                        capability('cap2')
                    }
                }
            }
    
            buildFile << """
                dependencies {
                    conf('org:test:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/debug/pe/testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2

    Than McIntosh <******@****.***> 1647953392 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 14:57:35 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/optimize.td

    // This pattern optimizes:
    //   (x + cst1) + cst2 -> x + cst
    //   (x - cst1) - cst2 -> x - cst
    // Where: cst = cst1 + cst2
    foreach BinaryOp = [TF_AddV2Op, TF_SubOp] in {
      def OptimizeConsecutive#BinaryOp : Pat<
        (BinaryOp
          (BinaryOp $x, (TF_ConstOp:$cst1 $cst1_value)),
          (TF_ConstOp:$cst2 $cst2_value)),
        (BinaryOp
          $x, (TF_AddV2Op $cst1, $cst2))>;
    }
    
    // This pattern optimizes:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                    $compare_type2),
                  (MHLO_CompareOp:$rnz $rem1, (MHLO_ConstantOp $cst2), MHLO_ComparisonDirectionValue<"NE">, $compare_type3)),
                (MHLO_AddOp $rem2, $arg1),
                $rem3),
              (TF_FloorModOp $arg, $arg1),
              [(ValueEquals<"0.0"> $cst),
               (ValueEquals<"0.0"> $cst1),
               (ValueEquals<"0.0"> $cst2),
               (SameValue $rem, $rem1),
               (SameValue $rem, $rem2),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/image/png/paeth_test.go

    			if !bytes.Equal(cdat1, cdat2) {
    				t.Errorf("bytesPerPixel: %d\npdat0: % x\ncdat0: % x\ngot:   % x\nwant:  % x", bytesPerPixel, pdat0, cdat0, cdat1, cdat2)
    				break
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/float_test.go

    //go:noinline
    func ip64(v int64) *int64 {
    	return &v
    }
    
    func TestFloatConvert(t *testing.T) {
    	if got := cvt1(3.5); got != 3 {
    		t.Errorf("cvt1 got %d, wanted 3", got)
    	}
    	if got := cvt2(3.5); got != 3 {
    		t.Errorf("cvt2 got %d, wanted 3", got)
    	}
    	if got := cvt3(3.5); got != 3 {
    		t.Errorf("cvt3 got %d, wanted 3", got)
    	}
    	if got := cvt4(3.5); got != 3 {
    		t.Errorf("cvt4 got %d, wanted 3", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. src/net/url/example_test.go

    func ExampleValues_Add() {
    	v := url.Values{}
    	v.Add("cat sounds", "meow")
    	v.Add("cat sounds", "mew")
    	v.Add("cat sounds", "mau")
    	fmt.Println(v["cat sounds"])
    
    	// Output:
    	// [meow mew mau]
    }
    
    func ExampleValues_Del() {
    	v := url.Values{}
    	v.Add("cat sounds", "meow")
    	v.Add("cat sounds", "mew")
    	v.Add("cat sounds", "mau")
    	fmt.Println(v["cat sounds"])
    
    	v.Del("cat sounds")
    	fmt.Println(v["cat sounds"])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/sink_constant.mlir

            // CHECK: tf_device.cluster
            // CHECK-DAG: %[[CST2:.*]] = "tf.Const"{{.*}}2.0
            // CHECK-DAG: %[[CST3:.*]] = "tf.Const"{{.*}}3.0
            // CHECK-DAG: %[[CST4:.*]] = "tf.Const"{{.*}}4.0
            // CHECK-NOT:"tf.Const"
            // CHECK: %[[MUL1:.*]] = "tf.Mul"(%arg0, %[[CST2]])
            // CHECK-NEXT: %[[MUL2:.*]] = "tf.Mul"(%[[MUL1]], %[[CST2]])
            // CHECK-NEXT: %[[MUL3:.*]] = "tf.Mul"(%[[MUL2]], %[[CST3]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/TwoStageExternalResourceFileStoreTest.groovy

            def fat1 = Mock(FileAccessTracker)
            def fat2 = Mock(FileAccessTracker)
    
            when:
            twoStageStore.getFileAccessTracker().markAccessed(file)
    
            then:
            1 * readStore.getFileAccessTracker() >> fat1
            1 * writeStore.getFileAccessTracker() >> fat2
            1 * fat1.markAccessed(file)
            1 * fat2.markAccessed(file)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top