Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ImageName (0.09 sec)

  1. pkg/test/fakes/imageregistry/main.go

    		return path
    	}
    
    	prefix := matches[regexForManifest.SubexpIndex("Prefix")]
    	imageName := matches[regexForManifest.SubexpIndex("ImageName")]
    	tag := matches[regexForManifest.SubexpIndex("Tag")]
    	key := imageName + ":" + tag
    
    	log.Infof("key: %v", key)
    
    	if converted, found := h.tagMap[imageName+":"+tag]; found {
    		return prefix + "/" + imageName + "/manifests/" + converted
    	}
    	return path
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/wasm_test.go

    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	imageName      = "istio-testing/wasm/header-injector"
    	injectedHeader = "x-resp-injection"
    	wasmConfigFile = "testdata/wasm-filter.yaml"
    )
    
    type wasmTestConfigs struct {
    	desc         string
    	name         string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top