Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 791 for immediatetly (0.18 sec)

  1. src/internal/chacha8rand/chacha8.go

    func (s *State) Refill() {
    	s.c += ctrInc
    	if s.c == ctrMax {
    		// Reseed with generated uint64s for forward secrecy.
    		// Normally this is done immediately after computing a block,
    		// but we do it immediately before computing the next block,
    		// to allow a much smaller serialized state (just the seed plus offset).
    		// This gives a delayed benefit for the forward secrecy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        /**
         * Aborts the process, blocking until the process has exited. Does nothing if the process has already completed.
         */
        void abort();
    
        /**
         * Waits for the process to finish. Returns immediately if the process has already completed.
         *
         * @return result
         */
        ExecResult waitForFinish();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. mockwebserver/src/main/kotlin/mockwebserver3/Dispatcher.kt

      open fun peek(): MockResponse {
        return MockResponse(socketPolicy = KeepOpen)
      }
    
      /**
       * Release any resources held by this dispatcher. Any requests that are currently being dispatched
       * should return immediately. Responses returned after shutdown will not be transmitted: their
       * socket connections have already been closed.
       */
      open fun shutdown() {}
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/SkipFirstTextStreamTest.groovy

            skipper.endOfStream(null)
    
            then:
            1 * delegate.text("b")
            0 * delegate.text(_)
    
            and:
            1 * delegate.endOfStream(null)
        }
    
        def "does not skip EOS if immediately after first"() {
            given:
            def delegate = Mock(TextStream)
            def skipper = new SkipFirstTextStream(delegate)
    
            when:
            skipper.text("a")
            skipper.endOfStream(null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/error_test.go

    // match the line of the error comment.
    //
    // If the regular comment form is used, the reported error's position
    // must match the position of the token immediately following the
    // error comment. Thus, /* ERROR ... */ comments should appear
    // immediately before the position where the error is reported.
    //
    // Currently, the test harness only supports one error comment per
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. bin/update_proxy.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Update the Proxy SHA in istio.deps with the first argument
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    set -u
    # Print commands
    set -x
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 07:59:44 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/ProjectEvaluationListener.java

     * org.gradle.api.invocation.Gradle#addProjectEvaluationListener(ProjectEvaluationListener)}.</p>
     */
    @EventScope(Scope.Build.class)
    public interface ProjectEvaluationListener {
        /**
         * This method is called immediately before a project is evaluated.
         *
         * @param project The which is to be evaluated. Never null.
         */
        void beforeEvaluate(Project project);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestClassProcessor.java

         * returned.
         */
        @Override
        void stop();
    
        /**
         * Stops any pending or asynchronous processing immediately
         *
         * Any test class assigned to this processor, but not yet run will not have results in the output.  The processor should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

        /**
         * Returns the stderr output currently received from the build. This is live.
         */
        String getErrorOutput();
    
        /**
         * Forcefully kills the build and returns immediately. Does not block until the build has finished.
         */
        GradleHandle abort();
    
        /**
         * Cancel a build that was started as a cancellable build by closing stdin.  Does not block until the build has finished.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go

    var _ responsewriter.UserProvidedDecorator = &respLogger{}
    
    func (rl *respLogger) Unwrap() http.ResponseWriter {
    	return rl.w
    }
    
    // Simple logger that logs immediately when Addf is called
    type passthroughLogger struct{}
    
    // Addf logs info immediately.
    func (passthroughLogger) Addf(format string, data ...interface{}) {
    	klog.V(2).Info(fmt.Sprintf(format, data...))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top