Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 631 for Identical (0.42 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

    {info}> {normal}first failure
       {info}> {normal}ultimate cause
    {info}> {normal}There is 1 more failure with an identical cause.
    
    * Try:
    $STACKTRACE
    $INFO_OR_DEBUG
    $SCAN
    $GET_HELP
    """
        }
    
        def "multi-cause exceptions have branches with identical root causes and additional intermediate failures summarized properly"() {
            def ultimateCause = new RuntimeException("ultimate cause")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/hash/maphash/maphash_test.go

    	for i, h := range hh {
    		if sum != h.Sum64() {
    			t.Errorf("hash %d not identical to a single Write", i)
    		}
    	}
    
    	if sum1 := Bytes(hh[0].Seed(), b); sum1 != hh[0].Sum64() {
    		t.Errorf("hash using Bytes not identical to a single Write")
    	}
    
    	if sum1 := String(hh[0].Seed(), string(b)); sum1 != hh[0].Sum64() {
    		t.Errorf("hash using String not identical to a single Write")
    	}
    }
    
    func TestHashBytesVsString(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/go/types/instantiate.go

    // previous instances with the same identity. As a special case, generic
    // *Signature origin types are only considered identical if they are pointer
    // equivalent, so that instantiating distinct (but possibly identical)
    // signatures will yield different instances. The use of a shared context does
    // not guarantee that identical instances are deduplicated in all cases.
    //
    // If validate is set, Instantiate verifies that the number of type arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         *
         * This list will only ever contain more than one method when there are getter methods with <b>different</b> return types.
         * If a getter is declared multiple times by this type (through inheritance) with identical return types, only one method object will be present for the type.
         *
         * As an equivalent getter can be declared multiple times (e.g in a super class, overridden by the target type).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            hasScript(":module1", scripts)
            eachScriptIsUnique(scripts)
            getCompileBuildFileOperationsCount() == 4 // classpath + body for settings and for the 2 identical scripts
        }
    
        @ToBeFixedForConfigurationCache(because = "test expect script evaluation")
        def "identical build files are compiled once for distinct invocations"() {
            given:
            root {
                core {
                    'core.gradle'(this.simpleBuild())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/instantiate.go

    // previous instances with the same identity. As a special case, generic
    // *Signature origin types are only considered identical if they are pointer
    // equivalent, so that instantiating distinct (but possibly identical)
    // signatures will yield different instances. The use of a shared context does
    // not guarantee that identical instances are deduplicated in all cases.
    //
    // If validate is set, Instantiate verifies that the number of type arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/regexp/onepass_test.go

    }{
    	{
    		// empty rhs
    		[]rune{69, 69},
    		[]rune{},
    		[]rune{69, 69},
    		[]uint32{1},
    		1, 2,
    	},
    	{
    		// identical runes, identical targets
    		[]rune{69, 69},
    		[]rune{69, 69},
    		[]rune{},
    		[]uint32{mergeFailed},
    		1, 1,
    	},
    	{
    		// identical runes, different targets
    		[]rune{69, 69},
    		[]rune{69, 69},
    		[]rune{},
    		[]uint32{mergeFailed},
    		1, 2,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/go/types/operand.go

    	if x.mode == invalid || !isValid(T) {
    		return true, 0 // avoid spurious errors
    	}
    
    	origT := T
    	V := Unalias(x.typ)
    	T = Unalias(T)
    
    	// x's type is identical to T
    	if Identical(V, T) {
    		return true, 0
    	}
    
    	Vu := under(V)
    	Tu := under(T)
    	Vp, _ := V.(*TypeParam)
    	Tp, _ := T.(*TypeParam)
    
    	// x is an untyped value representable by a value of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue29312.go

    //     [][]...[][][][][]*pwn    - 252 total "[]"
    //     [][]...[][][][][][]*pwn  - 253 total "[]"
    //
    // The type names for these types are as follows. Because we truncate
    // the name at depth 250, the last few names are all identical:
    //
    //     type:[]*"".pwn
    //     type:[][]*"".pwn
    //     ...
    //     type:[][]...[][]*pwn       - 249 total "[]"
    //     type:[][]...[][][]*<...>   - 250 total "[]"
    //     type:[][]...[][][][]<...>  - 251 total "[]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typeterm.go

    	// easy cases
    	switch {
    	case x == nil || y == nil:
    		return x == y
    	case x.typ == nil || y.typ == nil:
    		return x.typ == y.typ
    	}
    	// ∅ ⊂ x, y ⊂ 𝓤
    
    	return x.tilde == y.tilde && Identical(x.typ, y.typ)
    }
    
    // union returns the union x ∪ y: zero, one, or two non-nil terms.
    func (x *term) union(y *term) (_, _ *term) {
    	// easy cases
    	switch {
    	case x == nil && y == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top