Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 817 for lived (0.04 sec)

  1. pkg/hbone/server.go

    	h1 := &http.Transport{
    		ExpectContinueTimeout: 3 * time.Second,
    	}
    	h2, _ := http2.ConfigureTransports(h1)
    	h2.ReadIdleTimeout = 10 * time.Minute // TODO: much larger to support long-lived connections
    	h2.AllowHTTP = true
    	h2Server := &http2.Server{}
    	handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if r.Method == http.MethodConnect {
    			if handleConnect(w, r) {
    				return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/RealEventSource.kt

            listener.onFailure(
              this,
              IllegalStateException("Invalid content-type: ${body.contentType()}"),
              response,
            )
            return
          }
    
          // This is a long-lived response. Cancel full-call timeouts.
          call?.timeout()?.cancel()
    
          // Replace the body with a stripped one so the callbacks can't see real data.
          val response = response.stripBody()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. istioctl/pkg/xds/client.go

    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/kube"
    )
    
    const (
    	// defaultExpirationSeconds is how long-lived a token to request (an hour)
    	defaultExpirationSeconds = 60 * 60
    )
    
    // Audience to create tokens for
    var tokenAudiences = []string{"istio-ca"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

     *
     * Further modification tracking is implemented with a subscription-based mechanism via [KotlinModificationTopics]. Modification trackers make the most
     * sense when there are many, possibly short-lived objects that need to be notified of a change. In such cases, subscriber management in the
     * message bus adds too much overhead.
     */
    public abstract class KotlinModificationTrackerFactory : KotlinPlatformComponent {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

                // This is a real problem on windows due to eager file locking and continuous CI failures.
                // On linux it's a lesser problem - long-lived daemons hung and steal resources but don't lock files.
                // So, for windows we'll only run tests against target gradle that supports ttl
                return false
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/kube/rpc_creds.go

    	if err != nil {
    		return nil, err
    	}
    	return &tokenSupplier{
    		Token:   tokenRequest.Status.Token,
    		Expires: tokenRequest.Status.ExpirationTimestamp.Time,
    
    		// Save in case we need to renew during a very long-lived gRPC
    		tokenNamespace:      tokenNamespace,
    		tokenServiceAccount: tokenSA,
    		audiences:           tokenAudiences,
    		expirationSeconds:   expirationSeconds,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	LabelTopologyRegion = "topology.kubernetes.io/region"
    
    	// These label have been deprecated since 1.17, but will be supported for
    	// the foreseeable future, to accommodate things like long-lived PVs that
    	// use them.  New users should prefer the "topology.kubernetes.io/*"
    	// equivalents.
    	LabelFailureDomainBetaZone   = "failure-domain.beta.kubernetes.io/zone"   // deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent_test.go

    	})
    	t.Run("VMs provisioned certificates - long lived", func(t *testing.T) {
    		// User has certificates pre-provisioned on the VM by some sort of tooling, pointed to by
    		// PROV_CERT. These are used for mTLS auth with XDS and CA. Certificates are long lived, we
    		// always use the same certificate for control plane authentication and the short lived
    		// certificates returned from the CA for workload authentication
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultInMemoryCacheDecoratorFactory.java

            if (!longLivingProcess && !cacheInMemoryForShortLivedProcesses) {
                // Short-lived process, don't cache in memory
                LOG.debug("Creating cache {} without in-memory store.", cacheId);
                return backingCache;
            }
            int targetSize = cacheSizer.scaleCacheSize(maxEntriesToKeepInMemory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pkg/registry/certificates/certificates/storage/metrics.go

    				honored.WithLabelValues(signer).Inc()
    			}
    		}, nil
    	}
    }
    
    func isDurationHonored(want, got time.Duration) bool {
    	delta := want - got
    	if delta < 0 {
    		delta = -delta
    	}
    
    	// short-lived cert backdating + 5% of want
    	maxDelta := 5*time.Minute + (want / 20)
    
    	return delta < maxDelta
    }
    
    func compressSignerName(name string) string {
    	if strings.HasPrefix(name, "kubernetes.io/") {
    		return name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top