Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for __callback (0.29 sec)

  1. pilot/test/xds/fake.go

    	ConfigTemplateInput any
    	// If provided, this mesh config will be used
    	MeshConfig      *meshconfig.MeshConfig
    	NetworksWatcher mesh.NetworksWatcher
    
    	// Callback to modify the kube client before it is started
    	KubeClientModifier func(c kubelib.Client)
    
    	// Override the default kube client constructor
    	KubeClientBuilder func(objects ...runtime.Object) kubelib.Client
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. pkg/security/security.go

    type SecretManager interface {
    	// GenerateSecret generates new secret for the given resource.
    	//
    	// The current implementation also watched the generated secret and trigger a callback when it is
    	// near expiry. It will constructs the SAN based on the token's 'sub' claim, expected to be in
    	// the K8S format. No other JWTs are currently supported due to client logic. If JWT is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. internal/grid/handlers.go

    	// If the request context is canceled, the stream will no longer process requests.
    	Requests chan<- Req
    }
    
    // Results returns the results from the remote server one by one.
    // If any error is returned by the callback, the stream will be canceled.
    // If the context is canceled, the stream will be canceled.
    func (s *TypedStream[Req, Resp]) Results(next func(resp Resp) error) (err error) {
    	return s.responses.Results(func(b []byte) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      }
    
      // Regression test for a case where we would fail to execute listeners immediately on done futures
      // this would be observable from an afterDone callback
      public void testListenersExecuteImmediately_fromAfterDone() {
        AbstractFuture<String> f =
            new AbstractFuture<String>() {
              @Override
              protected void afterDone() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      }
    
      // Regression test for a case where we would fail to execute listeners immediately on done futures
      // this would be observable from an afterDone callback
      public void testListenersExecuteImmediately_fromAfterDone() {
        AbstractFuture<String> f =
            new AbstractFuture<String>() {
              @Override
              protected void afterDone() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    		return nil
    	})
    
    	// MeshConfig: Add initial roots
    	err = s.workloadTrustBundle.AddMeshConfigUpdate(s.environment.Mesh())
    	if err != nil {
    		return err
    	}
    
    	// MeshConfig:Add callback for mesh config update
    	s.environment.AddMeshHandler(func() {
    		_ = s.workloadTrustBundle.AddMeshConfigUpdate(s.environment.Mesh())
    	})
    
    	err = s.addIstioCAToTrustBundle(args)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    	// Because this is mutate in the route generation, parentInfo must be passed as a pointer
    	AttachedRoutes int32
    	// ReportAttachedRoutes is a callback that should be triggered once all AttachedRoutes are computed, to
    	// actually store the attached route count in the status
    	ReportAttachedRoutes func()
    	SectionName          k8s.SectionName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. RELEASE.md

    *   Added `tf.keras.layers.SpectralNormalization` layer wrapper to perform spectral normalization on the weights of a target layer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    func RunTestListInconsistentContinuation(ctx context.Context, t *testing.T, store storage.Interface, compaction Compaction) {
    	if compaction == nil {
    		t.Skipf("compaction callback not provided")
    	}
    
    	// Setup storage with the following structure:
    	//  /
    	//   - first/
    	//  |         - bar
    	//  |
    	//   - second/
    	//  |         - bar
    	//  |         - foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

        * For example, during development, it could be `http://localhost:8000/docs/oauth2-redirect`.
        * Keep in mind that this callback URL is independent of whichever one is used by your frontend. You might also have another callback at `https://yourdomain.com/login/callback`.
        * This is only to allow delegated authentication in the API docs with Swagger UI.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top