Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultConfig (0.19 sec)

  1. pkg/kubelet/server/server_test.go

    			s.testHTTPServer.Close()
    		}
    	}()
    
    	testURL, err := url.Parse(s.testHTTPServer.URL)
    	if err != nil {
    		return nil, err
    	}
    
    	s.fakeRuntime = &fakeRuntime{}
    	config := streaming.DefaultConfig
    	config.BaseURL = testURL
    	if streamIdleTimeout != 0 {
    		config.StreamIdleTimeout = streamIdleTimeout
    	}
    	s.Server, err = streaming.NewServer(config, s.fakeRuntime)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	if elem, ok := c.m[sessionKey]; ok {
    		c.q.MoveToFront(elem)
    		return elem.Value.(*lruSessionCacheEntry).state, true
    	}
    	return nil, false
    }
    
    var emptyConfig Config
    
    func defaultConfig() *Config {
    	return &emptyConfig
    }
    
    func unexpectedMessageError(wanted, got any) error {
    	return fmt.Errorf("tls: received unexpected handshake message of type %T when waiting for %T", got, wanted)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    			if tc.envPilotSampling != 0.0 {
    				test.SetForTest(t, &features.TraceSampling, tc.envPilotSampling)
    			}
    
    			m := mesh.DefaultMeshConfig()
    			m.ProxyHttpPort = 15007
    			m.EnableTracing = true
    			m.DefaultConfig = &meshconfig.ProxyConfig{
    				Tracing: &meshconfig.Tracing{
    					CustomTags:       tc.in.CustomTags,
    					MaxPathTagLength: tc.in.MaxPathTagLength,
    					Sampling:         tc.in.Sampling,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top