Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for _rds (0.07 sec)

  1. pkg/adsc/adsc_test.go

    			}
    			if rds := readFile(base+"_rds.json", t); rds != tt.expectedJSON["_rds"] {
    				t.Errorf("AdscSave() => %s expected rds %s", rds, tt.expectedJSON["_rds"])
    			}
    			if ecds := readFile(base+"_ecds.json", t); ecds != tt.expectedJSON["_ecds"] {
    				t.Errorf("AdscSave() => %s expected ecds %s", ecds, tt.expectedJSON["_ecds"])
    			}
    			if cds := readFile(base+"_cds.json", t); cds != tt.expectedJSON["_cds"] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. pkg/adsc/adsc.go

    			}
    		}
    		rds[r.Name] = r
    		size += proto.Size(r)
    	}
    	if a.initialLoad == 0 {
    		a.initialLoad = time.Since(a.watchTime)
    		adscLog.Infof("RDS: %d size=%d vhosts=%d routes=%d time=%d", len(configurations), size, vh, rcount, a.initialLoad)
    	} else {
    		adscLog.Infof("RDS: %d size=%d vhosts=%d routes=%d", len(configurations), size, vh, rcount)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. manifests/charts/base/templates/crds.yaml

    {{- if .Values.base.enableCRDTemplates }}
    {{ .Files.Get "crds/crd-all.gen.yaml" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 04:16:48 UTC 2023
    - 94 bytes
    - Viewed (0)
  4. pilot/pkg/xds/rds.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    type RdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    var _ model.XdsResourceGenerator = &RdsGenerator{}
    
    // Map of all configs that do not impact RDS
    var skippedRdsConfigs = sets.New[kind.Kind](
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.Secret,
    	kind.WasmPlugin,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/rds.go

    Zhonghu Xu <******@****.***> 1711645742 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/pilot/status.go

    	configs := handleAndGetXdsConfigs(clientConfig)
    	for _, config := range configs {
    		cfgType := config.GetTypeUrl()
    		switch cfgType {
    		case xdsresource.ListenerType:
    			lds = formatStatus(config)
    		case xdsresource.ClusterType:
    			cds = formatStatus(config)
    		case xdsresource.RouteType:
    			rds = formatStatus(config)
    		case xdsresource.EndpointType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier_test.go

    	tests := map[string]struct {
    		crds             []schema.GroupKind      // CRDFinder returns these CRD's
    		gvk              schema.GroupVersionKind // GVK whose OpenAPI spec is checked
    		queryParam       VerifiableQueryParam    // Usually "fieldValidation"
    		expectedSupports bool
    	}{
    		"Field validation query param is supported for batch/v1/Job, primary verifier": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 18:30:16 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    	tests := map[string]struct {
    		crds             []schema.GroupKind      // CRDFinder returns these CRD's
    		gvk              schema.GroupVersionKind // GVK whose OpenAPI V3 spec is checked
    		queryParam       VerifiableQueryParam    // Usually "fieldValidation"
    		expectedSupports bool
    	}{
    		"Field validation query param is supported for batch/v1/Job": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. pkg/kube/kclient/crdwatcher.go

    	c.mutex.Unlock()
    	kube.WaitForCacheSync("crd watcher", stop, c.crds.HasSynced)
    	c.queue.Run(stop)
    	c.crds.ShutdownHandlers()
    }
    
    // WaitForCRD waits until the request CRD exists, and returns true on success. A false return value
    // indicates the CRD does not exist but the wait failed or was canceled.
    // This is useful to conditionally enable controllers based on CRDs being created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    	for _, s := range crdSpecs {
    		// merge specs without checking conflicts, since the naming controller prevents
    		// conflicts between user-defined CRDs
    		mergeSpec(crdSpec, s)
    	}
    
    	// The static spec has the highest priority. Resolve conflicts to prevent user-defined
    	// CRDs potentially overlapping the built-in apiextensions API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top