Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for finishes (0.16 sec)

  1. src/net/http/server.go

    	// subsequent requests on this connection and stop reading
    	// input from it.
    	requestBodyLimitHit bool
    
    	// trailers are the headers to be sent after the handler
    	// finishes writing the body. This field is initialized from
    	// the Trailer response header when the response header is
    	// written.
    	trailers []string
    
    	handlerDone atomic.Bool // set true when the handler exits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            gcFile.lastModified() >= SECONDS.toMillis(beforeCleanup)
            cachedTransform.assertExists()
    
            when: 'transforming build is allowed to finish'
            transformBarrier.releaseAll()
    
            then: 'transforming build finishes successfully'
            transformingBuild.waitForFinish()
        }
    
        def "does not clean up cache when cache cleanup is disabled via #cleanupMethod"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	}
    	if !strings.Contains(buf.String(), "Connection: close\r\n") {
    		t.Errorf("expected 'Connection: close' in response; got: %s", buf.String())
    	}
    }
    
    // If a Handler finishes and there's an unread request body,
    // verify the server implicitly tries to do a read on it before replying.
    func TestHandlerFinishSkipBigContentLengthRead(t *testing.T) {
    	setParallel(t)
    	conn := newTestConn()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

                    return callable.toString();
                  }
                });
        executor.execute(task);
        this.future = task;
      }
    
      /**
       * Returns a future that finishes when this step does. Calling {@code get()} on the returned
       * future returns {@code null} if the step is successful or throws the same exception that would
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

                    return callable.toString();
                  }
                });
        executor.execute(task);
        this.future = task;
      }
    
      /**
       * Returns a future that finishes when this step does. Calling {@code get()} on the returned
       * future returns {@code null} if the step is successful or throws the same exception that would
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    			if notetsleep(&sched.stopnote, 100*1000) {
    				noteclear(&sched.stopnote)
    				break
    			}
    			preemptall()
    		}
    	}
    
    	finish := nanotime()
    	startTime := finish - start
    	if reason.isGC() {
    		sched.stwStoppingTimeGC.record(startTime)
    	} else {
    		sched.stwStoppingTimeOther.record(startTime)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    	// In a production environment, there wouldn't be these guarantees, but the Pod would be cleaned up
    	// by the orphan pod worker, when the Pod finishes.
    	if err := wait.PollUntilContextTimeout(ctx, 10*time.Millisecond, wait.ForeverTestTimeout, false, func(ctx context.Context) (bool, error) {
    		pod, _ := manager.podStore.Pods(pod.GetNamespace()).Get(pod.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    			testUploads.Lock()
    			testUploads.uploads = append(testUploads.uploads, multipartResponse.UploadID)
    			testUploads.Unlock()
    		}()
    	}
    	// Wait till all go routines finishes execution.
    	wg.Wait()
    	// Validate the upload ID by an attempt to list parts using it.
    	for _, uploadID := range testUploads.uploads {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // tests found in the current directory and then runs the resulting
    // test binary. In this mode, caching (discussed below) is disabled.
    // After the package test finishes, go test prints a summary line
    // showing the test status ('ok' or 'FAIL'), package name, and elapsed
    // time.
    //
    // The second, called package list mode, occurs when go test is invoked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    one hand and a piece of bread-and-butter in the other.  `I beg
    pardon, your Majesty,' he began, `for bringing these in:  but I
    hadn't quite finished my tea when I was sent for.'
    
      `You ought to have finished,' said the King.  `When did you
    begin?'
    
      The Hatter looked at the March Hare, who had followed him into
    the court, arm-in-arm with the Dormouse.  `Fourteenth of March, I
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top