Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestSynchronous (0.2 sec)

  1. pkg/test/framework/integration/framework_test.go

    // limitations under the License.
    
    package integration
    
    import (
    	"fmt"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    )
    
    func TestSynchronous(t *testing.T) {
    	// Root is always run sync.
    	newLevels().
    		// Level 1: bf=5(sync)
    		Add(5, false).
    		// Level 2: bf=2(sync)
    		Add(2, false).
    		// Level 3: bf=2(sync)
    		Add(2, false).
    		Build().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top