Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for supportsL7 (0.31 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        GradleExecuter executer(TestDirectoryProvider testDirectoryProvider, IntegrationTestBuildContext buildContext);
    
        /**
         * Returns true if this distribution supports the given JVM.
         */
        boolean worksWith(Jvm jvm);
    
        /**
         * Returns true if this distribution supports the given Operating system.
         */
        boolean worksWith(OperatingSystem os);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                    }
                }
            """
        }
    
        @TargetGradleVersion(">=6.8")
        def "nested actions that query a project model run in parallel when target Gradle version supports it and --parallel is used"() {
            given:
            setupBuildWithDependencyResolution()
    
            expect:
            server.expectConcurrent('root', 'a', 'b')
            def models = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                    DefaultCompositeModel(DefaultModel nested) { this.nested = nested }
                    BaseModel getNested() { nested }
                }
            """
        }
    
        def "supports model polymorphism"() {
            given:
            file("plugins/src/main/groovy/my/MyModelBuilder.groovy") << """
                package my
    
                import org.gradle.tooling.provider.model.ToolingModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FixedFileCollectionExecutionTimeValue.groovy

    import spock.lang.Specification
    
    import static org.gradle.api.internal.file.TestFiles.fileCollectionFactory
    
    class FixedFileCollectionExecutionTimeValue extends Specification {
    
        def "FixedFileCollection supports execution time value"() {
            given:
            def collection = fileCollectionFactory().fixed("foo", new File("foo.txt"))
    
            when:
            def executionTimeValue = collection.calculateExecutionTimeValue()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. cmd/batch-job-common-types.go

    }
    
    // Error implements Error interface
    func (b BatchJobYamlErr) Error() string {
    	return fmt.Sprintf("%s\n Hint: error near line: %d, col: %d", b.msg, b.line, b.col)
    }
    
    // BatchJobKV is a key-value data type which supports wildcard matching
    type BatchJobKV struct {
    	line, col int
    	Key       string `yaml:"key" json:"key"`
    	Value     string `yaml:"value" json:"value"`
    }
    
    var _ yaml.Unmarshaler = &BatchJobKV{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FilteredFileCollectionExecutionTimeValueTest.groovy

    import spock.lang.Specification
    
    import static org.gradle.api.internal.file.TestFiles.fileCollectionFactory
    
    class FilteredFileCollectionExecutionTimeValueTest extends Specification {
    
        def "FilteredFileCollection supports execution time value"() {
            given:
            def source = fileCollectionFactory().fixed(
                new File("foo.txt"),
                new File("bar.txt"),
                new File("baz.txt"),
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/internal/cpu/cpu_arm64_darwin.go

    	// There are no hw.optional sysctl values for the below features on Mac OS 11.0
    	// to detect their supported state dynamically. Assume the CPU features that
    	// Apple Silicon M1 supports to be available as a minimal set of features
    	// to all Go programs running on darwin/arm64.
    	ARM64.HasAES = true
    	ARM64.HasPMULL = true
    	ARM64.HasSHA1 = true
    	ARM64.HasSHA2 = true
    }
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top