Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 221 for supportsL7 (0.2 sec)

  1. src/internal/cpu/cpu.go

    // Package cpu implements processor feature detection
    // used by the Go standard library.
    package cpu
    
    import _ "unsafe" // for linkname
    
    // DebugOptions is set to true by the runtime if the OS supports reading
    // GODEBUG early in runtime startup.
    // This should not be changed after it is initialized.
    var DebugOptions bool
    
    // CacheLinePad is used to pad structs to avoid false sharing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/nettest.go

    	stackOnce.Do(probeStack)
    	return unStrmDgramEnabled
    }
    
    // SupportsIPv4 reports whether the platform supports IPv4 networking
    // functionality.
    func SupportsIPv4() bool {
    	stackOnce.Do(probeStack)
    	return ipv4Enabled
    }
    
    // SupportsIPv6 reports whether the platform supports IPv6 networking
    // functionality.
    func SupportsIPv6() bool {
    	stackOnce.Do(probeStack)
    	return ipv6Enabled
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/net/interface.go

    	FlagBroadcast                      // interface supports broadcast access capability
    	FlagLoopback                       // interface is a loopback interface
    	FlagPointToPoint                   // interface belongs to a point-to-point link
    	FlagMulticast                      // interface supports multicast access capability
    	FlagRunning                        // interface is in running state
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/config/security/security.go

    	Port     int
    	UseSSL   bool
    }
    
    const (
    	attrRequestHeader    = "request.headers"        // header name is surrounded by brackets, e.g. "request.headers[User-Agent]".
    	attrSrcIP            = "source.ip"              // supports both single ip and cidr, e.g. "10.1.2.3" or "10.1.0.0/16".
    	attrRemoteIP         = "remote.ip"              // original client ip determined from x-forwarded-for or proxy protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

                // On linux it's a lesser problem - long-lived daemons hung and steal resources but don't lock files.
                // So, for windows we'll only run tests against target gradle that supports ttl
                return false
            }
    
            ToolingApiVersion toolingVersionAnnotation = testDetails.getAnnotation(ToolingApiVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/types.go

    // This is one of the types able to be returned from the /api and /apis endpoint and contains an aggregated
    // list of API resources (built-ins, Custom Resource Definitions, resources from aggregated servers)
    // that a cluster supports.
    type APIGroupDiscoveryList struct {
    	v1.TypeMeta `json:",inline"`
    	// ResourceVersion will not be set, because this does not have a replayable ordering among multiple apiservers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/config/types.go

    	// should not be used for anything other than testing or development.
    	EnableHostPathProvisioning bool
    	// enableDynamicProvisioning enables the provisioning of volumes when running within an environment
    	// that supports dynamic provisioning. Defaults to true.
    	EnableDynamicProvisioning bool
    	// persistentVolumeRecyclerConfiguration holds configuration for persistent volume plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/net/ipsock_posix.go

    // address family, both AF_INET and AF_INET6, and a wildcard address
    // like the following:
    //
    //   - A listen for a wildcard communication domain, "tcp" or
    //     "udp", with a wildcard address: If the platform supports
    //     both IPv6 and IPv4-mapped IPv6 communication capabilities,
    //     or does not support IPv4, we use a dual stack, AF_INET6 and
    //     IPV6_V6ONLY=0, wildcard address listen. The dual stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                    }
    
                    public static abstract class SomeTask extends ${ConventionTask.name} {
                        // Configuration cache only supports convention mapping for fields with matching names.
                        private $typeName inputProperty;
                        ${type.primitive ? '' : "@${Optional.name}"}
                        @${Input.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

    }
    
    
    /**
     * Transformation logic for the kinds of resolution results that appear in conventions.
     * For any of the supported result records, supports replacing the `conventions { ... }` receiver in it with
     * the given [targetBaseReceiver].
     */
    private
    class ConventionTransformer(
        private val targetBaseReceiver: ObjectOrigin.ReceiverOrigin
    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top