Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 239 for changedTo (0.21 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/OutputChangeListener.java

    @EventScope(Scope.Build.class)
    @ServiceScope(Scope.Gradle.class)
    public interface OutputChangeListener {
        /**
         * Invoked when some locations on disk have been changed or are about to be changed.
         * This happens for example just before and after the task actions are executed or the outputs are loaded from the cache.
         *
         * @param affectedOutputPaths The files which are affected by the change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    } else if (!oldNullability && newNullability) {
                        warnings << "Parameter $idx nullability changed from non-nullable to nullable".toString()
                    }
                }
            }
    
            if (member instanceof JApiField) {
    
                JApiField field = (JApiField) member
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

    @OptIn(KaAnalysisApiInternals::class)
    public typealias KtCallResolver = KaResolver
    
    @OptIn(KaAnalysisApiInternals::class)
    public interface KaResolverMixIn : KaSessionMixIn {
        @Deprecated(
            message = "The API will be changed soon. Use 'resolveCallOld()' in a transit period",
            replaceWith = ReplaceWith("resolveCallOld()"),
        )
        public fun KtElement.resolveCall(): KaCallInfo? = resolveCallOld()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

                task ok
            """
    
            configurationCache = newConfigurationCacheFixture()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23273")
        def "invalidates cache if remote script was changed"() {
            when:
            configurationCacheRun 'ok'
    
            then:
            configurationCache.assertStateStored()
    
            when:
            scriptFile << """
                print 'update remote script'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultFileContentCacheFactoryTest.groovy

            result == 12
    
            and:
            interaction {
                snapshotRegularFile(file)
            }
            0 * _
        }
    
        def "reuses result when file content has not changed after task outputs may have changed"() {
            def file = new File("thing.txt")
            def cache = factory.newCache("cache", 12000, calculator, BaseSerializerFactory.INTEGER_SERIALIZER)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            when:
            logLineCountBeforeChange = daemon.logLineCount
            file("output.txt").text = "Changed"
            waitForChangesToBePickedUp()
            then:
            !daemon.logContains(logLineCountBeforeChange, NativeLogger.name)
        }
    
        def "logs handled events between builds only if something changed in the VFS"() {
            buildFile << """
                plugins {
                    id('java')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            then:
            executedAndNotSkipped ":myTask"
    
            when:
            withWatchFs().run "myTask"
            then:
            skipped(":myTask")
    
            when:
            file(fileToChange).text = "changed"
            waitForChangesToBePickedUp()
            withWatchFs().run "myTask"
            then:
            executedAndNotSkipped ":myTask"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectList.java

            assertMutable("addAll(int, Collection)");
            boolean changed = false;
            int current = index;
            for (T t : c) {
                if (!hasWithName(getNamer().determineName(t))) {
                    getStore().add(current, t);
                    didAdd(t);
                    getEventRegister().fireObjectAdded(t);
                    changed = true;
                    current++;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/go/types/cl-577715.md

    <!-- CL 577715, CL 579076 -->
    By default, go/types now produces [Alias] type nodes for type aliases.
    This behavior can be controlled by the `GODEBUG` `gotypesalias` flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 21:30:00 UTC 2024
    - 230 bytes
    - Viewed (0)
Back to top