Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for closeDot (0.14 sec)

  1. src/net/textproto/writer.go

    //
    // See the documentation for the [Reader.DotReader] method for details about dot-encoding.
    func (w *Writer) DotWriter() io.WriteCloser {
    	w.closeDot()
    	w.dot = &dotWriter{w: w}
    	return w.dot
    }
    
    func (w *Writer) closeDot() {
    	if w.dot != nil {
    		w.dot.Close() // sets w.dot = nil
    	}
    }
    
    type dotWriter struct {
    	w     *Writer
    	state int
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/net/textproto/reader.go

    	}
    	if err == nil && d.state == stateEOF {
    		err = io.EOF
    	}
    	if err != nil && d.r.dot == d {
    		d.r.dot = nil
    	}
    	return
    }
    
    // closeDot drains the current DotReader if any,
    // making sure that it reads until the ending dot line.
    func (r *Reader) closeDot() {
    	if r.dot == nil {
    		return
    	}
    	buf := make([]byte, 128)
    	for r.dot != nil {
    		// When Read reaches EOF or an error,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/footer.html

        if (!Element.prototype.matches) {
            Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
        }
        // Polyfill Element.closest()
        if (!Element.prototype.closest) {
            Element.prototype.closest = function (s) {
                var el = this;
                if (!document.documentElement.contains(el)) return null;
                do {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupportTest.groovy

        }
    
        def "chooses closest API"() {
            when:
            def consumer = versionAttribute('7.2')
            def producer = [
                versionAttribute('6.0'),
                versionAttribute('7.0'),
                versionAttribute('7.1'), // 7.1 is the closest compatible (i.e. lower) version to 7.2 in this list
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. cmd/import-boss/README.md

    contain rules which are evaluated against each dependency of the package in
    question.
    
    Evaluation starts with the rules file closest to the package.  If that file
    makes a determination to allow or forbid the import, evaluation is done.  If
    the import does not match any rule, the next-closest rules file is consulted,
    and so forth.  If the rules files are exhausted and no determination has been
    made, the import will be flagged as an error.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

    $(document).ready(function () {
    
        // Attach controls for column groups in tables
        var controls = $("div#controls");
        var groups = [];
        var slices = [];
        $("tr.control-groups").closest("table").find("tr").each(function() {
            var row = $(this);
            if (row.hasClass('control-groups')) {
                var currentCol = 0;
                slices = [];
                row.find("th").each(function(){
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/SnapshotWatchedDirectoryFinder.java

         * so we learn if the file itself disappears or gets modified.
         * For directories, we only watch the directory itself, as we get
         * events for that.
         * In case of a missing file we need to find the closest existing
         * ancestor to watch so we can learn if the missing file respawns.
         */
        public static File getDirectoryToWatch(FileSystemLocationSnapshot snapshot) {
            File path = new File(snapshot.getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy_options.go

    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	PreferClosestNUMANodes string = "prefer-closest-numa-nodes"
    )
    
    var (
    	alphaOptions = sets.New[string]()
    	betaOptions  = sets.New[string](
    		PreferClosestNUMANodes,
    	)
    	stableOptions = sets.New[string]()
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/taskgraph/CalculateTaskGraphBuildOperationType.java

             * <p>
             * The graph is represented as a list of nodes (in no particular order) and their {@link PlannedNode#getNodeDependencies() dependencies}.
             * The dependencies of each node are the closest nodes in the plan whose type is in the given set.
             *
             * @param types an inclusive range-subset of node types starting with the {@link NodeIdentity.NodeType#TASK TASK}, such as {@code [TASK, TRANSFORM_STEP]}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/return.go

    // with a single-pass label/break matching phase.
    
    // hasBreak reports if s is or contains a break statement
    // referring to the label-ed statement or implicit-ly the
    // closest outer breakable statement.
    func hasBreak(s syntax.Stmt, label string, implicit bool) bool {
    	switch s := s.(type) {
    	default:
    		panic("unreachable")
    
    	case *syntax.DeclStmt, *syntax.EmptyStmt, *syntax.ExprStmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top