Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for Undocumented (0.17 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            builder.willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "Summary is deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}. Context. Advice."
        }
    
        def "logs generic deprecation message for specific thing"() {
            when:
            DeprecationLogger.deprecate("Something").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
                org.gradle.internal.deprecation.DeprecationLogger.deprecate('Init script')
                      .willBeRemovedInGradle9()
                      .undocumented()
                      .nagUser()
            """
    
            file('script.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

                        System.out.println("DeprecatedTask.causeDeprecationWarning() executed.");
                    }
    
                    public static void someFeature() {
                        DeprecationLogger.deprecateMethod(DeprecatedTask.class, "someFeature()").willBeRemovedInGradle9().undocumented().nagUser();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

                .withContext("Instantiating this exception is reserved for Gradle internal use only.")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser();
        }
    
        /**
         * Do not call this constructor.
         *
         * @deprecated This constructor will be made protected in 9.0
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/internal/godebug/godebug.go

    // Name returns the name of the setting.
    func (s *Setting) Name() string {
    	if s.name != "" && s.name[0] == '#' {
    		return s.name[1:]
    	}
    	return s.name
    }
    
    // Undocumented reports whether this is an undocumented setting.
    func (s *Setting) Undocumented() bool {
    	return s.name != "" && s.name[0] == '#'
    }
    
    // String returns a printable form for the setting: name=value.
    func (s *Setting) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/generateLotsOfDeprecationWarnings/build.gradle

        }
    }
    
    
    @groovy.transform.CompileStatic
    void nagUserOfDeprecated(String thing) {
        org.gradle.internal.deprecation.DeprecationLogger.deprecate(thing).willBecomeAnErrorInGradle9().undocumented().nagUser();
    
    }
    
    // This generates 1 deprecation 10k times and 1k unique deprecations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultBuildCacheKey.java

            DeprecationLogger.deprecateMethod(BuildCacheKey.class, "getDisplayName()")
                .replaceWith("getHashCode()")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser();
            return getHashCode();
        }
    
        @Override
        public String toString() {
            return getHashCode();
        }
    
        @Override
        public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ProblemsServiceModelBuilderCrossVersionTest.groovy

                                .withException(new RuntimeException("test"))
                                ${pre86api ? ".undocumented()" : ""}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

            /**
             * Allows proceeding without including any documentation reference.
             * Consider using one of the documentation providing methods instead.
             */
            @CheckReturnValue
            public T undocumented() {
                return withDocumentation(null);
            }
    
            /**
             * Output: See USER_MANUAL_URL for more details.
             */
            @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

                DeprecationLogger.deprecateType(SettingsDelegate::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        internal
        abstract val delegate: Settings
    
        override fun getSettings(): Settings =
            delegate.settings
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top