Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildCompleteSources (0.12 sec)

  1. pkg/test/framework/components/echo/config/builder.go

    			}
    		}
    	}
    
    	return out
    }
    
    // BuildCompleteSources builds only those sources that already contain all parameters
    // needed by their templates. Specifically, they are not missing any of the well-known
    // parameters: "From", "To", or "Namespace".
    func (b *Builder) BuildCompleteSources() *Builder {
    	b.t.Helper()
    	out := b.Copy()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/run.go

    	}
    	if t.destinations.Len() == 0 {
    		t.rootCtx.Error("Destinations are empty")
    	}
    
    	// Build and apply any completed configuration that does not require to/from params.
    	t.cfg.BuildCompleteSources().Apply()
    
    	t.fromEachDeployment(t.rootCtx, func(ctx framework.TestContext, from echo.Instances) {
    		// Build and apply per-source configuration.
    		// TODO(nmittler): Consider merging this with t.setup below.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top