Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allowInsecure (0.12 sec)

  1. okcurl/src/main/kotlin/okhttp3/curl/Main.kt

        help = "Maximum time allowed for the entire call (seconds)",
      ).int().default(DEFAULT_TIMEOUT)
    
      val followRedirects: Boolean by option("-L", "--location", help = "Follow redirects").flag()
    
      val allowInsecure: Boolean by option("-k", "--insecure", help = "Allow connections to SSL sites without certs").flag()
    
      val showHeaders: Boolean by option("-i", "--include", help = "Include protocol headers in the output").flag()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. pkg/wasm/cache.go

    		ret.HTTPRequestTimeout = o.HTTPRequestTimeout
    	}
    	if o.HTTPRequestMaxRetries != 0 {
    		ret.HTTPRequestMaxRetries = o.HTTPRequestMaxRetries
    	}
    
    	return ret
    }
    
    func (o cacheOptions) allowInsecure(host string) bool {
    	return o.allowAllInsecureRegistries || o.InsecureRegistries.Contains(host)
    }
    
    // NewLocalFileCache create a new Wasm module cache which downloads and stores Wasm module files locally.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top