Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 239 for changedTo (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/GradleSerializedValueSnapshot.java

                    // Different implementation - assume value has changed
                    return false;
                }
                if (Arrays.equals(serializedValue, newSnapshot.serializedValue)) {
                    // Same serialized content - value has not changed
                    return true;
                }
            }
            return false;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/scopes/ScopedCacheBuilderFactory.java

         *
         * <p>By default a cache is opened with a shared lock, so that it can be accessed by multiple processes. It is the caller's responsibility
         * to coordinate access to the cache. The initial lock level can be changed using the provided builder </p>
         *
         * @param key The cache key. This is a unique identifier within the cache scope.
         * @return The builder.
         */
        CacheBuilder createCacheBuilder(String key);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/os/61893.md

    On Windows, the mode bits reported by [Lstat] and [Stat] for
    reparse points changed. Mount points no longer have [ModeSymlink] set,
    and reparse points that are not symlinks, Unix sockets, or dedup files
    now always have [ModeIrregular] set.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 386 bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/crypto/tls/67065.md

    Go 1.23 changed the behavior of [X509KeyPair] and [LoadX509KeyPair]
    to populate the [Certificate.Leaf] field of the returned [Certificate].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 226 bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorIntegrationTest.groovy

            """
    
            when:
            fails("help")
    
            then:
            failure.assertHasErrorOutput("The value for property 'implementation' property 'dependencies' is final and cannot be changed any further.")
        }
    
        def "mutating dependencies after dependency set has been observed is deprecated"() {
            given:
            mavenRepo.module("com", "foo").publish()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

                    </classes>
                  </test>
                </suite>
            '''.stripIndent()
        }
    
        @Issue('https://github.com/gradle/gradle/issues/4924')
        def 'test task is up-to-date when #property is changed because it should not impact output'() {
            given:
            buildScript """
                apply plugin: "java"
                ${mavenCentralRepository()}
                testing {
                    suites {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/configgen.go

    	MeshConfigChanged(mesh *meshconfig.MeshConfig)
    }
    
    type ConfigGeneratorImpl struct {
    	Cache model.XdsCache
    }
    
    func NewConfigGenerator(cache model.XdsCache) *ConfigGeneratorImpl {
    	return &ConfigGeneratorImpl{
    		Cache: cache,
    	}
    }
    
    // MeshConfigChanged is called when mesh config is changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/GraphsBridgeMethods.java

    package com.google.common.graph;
    
    import com.google.common.annotations.Beta;
    import java.util.Set;
    
    /**
     * Supertype for {@link Graphs}, containing the old signatures of methods whose signatures we've
     * changed. This provides binary compatibility for users who compiled against the old signatures.
     */
    @Beta
    @ElementTypesAreNonnullByDefault
    abstract class GraphsBridgeMethods {
    
      @SuppressWarnings("PreferredInterfaceType")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 14 19:31:40 UTC 2024
    - 707 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/InvalidateVirtualFileSystemAfterChangeCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=6.1")
        def "changed paths need to be absolute"() {
            changedPaths = ["some/relative/path"]
    
            when:
            withConnection { connection ->
                connection.notifyDaemonsAboutChangedPaths(toPaths(changedPaths))
            }
    
            then:
            def exception = thrown(IllegalArgumentException)
            exception.message == "Changed path '${Paths.get(changedPaths[0])}' is not absolute"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    When the cached models for a project can be reused, Gradle short-circuits all work for that project,
    including the project's configuration phase and other work such as dependency resolution.
    
    This means that Gradle will only configure and create tooling models for projects whose configuration has changed.
    This work is done in parallel for each project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top