Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestReplaceAndInsert (0.14 sec)

  1. pilot/pkg/networking/core/envoyfilter/util_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package envoyfilter
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/slices"
    )
    
    func TestReplaceAndInsert(t *testing.T) {
    	f := func(e int) (bool, int) {
    		// replace 1 with 10
    		if e == 1 {
    			return true, 10
    		}
    		return false, 0
    	}
    
    	cases := []struct {
    		name         string
    		input        []int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top