Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 791 for immediatetly (0.12 sec)

  1. pkg/proxy/ipvs/graceful_termination_test.go

    		rs           *utilipvs.RealServer
    		existingIPVS *utilipvstest.FakeIPVS
    		expectedIPVS *utilipvstest.FakeIPVS
    		err          error
    	}{
    		{
    			name: "graceful delete, no connections results in deleting the real server immediatetly",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "tcp",
    				Port:     uint16(80),
    			},
    			rs: &utilipvs.RealServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

        /**
         * Runs the given {@link Factory} while the specified locks are released and the given new lock is acquired. On completion,
         * the new lock is released and the old locks reacquired.
         * If a lock cannot be immediately (re)acquired, the current worker lease will be released and the method will block until the locks are (re)acquired.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    			panic(err)
    		}
    		// signal may not be received immediately. Wait for it.
    		select{}
    	})
    }
    
    func FuzzKill(f *testing.F) {
    	f.Fuzz(func(*testing.T, bool) {
    		pid := syscall.Getpid()
    		if err := syscall.Kill(pid, syscall.SIGKILL); err != nil {
    			panic(err)
    		}
    		// signal may not be received immediately. Wait for it.
    		select{}
    	})
    }
    
    func FuzzCrash(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionListener.java

    @EventScope(Scope.Build.class)
    public interface TransformExecutionListener {
    
        /**
         * This method is called immediately before a transform is executed.
         */
        void beforeTransformExecution(Describable transform, Describable subject);
    
        /**
         * This method is call immediately after a transform has been executed.
         */
        void afterTransformExecution(Describable transform, Describable subject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolutionListener.java

    public interface DependencyResolutionListener {
        /**
         * This method is called immediately before a set of dependencies are resolved.
         *
         * @param dependencies The set of dependencies to be resolved.
         */
        void beforeResolve(ResolvableDependencies dependencies);
    
        /**
         * This method is called immediately after a set of dependencies are resolved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSource.kt

      fun request(): Request
    
      /**
       * Immediately and violently release resources held by this event source. This does nothing if
       * the event source has already been closed or canceled.
       */
      fun cancel()
    
      fun interface Factory {
        /**
         * Creates a new event source and immediately returns it. Creating an event source initiates an
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

     * and {@link BuildFeatures#getIsolatedProjects() Isolated Projects}.
     *
     * @since 8.8
     */
    @Incubating
    public interface GradleLifecycle {
        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately before a project is evaluated.
         *
         * Any extensions added to the {@code Project} model will be available to build scripts.
         *
         * @param action The action to execute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       */
      open fun secureConnectStart(call: Call) {
      }
    
      /**
       * Invoked immediately after a TLS connection was attempted.
       *
       * This method is invoked after [secureConnectStart].
       */
      open fun secureConnectEnd(
        call: Call,
        handshake: Handshake?,
      ) {
      }
    
      /**
       * Invoked immediately after a socket connection was attempted.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskActionListener.java

    @Deprecated
    @DeprecatedInGradleScope
    public interface TaskActionListener {
        /**
         * This method is called immediately before the task starts performing its actions.
         *
         * @param task The task which is to perform some actions.
         */
        void beforeActions(Task task);
    
        /**
         * This method is called immediately after the task has completed performing its actions.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSourceSystem.java

         * @return the state of this logging system immediately before the changes are applied.
         */
        Snapshot setLevel(LogLevel logLevel);
    
        /**
         * Enables generation of logging events from this logging system. This method is always called after {@link #setLevel(LogLevel)}.
         *
         * @return the state of this logging system immediately before the changes are applied.
         */
        Snapshot startCapture();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top