Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for StringMatcher (0.12 sec)

  1. pilot/pkg/networking/grpcgen/grpcgen.go

    // (see grpc/xds/internal/client/xds.go securityConfigFromCluster).
    func buildCommonTLSContext(sans []string) *tls.CommonTlsContext {
    	var sanMatch []*matcher.StringMatcher
    	if len(sans) > 0 {
    		sanMatch = util.StringToExactMatch(sans)
    	}
    	return &tls.CommonTlsContext{
    		TlsCertificateCertificateProviderInstance: &tls.CommonTlsContext_CertificateProviderInstance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/eventbus/AsyncEventBusTest.java

      protected void setUp() throws Exception {
        super.setUp();
        executor = new FakeExecutor();
        bus = new AsyncEventBus(executor);
      }
    
      public void testBasicDistribution() {
        StringCatcher catcher = new StringCatcher();
        bus.register(catcher);
    
        // We post the event, but our Executor will not deliver it until instructed.
        bus.post(EVENT);
    
        List<String> events = catcher.getEvents();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.3K bytes
    - Viewed (0)
Back to top