Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for Pinner (0.23 sec)

  1. docs/changelogs/changelog_3x.md

     *  New: Support SHA-256 pins in certificate pinner.
    
    
    ## Version 3.1.2
    
    _2016-02-10_
    
     *  Fix: Don’t crash when finding the trust manager on Robolectric. We attempted
        to detect the host platform and got confused because Robolectric looks like
        Android but isn’t!
     *  Fix: Change `CertificatePinner` to skip sanitizing the certificate chain
        when no certificates were pinned. This avoids an SSL failure in insecure
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            if (hostnameVerifier != this.hostnameVerifier) {
              this.routeDatabase = null
            }
    
            this.hostnameVerifier = hostnameVerifier
          }
    
        /**
         * Sets the certificate pinner that constrains which certificates are trusted. By default HTTPS
         * connections rely on only the [SSL socket factory][sslSocketFactory] to establish trust.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    	// of additional memory might be held onto.
    	//
    	// Also, flush the pinner cache, to avoid leaking that memory
    	// indefinitely.
    	forEachP(waitReasonFlushProcCaches, func(pp *p) {
    		pp.mcache.prepareForSweep()
    		if pp.status == _Pidle {
    			systemstack(func() {
    				lock(&mheap_.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. docs/en/docs/img/sponsors/doist-banner.svg

    doist-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 01 08:58:40 UTC 2022
    - 52.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

         * class searches and combinations with imports, since the outer class we know is already resolved.
         */
        private static class ConstructedNestedClass extends ClassNode {
            private final ClassNode knownEnclosingType;
    
            public ConstructedNestedClass(ClassNode outer, String inner) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		if controllerErr != nil {
    			t.Errorf("Expected no error from the controller, but got: %#v", controllerErr)
    		}
    	})
    
    	t.Run("priority level concurrency is set to 1, request times out and inner handler hasn't written to the response yet", func(t *testing.T) {
    		t.Parallel()
    		const (
    			userName                                              = "alice"
    			fsName                                                = "test-fs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		}
    	}
    
    	// Get internal types
    	internalBinder, ok := binder.(*volumeBinder)
    	if !ok {
    		t.Fatalf("Failed to convert to internal binder")
    	}
    
    	return &testEnv{
    		client:                  client,
    		reactor:                 reactor,
    		binder:                  binder,
    		internalBinder:          internalBinder,
    		internalPodInformer:     podInformer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        /**
         * Returns true if the class symbol has a type parameter that is supposed to be provided for its parent class.
         *
         * Example:
         * class Outer<T> {
         *   inner class Inner // Inner has an implicit type parameter `T`.
         * }
         */
        private fun FirClassLikeSymbol<*>.hasTypeParameterFromParent(): Boolean = typeParameterSymbols.orEmpty().any {
            it.containingDeclarationSymbol != this
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint16LengthPrefixed(&binders) || binders.Empty() {
    				return false
    			}
    			for !binders.Empty() {
    				var binder []byte
    				if !readUint8LengthPrefixed(&binders, &binder) ||
    					len(binder) == 0 {
    					return false
    				}
    				m.pskBinders = append(m.pskBinders, binder)
    			}
    		default:
    			// Ignore unknown extensions.
    			continue
    		}
    
    		if !extData.Empty() {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    		install(arg)
    	}
    }
    
    // Clean deletes temporary objects.
    func cmdclean() {
    	xflagparse(0)
    	clean()
    }
    
    // Banner prints the 'now you've installed Go' banner.
    func cmdbanner() {
    	xflagparse(0)
    	banner()
    }
    
    func banner() {
    	if vflag > 0 {
    		xprintf("\n")
    	}
    	xprintf("---\n")
    	xprintf("Installed Go for %s/%s in %s\n", goos, goarch, goroot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top