Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for iterations (0.2 sec)

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

    	}
    	authority := ""
    	if in.Headers != nil {
    		operations := istio_route.TranslateHeadersOperations(in.Headers)
    		out.RequestHeadersToAdd = operations.RequestHeadersToAdd
    		out.ResponseHeadersToAdd = operations.ResponseHeadersToAdd
    		out.RequestHeadersToRemove = operations.RequestHeadersToRemove
    		out.ResponseHeadersToRemove = operations.ResponseHeadersToRemove
    		authority = operations.Authority
    	}
    
    	if in.Redirect != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    ## Cluster Replication Metrics
    
    Metrics marked as ``Site Replication Only`` only populate on deployments with [Site Replication](https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-site-replication.html) configurations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  3. pkg/config/constants/constants.go

    	UnspecifiedIP = "0.0.0.0"
    	// UnspecifiedIPv6 constant for empty IPv6 address
    	UnspecifiedIPv6 = "::"
    
    	// PilotWellKnownDNSCertPath is the path location for Pilot dns serving cert, often used with custom CA integrations
    	PilotWellKnownDNSCertPath   = "./var/run/secrets/istiod/tls/"
    	PilotWellKnownDNSCaCertPath = "./var/run/secrets/istiod/ca/"
    
    	DefaultPilotTLSCert                = PilotWellKnownDNSCertPath + "tls.crt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	EnableEnvoyFilterMetrics = env.Register("PILOT_ENVOY_FILTER_STATS", false,
    		"If true, Pilot will collect metrics for envoy filter operations.").Get()
    
    	EnableRouteCollapse = env.Register("PILOT_ENABLE_ROUTE_COLLAPSE_OPTIMIZATION", true,
    		"If true, Pilot will merge virtual hosts with the same routes into a single virtual host, as an optimization.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    		cachedCluster := cb.cache.Get(&clusterKey)
    		if cachedCluster == nil {
    			allFound = false
    		}
    		res = append(res, cachedCluster)
    	}
    	return res, allFound
    }
    
    // build does any final build operations needed, like marshaling etc.
    func (mc *clusterWrapper) build() *cluster.Cluster {
    	if mc == nil {
    		return nil
    	}
    	// Marshall Http Protocol options if they exist.
    	if mc.httpProtocolOptions != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. cmd/object-multipart-handlers.go

    			if err = setEncryptionMetadata(r, bucket, object, encMetadata); err != nil {
    				writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    				return
    			}
    		}
    		// Set this for multipart only operations, we need to differentiate during
    		// decryption if the file was actually multipart or not.
    		encMetadata[ReservedMetadataPrefix+"Encrypted-Multipart"] = ""
    	}
    
    	// Extract metadata that needs to be saved.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
Back to top