Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,825 for Is (0.1 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/model/NamedObjectInstantiatorTest.groovy

            n1.hashCode() != n2.hashCode()
    
            n1.toString() == "a"
            n2.toString() == "b"
    
            n1.is(factory.named(CustomNamed, "a"))
            n2.is(factory.named(CustomNamed, "b"))
    
            !n1.is(factory.named(Named, "a"))
            !n2.is(factory.named(Named, "b"))
    
            n1 instanceof Managed
        }
    
        def "can unpack and recreate instance of subtype of Named"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentResolver.kt

                is ObjectOrigin.NewObjectFromTopLevelFunction,
                is ObjectOrigin.ConstantOrigin,
                is ObjectOrigin.External,
                is ObjectOrigin.NullObjectOrigin,
                is ObjectOrigin.PropertyDefaultValue, // TODO: is it so?
                is ObjectOrigin.TopLevelReceiver -> Ok(objectOrigin)
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. architecture/build-state-model.md

    The build state is managed by the `BuildState` class.
    An instance is created for each build in the build definition, once per build execution and is discarded at the end of the execution. 
    
    The build state also includes what is currently called the "Gradle state". The Gradle state is being merged into the build state and is mostly empty.
    
    ### Project state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     *
     * <h1>The provider value</h1>
     *
     * <p>The value of a provider may be:</p>
     *
     * <ul>
     *     <li>"fixed", which means that the value is a function only of configuration time inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         * cross-process access.
         */
        CacheBuilder withInitializer(Consumer<? super PersistentCache> initializer);
    
        /**
         * Specifies an action to execute when the cache needs to be cleaned up. An exclusive lock is held while the cleanup is executing, to prevent cross-process access.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoUtils.kt

        trace.elements.forEach { element ->
            when (element) {
                is AssignmentTraceElement.UnassignedValueUsed -> {
                    val locationString = when (val result = element.assignmentAdditionResult) {
                        is AssignmentResolver.AssignmentAdditionResult.Reassignment,
                        is AssignmentAdded -> error("unexpected")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

            // TODO - deal with tree that is not backed by a file
            is ZipFileTree -> ZipTreeSpec(tree.backingFileProvider)
            is TarFileTree -> TarTreeSpec(tree.backingFileProvider)
            is FilteredMinimalFileTree -> toSpecOrNull(tree.tree)?.let { FilteredMinimalFileTreeSpec(it, tree.patterns) }
            is GeneratedSingletonFileTree -> GeneratedTreeSpec(tree.toSpec())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                when (val input = read()) {
                    null -> break
                    is ProjectSpecificFingerprint.ProjectFingerprint -> input.run {
                        // An input that is specific to a project. If it is out-of-date, then invalidate that project's values and continue checking values
                        // Don't check a value for a project that is already out-of-date
                        val state = projects.entryFor(input.projectPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DataStructuralEquality.kt

    fun DeclarativeDocument.structurallyEqualsAsData(other: DeclarativeDocument): Boolean {
        fun ValueNode.structurallyEquals(other: ValueNode): Boolean = when (this) {
            is LiteralValueNode -> other is LiteralValueNode &&
                value == other.value
    
            is ValueFactoryNode -> other is ValueFactoryNode &&
                factoryName == other.factoryName &&
                values.matchesPairwise(other.values, ValueNode::structurallyEquals)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

    public interface BuildLifecycleAwareVirtualFileSystem extends VirtualFileSystem {
    
        /**
         * Called when the build is started.
         *
         * @return whether watching the file system is currently enabled. This requires that the feature
         * is supported on the current operating system, it is enabled for the build, and has been successfully
         * started.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top