Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pawn (0.3 sec)

  1. configure.py

    import glob
    import json
    import os
    import platform
    import re
    import subprocess
    import sys
    
    # pylint: disable=g-import-not-at-top
    try:
      from shutil import which
    except ImportError:
      from distutils.spawn import find_executable as which
    # pylint: enable=g-import-not-at-top
    
    _DEFAULT_CUDA_VERSION = '11'
    _DEFAULT_CUDNN_VERSION = '2'
    _DEFAULT_TENSORRT_VERSION = '6'
    _DEFAULT_CUDA_COMPUTE_CAPABILITIES = '3.5,7.0'
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    // configure it in an expected way so that we have consistency and can make changes in the future as needed.
    // We could completely reject but that seems more likely to cause pain.
    func unexpectedWaypointListener(l k8s.Listener) bool {
    	if l.Port != 15008 {
    		return true
    	}
    	if l.Protocol != k8s.ProtocolType(protocol.HBONE) {
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top