Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 947 for changedTo (0.16 sec)

  1. 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)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            then: "the cache entry is invalidated and the change is reported"
            configurationCache.assertStateStored()
            outputContains("because directory '$testFileName' has changed")
    
            when: "directory content is not changed since the last modification"
            configurationCacheRunLenient()
    
            then: "cache entry is reused"
            configurationCache.assertStateLoaded()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubeapiserver/options/authorization.go

    		if oldAreLegacyFlagsSet != nil && oldAreLegacyFlagsSet() {
    			return true
    		}
    
    		return fs.Changed(authorizationModeFlag) ||
    			fs.Changed(authorizationWebhookConfigFileFlag) ||
    			fs.Changed(authorizationWebhookVersionFlag) ||
    			fs.Changed(authorizationWebhookAuthorizedTTLFlag) ||
    			fs.Changed(authorizationWebhookUnauthorizedTTLFlag)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

            sv.setUpdated("20200710072412");
            target.getVersioning().addSnapshotVersion(sv);
    
            Metadata source = createMetadataFromArtifact(artifact);
            // nothing should be actually changed, but still merge returns true
            assertTrue(target.merge(source));
    
            // NOTE! Merge updates last updated to source
            assertEquals("20200921071745", source.getVersioning().getLastUpdated());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    * An input property has changed since the previous execution.
    * A non-incremental input file property has changed since the previous execution.
    * One or more output files have changed since the previous execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top