Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 792 for facts (4.26 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidSocketAdapter.kt

    /**
     * Modern reflection based SocketAdapter for Conscrypt class SSLSockets.
     *
     * This is used directly for providers where class name is known e.g. the Google Play Provider
     * but we can't compile directly against it, or in fact reliably know if it is registered and
     * on classpath.
     */
    open class AndroidSocketAdapter(private val sslSocketClass: Class<in SSLSocket>) : SocketAdapter {
      private val setUseSessionTickets: Method =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/test/env/istio.go

    )
    
    var (
    	_, b, _, _ = runtime.Caller(0)
    
    	// Root folder of this project
    	// This relies on the fact this file is 3 levels up from the root; if this changes, adjust the path below
    	Root = filepath.Join(filepath.Dir(b), "../../..")
    )
    
    func getDefaultIstioSrc() string {
    	return Root
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    // The default implementation considers a very limited set of
    // 'retriable' errors, assuming correct use of HTTP codes by
    // external webhooks.
    // That may easily lead to dropped audit events. In fact, there is
    // hardly any error that could be a justified reason NOT to retry
    // sending audit events if there is even a slight chance that the
    // receiving service gets back to normal at some point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. src/image/jpeg/dct_test.go

    //	dst[u,v] = (1/8) * Σ_x Σ_y alpha(u) * alpha(v) * src[x,y] *
    //		cos((π/2) * (2*x + 1) * u / 8) *
    //		cos((π/2) * (2*y + 1) * v / 8)
    //
    // x and y are in pixel space, and u and v are in transform space.
    //
    // b acts as both dst and src.
    func slowFDCT(b *block) {
    	var dst [blockSize]float64
    	for v := 0; v < 8; v++ {
    		for u := 0; u < 8; u++ {
    			sum := 0.0
    			for y := 0; y < 8; y++ {
    				for x := 0; x < 8; x++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  5. docs/fr/docs/deployment/https.md

    * Le cryptage de la connexion se fait au niveau du protocole TCP.
        * C'est une couche en dessous de HTTP.
        * Donc, le certificat et le traitement du cryptage sont faits avant HTTP.
    * TCP ne connaît pas les "domaines", seulement les adresses IP.
        * L'information sur le domaine spécifique demandé se trouve dans les données HTTP.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:45:30 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarDelegate.java

    import java.util.ArrayList;
    import java.util.Enumeration;
    import java.util.List;
    
    /**
     * Antlr defines its {@link antlr.preprocessor.Grammar} class as package-protected for some unfortunate reason. So this class acts as a delegate to the Antlr {@link antlr.preprocessor.Grammar} class,
     * hiding all the ugly necessary reflection code.
     */
    public class GrammarDelegate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. docs/en/docs/benchmarks.md

        * If you are comparing Uvicorn, compare it against Daphne, Hypercorn, uWSGI, etc. Application servers.
    * **Starlette**:
        * Will have the next best performance, after Uvicorn. In fact, Starlette uses Uvicorn to run. So, it probably can only get "slower" than Uvicorn by having to execute more code.
        * But it provides you the tools to build simple web applications, with routing based on paths, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/why.go

    package or module. Subsequent lines give a path through the import
    graph, one package per line. If the package or module is not
    referenced from the main module, the stanza will display a single
    parenthesized note indicating that fact.
    
    For example:
    
    	$ go mod why golang.org/x/text/language golang.org/x/text/encoding
    	# golang.org/x/text/language
    	rsc.io/quote
    	rsc.io/sampler
    	golang.org/x/text/language
    
    	# golang.org/x/text/encoding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/hmac.go

    	}
    	// Make copy of context because Go hash.Hash mandates
    	// that Sum has no effect on the underlying stream.
    	// In particular it is OK to Sum, then Write more, then Sum again,
    	// and the second Sum acts as if the first didn't happen.
    	C._goboringcrypto_HMAC_CTX_init(&h.ctx2)
    	if C._goboringcrypto_HMAC_CTX_copy_ex(&h.ctx2, &h.ctx) == 0 {
    		panic("boringcrypto: HMAC_CTX_copy_ex failed")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/io/fs/sub.go

    // does not check for symbolic links inside "/prefix" that point to
    // other directories. That is, [os.DirFS] is not a general substitute for a
    // chroot-style security mechanism, and Sub does not change that fact.
    func Sub(fsys FS, dir string) (FS, error) {
    	if !ValidPath(dir) {
    		return nil, &PathError{Op: "sub", Path: dir, Err: ErrInvalid}
    	}
    	if dir == "." {
    		return fsys, nil
    	}
    	if fsys, ok := fsys.(SubFS); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top