Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 355 for Undocumented (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ScriptHandlerDelegate.kt

    abstract class ScriptHandlerDelegate : ScriptHandler {
    
        init {
            @Suppress("DEPRECATION")
            DeprecationLogger.deprecateType(ScriptHandlerDelegate::class.java)
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser()
        }
    
        internal
        abstract val delegate: ScriptHandler
    
        override fun getSourceFile(): File? =
            delegate.sourceFile
    
        override fun getSourceURI(): URI? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    		if color[a] == white {
    			color[a] = grey
    
    			// names
    			if !validIdent(a.Name) {
    				return fmt.Errorf("invalid analyzer name %q", a)
    			}
    
    			if a.Doc == "" {
    				return fmt.Errorf("analyzer %q is undocumented", a)
    			}
    
    			if a.Run == nil {
    				return fmt.Errorf("analyzer %q has nil Run", a)
    			}
    			// fact types
    			for _, f := range a.FactTypes {
    				if f == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputFilePropertyRegistration.java

                    .willBeRemovedInGradle9()
                    // TODO Document this
                    .undocumented();
                return this;
            }
        }
    
        @Override
        public TaskInputFilePropertyBuilderInternal withInternalNormalizer(FileNormalizer normalizer) {
            this.normalizer = normalizer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 21:43:46 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationExecutor.java

        @Override
        public BuildOperationRef getCurrentOperation() {
            DeprecationLogger.deprecateInternalApi("BuildOperationExecutor.getCurrentOperation()")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser();
            BuildOperationRef operationRef = currentBuildOperationRef.get();
            if (operationRef == null) {
                throw new IllegalStateException("No operation is currently running.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/ProblemProgressEventCrossVersionTest.groovy

        def "Problems don't crash the run in 8.5"() {
            given:
            withReportProblemTask """
                getProblems().create {
                    it.label("shortProblemMessage")
                    .undocumented()
                    .category("main", "sub", "id")
                    .additionalData("aKey", "aValue")
                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 07:55:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/GradleDelegate.kt

            if (!org.gradle.kotlin.dsl.InitScriptApi::class.java.isAssignableFrom(this::class.java)) {
                DeprecationLogger.deprecateType(GradleDelegate::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        internal
        abstract val delegate: Gradle
    
        override fun getGradleVersion(): String =
            delegate.gradleVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/internal/types/errors/codes_test.go

    		for _, bad := range forbiddenInIdent {
    			if strings.Contains(lower, bad) {
    				t.Errorf("%q contains forbidden word %q", name, bad)
    			}
    		}
    		doc := spec.Doc.Text()
    		if doc == "" {
    			t.Errorf("%q is undocumented", name)
    		} else if !strings.HasPrefix(doc, name) {
    			t.Errorf("doc for %q does not start with the error code name", name)
    		}
    		lowerComment := strings.ToLower(strings.TrimPrefix(doc, name))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top