Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 125 for Mathis (0.21 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/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)
  4. 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)
  5. 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)
  6. pkg/util/smallset/smallset.go

    	return f
    }
    
    // Len returns the number of elements in this Set.
    func (s Set[T]) Len() int {
    	return len(s.items)
    }
    
    // IsEmpty indicates whether the set is the empty set.
    func (s Set[T]) IsEmpty() bool {
    	return len(s.items) == 0
    }
    
    // IsNil indicates whether the set is nil. This is different from an empty set.
    // 'var smallset.Set': nil
    // smallset.New(): nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/settings.go

    	// os.TempDir() will be used.
    	BaseDir string
    
    	// The number of times to retry failed tests.
    	// This should not be depended on as a primary means for reducing test flakes.
    	Retries int
    
    	// If enabled, namespaces will be reused rather than created with dynamic names each time.
    	// This is useful when combined with NoCleanup, to allow quickly iterating on tests.
    	StableNamespaces bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry.go

    	// its class and protocol. This is protected by mu.
    	// Currently, this only applies to metrics, but a similar concept can likely be applied to logging and
    	// tracing for performance.
    	// The computedMetricsFilters lifetime is bound to the Telemetries object. During a push context
    	// creation, we will preserve the Telemetries (and thus the cache) if not Telemetries are modified.
    	// As result, this cache will live until any Telemetry is modified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. pkg/wasm/convert.go

    			}
    		} else {
    			// This is not a Wasm filter.
    			wasmLog.Debugf("typed extension config %+v does not contain wasm http filter", typedStruct)
    			return nil, nil, nil, nil
    		}
    	default:
    		// This is not a Wasm filter.
    		wasmLog.Debugf("cannot find typed config or typed struct in %+v", ec)
    		return nil, nil, nil, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    					errs = appendErrors(errs, security.CheckEmptyValues("Ports", op.Ports))
    					errs = appendErrors(errs, security.CheckEmptyValues("Methods", op.Methods))
    					errs = appendErrors(errs, security.CheckEmptyValues("Paths", op.Paths))
    					errs = appendErrors(errs, security.CheckEmptyValues("Hosts", op.Hosts))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotPorts", op.NotPorts))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top