Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 239 for handle1_ (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

        }
    
        public <T extends TrackingHttpHandler> T addHandler(HandlerFactory<T> factory) {
            lock.lock();
            try {
                T handler = factory.create(last);
                handlers.add(handler);
                last = handler.getWaitPrecondition();
                return handler;
            } finally {
                lock.unlock();
            }
        }
    
        public void waitForCompletion() {
            cancelBlockedRequests();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/sink_in_invariant_ops.mlir

      // CHECK-DAG: [[handle1:%.*]] = "tf.VarHandleOp"() <{{{.*}}, shared_name = "variable1"}>
      // CHECK-DAG: [[handle2:%.*]] = "tf.VarHandleOp"() <{{{.*}}, shared_name = "variable2"}>
      // CHECK: "tf.ReadVariableOp"([[handle1]])
      // CHECK: "tf.ReadVariableOp"([[handle2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. pkg/kube/multicluster/secretcontroller.go

    	syncers := make([]ComponentConstraint, 0, len(c.handlers))
    	for _, handler := range c.handlers {
    		syncers = append(syncers, handler.clusterAdded(cluster))
    	}
    	return syncers
    }
    
    func (c *Controller) handleDelete(key cluster.ID) {
    	for _, handler := range c.handlers {
    		handler.clusterDeleted(key)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/adsc/delta.go

    //
    // An example of register handlers:
    //
    //	handlers := []Option{
    //	  clusterHandler,
    //	  Watch[*cluster.Cluster]("*"),
    //	  listenerHandler,
    //	  Watch[*listener.Listener]("*"),
    //	  endpointsHandler,
    //	  routesHandler,
    //	  secretsHandler,
    //	}
    //
    // client := NewDelta("localhost:8080", handlers...)
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/server.go

    	handler = genericapifilters.WithRequestInfo(handler, requestInfoResolver)
    	handler = genericapifilters.WithCacheControl(handler)
    	handler = genericfilters.WithHTTPLogging(handler)
    	handler = genericfilters.WithPanicRecovery(handler, requestInfoResolver)
    
    	return handler
    }
    
    func installMetricHandler(pathRecorderMux *mux.PathRecorderMux, informers informers.SharedInformerFactory, isLeader func() bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/os/signal/doc.go

    be restored.
    
    If the Go signal handler is invoked on a non-Go thread not running Go
    code, the handler generally forwards the signal to the non-Go code, as
    follows. If the signal is SIGPROF, the Go handler does
    nothing. Otherwise, the Go handler removes itself, unblocks the
    signal, and raises it again, to invoke any non-Go handler or default
    system handler. If the program does not exit, the Go handler then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/aggregate/controller.go

    	// Observe the registry for events.
    	registry.AppendNetworkGatewayHandler(c.NotifyGatewayHandlers)
    	registry.AppendServiceHandler(c.handlers.NotifyServiceHandlers)
    	registry.AppendServiceHandler(func(prev, curr *model.Service, event model.Event) {
    		for _, handlers := range c.getClusterHandlers() {
    			handlers.NotifyServiceHandlers(prev, curr, event)
    		}
    	})
    }
    
    func (c *Controller) getClusterHandlers() []*model.ControllerHandlers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    	}
    }
    
    func TestWatchWebsocket(t *testing.T) {
    	simpleStorage := &SimpleRESTStorage{}
    	_ = rest.Watcher(simpleStorage) // Give compile error if this doesn't work.
    	handler := handle(map[string]rest.Storage{"simples": simpleStorage})
    	server := httptest.NewServer(handler)
    	defer server.Close()
    
    	dest, _ := url.Parse(server.URL)
    	dest.Scheme = "ws" // Required by websocket, though the server never sees it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_delta.go

    				// fire off an initial NDS request
    				if _, f := p.handlers[model.NameTableType]; f {
    					con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    						TypeUrl: model.NameTableType,
    					})
    				}
    				// fire off an initial PCDS request
    				if _, f := p.handlers[model.ProxyConfigType]; f {
    					con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

        }
    
        @Nullable
        private static <T extends ResourceHandler> T selectPending(List<T> handlers, String path) {
            for (T handler : handlers) {
                if (handler.getPath().equals(path)) {
                    return handler;
                }
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top