Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for retiredIn (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

            }
    
            /**
             * Specify the Gradle version where this cache directory was retired.
             * For this and any newer Gradle version, the cache directory is unused.
             * This is indicated by setting the current cache version to Integer.MAX_VALUE (so it cannot be further incremented).
             */
            public Builder retiredIn(String gradleVersion) {
                return changedTo(Integer.MAX_VALUE, gradleVersion);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/CacheLayout.java

        TRANSFORMS(null, "transforms", introducedIn("3.5-rc-1")
            .changedTo(2, "5.1")
            .changedTo(3, "6.8-rc-1")
            // Introduced move semantics
            .changedTo(4, "8.6-rc-1")
            .retiredIn("8.8-rc-1")
        );
    
        private final String name;
        private final CacheVersionMapping versionMapping;
    
        CacheLayout(@Nullable CacheLayout parent, String name, CacheVersionMapping.Builder versionMappingBuilder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

         * where backwards compatibility is required and instead prefer {@link #inject(ServiceLookup)} for any new non DSL-types.
         * This method will be retired in the future.
         */
        InstanceGenerator injectLenient(ServiceLookup services);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. pkg/filewatcher/worker.go

    			// work on a copy of the watchedFiles map, so that we don't interfere
    			// with the caller's use of the map
    			for path, ft := range wk.getTrackers() {
    				if ft.events == nil {
    					// tracker has been retired, skip it
    					continue
    				}
    
    				sum := getHashSum(path)
    				if !bytes.Equal(sum, ft.hash) {
    					ft.hash = sum
    
    					select {
    					case ft.events <- event:
    						// nothing to do
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/DirectInstantiator.java

    /**
     * You should use the methods of {@link org.gradle.api.internal.InstantiatorFactory} instead of this type, as it will give better error reporting, more consistent behaviour and better performance.
     * This type will be retired in favor of {@link org.gradle.api.internal.InstantiatorFactory} at some point. Currently it is too tangled with a few things to just remove.
     */
    public class DirectInstantiator implements Instantiator {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top