Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,050 for supportsL7 (0.37 sec)

  1. doc/next/6-stdlib/99-minor/crypto/x509/45990.md

    [CreateCertificateRequest] now correct supports RSA-PSS signature algorithms.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 317 bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginDependenciesIntegrationTest.groovy

            when:
            fails("pmdMain")
    
            then:
            failure.assertHasCause("Incremental analysis only supports PMD 6.0.0 and newer. Please upgrade from PMD 5.1.1 or disable incremental analysis.")
    
            when:
            fails("pmdTest")
    
            then:
            failure.assertHasCause("Incremental analysis only supports PMD 6.0.0 and newer. Please upgrade from PMD 5.1.1 or disable incremental analysis.")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/additional/gradle_ides.adoc

    // limitations under the License.
    
    [[gradle_ides]]
    = Gradle in IDEs
    
    Many IDEs support Gradle including Android Studio, IntelliJ IDEA, Visual Studio Code, Eclipse, and NetBeans.
    
    == IntelliJ IDEA
    
    IntelliJ IDEA supports a fully-functional integration with Gradle that helps you automate your building process.
    
    image::intellij_idea.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/os/sys_wasip1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build wasip1
    
    package os
    
    // supportsCloseOnExec reports whether the platform supports the
    // O_CLOEXEC flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 309 bytes
    - Viewed (0)
  5. src/os/error.go

    // that a file or directory already exists. It is satisfied by [ErrExist] as
    // well as some syscall errors.
    //
    // This function predates [errors.Is]. It only supports errors returned by
    // the os package. New code should use errors.Is(err, fs.ErrExist).
    func IsExist(err error) bool {
    	return underlyingErrorIs(err, ErrExist)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/99-minor/crypto/tls/63369.md

    The TLS client now supports the Encrypted Client Hello [draft specification](https://www.ietf.org/archive/id/draft-ietf-tls-esni-18.html).
    This feature can be enabled by setting the [Config.EncryptedClientHelloConfigList]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 296 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/features/features.go

    	if enabled, ok := featureList[featureName]; ok {
    		return enabled
    	}
    	return InitFeatureGates[featureName].Default
    }
    
    // Supports indicates whether a feature name is supported on the given
    // feature set
    func Supports(featureList FeatureList, featureName string) bool {
    	for k := range featureList {
    		if featureName == k {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

      public static void testSubtypeOfStaticAnonymousClass() {
        Class<?> superclass = new Mall<Outdoor>().new Shop<Electronics>() {}.getClass();
        assertTrue(TypeToken.of(superclass).isSubtypeOf(superclass));
        assertFalse(
            TypeToken.of(new Mall<Outdoor>().new Shop<Electronics>() {}.getClass())
                .isSubtypeOf(superclass));
      }
    
      @SuppressWarnings("RestrictedApiChecker") // crashes under JDK8, which EP no longer supports
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/DeprecatedTLSVersionTest.groovy

        @Rule
        SetSystemProperties properties = new SetSystemProperties(keyStore.getServerAndClientCertSettings())
    
        def "server that only supports deprecated TLS versions"() {
            given:
            HttpClientHelper client = new HttpClientHelper(new DocumentationRegistry(), settings)
            // Only support older TLS versions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnLibraryTooNewFailureDescriberIntegrationTest.groovy

            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
            failure.assertHasResolution("Change the dependency on 'project :producer' to an earlier version that supports JVM runtime version $tooHighJava.")
        }
    
        def 'JVM version too low even if other non-Library category variants available uses standard error message for non-plugin'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top