Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for some_name (0.19 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. src/cmd/cover/testdata/test.go

    // the coverage processing has changed the line numbers, so we can't use runtime.Caller.
    
    package main
    
    import _ "unsafe" // for go:linkname
    
    //go:linkname some_name some_name
    var some_name int
    
    const anything = 1e9 // Just some unlikely value that means "we got here, don't care how often"
    
    func testAll() {
    	testSimple()
    	testBlockRun()
    	testIf()
    	testFor()
    	testRange()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

            %handle1 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "some_name", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
            // expected-remark@above {{ID: 0}}
            %handle2 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "some_name", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            String someName = "someName"
            String someVersion = "someVersion"
            String someConfiguration = "someConfiguration"
            DefaultResolvedDependency resolvedDependency = new DefaultResolvedDependency(someConfiguration, newId(someGroup, someName, someVersion), buildOperationProcessor)
    
            then:
            resolvedDependency.name == someGroup + ":" + someName + ":" + someVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

    // IntPerLayer-DAG: "tf.DumpTensor"(%[[output1_unquantized]]) <{enabled = true, file_name = "unquantized_tensor_data.pb", func_name = "conv", log_dir_path = "/tmp/dumps/composite_conv2d_with_bias_and_relu6_fn_1", node_name = "Conv2D_1"}> : (tensor<*xf32>) -> ()
    // IntPerLayer-DAG: return %[[output0]], %[[output1_quantized]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/cc/tools/freeze_saved_model.cc

      while (!nodes_to_visit.empty()) {
        const string node_name = nodes_to_visit.front();
        nodes_to_visit.pop();
        if (reachable_node_names->find(node_name) != reachable_node_names->end()) {
          continue;
        }
        reachable_node_names->insert(node_name);
        NodeDef* node = name_to_node_map.at(node_name);
        if (kVariableTypes->find(node->op()) != kVariableTypes->end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. 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)
Back to top