Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for allowInsecure (0.16 sec)

  1. pkg/wasm/httpfetcher.go

    		requestMaxRetry: requestMaxRetry,
    	}
    }
    
    // Fetch downloads a wasm module with HTTP get.
    func (f *HTTPFetcher) Fetch(ctx context.Context, url string, allowInsecure bool) ([]byte, error) {
    	c := f.client
    	if allowInsecure {
    		c = f.insecureClient
    	}
    	attempts := 0
    	o := backoff.DefaultOption()
    	o.InitialInterval = f.initialBackoff
    	b := backoff.NewExponentialBackOff(o)
    	var lastError error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. guava/src/com/google/common/io/InsecureRecursiveDeleteException.java

     * allow it to delete files and directories outside of the directory being deleted (i.e., {@link
     * SecureDirectoryStream} is not supported).
     *
     * <p>{@link RecursiveDeleteOption#ALLOW_INSECURE} can be used to force the recursive delete method
     * to proceed anyway.
     *
     * @since 21.0
     * @author Colin Decker
     */
    @J2ktIncompatible
    @GwtIncompatible
    @J2ObjCIncompatible // java.nio.file
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/RecursiveDeleteOption.java

       * directory before the call that opens the directory to read its entries. File systems that
       * support {@code SecureDirectoryStream} do not have this vulnerability.
       */
      ALLOW_INSECURE
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/MoreFiles.java

       * pass {@link RecursiveDeleteOption#ALLOW_INSECURE} to this method to override that behavior.
       *
       * @throws NoSuchFileException if {@code path} does not exist <i>(optional specific exception)</i>
       * @throws InsecureRecursiveDeleteException if the security of recursive deletes can't be
       *     guaranteed for the file system and {@link RecursiveDeleteOption#ALLOW_INSECURE} was not
       *     specified
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top