Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetRegistries (0.09 sec)

  1. tests/fuzz/aggregate_controller_fuzzer.go

    	}
    	c.AddRegistry(registry)
    	return nil
    }
    
    // Helper function to delete a registry.
    func runDeleteRegistry(f *fuzz.ConsumeFuzzer, c *aggregate.Controller) error {
    	registries := c.GetRegistries()
    	if len(registries) == 0 {
    		return fmt.Errorf("no registries")
    	}
    	index, err := f.GetInt()
    	if err != nil {
    		return err
    	}
    	selectedRegistry := registries[index%len(registries)]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top