Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for capturing (0.49 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

                // When resolving build dependencies, we ignore the dependencySpec, potentially capturing a greater
                // set of build dependencies than actually required. This is because it takes a lot of extra information
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/PairedStats.java

    import com.google.common.base.Objects;
    import java.io.Serializable;
    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    import javax.annotation.CheckForNull;
    
    /**
     * An immutable value object capturing some basic statistics about a collection of paired double
     * values (e.g. points on a plane). Build instances with {@link PairedStatsAccumulator#snapshot}.
     *
     * @author Pete Gillin
     * @since 20.0
     */
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    //
    // If 'Submatch' is present, the return value is a slice identifying the
    // successive submatches of the expression. Submatches are matches of
    // parenthesized subexpressions (also known as capturing groups) within the
    // regular expression, numbered from left to right in order of opening
    // parenthesis. Submatch 0 is the match of the entire expression, submatch 1 is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/run.go

    				// handle this case, we exclude port 53 from this rule. Note: We cannot just move the
    				// port 53 redirection rule further up the list, as we will want to avoid capturing
    				// DNS requests from the proxy UID/GID
    				cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand, constants.ISTIOOUTPUT, constants.NAT, "-o", "lo", "-p", "tcp",
    					"!", "--dport", "53",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. hack/update-vendor.sh

    kube::util::require-jq
    
    TMP_DIR="${TMP_DIR:-$(mktemp -d /tmp/update-vendor.XXXX)}"
    LOG_FILE="${LOG_FILE:-${TMP_DIR}/update-vendor.log}"
    kube::log::status "logfile at ${LOG_FILE}"
    
    # Set up some FDs for this script to use, while capturing everything else to
    # the log. NOTHING ELSE should write to $LOG_FILE directly.
    exec 11>&1            # Real stdout, use this explicitly
    exec 22>&2            # Real stderr, use this explicitly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

         * A list of either details or result class names, delimited by {@link #FILTER_SEPARATOR},
         * that will be captured by this trace. When enabled, only operations matching this filter
         * will be captured. This enables capturing a build operation traces of larger builds that
         * would otherwise be too large to capture.
         *
         * When this property is set, a complete build operation tree is not captured. In this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	Feature string // everything about the feature other than the package
    	Issue   int    // the issue that introduced the feature, or 0 if none
    }
    
    // This regexp has four capturing groups: package, build, feature and issue.
    var apiFileLineRegexp = regexp.MustCompile(`^pkg ([^ \t]+)[ \t]*(\([^)]+\))?, ([^#]*)(#\d+)?$`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/nfacct_linux_test.go

    	"golang.org/x/sys/unix"
    )
    
    // fakeHandler is a mock implementation of the handler interface, designed for testing.
    type fakeHandler struct {
    	// requests stores instances of fakeRequest, capturing new requests.
    	requests []*fakeRequest
    	// responses holds responses for the subsequent fakeRequest.Execute calls.
    	responses [][][]byte
    	// errs holds errors for the subsequent fakeRequest.Execute calls.
    	errs []error
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/symbolbuilder.go

    }
    
    func (sb *SymbolBuilder) AddSize(arch *sys.Arch, tgt Sym) int64 {
    	return sb.addSymRef(tgt, 0, objabi.R_SIZE, arch.PtrSize)
    }
    
    // GenAddAddrPlusFunc returns a function to be called when capturing
    // a function symbol's address. In later stages of the link (when
    // address assignment is done) when doing internal linking and
    // targeting an executable, we can just emit the address of a function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/shell.go

    		// The command failed. Report the output up as an error.
    		return err
    	}
    	// The command didn't fail, so just print the output as appropriate.
    	if a != nil && a.output != nil {
    		// The Action is capturing output.
    		a.output = append(a.output, err.Error()...)
    	} else {
    		// Write directly to the Builder output.
    		sh.Print(err.Error())
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top