Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 540 for desc3 (0.09 sec)

  1. tensorflow/c/c_api.cc

                                           TF_Status* status)
        TF_EXCLUSIVE_LOCKS_REQUIRED(desc->graph->mu) {
      Node* ret = nullptr;
    
      if (desc->graph->name_map.count(desc->node_builder.node_name())) {
        status->status = InvalidArgument("Duplicate node name in graph: '",
                                         desc->node_builder.node_name(), "'");
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/CharSinkTester.java

          String desc = entry.getKey();
          TestSuite stringSuite = suiteForString(name, factory, entry.getValue(), desc);
          suite.addTest(stringSuite);
        }
        return suite;
      }
    
      static TestSuite suiteForString(
          String name, CharSinkFactory factory, String string, String desc) {
        TestSuite stringSuite = new TestSuite(name + " [" + desc + "]");
        for (final Method method : testMethods) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/testing/cacheable_object.go

    	testCases := []struct {
    		desc           string
    		runEncode      bool
    		returnSelf     bool
    		expectedResult string
    		expectedError  error
    	}{
    		{
    			desc:      "delegate",
    			runEncode: true,
    		},
    		{
    			desc:       "delegate return self",
    			runEncode:  true,
    			returnSelf: true,
    		},
    		{
    			desc:           "cached success",
    			runEncode:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 30 06:58:54 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubeletconfig/util/test/test.go

    func SkipRest(t *testing.T, desc string, err error, contains string) bool {
    	if err != nil {
    		if len(contains) == 0 {
    			t.Errorf("case %q, expect nil error but got %q", desc, err.Error())
    		} else if !strings.Contains(err.Error(), contains) {
    			t.Errorf("case %q, expect error to contain %q but got %q", desc, contains, err.Error())
    		}
    		return true
    	} else if len(contains) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 19 16:18:53 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            }
    
            fun newApi(thing: String, desc: String): String =
                "$thing ${describe(thing, desc)}: New public API in 2.0 (@Incubating)"
    
            fun added(thing: String, desc: String): List<String> =
                listOf(
                    "$thing ${describe(thing, desc)}: Is not annotated with @Incubating.",
                    "$thing ${describe(thing, desc)}: Is not annotated with @since 2.0."
                )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

            return desc -> config.execute(new InclusiveRepositoryContentDescriptor() {
                @Override
                public void includeGroup(String group) {
                    desc.excludeGroup(group);
                }
    
                @Override
                public void includeGroupAndSubgroups(String groupPrefix) {
                    desc.excludeGroupAndSubgroups(groupPrefix);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/metrics_test.go

    	wrappedErrTransformer := PrefixTransformer{Prefix: []byte("k8s:enc:kms:v1:"), Transformer: &testTransformer{err: wrappedErr}}
    
    	testCases := []struct {
    		desc    string
    		prefix  Transformer
    		metrics []string
    		want    string
    	}{
    		{
    			desc:   "non-status error",
    			prefix: NewPrefixTransformers(nil, nonStatusErrTransformer),
    			metrics: []string{
    				"apiserver_storage_transformation_operations_total",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tac_translate.cc

                         llvm::cl::desc("Input is MLIR rather than FlatBuffer"),
                         llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> output_mlir(
        "output-mlir",
        llvm::cl::desc(
            "Output MLIR rather than FlatBuffer for the generated TFLite model"),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> inline_subgraphs(
        "inline-subgraphs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  9. pkg/apis/storage/v1/defaults_test.go

    	enabled := true
    	disabled := false
    	tests := []struct {
    		desc     string
    		field    string
    		wantSpec *storagev1.CSIDriverSpec
    	}{
    		{
    			desc:     "AttachRequired default to true",
    			field:    "AttachRequired",
    			wantSpec: &storagev1.CSIDriverSpec{AttachRequired: &enabled},
    		},
    		{
    			desc:     "PodInfoOnMount default to false",
    			field:    "PodInfoOnMount",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    opt<std::string> input_model(llvm::cl::Positional,
                                 llvm::cl::desc("<input model path>"),
                                 llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> output_path("o", llvm::cl::desc("<output path>"),
                                 llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> export_type("export-type", llvm::cl::desc("<export type>"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top