Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for recommendation (0.68 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. 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)
  10. src/crypto/cipher/ctr_aes_test.go

    // license that can be found in the LICENSE file.
    
    // CTR AES test vectors.
    
    // See U.S. National Institute of Standards and Technology (NIST)
    // Special Publication 800-38A, ``Recommendation for Block Cipher
    // Modes of Operation,'' 2001 Edition, pp. 55-58.
    
    package cipher_test
    
    import (
    	"bytes"
    	"crypto/aes"
    	"crypto/cipher"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3K bytes
    - Viewed (0)
Back to top