Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isM2compatible (0.42 sec)

  1. pkg/proxy/winkernel/proxier.go

    	// Check that the kernel supports what we need.
    	if err := kcompat.IsCompatible(); err != nil {
    		return false, err
    	}
    	return true, nil
    }
    
    type WindowsKernelCompatTester struct{}
    
    // IsCompatible returns true if winkernel can support this mode of proxy
    func (lkct WindowsKernelCompatTester) IsCompatible() error {
    	_, err := hcsshim.HNSListPolicyListRequest()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    		addr *uint16
    		len  int
    		cap  int
    	}{&data.hardwareID[0], int(len), int(len)}
    	return *(*[]uint16)(unsafe.Pointer(&sl))
    }
    
    // IsCompatible method tests if given hardware ID matches the driver or is listed on the compatible ID list.
    func (data *DrvInfoDetailData) IsCompatible(hwid string) bool {
    	hwidLC := strings.ToLower(hwid)
    	if strings.ToLower(data.HardwareID()) == hwidLC {
    		return true
    	}
    	a := data.CompatIDs()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public final fun -deprecated_tlsVersions ()Ljava/util/List;
    	public final fun cipherSuites ()Ljava/util/List;
    	public fun equals (Ljava/lang/Object;)Z
    	public fun hashCode ()I
    	public final fun isCompatible (Ljavax/net/ssl/SSLSocket;)Z
    	public final fun isTls ()Z
    	public final fun supportsTlsExtensions ()Z
    	public final fun tlsVersions ()Ljava/util/List;
    	public fun toString ()Ljava/lang/String;
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top