Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for imageName (0.17 sec)

  1. 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)
  2. src/cmd/cgo/internal/test/callback_windows.go

    		PRUNTIME_FUNCTION FunctionEntry;
    		ULONG64 ImageBase;
    		VOID *HandlerData;
    		ULONG64 EstablisherFrame;
    
    		FunctionEntry = RtlLookupFunctionEntry(ControlPc, &ImageBase, NULL);
    
    		if (!FunctionEntry) {
    			// For simplicity, don't unwind leaf entries, which are not used in this test.
    			break;
    		} else {
    			RtlVirtualUnwind(0, ImageBase, ControlPc, FunctionEntry, &context, &HandlerData, &EstablisherFrame, NULL);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. common/scripts/setup_env.sh

    TOOLS_REGISTRY_PROVIDER=${TOOLS_REGISTRY_PROVIDER:-gcr.io}
    PROJECT_ID=${PROJECT_ID:-istio-testing}
    if [[ "${IMAGE_VERSION:-}" == "" ]]; then
      IMAGE_VERSION=master-89ff97db972e1ec7d61a7831bf9408f509e17d73
    fi
    if [[ "${IMAGE_NAME:-}" == "" ]]; then
      IMAGE_NAME=build-tools
    fi
    
    DOCKER_GID="${DOCKER_GID:-$(grep '^docker:' /etc/group | cut -f3 -d:)}"
    
    TIMEZONE=$(readlink "$readlink_flags" /etc/localtime | sed -e 's/^.*zoneinfo\///')
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/runtime/defs_windows_amd64.go

    	print("cs      ", hex(r.segcs), "\n")
    	print("fs      ", hex(r.segfs), "\n")
    	print("gs      ", hex(r.seggs), "\n")
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint64
    	imageBase        uint64
    	functionEntry    uintptr
    	establisherFrame uint64
    	targetIp         uint64
    	context          *context
    	languageHandler  uintptr
    	handlerData      uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/runtime/defs_windows_arm.go

    	print("pc   ", hex(r.pc), "\n")
    	print("cpsr ", hex(r.cpsr), "\n")
    }
    
    func stackcheck() {
    	// TODO: not implemented on ARM
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint32
    	imageBase        uint32
    	functionEntry    uintptr
    	establisherFrame uint32
    	targetIp         uint32
    	context          *context
    	languageHandler  uintptr
    	handlerData      uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/runtime/defs_windows_arm64.go

    	print("pc   ", hex(r.pc), "\n")
    	print("cpsr ", hex(r.cpsr), "\n")
    }
    
    func stackcheck() {
    	// TODO: not implemented on ARM
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint64
    	imageBase        uint64
    	functionEntry    uintptr
    	establisherFrame uint64
    	targetIp         uint64
    	context          *context
    	languageHandler  uintptr
    	handlerData      uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top