Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 284 for aloop (0.15 sec)

  1. 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)
  2. src/internal/poll/fd_wasip1.go

    		return nil
    	}
    
    	// We don't use ignoringEINTR here because POSIX does not define
    	// whether the descriptor is closed if close returns EINTR.
    	// If the descriptor is indeed closed, using a loop would race
    	// with some other goroutine opening a new descriptor.
    	// (The Linux kernel guarantees that it is closed on an EINTR error.)
    	return CloseFunc(fd)
    }
    
    // Copy creates a copy of the FD.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/encoding/pem/pem.go

    			continue
    		}
    		typeLine = typeLine[0 : len(typeLine)-len(pemEndOfLine)]
    
    		p = &Block{
    			Headers: make(map[string]string),
    			Type:    string(typeLine),
    		}
    
    		for {
    			// This loop terminates because getLine's second result is
    			// always smaller than its argument.
    			if len(rest) == 0 {
    				return nil, data
    			}
    			line, next := getLine(rest)
    
    			key, val, ok := bytes.Cut(line, colon)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/database/sql/convert.go

    	if c.cci == nil {
    		return driver.ErrSkip
    	}
    	// The column converter shouldn't be called on any index
    	// it isn't expecting. The final error will be thrown
    	// in the argument converter loop.
    	index := nv.Ordinal - 1
    	if c.want <= index {
    		return nil
    	}
    
    	// First, see if the value itself knows how to convert
    	// itself to a driver type. For example, a NullString
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. hack/golangci-strict.yaml

      exclude-use-default: false
      exclude:
        # staticcheck: Developers tend to write in C-style with an explicit 'break' in a 'switch', so it's ok to ignore
        - ineffective break statement. Did you mean to break out of the outer loop
    
      # Excluding configuration per-path, per-linter, per-text and per-source
      exclude-rules:
        # exclude ineffassign linter for generated files for conversion
        - path: conversion\.go
          linters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. gradlew

            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/runtime/coro.go

    	var gnext *g
    	for {
    		// Note: this is a racy load, but it will eventually
    		// get the right value, and if it gets the wrong value,
    		// the c.gp.cas will fail, so no harm done other than
    		// a wasted loop iteration.
    		// The cas will also sync c.gp's
    		// memory enough that the next iteration of the racy load
    		// should see the correct value.
    		// We are avoiding the atomic load to keep this path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top