Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for _rds (0.09 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. 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)
  4. pkg/adsc/delta_test.go

    					ConfigType: &listener.Filter_TypedConfig{
    						TypedConfig: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								Rds: &hcm.Rds{
    									RouteConfigName: "test-rds-config",
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    	if err := wait.PollImmediateUntil(time.Second, func() (bool, error) {
    		crds, err := c.crdLister.List(labels.Everything())
    		if err != nil {
    			utilruntime.HandleError(fmt.Errorf("failed to initially list CRDs: %v", err))
    			return false, nil
    		}
    		for _, crd := range crds {
    			for _, v := range crd.Spec.Versions {
    				gv := schema.GroupVersion{Group: crd.Spec.Group, Version: v.Name}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/aggregator.go

    		}
    		go func() {
    			// let the CRD controller process the initial set of CRDs before starting the autoregistration controller.
    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    }
    
    // gatewayRDSRouteName generates the RDS route config name for gateway's servers.
    // Unlike sidecars where the RDS route name is the listener port number, gateways have a different
    // structure for RDS.
    // HTTP servers have route name set to http.<portNumber>.
    //
    //	Multiple HTTP servers can exist on the same port and the code will combine all of them into
    //	one single RDS payload for http.<portNumber>
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_builder.go

    	if httpOpts.rds != "" {
    		rds := &hcm.HttpConnectionManager_Rds{
    			Rds: &hcm.Rds{
    				ConfigSource: &core.ConfigSource{
    					ConfigSourceSpecifier: &core.ConfigSource_Ads{
    						Ads: &core.AggregatedConfigSource{},
    					},
    					InitialFetchTimeout: durationpb.New(0),
    					ResourceApiVersion:  core.ApiVersion_V3,
    				},
    				RouteConfigName: httpOpts.rds,
    			},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. misc/wasm/wasm_exec.js

    					this.mem.setFloat64(addr, 0, true);
    					return;
    				}
    
    				let id = this._ids.get(v);
    				if (id === undefined) {
    					id = this._idPool.pop();
    					if (id === undefined) {
    						id = this._values.length;
    					}
    					this._values[id] = v;
    					this._goRefCounts[id] = 0;
    					this._ids.set(v, id);
    				}
    				this._goRefCounts[id]++;
    				let typeFlag = 0;
    				switch (typeof v) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/wait.go

    	defaultWaitResourceTimeout = 300 * time.Second
    	// cRDPollInterval is how often the state of CRDs is polled when waiting for their creation.
    	cRDPollInterval = 500 * time.Millisecond
    	// cRDPollTimeout is the maximum wait time for all CRDs to be created.
    	cRDPollTimeout = 60 * time.Second
    )
    
    // deployment holds associated replicaSets for a deployment
    type deployment struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top