Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 349 for Mathis (0.29 sec)

  1. pkg/xds/monitoring.go

    		"Total number of XDS requests with an expired nonce.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	cdsReject = monitoring.NewGauge(
    		"pilot_xds_cds_reject",
    		"Pilot rejected CDS configs.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	edsReject = monitoring.NewGauge(
    		"pilot_xds_eds_reject",
    		"Pilot rejected EDS.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		// In theory, this should never happen, unless we decide a number was a bad idea in the future.
    		return cur, false, false
    	}
    	if curNum > ControllerVersion {
    		// A newer version owns this gateway, let them handle it
    		return cur, false, false
    	}
    	if curNum == ControllerVersion {
    		// We already manage this at this version
    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. pilot/pkg/status/distribution/reporter.go

    				// if this resource is done reconciling, let's not worry about it anymore
    				finishedResources = append(finishedResources, res)
    				// deleting it here doesn't work because we have a read lock and are inside an iterator.
    				// TODO: this will leak when a resource never reaches 100% before it is replaced.
    				// TODO: do deletes propagate through this thing?
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/workload.go

    	Addresses() []string
    
    	// Sidecar if one was specified.
    	Sidecar() Sidecar
    
    	// Cluster where this Workload resides.
    	Cluster() cluster.Cluster
    
    	// ForwardEcho executes specific call from this workload.
    	// TODO(nmittler): Instead of this, we should just make Workload implement Caller.
    	ForwardEcho(context.Context, *proto.ForwardEchoRequest) (echo.Responses, error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute.go

    	if err != nil && routeName != model.RDSHttpProxy && !strings.HasPrefix(routeName, model.UnixAddressPrefix) {
    		// TODO: This is potentially one place where envoyFilter ADD operation can be helpful if the
    		// user wants to ship a custom RDS. But at this point, the match semantics are murky. We have no
    		// object to match upon. This needs more thought. For now, we will continue to return nil for
    		// unknown routes
    		return nil, false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    		// Multi-network is not configured (this is the case by default). Just access all endpoints directly.
    		return endpoints
    	}
    
    	// A new array of endpoints to be returned that will have both local and
    	// remote gateways (if any)
    	filtered := make([]*LocalityEndpoints, 0)
    
    	// Scale all weights by the lcm of gateways per network and gateways per cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/kube/kubetypes/types.go

    	// This is a *server side* filter.
    	LabelSelector string
    	// A selector to restrict the list of returned objects by their fields.
    	// This is a *server side* filter.
    	FieldSelector string
    	// Namespace to watch.
    	// This is a *server side* filter.
    	Namespace string
    	// ObjectFilter allows arbitrary filtering logic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/convert.go

    		if tlsContext == nil {
    			return "", nil
    		}
    		if !isH2 {
    			tlsContext.CommonTlsContext.AlpnProtocols = nil
    		}
    		// This double conversion is to encode the typed config and get it out as struct
    		// so that convertToJSON properly encodes the structure. Since this is just for
    		// bootstrap generation this is better than having our custom structs.
    		tlsContextStruct, _ := conversion.MessageToStruct(protoconv.MessageToAny(tlsContext))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/test/util/yml/parts.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top