Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for recommendation (0.51 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    			oldSampleIndex = i
    		}
    	}
    
    	// Bring the recommendation to within the upper and lower limits (stabilize).
    	recommendation := args.CurrentReplicas
    	if recommendation < upRecommendation {
    		recommendation = upRecommendation
    	}
    	if recommendation > downRecommendation {
    		recommendation = downRecommendation
    	}
    
    	// Record the unstabilized recommendation.
    	if foundOldSample {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BaseDeprecations.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.api.internal.DocumentationRegistry
    
    import static org.gradle.api.internal.DocumentationRegistry.RECOMMENDATION
    
    class BaseDeprecations {
        public static final DocumentationRegistry DOCUMENTATION_REGISTRY = new DocumentationRegistry()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

            return getRecommendationString(topic, url == null ? "<N/A>" : url);
        }
    
    
        public static final String RECOMMENDATION = "For more %s, please refer to %s in the Gradle documentation.";
    
        private static String getRecommendationString(String topic, String url) {
            return String.format(RECOMMENDATION, topic.trim(), url);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestTaskIntegrationTest.groovy

    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    import spock.lang.Issue
    
    import static org.gradle.api.internal.DocumentationRegistry.BASE_URL
    import static org.gradle.api.internal.DocumentationRegistry.RECOMMENDATION
    
    abstract class AbstractTestTaskIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
        abstract String getStandaloneTestClass()
        abstract String testClass(String className)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

    import org.gradle.api.problems.internal.DocLink;
    
    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();
    
    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. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * frequently. While caching a service is generally not recommended, it can be beneficial for performance in hot spots, if done right.
     *
     * The recommendation to avoid caching services is due to the risk of leaks. Properties annotated with [KaCachedService] should make sure
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/config/types.go

    	// pods in horizontal pod autoscaler.
    	HorizontalPodAutoscalerSyncPeriod metav1.Duration
    	// HorizontalPodAutoscalerDowncaleStabilizationWindow is a period for which autoscaler will look
    	// backwards and not scale down below any recommendation it made during that period.
    	HorizontalPodAutoscalerDownscaleStabilizationWindow metav1.Duration
    	// horizontalPodAutoscalerTolerance is the tolerance for when
    	// resource usage suggests upscaling/downscaling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AsciidoctorPluginSmokeTest.groovy

                        " Property was automatically upgraded to the lazy version." +
                        " Please use the mainClass property instead." +
                        " ${String.format(DocumentationRegistry.RECOMMENDATION, "information", "${BASE_URL}/dsl/org.gradle.process.JavaExecSpec.html#org.gradle.process.JavaExecSpec:main")}"
                )
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

    import org.gradle.internal.problems.NoOpProblemDiagnosticsFactory
    import org.gradle.util.GradleVersion
    import org.junit.Rule
    import spock.lang.Specification
    
    import static org.gradle.api.internal.DocumentationRegistry.RECOMMENDATION
    import static org.gradle.internal.deprecation.DeprecationMessageBuilder.createDefaultDeprecationId
    
    class DeprecationMessagesTest extends Specification {
    
        private static final String NEXT_GRADLE_VERSION = "9.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.Float64Var(&o.HorizontalPodAutoscalerTolerance, "horizontal-pod-autoscaler-tolerance", o.HorizontalPodAutoscalerTolerance, "The minimum change (from 1.0) in the desired-to-actual metrics ratio for the horizontal...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top