Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 146 for 900s (0.07 sec)

  1. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	// to create or update an EndpointSlice could trigger a retry. With the
    	// current rate-limiter in use (1s*2^(numRetries-1)) up to a max of 100s.
    	// The following numbers represent the sequence of delays between successive
    	// queuings of an Endpoints resource.
    	//
    	// 1s, 2s, 4s, 8s, 16s, 32s, 64s, 100s (max)
    	maxRetries = 15
    
    	// defaultSyncBackOff is the default backoff period for syncEndpoints calls.
    	defaultSyncBackOff = 1 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/crypto/tls/quic_test.go

    		t.Fatalf("error during first connection handshake: %v", err)
    	}
    }
    
    func TestQUICPostHandshakeClientAuthentication(t *testing.T) {
    	// RFC 9001, Section 4.4.
    	config := testConfig.Clone()
    	config.MinVersion = VersionTLS13
    	cli := newTestQUICClient(t, config)
    	cli.conn.SetTransportParameters(nil)
    	srv := newTestQUICServer(t, config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/main_test.go

    				WorkloadPort: 8092,
    			},
    			{
    				Name:         tcpMTLS,
    				Protocol:     protocol.TCP,
    				ServicePort:  8093,
    				WorkloadPort: 8093,
    			},
    			{
    				Name:         tcpWL,
    				WorkloadPort: 9000,
    				Protocol:     protocol.TCP,
    			},
    		},
    	}
    
    	customConfig = append(customConfig, clientConfig, serverNakedFooConfig, serverNakedBarConfig,
    		serverNakedFooAltConfig, serverConfig)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/filters.go

    	return match.Not(excluded)
    }
    
    // reachableNakedDestinations filters out naked instances that aren't on the same network.
    // While External services are considered "naked", we won't see 500s due to different loadbalancing.
    func reachableNakedDestinations(from echo.Instance) match.Matcher {
    	srcNw := from.Config().Cluster.NetworkName()
    	excluded := match.And(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

        public StorageClient storageClient;
    
        private GenericContainer minioServer;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
    
            final int port = 9000;
            logger.info("Creating {}", IMAGE_NAME);
            minioServer = new GenericContainer<>(IMAGE_NAME)//
                    .withEnv("MINIO_ACCESS_KEY", ACCESS_KEY)//
                    .withEnv("MINIO_SECRET_KEY", SECRET_KEY)//
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. samples/extauthz/cmd/extauthz/main.go

    		"allowed service account, matched against the service account in the source principal from the client certificate")
    	httpPort = flag.String("http", "8000", "HTTP server port")
    	grpcPort = flag.String("grpc", "9000", "gRPC server port")
    	denyBody = fmt.Sprintf("denied by ext_authz for not found header `%s: %s` in the request", checkHeader, allowedValue)
    )
    
    type (
    	extAuthzServerV2 struct{}
    	extAuthzServerV3 struct{}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/extauthz.go

    						Prefix: extAuthzMatchPrefix,
    					},
    				},
    			},
    		},
    	}
    }
    
    func timeoutOrDefault(t *durationpb.Duration) *durationpb.Duration {
    	if t == nil {
    		// Default timeout is 600s.
    		return &durationpb.Duration{Seconds: 600}
    	}
    	return t
    }
    
    func withBodyRequest(config *meshconfig.MeshConfig_ExtensionProvider_EnvoyExternalAuthorizationRequestBody) *extauthzhttp.BufferSettings {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/net/lookup_windows_test.go

    			// original error code and we cannot check for it here. However, we can at
    			// least use its error string to identify the correct localized text for
    			// the error to skip.
    			var DNS_ERROR_RCODE_SERVER_FAILURE syscall.Errno = 9002
    			if strings.HasSuffix(err.Error(), DNS_ERROR_RCODE_SERVER_FAILURE.Error()) {
    				testenv.SkipFlaky(t, 38111)
    			}
    			t.Errorf("failed %s: %s", addr, err)
    		}
    		if len(names) == 0 {
    			t.Errorf("no results")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top