Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for castle (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/cast_bf16_ops_to_f32.mlir

    // CHECK-DAG: %[[CAST_1:.*]] = "tf.Cast"(%[[ARG_1]]) <{Truncate = false}> : (tensor<2xbf16>) -> tensor<2xf32>
    // CHECK: %[[ADD:.*]] = "tf.AddV2"(%[[CAST_0]], %[[CAST_1]]) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/fieldpath/fieldpath_test.go

    		"flannel.alpha.coreos.com/kube-subnet-manager":           "true",
    		"flannel.alpha.coreos.com/public-ip":                     "192.168.19.160",
    		"management.cattle.io/pod-limits":                        `{"cpu":"11400m","memory":"7965Mi"}`,
    		"management.cattle.io/pod-requests":                      `{"cpu":"2482m","memory":"7984Mi","pods":"26"}`,
    		"node.alpha.kubernetes.io/ttl":                           "0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. security/pkg/k8s/chiron/fuzz_test.go

    	f.Fuzz(func(t *testing.T, caCert []byte) {
    		// create ca file
    		caFile, err := os.Create("caFile")
    		if err != nil {
    			return
    		}
    		defer func() {
    			caFile.Close()
    			os.Remove("caFile")
    		}()
    		_, err = caFile.Write(caCert)
    		if err != nil {
    			return
    		}
    
    		// call readCACert()
    		_, _ = readCACert("caFile")
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 12 14:51:41 UTC 2022
    - 988 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    	if err := ioutil.WriteFile(keyFile, []byte(testingcert.KeyFileContent), 0644); err != nil {
    		t.Fatal(err)
    	}
    	caFile = path.Join(tempDir, "ca.pem")
    	if err := ioutil.WriteFile(caFile, []byte(testingcert.CAFileContent), 0644); err != nil {
    		t.Fatal(err)
    	}
    	return certFile, keyFile, caFile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pkg/controller/certificates/signer/signer.go

    	switch signerName {
    	case capi.KubeletServingSignerName:
    		return isKubeletServing, nil
    	case capi.KubeAPIServerClientKubeletSignerName:
    		return isKubeletClient, nil
    	case capi.KubeAPIServerClientSignerName:
    		return isKubeAPIServerClient, nil
    	case capiv1beta1.LegacyUnknownSignerName:
    		return isLegacyUnknown, nil
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

         *
         * @param outputType The type to cast the input to
         * @param object The object to be cast (must not be {@code null})
         * @param <O> The type to be cast to
         * @param <I> The type of the object to be vast
         * @return The input object, cast to the output type
         */
        public static <O, I> O cast(Class<O> outputType, I object) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt

    package okhttp3.internal.http2.hpackjson
    
    import okhttp3.internal.http2.Header
    import okio.ByteString
    
    /**
     * Representation of an individual case (set of headers and wire format). There are many cases for a
     * single story.  This class is used reflectively with Moshi to parse stories.
     */
    data class Case(
      val seqno: Int = 0,
      val wire: ByteString? = null,
      val headers: List<Map<String, String>>,
    ) : Cloneable {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 10:26:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/Cast.kt

    Paul Merlin <******@****.***> 1690890212 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 773 bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/tests/value_test.cc

      ASSERT_EQ(alloc_count, 0);
      void* ptr_value = new Cool();
      {
        TaggedValue capsule =
            TaggedValue::Capsule(static_cast<void*>(ptr_value),
                                 [](void* x) { delete static_cast<Cool*>(x); });
        ASSERT_EQ(alloc_count, 1);
        ASSERT_EQ(capsule.capsule(), ptr_value);
        test_moved = std::move(capsule);
        ASSERT_EQ(capsule.type(), TaggedValue::NONE);  // NOLINT
        test_copy = test_moved;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/value.h

          case LIST:
            return visitor(data_.list);
          case TUPLE:
            return visitor(data_.tuple);
          case DICT:
            return visitor(data_.dict);
          case FUNC:
            return visitor(data_.func);
          case FLOAT32:
            return visitor(data_.f32);
          case INT64:
            return visitor(data_.i64);
          case STRING:
            return visitor(data_.s);
          case TENSOR:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top