Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 545 for redirection (0.18 sec)

  1. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

      }
    
      @Test
      fun setResponseMockReason() {
        val reasons =
          arrayOf<String?>(
            "Mock Response",
            "Informational",
            "OK",
            "Redirection",
            "Client Error",
            "Server Error",
            "Mock Response",
          )
        for (i in 0..599) {
          val builder = MockResponse.Builder().code(i)
          val expectedReason = reasons[i / 100]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/waypoint.go

    			// choose to do so.
    			//
    			// NOTE: This is a warning and not an error because the user may not intend to label their namespace as ambient.
    			//
    			// e.g. Users are handling ambient redirection per workload rather than at the namespace level.
    			hasWaypoint, err := namespaceHasLabel(kubeClient, ns, constants.AmbientUseWaypointLabel)
    			if err != nil {
    				return err
    			}
    			if enrollNamespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    				"*.org:80": {"*.org"},
    			},
    			expectedHTTPRoutes:    map[string]int{"*.org:80": 1},
    			expectStatefulSession: false,
    		},
    		{
    			name:            "http redirection not working when virtualservice not match http port",
    			virtualServices: []config.Config{virtualServiceHTTPS},
    			gateways:        []config.Config{httpsGateway},
    			routeName:       "https.443.https.gateway-https.default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config.go

    		!c.HasServiceAddressedWaypointProxy() &&
    		!c.HasWorkloadAddressedWaypointProxy() &&
    		!c.ZTunnelCaptured() &&
    		!c.DualStack
    }
    
    // WaypointClient means the client supports HBONE and does zTunnel redirection.
    // Currently, only zTunnel captured sources do this. Eventually this might be enabled
    // for ingress and/or sidecars.
    func (c Config) WaypointClient() bool {
    	return c.ZTunnelCaptured() && !c.IsUncaptured()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // GTEST_OS_LINUX && !defined(__ia64__)
    
    #endif  // GTEST_HAS_CLONE
    
    // Determines whether to support stream redirection. This is used to test
    // output correctness and to implement death tests.
    #ifndef GTEST_HAS_STREAM_REDIRECTION
    // By default, we assume that stream redirection is supported on all
    // platforms except known mobile ones.
    # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. README.md

    requests to the configured server port (i.e. `127.0.0.1:9000`) to the configured Console port. MinIO uses the hostname or IP address specified in the request when building the redirect URL. The URL and port *must* be accessible by the client for the redirection to work.
    
    For deployments behind a load balancer, proxy, or ingress rule where the MinIO host IP address or port is not public, use the `MINIO_BROWSER_REDIRECT_URL` environment variable to specify the external hostname for the redirect....
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // GTEST_OS_LINUX && !defined(__ia64__)
    
    #endif  // GTEST_HAS_CLONE
    
    // Determines whether to support stream redirection. This is used to test
    // output correctness and to implement death tests.
    #ifndef GTEST_HAS_STREAM_REDIRECTION
    // By default, we assume that stream redirection is supported on all
    // platforms except known mobile ones.
    # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            }
    
            where:
            config           | scope
            "api"            | "compile"
            "implementation" | "runtime"
    
        }
    
        def "publishes Gradle metadata redirection marker when Gradle metadata task is enabled (enabled=#enabled)"() {
            given:
            createBuildScripts("""
                publishing {
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	if _, ok := gw.Labels[constants.DataplaneModeLabel]; ok {
    		hasAmbientLabel = true
    	}
    	if _, ok := input.InfrastructureLabels[constants.DataplaneModeLabel]; ok {
    		hasAmbientLabel = true
    	}
    	// If no ambient redirection label is set explicitly, explicitly disable.
    	// TODO this sprays ambient annotations/labels all over EVER gateway resource (serviceaccts, services, etc)
    	if features.EnableAmbientWaypoints && !isWaypointGateway && !hasAmbientLabel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            outputContains "Ivy publication 'java' isn't attached to a component. Gradle metadata only supports publications with software components (e.g. from component.java)"
        }
    
        def "publishes Gradle metadata redirection marker when Gradle metadata task is enabled (enabled=#enabled)"() {
            given:
            createBuildScripts("""
                publishing {
                    publications {
                        ivy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
Back to top