Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for disambiguate (0.48 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    //     ASSERT_*(condition) << "Some message";
    //
    // The "switch (0) case 0:" idiom is used to suppress this.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

     private:
      mutex mu_;
      absl::flat_hash_map<uint64, int64> sequence_numbers_;
    };
    
    // Get a monotonic sequence numbers for a graph identified by its `fingerprint`.
    // The sequence number is necessary to disambiguate clusters extracted from the
    // same graph and when duplicate graphs exist within the same process.
    int64_t GetNextClusterSequenceNumber(uint64 fingerprint) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    //     ASSERT_*(condition) << "Some message";
    //
    // The "switch (0) case 0:" idiom is used to suppress this.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	if proxy != nil && proxy.SidecarScope != nil {
    		return proxy.SidecarScope.servicesByHostname[hostname]
    	}
    
    	// SidecarScope shouldn't be null here. If it is, we can't disambiguate the hostname to use for a namespace,
    	// so the selection must be undefined.
    	for _, service := range ps.ServiceIndex.HostnameAndNamespace[hostname] {
    		return service
    	}
    
    	// No service found
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    func (rst *rustState) identifier() (int64, string) {
    	dis := rst.disambiguator()
    	ident, _ := rst.undisambiguatedIdentifier()
    	return dis, ident
    }
    
    // disambiguator parses an optional:
    //
    //	<disambiguator> = "s" <base-62-number>
    func (rst *rustState) disambiguator() int64 {
    	if len(rst.str) == 0 || rst.str[0] != 's' {
    		return 0
    	}
    	rst.advance(1)
    	return rst.base62Number() + 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/LambdaOverloadResolutionTest.kt

    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object LambdaOverloadResolutionTest {
        @Test
        fun `functions with and without lambda get disambiguated at runtime`() {
            val schema = schemaFromTypes(MyTopLevelReceiver::class, listOf(MyTopLevelReceiver::class, AddedObject::class))
    
            val code = """
                addSomething(1) { }
                addSomething(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 12:27:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributePrecedenceSchemaAttributeMatcherTest.groovy

            schema.attribute(additional).with {
                compatibilityRules.add(CompatibilityRule)
                disambiguationRules.add(DisambiguationRule)
            }
        }
    
        def "when precedence is known, disambiguates by ordered elimination"() {
            def candidate1 = candidate("best", "best", "best")
            def candidate2 = candidate("best", "best", "compatible")
            def candidate3 = candidate("best", "compatible", "compatible")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/OverloadResolutionTest.kt

    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object OverloadResolutionTest {
        @Test
        fun `function overloads with and without configure lambda are disambiguated`() {
            val schema = schemaFromTypes(MyTopLevelReceiver::class, listOf(MyTopLevelReceiver::class))
    
            val code = """
                addSomething(1)
                addSomething(1) { }
            """.trimIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// variable name to the locally scoped expression value.
    				"self.self == 201",
    				// CEL macro and function names do not need to be escaped because the parser can disambiguate them from the function and
    				// macro identifiers.
    				"self.getDate == 202",
    				"self.all == 203",
    				"self.size == '204'",
    				// _ is not escaped
    				"self._true == 301",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    					Name:     "dns-sctp",
    					Port:     53,
    					Protocol: v1.ProtocolSCTP,
    				},
    			}
    		}),
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top