Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 442 for redirection (0.17 sec)

  1. pkg/config/constants/constants.go

    	// AmbientRedirection specifies whether a pod has ambient redirection (to ztunnel) configured.
    	AmbientRedirection = "ambient.istio.io/redirection"
    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    ## Redirection
    
    As ztunnel aims to transparently encrypt and route users traffic, we need a mechanism to capture all traffic entering and leaving "mesh" pods.
    This is a security critical task: if the ztunnel can be bypassed, authorization policies can be bypassed.
    
    Redirection must meet these requirements:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

             * If the Ivy file contains a marker telling that Gradle metadata exists
             * for this component, Gradle will <i>also</i> look for the Gradle metadata
             * file. Gradle module metadata redirection will not happen if {@code ignoreGradleMetadataRedirection()} has been used.
             */
            void ivyDescriptor();
    
            /**
             * Indicates that this repository may not contain metadata files,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. docs/sts/web-identity.md

    MINIO_IDENTITY_OPENID_SCOPES="openid,groups"
    MINIO_IDENTITY_OPENID_REDIRECT_URI="http://127.0.0.1:10000/oauth_callback"
    MINIO_IDENTITY_OPENID_CLAIM_NAME="groups"
    ```
    </details>
    
    ### Redirection from OpenID Provider
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. cni/README.md

    The ambient CNI agent is the only place where ambient network config and pod redirection machinery happens.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "can resolve unique and non-unique snapshots using Gradle Module Metadata (redirection = #redirection, metadata sources=#metadataSources)"() {
            given:
            buildFile << """
    repositories.clear()
    repositories {
        maven {
          url "${mavenHttpRepo.uri}"
          metadataSources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    	}{
    		{
    			name:                      "reject redirection enabled in proxy, backend server sending 200 response",
    			rejectForwardingRedirects: true,
    			serverStatusCode:          200,
    			expectStatusCode:          200,
    			expectBody:                originalBody,
    		},
    		{
    			name:                      "reject redirection enabled in proxy, backend server sending 301 response",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  8. cni/pkg/repair/repaircontroller.go

    		return fmt.Errorf("get netns: %v", err)
    	}
    	log = log.WithLabels("netns", netns)
    
    	if err := redirectRunningPod(pod, netns); err != nil {
    		log.Errorf("failed to setup redirection: %v", err)
    		m.With(resultLabel.Value(resultFail)).Increment()
    		return err
    	}
    	c.repairedPods[key] = pod.UID
    	log.Infof("pod repaired")
    	m.With(resultLabel.Value(resultSuccess)).Increment()
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. fastapi/openapi/docs.py

        </body>
        </html>
        """
        return HTMLResponse(html)
    
    
    def get_swagger_ui_oauth2_redirect_html() -> HTMLResponse:
        """
        Generate the HTML response with the OAuth2 redirection for Swagger UI.
    
        You normally don't need to use or change this.
        """
        # copied from https://github.com/swagger-api/swagger-ui/blob/v4.14.0/dist/oauth2-redirect.html
        html = """
        <!doctype html>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run.go

    	// Create a new chain for redirecting outbound traffic to the common Envoy port.
    	// In both chains, '-j RETURN' bypasses Envoy and '-j ISTIOREDIRECT'
    	// redirects to Envoy.
    	cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand,
    		constants.ISTIOREDIRECT, constants.NAT, "-p", constants.TCP, "-j", constants.REDIRECT, "--to-ports", cfg.cfg.ProxyPort)
    
    	// Use this chain also for redirecting inbound traffic to the common Envoy port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top