Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for applyTo (0.18 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    					RouteMatched:   "route1",
    					ClusterMatched: "outbound|80||concrete.default.svc.cluster.local",
    				},
    			},
    			{
    				// Host is opaque, so no expansion
    				Name: "HTTP virtual service does not apply to alias without exact match",
    				Call: simulation.Call{Address: "1.2.3.4", Port: 80, Protocol: simulation.HTTP, HostHeader: "alias.default", Path: "/one"},
    				Result: simulation.Result{
    					RouteMatched:   "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. CREDITS

          of your accepting any such warranty or additional liability.
    
       END OF TERMS AND CONDITIONS
    
       APPENDIX: How to apply the Apache License to your work.
    
          To apply the Apache License to your work, attach the following
          boilerplate notice, with the fields enclosed by brackets "[]"
          replaced with your own identifying information. (Don't include
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    	}
    
    	// Check if bucket encryption is enabled
    	sseConfig, _ := globalBucketSSEConfigSys.Get(bucket)
    	sseConfig.Apply(r.Header, sse.ApplyOptions{
    		AutoEncrypt: globalAutoEncryption,
    	})
    
    	var buf *bytebufferpool.ByteBuffer
    	// Disable cache for encrypted objects - headers are applied with sseConfig.Apply if auto encrypted.
    	if globalCacheConfig.MatchesSize(size) && !crypto.Requested(r.Header) {
    		buf = bytebufferpool.Get()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster.go

    	isDrWithSelector bool
    }
    
    func applyTCPKeepalive(mesh *meshconfig.MeshConfig, c *cluster.Cluster, tcp *networking.ConnectionPoolSettings_TCPSettings) {
    	// Apply mesh wide TCP keepalive if available.
    	setKeepAliveSettings(c, mesh.TcpKeepalive)
    
    	// Apply/Override individual attributes with DestinationRule TCP keepalive if set.
    	if tcp != nil {
    		setKeepAliveSettings(c, tcp.TcpKeepalive)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. cmd/object-api-options.go

    	// Objects matching prefixes should not leave delete markers,
    	// dramatically reduces namespace pollution while keeping the
    	// benefits of replication, make sure to apply version suspension
    	// only at bucket level instead.
    	opts.VersionSuspended = globalBucketVersioningSys.Suspended(bucket)
    	// For directory objects, delete `null` version permanently.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	meshCfg *MeshConfig,
    	workloadLabels map[string]string,
    	workloadNamespace string,
    ) []string {
    	// We need to filter from the policies that are present, which apply to us.
    	// We only want label selector ones; global ones are not attached to the final WorkloadInfo
    	// In general we just take all of the policies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pilot/pkg/simulation/traffic.go

    	if !hasTLSInspector {
    		// Without tls inspector, Envoy would not read the ALPN in the TLS handshake
    		// HTTP inspector still may set it though
    		input.Alpn = ""
    	}
    
    	// Apply listener filters
    	if hasFilterOnPort(l, xdsfilters.HTTPInspector.Name, input.Port) {
    		if alpn := protocolToAlpn(input.Protocol); alpn != "" && input.TLS == Plaintext {
    			input.Alpn = alpn
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server_test.go

    	g.Eventually(func() bool {
    		return checkCert(t, s, testcerts.RotatedCert, testcerts.RotatedKey)
    	}, "10s", "100ms").Should(BeTrue())
    }
    
    func TestNewServer(t *testing.T) {
    	// All of the settings to apply and verify. Currently just testing domain suffix,
    	// but we should expand this list.
    	cases := []struct {
    		name             string
    		domain           string
    		expectedDomain   string
    		enableSecureGRPC bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    		internalStop:            make(chan struct{}),
    		istiodCertBundleWatcher: keycertbundle.NewWatcher(),
    		webhookInfo:             &webhookInfo{},
    	}
    	s.workloadTrustBundle = tb.NewTrustBundle(nil, e.Watcher)
    
    	// Apply custom initialization functions.
    	for _, fn := range initFuncs {
    		fn(s)
    	}
    	// Initialize workload Trust Bundle before XDS Server
    	e.TrustBundle = s.workloadTrustBundle
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    	HTTP3AdvertisingRoutes sets.String
    
    	// GatewayNameForServer maps from server to the owning gateway name.
    	// Used for select the set of virtual services that apply to a port.
    	GatewayNameForServer map[*networking.Server]string
    
    	// ServersByRouteName maps from port names to virtual hosts
    	// Used for RDS. No two port names share same port except for HTTPS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top