Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for other_2 (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            when:
            configurationCacheRun "some", "other"
    
            then:
            result.groupedOutput.task(":some").assertOutputContains("FIRST").assertOutputContains("LAST")
            result.groupedOutput.task(":other").assertOutputContains("OTHER")
    
            when:
            configurationCacheRun "some", "other"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirBackingFieldSymbol.kt

            KaFirBackingFieldSymbolPointer(owningProperty.createPointer())
        }
    
        override fun equals(other: Any?): Boolean {
            if (this === other) return true
            if (javaClass != other?.javaClass) return false
    
            other as KaFirBackingFieldSymbol
    
            return this.firSymbol == other.firSymbol
        }
    
        override fun hashCode(): Int {
            return firSymbol.hashCode()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. CREDITS

      patent or other intellectual property rights of any other entity.
      Each Contributor disclaims any liability to Recipient for claims
      brought by any other entity based on infringement of intellectual
      property rights or otherwise. As a condition to exercising the
      rights and licenses granted hereunder, each Recipient hereby
      assumes sole responsibility to secure any other intellectual
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  4. cmd/metacache-entries.go

    func (e *metaCacheEntry) matches(other *metaCacheEntry, strict bool) (prefer *metaCacheEntry, matches bool) {
    	if e == nil && other == nil {
    		return nil, true
    	}
    	if e == nil {
    		return other, false
    	}
    	if other == nil {
    		return e, false
    	}
    
    	// Name should match...
    	if e.name != other.name {
    		if e.name < other.name {
    			return e, false
    		}
    		return other, false
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

                delegate.graphPopulated(wrappedGraph)
            }
    
            override fun equals(other: Any?): Boolean =
                (other as? CrossProjectAccessTrackingTaskExecutionGraphListener)?.javaClass == javaClass &&
                    other.delegate == delegate &&
                    other.referrerProject == referrerProject
    
            override fun hashCode(): Int = Objects.hash(delegate, referrerProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

                    else -> modelObject
                }
        }
    
        override fun equals(other: Any?): Boolean =
            javaClass == (other as? CrossProjectModelAccessTrackingClosure<*>)?.javaClass &&
                other.delegate == delegate &&
                other.referrerProject == referrerProject
    
        override fun hashCode(): Int = Objects.hash(delegate, referrerProject)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    }
                }
    
                task other {
                    mustRunAfter(tasks.ok)
                    def value = tasks.ok.value
                    doLast {
                        println("ok.value = " + value.getOrNull())
                    }
                }
            """
    
            when:
            configurationCacheRun "ok", "other"
    
            then:
            outputContains("this.value = 123")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirDynamicType.kt

        override val abbreviatedType: KaUsualClassType?
            get() = withValidityAssertion { null }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString() = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirAnonymousObjectSymbol.kt

            throw CanNotCreateSymbolPointerForLocalLibraryDeclarationException(this::class)
        }
    
        override fun equals(other: Any?): Boolean = symbolEquals(other)
        override fun hashCode(): Int = symbolHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirIntersectionType.kt

        override val abbreviatedType: KaUsualClassType?
            get() = withValidityAssertion { null }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString() = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top