Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 222 for redirection (0.59 sec)

  1. 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)
  2. 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)
  3. src/net/http/client.go

    	switch resp.StatusCode {
    	case 301, 302, 303:
    		redirectMethod = reqMethod
    		shouldRedirect = true
    		includeBody = false
    
    		// RFC 2616 allowed automatic redirection only with GET and
    		// HEAD requests. RFC 7231 lifts this restriction, but we still
    		// restrict other methods to GET to maintain compatibility.
    		// See Issue 18570.
    		if reqMethod != "GET" && reqMethod != "HEAD" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. cmd/testdata/xl-meta-merge.zip

    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. The LB/Proxy...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

          ENUM_ENTRY name:WEST
            init: EXPRESSION_BODY
              ENUM_CONSTRUCTOR_CALL 'private constructor <init> () [primary] declared in <root>.Direction'
          ENUM_ENTRY name:EAST
            init: EXPRESSION_BODY
              ENUM_CONSTRUCTOR_CALL 'private constructor <init> () [primary] declared in <root>.Direction'
          CONSTRUCTOR visibility:private <> () returnType:<root>.Direction [primary]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.cc

    }
    
    // Helper for GetNodesRelatedToRefVariables that traverses the graph in one
    // direction.
    Status GetNodesRelatedToRefVariablesInDirection(
        const Graph& graph, FunctionLibraryRuntime* lib_runtime,
        Direction direction, int depth, absl::flat_hash_set<Node*>* result) {
      std::vector<Node*> nodes_in_order;
      if (direction == Direction::kForward) {
        GetReversePostOrder(graph, &nodes_in_order,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      }
    
      function renderGroup(depth, xscale, x, y, g, direction) {
        // Skip if not wide enough.
        const width = groupWidth(xscale, g);
        if (width < MIN_WIDTH) return;
    
        // Draw the box for g.src (except for selected element in upwards direction
        // since that duplicates the box we added in downwards direction).
        if (depth != 0 || direction > 0) {
          const box = {
            x:      x,
            y:      y,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    					},
    				}
    			}
    		}
    	}
    
    	ec := newClusterWrapper(c)
    	cb.setUpstreamProtocol(ec, port)
    	addTelemetryMetadata(c, port, service, direction, inboundServices)
    	if direction == model.TrafficDirectionOutbound {
    		// If stat name is configured, build the alternate stats name.
    		if len(cb.req.Push.Mesh.OutboundClusterStatName) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/service_test.go

    			d, s, h, p := ParseSubsetKey(tt.input)
    			if d != tt.direction {
    				t.Errorf("Expected direction %v got %v", tt.direction, d)
    			}
    			if s != tt.subsetName {
    				t.Errorf("Expected subset %v got %v", tt.subsetName, s)
    			}
    			if h != tt.hostname {
    				t.Errorf("Expected hostname %v got %v", tt.hostname, h)
    			}
    			if p != tt.port {
    				t.Errorf("Expected direction %v got %v", tt.port, p)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/proxyconfig.go

    	clusterConfigCmd.PersistentFlags().StringVar(&fqdn, "fqdn", "", "Filter clusters by substring of Service FQDN field")
    	clusterConfigCmd.PersistentFlags().StringVar(&direction, "direction", "", "Filter clusters by Direction field")
    	clusterConfigCmd.PersistentFlags().StringVar(&subset, "subset", "", "Filter clusters by substring of Subset field")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top