Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for sris (0.05 sec)

  1. tensorflow/compiler/aot/tfcompile.bzl

        srcs = [tfcompile_graph, config]
        debug_info_flags = []
        if debug_info:
            srcs.append(debug_info)
            debug_info_flags = ["--debug_info=$(location " + debug_info + ")"]
    
        tfcompile_gen = "gen_" + name
        _tfcompile_model_library(
            name = tfcompile_gen,
            model_name = name,
            srcs = srcs,
            gen_compiler_log = gen_compiler_log,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. src/go/types/check_test.go

    func testFiles(t *testing.T, filenames []string, srcs [][]byte, manual bool, opts ...func(*Config)) {
    	// Alias types are enabled by default
    	testFilesImpl(t, filenames, srcs, manual, opts...)
    	if !manual {
    		t.Setenv("GODEBUG", "gotypesalias=0")
    		testFilesImpl(t, filenames, srcs, manual, opts...)
    	}
    }
    
    func testFilesImpl(t *testing.T, filenames []string, srcs [][]byte, manual bool, opts ...func(*Config)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/BUILD

        },
        test_file_exts = ["lit.pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "filecheck_test_utilities",
        testonly = True,
        srcs = [
            "test_error_message.lit.pbtxt.config.pbtxt",
            "test_error_message.lit.pbtxt.debug.pbtxt",
            "test_error_message.lit.pbtxt.fake_py.debug",
        ],
        data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				excluded.Delete(check.Name())
    				fmt.Fprintf(&individualCheckOutput, "[+]%s excluded: ok\n", check.Name())
    				continue
    			}
    			if err := check.Check(r); err != nil {
    				slis.ObserveHealthcheck(context.Background(), check.Name(), name, slis.Error)
    				// don't include the error since this endpoint is public.  If someone wants more detail
    				// they should have explicit permission to the detailed checks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_fr.properties

    errors.invalid_query_sort_value=Le tri donné ({0}) n'est pas valide.
    errors.invalid_query_unsupported_sort_field=Le tri donné ({0}) n'est pas pris en charge.
    errors.invalid_query_unsupported_sort_order=L'ordre de tri donné ({0}) n'est pas pris en charge.
    
    errors.crud_invalid_mode=Mode invalide (la valeur attendue est {0}, mais c'est {1}).
    errors.crud_failed_to_create_instance=Impossible de créer une nouvelle donnée.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            return addToCollection(dest, false, src);
        }
    
        @Deprecated
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, boolean failOnNull, Iterable<? extends V>... srcs) {
            for (Iterable<? extends V> src : srcs) {
                for (V v : src) {
                    if (failOnNull && v == null) {
                        throw new IllegalArgumentException("Illegal null value provided in this collection: " + src);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            def app = new CppApp()
    
            given:
            app.headers.writeToProject(testDirectory)
            app.main.writeToSourceDir(file("srcs/main.cpp"))
            app.greeter.writeToSourceDir(file("srcs/one.cpp"))
            app.sum.writeToSourceDir(file("srcs/two.cpp"))
            file("src/main/cpp/broken.cpp") << "ignore me!"
    
            and:
            buildFile << """
                apply plugin: 'cpp-application'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/tests/function_test.cc

      ASSERT_TRUE(s.ok()) << s.message();
      auto value = static_cast<T*>(TF_TensorData(result_t));
      EXPECT_EQ(*value, expected);
      TF_DeleteTensor(result_t);
    }
    
    // TODO(srbs): Add tests for captures.
    // TODO(srbs): Add tests for polymorphism (different shapes and dtypes).
    TEST_P(FunctionTest, Square) {
      // Construct a scalar.
      impl::TaggedValueTensor x = CreateScalarTensor<float, TF_FLOAT>(2.0f);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            return addToCollection(dest, false, src);
        }
    
        @Deprecated
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, boolean failOnNull, Iterable<? extends V>... srcs) {
            for (Iterable<? extends V> src : srcs) {
                for (V v : src) {
                    if (failOnNull && v == null) {
                        throw new IllegalArgumentException("Illegal null value provided in this collection: " + src);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. pkg/test/echo/server/forwarder/config.go

    			if err != nil {
    				fwLog.Errorf("Failed to parse client certificate: %v", err)
    			}
    			fwLog.Debugf("Using client certificate [%s] issued by %s", cert.SerialNumber, cert.Issuer)
    			for _, uri := range cert.URIs {
    				fwLog.Debugf("  URI SAN: %s", uri)
    			}
    		}
    		// nolint: unparam
    		return func(info *tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			fwLog.Debugf("Peer asking for client certificate")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top