Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 358 for please (0.17 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. internal/logger/target/http/http.go

    		// accepted HTTP status codes.
    		return nil
    	case http.StatusForbidden:
    		return fmt.Errorf("%s returned '%s', please check if your auth token is correctly set", h.Endpoint(), resp.Status)
    	default:
    		return fmt.Errorf("%s returned '%s', please check your endpoint configuration", h.Endpoint(), resp.Status)
    	}
    }
    
    func (h *Target) startQueueProcessor(ctx context.Context, mainWorker bool) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/server.go

    		resourceMetricsHandler.ServeHTTP(w, req)
    	})
    }
    
    // newHealthEndpointsAndMetricsHandler creates an API health server from the config, and will also
    // embed the metrics handler.
    // TODO: healthz check is deprecated, please use livez and readyz instead. Will be removed in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top