Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 147 for redirection (0.21 sec)

  1. src/cmd/compile/internal/types2/unify.go

    			return u.nify(x.key, y.key, emode, p) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Chan:
    		// Two channel types unify if their value types unify
    		// and if they have the same direction.
    		// The channel direction is ignored for inexact unification.
    		if y, ok := y.(*Chan); ok {
    			return (mode&exact == 0 || x.dir == y.dir) && u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Named:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

        : public impl::MoveTransposesPassBase<MoveTransposesPass> {
     public:
      MoveTransposesPass() = default;
      explicit MoveTransposesPass(MoveTransposeDirection direction,
                                  bool fold_transpose_in_ops) {
        this->direction_ = direction;
        this->fold_transpose_in_ops_ = fold_transpose_in_ops;
      }
      MoveTransposesPass(const MoveTransposesPass& pass) {}
    
      void runOnOperation() final;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if connectionPool == nil {
    		connectionPool = &networking.ConnectionPoolSettings{}
    	}
    	cb.applyConnectionPool(opts.mesh, opts.mutable, connectionPool)
    	if opts.direction != model.TrafficDirectionInbound {
    		cb.applyH2Upgrade(opts.mutable, opts.port, opts.mesh, connectionPool)
    		applyOutlierDetection(opts.mutable.cluster, outlierDetection)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

    import org.codelibs.fess.es.config.bsentity.BsWebConfig;
    import org.codelibs.fess.es.config.exentity.CrawlingConfig.Param.Client;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.ParameterUtil;
    
    /**
     * @author FreeGen
     */
    public class WebConfig extends BsWebConfig implements CrawlingConfig {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    		return catchAllDr
    	}
    	return nil
    }
    
    // DestinationRuleConfig returns merged destination rules for a svc.
    func (sc *SidecarScope) DestinationRuleConfig(direction TrafficDirection, proxy *Proxy, svc host.Name) *config.Config {
    	cdr := sc.DestinationRule(direction, proxy, svc)
    	if cdr == nil {
    		return nil
    	}
    	return cdr.rule
    }
    
    // Services returns the list of services that are visible to a sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/sha3.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sha3
    
    // spongeDirection indicates the direction bytes are flowing through the sponge.
    type spongeDirection int
    
    const (
    	// spongeAbsorbing indicates that the sponge is absorbing input.
    	spongeAbsorbing spongeDirection = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/model/proxy.go

    	// Used by envoy filters
    	StsPort string `json:"STS_PORT,omitempty"`
    
    	// Envoy status port redirecting to agent status port.
    	EnvoyStatusPort int `json:"ENVOY_STATUS_PORT,omitempty"`
    
    	// Envoy prometheus port redirecting to admin port prometheus endpoint.
    	EnvoyPrometheusPort int `json:"ENVOY_PROMETHEUS_PORT,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

            return new HttpClientResponse(request.getMethod(), effectiveUri, response);
        }
    
        /**
         * Validates that no redirect used an insecure protocol.
         * Redirecting through an insecure protocol can allow for a MITM redirect to an attacker controlled HTTPS server.
         */
        private void validateRedirectChain(HttpContext httpContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

            requestBuilder.removeHeader("Transfer-Encoding")
            requestBuilder.removeHeader("Content-Length")
            requestBuilder.removeHeader("Content-Type")
          }
        }
    
        // When redirecting across hosts, drop all authentication headers. This
        // is potentially annoying to the application layer since they have no
        // way to retain them.
        if (!userResponse.request.url.canReuseConnectionFor(url)) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2/types.go

    	MinChangePolicySelect ScalingPolicySelect = "Min"
    	// DisabledPolicySelect disables the scaling in this direction.
    	DisabledPolicySelect ScalingPolicySelect = "Disabled"
    )
    
    // HPAScalingRules configures the scaling behavior for one direction.
    // These Rules are applied after calculating DesiredReplicas from metrics for the HPA.
    // They can limit the scaling velocity by specifying scaling policies.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top