Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for some_name (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            matches("somena", "someName")
            matches("somena", "SomeName")
            matches("somena", "SomeName")
            matches("some na", "Some Name")
        }
    
        def "selects item with matching camel case prefix"() {
            expect:
            matches("sN", "someName")
            matches("soN", "someName")
            matches("SN", "someName")
            matches("SN", "SomeName")
            matches("SN", "SomeNameWithExtraStuff")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodename/node_name.go

    Mengjiao Liu <******@****.***> 1693972533 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/bench_graph_tfmatmul.template.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: <M> }
        dim { size: <K> }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: <K> }
        dim { size: <N> }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 15:53:56 UTC 2023
    - 280 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ObjectFactoryExtensionsTest.kt

            val objectFactory = mock<ObjectFactory> {
                on { named(any<Class<Named>>(), eq("foo")) } doReturn SomeNamed("foo")
            }
    
            val named = objectFactory.named<SomeNamed>("foo")
            assertThat(named.name, equalTo("foo"))
    
            inOrder(objectFactory) {
                verify(objectFactory).named(SomeNamed::class.java, "foo")
                verifyNoMoreInteractions()
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/NativeBinaryRulesTest.groovy

            and:
            NativeBinaryRules.assignTools(binary, toolChains, tmpDir.testDirectory)
    
            then:
            executableFile.file == tmpDir.testDirectory.file("exe/comp_name/exe_name")
            installation.directory == tmpDir.testDirectory.file("install/comp_name")
        }
    
        def "test shared library"() {
            def binary = initBinary(SharedLibraryBinarySpecInternal, NativeLibrarySpec)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/debugging/dump_tensor_op.cc

        string file_name;
        string func_name;
        string node_name;
        OP_REQUIRES_OK(ctx, ctx->GetAttr("log_dir_path", &log_dir_path));
        OP_REQUIRES_OK(ctx, ctx->GetAttr("enabled", &enabled_));
        OP_REQUIRES_OK(ctx, ctx->GetAttr("file_name", &file_name));
        OP_REQUIRES_OK(ctx, ctx->GetAttr("func_name", &func_name));
        OP_REQUIRES_OK(ctx, ctx->GetAttr("node_name", &node_name));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 03:12:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors.mlir

      "tf_saved_model.global_tensor"() { sym_name = "exported_unbound", tf_saved_model.exported_names = ["exported_unbound"], type = tensor<f32>, value = dense<42.> : tensor<f32> } : () -> ()
      // CHECK: sym_name = "exported_unbound"
    
      // Test case: Check that a global tensor that isn't even bound to an argument
      // is erased.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_global_tensors.mlir

    module attributes {tf_saved_model.semantics} {
    
      // Test case: Fail if some global tensor ops remain
    
     "tf_saved_model.global_tensor"() {sym_name = "v", type = tensor<f32>, value = dense<1.0> : tensor<f32> } : () -> ()
     "tf_saved_model.global_tensor"() {sym_name = "v2", type = tensor<f32>, value = dense<1.0> : tensor<f32> } : () -> ()
    
      func.func @f(%arg0: tensor<!tf_type.resource<tensor<f32>>> {tf_saved_model.bound_input = @v})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 03:07:35 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/base/distribution/groovy/build.gradle

    // tag::publish-distribution[]
    plugins {
    // end::publish-distribution[]
        id 'distribution'
    }
    // end::use-plugin[]
    
    // tag::configure-distribution[]
    distributions {
        main {
            distributionBaseName = 'someName'
            distributionClassifier = 'classifier'
            contents {
                from 'src/readme'
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 526 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/base/distribution/kotlin/build.gradle.kts

    // tag::use-plugin[]
    plugins {
        distribution
    }
    // end::use-plugin[]
    
    // tag::configure-distribution[]
    distributions {
        main {
            distributionBaseName = "someName"
            distributionClassifier = "classifier"
            contents {
                from("src/readme")
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
        create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
Back to top