Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 154 for aloop (0.12 sec)

  1. src/runtime/traceruntime.go

    	maySweep bool
    
    	// inSweep indicates that at least one sweep event has been traced.
    	inSweep bool
    
    	// swept and reclaimed track the number of bytes swept and reclaimed
    	// by sweeping in the current sweep loop (while maySweep was true).
    	swept, reclaimed uintptr
    }
    
    // traceLockInit initializes global trace locks.
    func traceLockInit() {
    	// Sharing a lock rank here is fine because they should never be accessed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	ELIBBAD         = syscall.Errno(0x50)
    	ELIBEXEC        = syscall.Errno(0x53)
    	ELIBMAX         = syscall.Errno(0x52)
    	ELIBSCN         = syscall.Errno(0x51)
    	ELNRNG          = syscall.Errno(0x30)
    	ELOOP           = syscall.Errno(0x28)
    	EMEDIUMTYPE     = syscall.Errno(0x7c)
    	EMSGSIZE        = syscall.Errno(0x5a)
    	EMULTIHOP       = syscall.Errno(0x48)
    	ENAMETOOLONG    = syscall.Errno(0x24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    	// Istiod. In that case, Envoy expects us to respond to EDS/RDS/SDS requests to finish warming of
    	// clusters/listeners.
    	// Typically, this should be set to 'false' after response; keeping it true would likely result in an endless loop.
    	AlwaysRespond bool
    
    	// LastResources tracks the contents of the last push.
    	// This field is extremely expensive to maintain and is typically disabled
    	LastResources Resources
    }
    
    type Watcher interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            1 * connection.markSuspect()
            1 * connection.dispatch({ it instanceof CloseInput })
            1 * connection.stop()
            0 * connection._
        }
    
        def "does not loop forever finding usable daemons"() {
            given:
            connector.connect(compatibilitySpec) >> connection
            connector.startDaemon(compatibilitySpec) >> connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/named.go

    loop:
    	for {
    		seen[n] = len(seen)
    		path = append(path, n.obj)
    		n = n1
    		if i, ok := seen[n]; ok {
    			// cycle
    			check.cycleError(path[i:], firstInSrc(path[i:]))
    			u = Typ[Invalid]
    			break
    		}
    		u = n.Underlying()
    		switch u1 := u.(type) {
    		case nil:
    			u = Typ[Invalid]
    			break loop
    		default:
    			break loop
    		case *Named:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	ELIBBAD         = syscall.Errno(0x50)
    	ELIBEXEC        = syscall.Errno(0x53)
    	ELIBMAX         = syscall.Errno(0x52)
    	ELIBSCN         = syscall.Errno(0x51)
    	ELNRNG          = syscall.Errno(0x30)
    	ELOOP           = syscall.Errno(0x28)
    	EMEDIUMTYPE     = syscall.Errno(0x7c)
    	EMSGSIZE        = syscall.Errno(0x5a)
    	EMULTIHOP       = syscall.Errno(0x48)
    	ENAMETOOLONG    = syscall.Errno(0x24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

            }
        }
    
        private String getMessage(String message, Throwable exception) {
            String fullMessage = (message != null) ? message : "";
    
            // To break out of possible endless loop when getCause returns "this", or dejaVu for n-level recursion (n>1)
            Set<Throwable> dejaVu = Collections.newSetFromMap(new IdentityHashMap<>());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. cmd/object-lambda-handlers.go

    	"HTTP Version Not Supported":      http.StatusHTTPVersionNotSupported,
    	"Variant Also Negotiates":         http.StatusVariantAlsoNegotiates,
    	"Insufficient Storage":            http.StatusInsufficientStorage,
    	"Loop Detected":                   http.StatusLoopDetected,
    	"Not Extended":                    http.StatusNotExtended,
    	"Network Authentication Required": http.StatusNetworkAuthenticationRequired,
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/go/types/named.go

    loop:
    	for {
    		seen[n] = len(seen)
    		path = append(path, n.obj)
    		n = n1
    		if i, ok := seen[n]; ok {
    			// cycle
    			check.cycleError(path[i:], firstInSrc(path[i:]))
    			u = Typ[Invalid]
    			break
    		}
    		u = n.Underlying()
    		switch u1 := u.(type) {
    		case nil:
    			u = Typ[Invalid]
    			break loop
    		default:
    			break loop
    		case *Named:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/runtime/crash_test.go

    	}
    	var seen, seenSync bool
    	i := 1
    loop:
    	for ; ; i++ {
    		ev, err := r.ReadEvent()
    		if err != nil {
    			// We may have a broken tail to the trace -- that's OK.
    			// We'll make sure we saw at least one complete generation.
    			if err != io.EOF {
    				t.Logf("error at event %d: %v", i, err)
    			}
    			break loop
    		}
    		switch ev.Kind() {
    		case traceparse.EventSync:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top