Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 312 for It (0.02 sec)

  1. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // plugin once it lands on a node. This data is returned by the driver
      // after a successful allocation and is opaque to Kubernetes. Driver
      // documentation may explain to users how to interpret this data if needed.
      //
      // Setting this field is optional. It has a maximum size of 32 entries.
      // If null (or empty), it is assumed this allocation will be processed by a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    							checker = checkClustersReached(t.AllClusters(), expectedClusters)
    						} else {
    							// For calls to clusterset.local, we should fail DNS lookup. The clusterset.local host
    							// is only available for a service when it is exported in at least one cluster.
    							checker = checkDNSLookupFailed()
    						}
    						callAndValidate(t, ht, from, to, checker)
    					})
    				})
    			}
    		})
    }
    
    func TestMeshWide(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if connectionPool != nil && connectionPool.Http != nil {
    		override := connectionPool.Http.H2UpgradePolicy
    		// If user wants an upgrade at destination rule/port level that means he is sure that
    		// it is a Http port - upgrade in such case. This is useful incase protocol sniffing is
    		// enabled and user wants to upgrade/preserve http protocol from client.
    		if override == networking.ConnectionPoolSettings_HTTPSettings_UPGRADE {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/cluster/cluster.go

    						isAnnotationMatch = true
    						break
    					}
    				}
    			}
    			if !isAnnotationMatch {
    				continue
    			}
    		}
    		// If we reach here, it means that all include entries are matched.
    		return false
    	}
    	// If we reach here, it means that no include entries are matched.
    	return true
    }
    
    func shouldSkipDeployment(deployment string, config *config2.BugReportConfig) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (1)
  5. pkg/xds/server.go

    	// nolint
    	TypeUrl string
    
    	// ResourceNames tracks the list of resources that are actively watched.
    	// For LDS and CDS, all resources of the TypeUrl type are watched if it is empty.
    	// For endpoints the resource names will have list of clusters and for clusters it is empty.
    	// For Delta Xds, all resources of the TypeUrl that a client has subscribed to.
    	ResourceNames []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. operator/pkg/util/merge_iop.go

    	v1alpha12 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    )
    
    // Partially mirrored from istio/api and operator/pkg/api (for values).
    // Struct tags are required to use k8s strategic merge library. It would be possible
    // to add these to source protos but because the values field is defined as
    // map[string]interface{} here (and similar for MeshConfig in v1alpha1.Values)
    // that alone would not be sufficient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/extensions.go

    	if matcher.ShouldAttachPolicy(gvk.WasmPlugin, p.NamespacedName(), p) {
    		return matchTrafficSelectors(p.Match, li)
    	}
    
    	// If it doesn't match one of the above cases, the plugin is not bound to this workload
    	return false
    }
    
    func (p *WasmPluginWrapper) NamespacedName() types.NamespacedName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    		// Ignore events for MCS services that were triggered by this controller.
    		return
    	}
    
    	// This method is called concurrently from each cluster's queue. Process it in `this` cluster's queue
    	// in order to synchronize event processing.
    	ic.queue.Push(func() error {
    		namespacedName := namespacedNameForService(curr)
    
    		// Lookup the previous MCS service if there was one.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    			validationErrors = append(validationErrors, r...)
    		}
    	}
    	// If it is not a struct nothing to do, returning previously collected validation errors
    	if e.Kind() != reflect.Struct {
    		return validationErrors
    	}
    	for i := 0; i < e.NumField(); i++ {
    		// Corner case of a slice of something, if something is defined type, then process it recursively.
    		if e.Field(i).Kind() == reflect.Slice {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent_test.go

    		}
    	}
    }
    
    func TestAgent(t *testing.T) {
    	test.SetForTest(t, &version.Info.Version, "version")
    
    	wd := t.TempDir()
    	mktemp := t.TempDir
    	// Normally we call leak checker first. Here we call it after TempDir to avoid the (extremely
    	// rare) race condition of a certificate being written at the same time the cleanup occurs, which
    	// causes the test to fail. By checking for the leak first, we ensure all of our activities have
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top