Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addConfigs (0.09 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/AddingConfigurationIntegrationTest.groovy

                    conf1
                    conf2
                }
    
                dependencies {
                    conf1 files(file1)
                    conf2 files(file2)
                }
    
                task addConfigs {
                    def files1 = configurations.conf1
                    def files2 = configurations.conf2
                    doLast {
                        FileCollection sum = files1
                        sum += files2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/echos.go

    	//
    	// Custom echo instances will be accessible from the `All` field in the namespace(s) under which they
    	// were created.
    	Configs echo.ConfigGetter
    }
    
    // AddConfigs appends to the configs to be deployed
    func (c *Config) AddConfigs(configs []echo.Config) *Config {
    	var existing echo.ConfigGetter
    	if c.Configs != nil {
    		existing = c.Configs
    	}
    	c.Configs = func() []echo.Config {
    		var out []echo.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    	instancesUpdated := []*model.ServiceInstance{}
    	instancesDeleted := []*model.ServiceInstance{}
    	fullPush := false
    	configsUpdated := sets.New[model.ConfigKey]()
    
    	addConfigs := func(se *networking.ServiceEntry, services []*model.Service) {
    		// If serviceentry's resolution is DNS, make a full push
    		// TODO: maybe cds?
    		if isDNSTypeServiceEntry(se) {
    			fullPush = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. pkg/ledger/ledger_test.go

    	b.ReportAllocs()
    	b.SetBytes(8)
    	l := &smtLedger{tree: newSMT(HashCollider, nil, time.Minute)}
    	var eg errgroup.Group
    	ids := make([]string, 0, configSize)
    	for i := 0; i < configSize; i++ {
    		ids = append(ids, addConfig(l, b))
    	}
    	b.ResetTimer()
    	for n := 0; n < b.N; n++ {
    		eg.Go(func() error {
    			_, err := l.Put(ids[rand.Int()%configSize], strconv.Itoa(rand.Int()))
    			_ = l.RootHash()
    			return err
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 16:12:59 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top