Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for please (0.16 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

    import javax.annotation.CheckReturnValue;
    import javax.annotation.Nullable;
    
    public abstract class Documentation implements DocLink {
        public static final String RECOMMENDATION = "For more %s, please refer to %s in the Gradle documentation.";
        private static final DocumentationRegistry DOCUMENTATION_REGISTRY = new DocumentationRegistry();
    
        public static Documentation userManual(String id, String section) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

     * Also, may represent evaluated constant value. So, `1 + 2` will be represented as `KaIntConstantValue(3)`
     *
     * For more info about constant values please see [official Kotlin documentation](https://kotlinlang.org/docs/properties.html#compile-time-constants])
     */
    public sealed class KaConstantValue(public val constantValueKind: ConstantValueKind) {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveChangesStepTest.groovy

                assert !changes.createInputChanges().incremental
                assert delegateContext.rebuildReasons == ImmutableList.of("Incremental execution has been disabled to ensure correctness. Please consult deprecation warnings for more details.")
                return delegateResult
            }
            _ * context.nonIncrementalReason >> Optional.empty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/addons.go

    		Please note that although the DNS server is deployed, it will not be scheduled until CNI is installed.
    		`)
    
    	kubeProxyAddonLongDesc = cmdutil.LongDesc(`
    		Install the kube-proxy addon components via the API server.
    		`)
    
    	printManifest = false
    )
    
    // NewAddonPhase returns the addon Cobra command
    func NewAddonPhase() workflow.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

            when:
            executer.expectDocumentedDeprecationWarning("enableFeaturePreview('$feature') has been deprecated. This is scheduled to be removed in Gradle 8.0. " +
                    "The feature flag is no longer relevant, please remove it from your settings file. " +
                    "See https://docs.gradle.org/current/userguide/feature_lifecycle.html#feature_preview for more details.")
    
            then:
            succeeds()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

                "incompatible with this version of Gradle and the configuration caching feature - please upgrade to version %s.%s or later of the Gradle Enterprise plugin to restore functionality.",
            MINIMUM_SUPPORTED_PLUGIN_VERSION_FOR_CONFIGURATION_CACHING.getMajor(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/cmd/pprof/pprof.go

    // license that can be found in the LICENSE file.
    
    // pprof is a tool for visualization of profile.data. It is based on
    // the upstream version at github.com/google/pprof, with minor
    // modifications specific to the Go distribution. Please consider
    // upstreaming any modifications to these packages.
    
    package main
    
    import (
    	"crypto/tls"
    	"debug/dwarf"
    	"flag"
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"os"
    	"regexp"
    	"strconv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ProblemProgressEventCrossVersionTest.groovy

                            .severity(Severity.WARNING)
                            .solution("Please use 'standard-plugin-2' instead of this plugin")
                        }
                }
            """
    
            when:
            def listener = new ProblemProgressListener()
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

                    }
                }
                if (uniqueProblemCount > maxConsoleProblems) {
                    appendLine("plus ${uniqueProblemCount - maxConsoleProblems} more problems. Please see the report for details.")
                }
                htmlReportFile?.let {
                    appendLine()
                    append(buildSummaryReportLink(it))
                }
            }.toString()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                }
            """)
    
            then:
            fails 'build'
            failure.output.contains "Could not find a Gradle installation to use based on the location of the GradleRunner class: $testKitJar.canonicalPath. Please specify a Gradle runtime to use via GradleRunner.withGradleVersion() or similar."
        }
    
        def "can use GradleRunner to test"() {
            when:
            buildFile << gradleTestKitDependency()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top