Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ungetc (0.18 sec)

  1. pilot/pkg/model/telemetry_logging.go

    	var al *accesslog.AccessLog
    	switch prov := fp.Provider.(type) {
    	case *meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLog:
    		// For built-in provider, fallback to MeshConfig for formatting options when LogFormat unset.
    		if fp.Name == builtinEnvoyAccessLogProvider && prov.EnvoyFileAccessLog.LogFormat == nil {
    			al = FileAccessLogFromMeshConfig(prov.EnvoyFileAccessLog.Path, push.Mesh)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pilot/pkg/simulation/traffic.go

    	FilterChainMatched string
    	RouteMatched       string
    	RouteConfigMatched string
    	VirtualHostMatched string
    	ClusterMatched     string
    	// StrictMatch controls whether we will strictly match the result. If unset, empty fields will
    	// be ignored, allowing testing only fields we care about This allows asserting that the result
    	// is *exactly* equal, allowing asserting a field is empty
    	StrictMatch bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		ik = gvk.Service
    	} else if kind == gvk.ServiceEntry.Kind && group == gvk.ServiceEntry.Group {
    		ik = gvk.ServiceEntry
    	} else {
    		return empty, fmt.Errorf("unsupported parentKey: %v/%v", p.Group, kind)
    	}
    	// Unset namespace means "same namespace"
    	ns = ptr.OrDefault((*string)(p.Namespace), localNamespace)
    	return parentKey{
    		Kind:      ik,
    		Name:      string(p.Name),
    		Namespace: ns,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    	cases := []struct {
    		name      string
    		rule      ConfigType
    		keepalive *core.TcpKeepalive
    	}{
    		{
    			// Do not set tcp_keepalive anywhere
    			"unset",
    			None,
    			nil,
    		},
    		{
    			// Set mesh wide default for tcp_keepalive.
    			"mesh",
    			Mesh,
    			&core.TcpKeepalive{KeepaliveTime: &wrappers.UInt32Value{Value: uint32(MeshWideTCPKeepaliveSeconds)}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top