Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cFns (0.04 sec)

  1. cmd/object-api-utils.go

    					// Call the cleanup funcs
    					for i := len(cFns) - 1; i >= 0; i-- {
    						cFns[i]()
    					}
    					return nil, err
    				}
    			}
    
    			decReader := io.LimitReader(s2Reader, decLength)
    			if decLength > compReadAheadSize {
    				rah, err := readahead.NewReaderSize(decReader, compReadAheadBuffers, compReadAheadBufSize)
    				if err == nil {
    					decReader = rah
    					cFns = append([]func(){func() {
    						rah.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                Cons<?> cons = (Cons<?>) o;
                return head.equals(cons.head) && tail.equals(cons.tail);
            }
    
            @Override
            public int hashCode() {
                return Objects.hash(head, tail);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    			continue
    		}
    		if w.Port.Port == int(number) {
    			if legacyGatewaySelector {
    				// When we are using legacy gateway label selection, we only resolve to a single port
    				// This has pros and cons; we don't allow merging of routes when it would be desirable, but
    				// we also avoid accidentally merging routes when we didn't intend to. While neither option is great,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top