Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for recommendation (0.31 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. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/WritePropertiesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.executer.GradleExecuter
    
    import static org.gradle.api.internal.DocumentationRegistry.BASE_URL
    import static org.gradle.api.internal.DocumentationRegistry.RECOMMENDATION
    import static org.gradle.util.internal.GUtil.loadProperties
    
    class WritePropertiesIntegrationTest extends AbstractIntegrationSpec {
        def "empty properties are written properly"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 13:03:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. 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)
  7. pkg/api/service/warnings.go

    	ip, err := netip.ParseAddr(address)
    	if err != nil {
    		return []string{fmt.Sprintf("%s: IP address was accepted, but will be invalid in a future Kubernetes release: %v", fieldPath, err)}
    	}
    	// A Recommendation for IPv6 Address Text Representation
    	//
    	// "All of the above examples represent the same IPv6 address.  This
    	// flexibility has caused many problems for operators, systems
    	// engineers, and customers.
    	// ..."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/net/sockopt_bsd.go

    	if runtime.GOOS == "dragonfly" && sotype != syscall.SOCK_RAW {
    		// On DragonFly BSD, we adjust the ephemeral port
    		// range because unlike other BSD systems its default
    		// port range doesn't conform to IANA recommendation
    		// as described in RFC 6056 and is pretty narrow.
    		switch family {
    		case syscall.AF_INET:
    			syscall.SetsockoptInt(s, syscall.IPPROTO_IP, syscall.IP_PORTRANGE, syscall.IP_PORTRANGE_HIGH)
    		case syscall.AF_INET6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top