Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for onTimeout (0.13 sec)

  1. okhttp/src/test/java/okhttp3/WholeOperationTimeoutTest.kt

          call.execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("timeout")
          assertThat(call.isCanceled()).isTrue()
        }
      }
    
      @Flaky
      @Test
      fun noTimeout() {
        // Flaky https://github.com/square/okhttp/issues/5304
        server.enqueue(
          MockResponse.Builder()
            .headersDelay(250, TimeUnit.MILLISECONDS)
            .body(BIG_ENOUGH_BODY)
            .build(),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute.go

    			ClusterSpecifier: &route.RouteAction_Cluster{Cluster: egressCluster},
    			// Disable timeout instead of assuming some defaults.
    			Timeout: notimeout,
    			// Use deprecated value for now as the replacement MaxStreamDuration has some regressions.
    			// nolint: staticcheck
    			MaxGrpcTimeout: notimeout,
    		}
    
    		return &route.VirtualHost{
    			Name:    util.Passthrough,
    			Domains: []string{"*"},
    			Routes: []*route.Route{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    		StatPrefix:      statPrefix, // redis stats are prefixed with redis.<statPrefix> by Envoy
    		Settings: &redis.RedisProxy_ConnPoolSettings{
    			OpTimeout: durationpb.New(redisOpTimeout),
    		},
    		PrefixRoutes: &redis.RedisProxy_PrefixRoutes{
    			CatchAllRoute: &redis.RedisProxy_PrefixRoutes_Route{
    				Cluster: clusterName,
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    		GenerateRequestId:          ph.GenerateRequestID,
    		UseRemoteAddress:           proto.BoolFalse,
    	}
    
    	// Protocol settings
    	h.StreamIdleTimeout = istio_route.Notimeout
    	h.UpgradeConfigs = []*hcm.HttpConnectionManager_UpgradeConfig{{
    		UpgradeType: ConnectUpgradeType,
    	}}
    	h.Http2ProtocolOptions = &core.Http2ProtocolOptions{
    		AllowConnect: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

            run 'retrieve'
        }
    
        def "uses cached snapshots from a Maven HTTP repository until the snapshot timeout is reached"() {
            given:
            buildFile << """
    if (project.hasProperty('noTimeout')) {
        configurations.all {
            resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
        }
    }
    
    dependencies {
        compile "org.gradle.integtests.resolve:unique:1.0-SNAPSHOT"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
Back to top