Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for test_kind (0.19 sec)

  1. tensorflow/cc/experimental/libtf/tests/runtime_test.cc

      TF_ASSERT_OK_AND_ASSIGN(Object module,
                              runtime.Load(String(module_path.c_str())));
    
      TF_ASSERT_OK_AND_ASSIGN(Callable fn,
                              module.Get<Callable>(String("test_int")));
    
      // Call the function
      TF_ASSERT_OK_AND_ASSIGN(Tensor host_tensor,
                              runtime.CreateHostTensor<int>({}, TF_INT32, {2}));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 09 12:27:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/legalize_tf_quant_test.cc

        // Set up an arg per arg_shape with the specified type.
        for (int i = 0; i < arg_shapes.size(); ++i) {
          auto metadata_arg = metadata_proto.add_args();
          metadata_arg->set_kind(
              tensorflow::tpu::TPUCompileMetadataProto::Arg::PARAMETER);
          metadata_arg->set_dtype(dtype);
        }
        // Set up one dummy retval.
        metadata_proto.add_retvals();
        bool use_tuple_args = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 18:43:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyClassPathNotationConverter.java

            testKitClasspath.removeAll(gradleApi);
    
            ImmutableSet.Builder<File> builder = ImmutableSet.builder();
            builder.add(relocatedDepsJar(testKitClasspath, RuntimeShadedJarType.TEST_KIT));
            builder.addAll(gradleApiFileCollection(gradleApi));
            return builder.build();
        }
    
        private File relocatedDepsJar(Collection<File> classpath, RuntimeShadedJarType runtimeShadedJarType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:30:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    * <<test_kit.adoc#test_kit,Gradle TestKit>> uses the Tooling API for functional testing of your Gradle plugins.
    * http://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship] uses the Tooling API for importing your Gradle project and running tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            }
        }
    
        private static JvmTestKind toJvmTestKind(String testKind) {
            if (InternalJvmTestDescriptor.KIND_SUITE.equals(testKind)) {
                return JvmTestKind.SUITE;
            } else if (InternalJvmTestDescriptor.KIND_ATOMIC.equals(testKind)) {
                return JvmTestKind.ATOMIC;
            } else {
                return JvmTestKind.UNKNOWN;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    include::init_scripts.adoc[leveloffset=+2]
    include::custom_gradle_types.adoc[leveloffset=+2]
    include::build_services.adoc[leveloffset=+2]
    include::dataflow_actions.adoc[leveloffset=+2]
    include::test_kit.adoc[leveloffset=+2]
    include::ant.adoc[leveloffset=+2]
    
    [[part:jvm_projects]]
    == **AUTHORING JVM BUILDS**
    
    include::building_java_projects.adoc[leveloffset=+2]
    include::java_testing.adoc[leveloffset=+2]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    By applying `myproject.library-conventions` plugin we state: this is a "Library" project.
    
    All plugins created in this sample contain functional tests that use link:{userManualPath}/test_kit.html[TestKit] to verify their behavior.
    
    This sample does not have any project source code and only lays out a hypothetical project structure where two library subprojects depend on a shared internal subproject.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. src/sort/search_test.go

    }
    
    func TestSearch(t *testing.T) {
    	for _, e := range tests {
    		i := Search(e.n, e.f)
    		if i != e.i {
    			t.Errorf("%s: expected index %d; got %d", e.name, e.i, i)
    		}
    	}
    }
    
    func TestFind(t *testing.T) {
    	str1 := []string{"foo"}
    	str2 := []string{"ab", "ca"}
    	str3 := []string{"mo", "qo", "vo"}
    	str4 := []string{"ab", "ad", "ca", "xy"}
    
    	// slice with repeating elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 14:42:13 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    Since services differ from libraries, different requirements for documentation are configured in this case.
    
    All plugins created in this sample contain functional tests that use link:{userManualPath}/test_kit.html[TestKit] to verify their behavior.
    
    
    == Compiling convention plugins
    
    In this sample, convention plugins are implemented as link:{userManualPath}/custom_plugins.html#sec:precompiled_plugins[precompiled script plugins] -
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    Since services differ from libraries, different requirements for documentation are configured in this case.
    
    All plugins created in this sample contain functional tests that use link:{userManualPath}/test_kit.html[TestKit] to verify their behavior.
    
    
    == Compiling convention plugins
    
    In this sample, convention plugins are implemented as link:{userManualPath}/custom_plugins.html#sec:precompiled_plugins[precompiled script plugins] -
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top