Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for makeStore (0.17 sec)

  1. pilot/pkg/config/aggregate/config_test.go

    	schema2 := collections.GatewayClass
    	store1 := memory.Make(collection.SchemasFor(schema1))
    	store2 := memory.Make(collection.SchemasFor(schema2))
    
    	stores := []model.ConfigStore{store1, store2}
    
    	store, err := makeStore(stores, nil)
    	g.Expect(err).NotTo(HaveOccurred())
    
    	schemas := store.Schemas()
    	g.Expect(cmp.Diff(schemas, collection.SchemasFor(schema1, schema2))).To(BeEmpty())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			ClusterLocalHosts{}),
    		// These are not feasible/worth comparing
    		cmpopts.IgnoreTypes(sync.RWMutex{}, localServiceDiscovery{}, FakeStore{}, atomic.Bool{}, sync.Mutex{}),
    		cmpopts.IgnoreUnexported(IstioEndpoint{}),
    		cmpopts.IgnoreInterfaces(struct{ mesh.Holder }{}),
    		protocmp.Transform(),
    	)
    	if diff != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top