Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isV7 (0.22 sec)

  1. src/internal/cpu/cpu_arm.go

    	// See ARMv7 manual section B1.6.
    	// We also need at least a v7 chip, for the DMB instruction.
    	ARM.HasV7Atomics = isSet(HWCap, hwcap_LPAE) && isV7(Platform)
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    }
    
    func isV7(s string) bool {
    	if s == "aarch64" {
    		return true
    	}
    	return s >= "v7" // will be something like v5, v7, v8, v8l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. tests/integration/ambient/waypoint_test.go

    				// Update use-waypoint for Captured service
    				SetWaypointServiceEntry(t, "external-service", apps.Namespace.Name(), "waypoint")
    				runTest(t, check.And(check.OK(), IsL7()))
    			})
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    	templateFile = "manifests/charts/istio-control/istio-discovery/files/waypoint.yaml"
    )
    
    func IsL7() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    		// TODO: response headers?
    		_, f := r.RequestHeaders[http.CanonicalHeaderKey("X-Request-Id")]
    		if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top