Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 270 for mainsail (0.16 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/SingleMessageLogger.java

    // https://github.com/nebula-plugins/nebula-project-plugin/commit/5f56397384328e24c506b0e2b395d1634dbf600f
    
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class SingleMessageLogger extends org.gradle.internal.deprecation.DeprecationLogger {
        static {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/k8sleaderelection/README.md

    Ideally, prioritized leader election gets upstreamed in the near future ([KEP](https://github.com/kubernetes/enhancements/pull/2836)), and hopefully what gets merged isn't too far from what we have forked here (if it is, we'd have to potentially maintain migration code in our fork for a few releases before abandoning). Once merged we can abandon this forked code and use upstream again....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/SelfResolvingDependencyInternal.java

     * When we deprecate SelfResolvingDependency, we may need to keep this class around to maintain Kotlin compatibility.
     */
    @SuppressWarnings("deprecation")
    public interface SelfResolvingDependencyInternal extends org.gradle.api.artifacts.SelfResolvingDependency {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/README.md

    # cli-runtime
    
    Set of helpers for creating kubectl commands, as well as kubectl plugins.
    
    
    ## Purpose
    
    This library is a shared dependency for clients to work with Kubernetes API infrastructure which allows
    to maintain kubectl compatible behavior.  Its first consumer is `k8s.io/kubectl`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository.  It is in direct support of Kubernetes, so branches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/osflags_windows.go

    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	fs.StringVar(&f.WindowsPriorityClass, "windows-priorityclass", "NORMAL_PRIORITY_CLASS",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/hsts.go

    	if len(hstsDirectives) == 0 {
    		return handler
    	}
    	allDirectives := strings.Join(hstsDirectives, "; ")
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		// Chrome and Mozilla Firefox maintain an HSTS preload list
    		// issue : golang.org/issue/26162
    		// Set the Strict-Transport-Security header if it is not already set
    		if _, ok := w.Header()["Strict-Transport-Security"]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 12 08:42:53 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultArtifactHandler.java

        private void warnIfConfigurationIsDeprecated(DeprecatableConfiguration configuration) {
            // To avoid potentially adding new deprecation warnings in Gradle 8.0, we will maintain
            // the existing fully deprecated logic here (migrating the method out of DefaultConfiguration
            // so it isn't mistakenly used elsewhere)
            if (isFullyDeprecated(configuration)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/util/RelativePathUtil.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.TextUtil;
    
    import java.io.File;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class RelativePathUtil {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. src/runtime/mgclimit_test.go

    		l.AddAssistTime(assistTime(1*time.Millisecond, 1.0-GCBackgroundUtilization))
    		l.StartGCTransition(false, advance(1*time.Millisecond))
    		if l.Fill() != l.Capacity() {
    			t.Errorf("failed to maintain fill to capacity %d, got fill %d", l.Capacity(), l.Fill())
    		}
    		if !l.Limiting() {
    			t.Errorf("limiter is not enabled after overfill but should be")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/DistributionLocator.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import java.net.URI;
    import java.net.URISyntaxException;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class DistributionLocator {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top