Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for retiredIn (0.18 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. pkg/config/analysis/msg/messages.yaml

        args:
          - name: portName
            type: string
          - name: port
            type: int
          - name: targetPort
            type: string
    
      # IST0119 RETIRED
      # IST0120 RETIRED
      # IST0121 RETIRED
      # IST0122 RETIRED
    
      - name: "NamespaceMultipleInjectionLabels"
        code: IST0123
        level: Warning
        description: "A namespace has more than one type of injection labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/link/link_test.go

    var AuthorPaidByTheColumnInch struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    // limitations under the License.
    
    [[native_software]]
    = Building native software
    
    
    CAUTION: The https://blog.gradle.org/state-and-future-of-the-gradle-software-model[software model] is being retired and the plugins mentioned in this chapter will eventually be deprecated and removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.13.md

    - The dashboard add-on has been updated to v1.10.0. ([#68450](https://github.com/kubernetes/kubernetes/pull/68450))
    - Heapster remains at v1.6.0-beta, but is now retired in Kubernetes 1.13  ([#67074](https://github.com/kubernetes/kubernetes/pull/67074))
    - Cluster Autoscaler has been upgraded to v1.13.0 ([#71513](https://github.com/kubernetes/kubernetes/pull/71513))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.15.md

    - A new [Scheduling Framework](https://github.com/kubernetes/enhancements/issues/624) for schedule plugins is now Alpha.
    - Continued deprecation of extensions/v1beta1, apps/v1beta1, and apps/v1beta2 APIs; these extensions will be retired in 1.16!
    
    Check the [release notes website](https://relnotes.k8s.io/?releaseVersions=1.15.0) for the complete changelog of notable features and fixes.
    
    
    
    
    ## Known Issues
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
Back to top