Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cFns (0.03 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. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

      istioctl ztunnel-config connections --node ambient-worker
    
      # Retrieve summary of connections for a given Ztunnel instance.
      istioctl ztunnel-config workload <ztunnel-name[.namespace]>
    `,
    		Aliases: []string{"cons"},
    		Args:    common.validateArgs,
    		RunE: runConfigDump(ctx, common, func(cw *ztunnelDump.ConfigWriter) error {
    			filter := ztunnelDump.ConnectionsFilter{
    				Namespace: workloadsNamespace,
    				Direction: direction,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    				goto childerror
    			}
    		}
    
    		// The unshare system call in Linux doesn't unshare mount points
    		// mounted with --shared. Systemd mounts / with --shared. For a
    		// long discussion of the pros and cons of this see debian bug 739593.
    		// The Go model of unsharing is more like Plan 9, where you ask
    		// to unshare and the namespaces are unconditionally unshared.
    		// To make this model work we must further mark / as MS_PRIVATE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. 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