Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for cat2 (0.12 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"carpentry_saw":                        "\U0001fa9a",
    	"carrot":                               "\U0001f955",
    	"cartwheeling":                         "\U0001f938",
    	"cat":                                  "\U0001f431",
    	"cat2":                                 "\U0001f408",
    	"cayman_islands":                       "\U0001f1f0\U0001f1fe",
    	"cd":                                   "\U0001f4bf",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VADDECUQ T1, RED2, CAR1, CAR2 // VACCCQ T1, RED2, CAR1, CAR2
    	VADDEUQM T1, RED2, CAR1, T1   // VACQ   T1, RED2, CAR1, T1
    	VADDUQM  T2, CAR2, T2         // VAQ    T2, CAR2, T2
    
    	// ---------------------------------------------------
    
    	VSUBCUQ  T0, PL, CAR1       // VSCBIQ  PL, T0, CAR1
    	VSUBUQM  T0, PL, TT0        // VSQ     PL, T0, TT0
    	VSUBECUQ T1, PH, CAR1, CAR2 // VSBCBIQ T1, PH, CAR1, CAR2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

    	VACQ   T1, RED2, CAR1, T1
    	VAQ    T2, CAR2, T2
    
    	// Last round
    	VPERM T1, T0, SEL1, RED2    // d1 d0 d1 d0
    	VPERM ZER, RED2, SEL2, RED1 // 0  d1 d0  0
    	VSQ   RED1, RED2, RED2      // Guaranteed not to underflow
    
    	VSLDB $8, T1, T0, T0
    	VSLDB $8, T2, T1, T1
    
    	VACCQ  T0, RED1, CAR1
    	VAQ    T0, RED1, T0
    	VACCCQ T1, RED2, CAR1, CAR2
    	VACQ   T1, RED2, CAR1, T1
    	VAQ    T2, CAR2, T2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %cst2 = arith.constant dense<[1.0, 2.0]> : tensor<2xf32>
      %0 = "tfl.fully_connected"(%arg0, %cst0, %cst1) {fused_activation_function = "NONE", keep_num_dims = false, weights_format = "DEFAULT"} : (tensor<1x3xf32>, tensor<2x3xf32>, tensor<2xf32>) -> tensor<1x2xf32>
      // %cst2 isn't broadcast-compatible to %cst0, but tf.Mul is able to fold them.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        Map<String, Integer> unfiltered = createUnfiltered();
        unfiltered.put("cat", 3);
        unfiltered.put("dog", 2);
        unfiltered.put("horse", 5);
        Map<String, Integer> filtered = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
        assertEquals(ImmutableMap.of("cat", 3, "horse", 5), filtered);
    
        filtered.put("chicken", 7);
        assertEquals(ImmutableMap.of("cat", 3, "horse", 5, "chicken", 7), filtered);
    
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. hack/testdata/pod-with-metadata-and-probes.yaml

      containers:
      - image: registry.k8s.io/nginx:1.7.9
        name: target
        readinessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
      initContainers:
      - image: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
  9. src/test/resources/before_script.sh

    error_count=0
    while true ; do
      status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health")
      cat ${temp_json_file}
      if [[ x"${status}" = x200 ]] ; then
        break
      else
        error_count=$((error_count + 1))
      fi
      if [[ ${error_count} -ge 60 ]] ; then
        echo "Fess is not available."
        cat ${temp_log_file} ./fess-*/logs/*.log
        exit 1
      fi
      sleep 1
    done
    
    pushd /tmp >/dev/null
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 863 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/cast_bf16.mlir

    // CHECK-NEXT:          has_rank: true
    // CHECK-NEXT:        }, {
    // CHECK-NEXT:          shape: [ 4, 5 ],
    // CHECK-NEXT:          type: BFLOAT16,
    // CHECK-NEXT:          buffer: 3,
    // CHECK-NEXT:          name: "cast2",
    // CHECK-NEXT:          quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:          },
    // CHECK-NEXT:          has_rank: true
    // CHECK-NEXT:        } ],
    // CHECK-NEXT:        inputs: [ 0 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 21:28:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top