Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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