Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 905 for fallbacks (0.13 sec)

  1. src/net/ipsock_test.go

    		}
    		primaries, fallbacks := addrs.partition(isIPv4)
    		if !reflect.DeepEqual(primaries, tt.primaries) {
    			t.Errorf("#%v: got %v; want %v", i, primaries, tt.primaries)
    		}
    		if !reflect.DeepEqual(fallbacks, tt.fallbacks) {
    			t.Errorf("#%v: got %v; want %v", i, fallbacks, tt.fallbacks)
    		}
    		expectedLen := len(primaries) + len(fallbacks)
    		if len(addrs) != expectedLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 15 22:22:09 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/options.go

    	flags.StringVar(&opts.peerListenUrls, "listen-peer-urls", "",
    		"etcd --listen-peer-urls flag. If unset, fallbacks to LISTEN_PEER_URLS env and if unset defaults to http://localhost:<peer-port>.")
    	flags.StringVar(&opts.peerAdvertiseUrls, "initial-advertise-peer-urls", "",
    		"etcd --initial-advertise-peer-urls flag. If unset fallbacks to INITIAL_ADVERTISE_PEER_URLS env and if unset defaults to http://localhost:<peer-port>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

    import java.util.concurrent.atomic.AtomicBoolean;
    
    /**
     * A factory for creating {@link AttributeBasedFileVisitDetails} instances.
     * Fallbacks to UnauthorizedFileVisitDetails in cases when attributes are not available.
     * Fallbacks to DefaultFileVisitDetails in cases when attributes are not reliable.
     */
    public class AttributeBasedFileVisitDetailsFactory {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/runtime/vdso_linux_ppc64x.go

    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.15", 0x75fcba5}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__kernel_clock_gettime", 0xb0cd725, 0xdfa941fd, &vdsoClockgettimeSym},
    }
    
    // initialize with vsyscall fallbacks
    var (
    	vdsoClockgettimeSym uintptr = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 672 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/tensorflow/passes.h

    namespace mlir {
    namespace TF {
    
    // Legalize the tf ops to the quant ops, so the quantization passes can work.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLegalizeTFToQuantPass();
    
    // Fallbacks ops that are not supported by TF Quantization to TFLite Flex ops.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateFallbackToFlexOpsPass(
        const std::string &mode = "DEFAULT");
    
    }  // namespace TF
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 08 00:46:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/DoubleInetAddressDns.kt

     */
    package okhttp3.internal
    
    import java.net.InetAddress
    import okhttp3.Dns
    
    /**
     * A network that always resolves two IP addresses per host. Use this when testing route selection
     * fallbacks to guarantee that a fallback address is available.
     */
    class DoubleInetAddressDns : Dns {
      override fun lookup(hostname: String): List<InetAddress> {
        val addresses = Dns.SYSTEM.lookup(hostname)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 10:26:25 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/runtime/vdso_linux_s390x.go

    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.29", 0x75fcbb9}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__kernel_clock_gettime", 0xb0cd725, 0xdfa941fd, &vdsoClockgettimeSym},
    }
    
    // initialize with vsyscall fallbacks
    var (
    	vdsoClockgettimeSym uintptr = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 659 bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     */
    public interface KotlinPlatformComponent
    
    /**
     * An optional [KotlinPlatformComponent]. The Analysis API engine does not require an optional platform component to be implemented and
     * will use sensible fallbacks or disable/avoid certain behaviors instead.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/net/ipsock.go

    // The first address, and any with a matching label, are returned as
    // primaries, while addresses with the opposite label are returned
    // as fallbacks. For non-empty inputs, primaries is guaranteed to be
    // non-empty.
    func (addrs addrList) partition(strategy func(Addr) bool) (primaries, fallbacks addrList) {
    	var primaryLabel bool
    	for i, addr := range addrs {
    		label := strategy(addr)
    		if i == 0 || label == primaryLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/net/dial.go

    				primary = res
    			} else {
    				fallback = res
    			}
    			if primary.done && fallback.done {
    				return nil, primary.error
    			}
    			if res.primary && fallbackTimer.Stop() {
    				// If we were able to stop the timer, that means it
    				// was running (hadn't yet started the fallback), but
    				// we just got an error on the primary path, so start
    				// the fallback immediately (in 0 nanoseconds).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top