Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 524 for unbound (0.25 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// used for PersistentVolumes that are not yet bound
    	// Available volumes are held by the binder and matched to PersistentVolumeClaims
    	VolumeAvailable PersistentVolumePhase = "Available"
    	// used for PersistentVolumes that are bound
    	VolumeBound PersistentVolumePhase = "Bound"
    	// used for PersistentVolumes where the bound PersistentVolumeClaim was deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/GeneralRange.java

        T lbound = uncheckedCastNullableTToT(getLowerEndpoint());
        int cmp = comparator.compare(t, lbound);
        return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN);
      }
    
      boolean tooHigh(@ParametricNullness T t) {
        if (!hasUpperBound()) {
          return false;
        }
        // The cast is safe because of the hasUpperBound() check.
        T ubound = uncheckedCastNullableTToT(getUpperEndpoint());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    // which can be called for both outbound and inbound cluster, but only connection pool will be applied to inbound cluster.
    func (cb *ClusterBuilder) applyTrafficPolicy(opts buildClusterOpts) {
    	connectionPool, outlierDetection, loadBalancer, tls, proxyProtocol := selectTrafficPolicyComponents(opts.policy)
    	// Connection pool settings are applicable for both inbound and outbound clusters.
    	if connectionPool == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. pilot/test/xdstest/validate.go

    	check := map[string]int{}
    	for i1, l1 := range l.FilterChains {
    		// We still create virtual inbound listeners before merging into single inbound
    		// This hack skips these ones, as they will be processed later
    		if hcm := ExtractHTTPConnectionManager(t, l1); strings.HasPrefix(hcm.GetStatPrefix(), "inbound_") && l.Name != "virtualInbound" {
    			continue
    		}
    
    		s := Dump(t, l1.FilterChainMatch)
    		if i2, ok := check[s]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/inbound-ports-tproxy.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. tools/istio-clean-iptables/pkg/cmd/testdata/inbound-interception-mode.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/service_test.go

    }
    
    func TestIsValidSubsetKey(t *testing.T) {
    	cases := []struct {
    		subsetkey string
    		expectErr bool
    	}{
    		{
    			subsetkey: "outbound|80|subset|hostname",
    			expectErr: false,
    		},
    		{
    			subsetkey: "outbound|80||hostname",
    			expectErr: false,
    		},
    		{
    			subsetkey: "outbound|80|subset||hostname",
    			expectErr: true,
    		},
    		{
    			subsetkey: "",
    			expectErr: true,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    	}
    
    	return listeners
    }
    
    // inboundVirtualListener builds the virtual inbound listener.
    func (lb *ListenerBuilder) inboundVirtualListener(chains []*listener.FilterChain) *listener.Listener {
    	actualWildcards, _ := getWildcardsAndLocalHost(lb.node.GetIPMode())
    
    	// Build the "virtual" inbound listener. This will capture all inbound redirected traffic and contains:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // VolumeAttributesClass. This field is mutable and can be changed by the CSI driver
      // after a volume has been updated successfully to a new class.
      // For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound
      // PersistentVolumeClaims during the binding process.
      // This is an alpha field and requires enabling VolumeAttributesClass feature.
      // +featureGate=VolumeAttributesClass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    cluster/agent                                                       cluster/agent                         -        -          -               STATIC     
    cluster/inbound-vip|8000|http|httpbin.default.svc.cluster.local     httpbin.default.svc.cluster.local     8000     http       inbound-vip     EDS        
    cluster/prometheus_stats                                            cluster/prometheus_stats              -        -          -               STATIC     
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top