Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 221 for supportsL7 (0.19 sec)

  1. pkg/volume/emptydir/empty_dir.go

    			return nil
    		} else if ed.medium == v1.StorageMediumDefault {
    			// Further check dir exists
    			if _, err := os.Stat(dir); err == nil {
    				klog.V(6).InfoS("Dir exists, so check and assign quota if the underlying medium supports quotas", "dir", dir)
    				err = ed.assignQuota(dir, mounterArgs.DesiredSize)
    				return err
    			}
    			// This situation should not happen unless user manually delete volume dir.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pilot/pkg/xds/workload.go

    	_ model.XdsDeltaResourceGenerator = &WorkloadGenerator{}
    )
    
    // GenerateDeltas computes Workload resources. This is design to be highly optimized to delta updates,
    // and supports *on-demand* client usage. A client can subscribe with a wildcard subscription and get all
    // resources (with delta updates), or on-demand and only get responses for specifically subscribed resources.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. pkg/test/framework/config.go

    		})
    	}
    
    	// Wait for all each apply to complete.
    	if err := g.Wait(); err != nil {
    		return err
    	}
    
    	if options.Wait {
    		// TODO: wait for each namespace concurrently once WaitForConfig supports concurrency.
    		for ns, y := range c.yamlText {
    			if err := c.WaitForConfig(c.ctx, ns, y...); err != nil {
    				// TODO(https://github.com/istio/istio/issues/37148) fail hard in this case
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_test.go

    	config := testConfig.Clone()
    	config.NextProtos = []string{"proto1", "proto2"}
    
    	test := &serverTest{
    		name: "ALPN",
    		// Note that this needs OpenSSL 1.0.2 because that is the first
    		// version that supports the -alpn flag.
    		command: []string{"openssl", "s_client", "-alpn", "proto2,proto1", "-cipher", "ECDHE-RSA-CHACHA20-POLY1305", "-ciphersuites", "TLS_CHACHA20_POLY1305_SHA256"},
    		config:  config,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/kubelet.go

    			},
    		},
    		SignerName: certificates.KubeAPIServerClientKubeletSignerName,
    		GetUsages:  certificate.DefaultKubeletClientGetUsages,
    		// For backwards compatibility, the kubelet supports the ability to
    		// provide a higher privileged certificate as initial data that will
    		// then be rotated immediately. This code path is used by kubeadm on
    		// the masters.
    		BootstrapCertificatePEM: bootstrapCertData,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. doc/godebug.md

    exchange. The default can be reverted using the [`tlsrsakex` setting](/pkg/crypto/tls/#Config).
    
    Go 1.22 disabled
    [`ConnectionState.ExportKeyingMaterial`](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial)
    when the connection supports neither TLS 1.3 nor Extended Master Secret
    (implemented in Go 1.21). It can be reenabled with the [`tlsunsafeekm`
    setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            Caused by:
            java.lang.RuntimeException: oops
                at org.ClassName1.methodName1(FileName1.java:11)
                at org.ClassName2.methodName2(FileName2.java:22)
    """
        }
    
        def "supports any combination of stack trace filters"() {
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.of(TestStackTraceFilter.TRUNCATE, TestStackTraceFilter.GROOVY)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/crypto/tls/auth.go

    		return 0, unsupportedCertificateError(c)
    	}
    	if len(peerAlgs) == 0 && vers == VersionTLS12 {
    		// For TLS 1.2, if the client didn't send signature_algorithms then we
    		// can assume that it supports SHA1. See RFC 5246, Section 7.4.1.4.1.
    		peerAlgs = []SignatureScheme{PKCS1WithSHA1, ECDSAWithSHA1}
    	}
    	// Pick signature scheme in the peer's preference order, as our
    	// preference order is not configurable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pilot/pkg/model/context.go

    }
    
    // SupportsIPv4 returns true if proxy supports IPv4 addresses.
    func (node *Proxy) SupportsIPv4() bool {
    	return node.ipMode == IPv4 || node.ipMode == Dual
    }
    
    // SupportsIPv6 returns true if proxy supports IPv6 addresses.
    func (node *Proxy) SupportsIPv6() bool {
    	return node.ipMode == IPv6 || node.ipMode == Dual
    }
    
    // IsIPv6 returns true if proxy only supports IPv6 addresses.
    func (node *Proxy) IsIPv6() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  10. src/runtime/stubs.go

    // the memory manager.
    //
    // There's no corresponding barrier for the read side because the read
    // side naturally has a data dependency order. All architectures that
    // Go supports or seems likely to ever support automatically enforce
    // data dependency ordering.
    func publicationBarrier()
    
    // getcallerpc returns the program counter (PC) of its caller's caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top