Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 190 for hung (0.1 sec)

  1. src/main/resources/fess_indices/fess/vi/stopwords.txt

    cả
    các
    cái
    cần
    càng
    chỉ
    chiếc
    cho
    chứ
    chưa
    chuyện
    có
    có thể
    cứ
    của
    cùng
    cũng
    đã
    đang
    đây
    để
    đến nỗi
    đều
    điều
    do
    đó
    được
    dưới
    gì
    khi
    không
    là
    lại
    lên
    lúc
    mà
    mỗi
    một cách
    này
    nên
    nếu
    ngay
    nhiều
    như
    nhưng
    những
    nơi
    nữa
    phải
    qua
    ra
    rằng
    rằng
    rất
    rất
    rồi
    sau
    sẽ
    so
    sự
    tại
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 457 bytes
    - Viewed (0)
  2. src/time/internal_test.go

    	// If this test fails, we will either throw (when siftdownTimer detects
    	// bad when on update), or other timers will hang (if the timer in a
    	// heap is in a bad state). There is no reliable way to test this, but
    	// we wait on a short timer here as a smoke test (alternatively, timers
    	// in later tests may hang).
    	<-After(25 * Millisecond)
    }
    
    var (
    	MinMonoTime = Time{wall: 1 << 63, ext: -1 << 63, loc: UTC}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

            where:
            configureOnDemand << [true, false]
        }
    
        def "can cancel build and skip some tasks"() {
            buildFile << """
    task hang {
        doLast {
            ${waitForCancel()}
        }
    }
    
    task notExecuted(dependsOn: hang) {
        doLast {
            throw new RuntimeException("should not run")
        }
    }
    """
    
            def cancel = GradleConnector.newCancellationTokenSource()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	StartMaxInFlightWatermarkMaintenance(ctx.Done())
    
    	// These should hang, but not affect accounting.  use a query param match
    	for i := 0; i < AllowedNonMutatingInflightRequestsNo; i++ {
    		// These should hang waiting on block...
    		go func() {
    			if err := expectHTTPGet(server.URL+"/api/v1/namespaces/default/wait?watch=true", http.StatusOK); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_import_cycle.txt

    # mod_import_cycle covers this error in module mode.
    env GO111MODULE=off
    
    ! go build selfimport
    stderr -count=1 'import cycle not allowed'
    
    go list -e -f '{{.Error}}' selfimport # Don't hang forever
    stdout -count=1 'import cycle not allowed'
    
    -- selfimport/selfimport.go --
    package selfimport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 314 bytes
    - Viewed (0)
  6. src/internal/diff/testdata/basic.txt

    Example from Hunt and McIlroy, “An Algorithm for Differential File Comparison.”
    https://www.cs.dartmouth.edu/~doug/diff.pdf
    
    -- old --
    a
    b
    c
    d
    e
    f
    g
    -- new --
    w
    a
    b
    x
    y
    z
    e
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -1,7 +1,7 @@
    +w
     a
     b
    -c
    -d
    +x
    +y
    +z
     e
    -f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 266 bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/cgo.go

    		ping <- false
    		select {
    		case <-ping:
    			times = append(times, time.Since(start))
    		case <-time.After(time.Second):
    			fmt.Printf("HANG 1 %v\n", times)
    			return
    		}
    	}
    	ping <- true
    	select {
    	case <-ping:
    	case <-time.After(time.Second):
    		fmt.Printf("HANG 2 %v\n", times)
    		return
    	}
    	fmt.Printf("OK\n")
    }
    
    func CgoTraceback() {
    	C.foo1()
    	buf := make([]byte, 1)
    	runtime.Stack(buf, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 13:20:27 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  8. releasenotes/notes/34633.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 16 02:36:46 UTC 2021
    - 179 bytes
    - Viewed (0)
  9. releasenotes/notes/29372.yaml

    area: installation
    issue:
      - 29364
    releaseNotes:
      - |
        **Fixed** Newer control plane installations were removing permissions for `rbac.istio.io` from `istiod`, causing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 09 01:47:01 UTC 2020
    - 287 bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/process/internal/ErrorInWorkerSocketIntegrationTest.groovy

    @IntegrationTestTimeout(180)
    class ErrorInWorkerSocketIntegrationTest extends AbstractIntegrationSpec {
        private static final String MESSAGE = 'This breaks socket connection threads in worker process deliberately'
    
        def "worker won't hang when error occurs in socket connection"() {
            given:
            requireOwnGradleUserHomeDir()
    
            file('buildSrc/src/main/java/Param.java') << """
    import java.io.*;
    public class Param implements Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top