Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for debounceC (0.11 sec)

  1. pilot/pkg/xds/bench_test.go

    				},
    			},
    		},
    	})
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		Configs:                configs,
    		KubernetesObjectString: k8sConfig,
    		// Allow debounce to avoid overwhelming with writes
    		DebounceTime:               time.Millisecond * 10,
    		DisableSecretAuthorization: true,
    		MeshConfig:                 m,
    	})
    
    	return s, proxy
    }
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	// RemoveShard removes all endpoints for the given shard key
    	RemoveShard(shardKey ShardKey)
    }
    
    // PushRequest defines a request to push to proxies
    // It is used to send updates to the config update debouncer and pass to the PushQueue.
    type PushRequest struct {
    	// Full determines whether a full push is required or not. If false, an incremental update will be sent.
    	// Incremental pushes:
    	// * Do not recompute the push context
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    	caserver "istio.io/istio/security/pkg/server/ca"
    	"istio.io/istio/security/pkg/server/ca/authenticate"
    	"istio.io/istio/security/pkg/server/ca/authenticate/kubeauth"
    )
    
    const (
    	// debounce file watcher events to minimize noise in logs
    	watchDebounceDelay = 100 * time.Millisecond
    )
    
    func init() {
    	// Disable gRPC tracing. It has performance impacts (See https://github.com/grpc/grpc-go/issues/695)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top