Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 185 for handle1_ (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/sftp-server-driver.go

    	}
    }
    
    // NewSFTPDriver initializes sftp.Handlers implementation of following interfaces
    //
    // - sftp.Fileread
    // - sftp.Filewrite
    // - sftp.Filelist
    // - sftp.Filecmd
    func NewSFTPDriver(perms *ssh.Permissions) sftp.Handlers {
    	handler := &sftpDriver{endpoint: fmt.Sprintf("127.0.0.1:%s", globalMinioPort), permissions: perms}
    	return sftp.Handlers{
    		FileGet:  handler,
    		FilePut:  handler,
    		FileCmd:  handler,
    		FileList: handler,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            }
    
            then:
            instant.added < instant.handled
    
            and:
            0 * _
        }
    
        def addingListenerDoesNotBlockWhileAnotherThreadIsNotifyingOnDifferentType() {
            given:
            def listener1 = {
                instant.received
                thread.block()
                instant.handled
            } as TestFooListener
            manager.addListener(listener1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. src/log/slog/doc.go

    The built-in handlers acquire a lock before calling [io.Writer.Write]
    to ensure that exactly one [Record] is written at a time in its entirety.
    Although each log record has a timestamp,
    the built-in handlers do not use that time to sort the written records.
    User-defined handlers are responsible for their own locking and sorting.
    
    # Writing a handler
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    			return newMuxStateless(ctx, m, c, *handler)
    		})
    	} else {
    		// Stream:
    		var handler *StreamHandler
    		if subID == nil {
    			if !m.Handler.valid() {
    				gridLogIf(ctx, c.queueMsg(m, muxConnectError{Error: "Invalid Handler"}))
    				return
    			}
    			handler = c.handlers.streams[m.Handler]
    		} else {
    			handler = c.handlers.subStreams[*subID]
    		}
    		if handler == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

                handle.release("a")
                handle.waitForAllPendingCalls()
                handle.release(1)
                handle.waitForAllPendingCalls()
                handle.releaseAll()
                handle.waitForAllPendingCalls()
                handle.releaseAll()
                handle.waitForAllPendingCalls()
            }
            server.stop()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        }
        if (changed) {
          rewriter.finalizeOpModification(f);
          return success();
        } else {
          rewriter.cancelOpModification(f);
          return failure();
        }
      }
    };
    
    class HandleIf : public OpRewritePattern<TF::IfOp> {
      // Optional-agnostic pattern that propagates types across the program.
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult adjustBranch(TF::IfOp ifop, func::FuncOp branch,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top