Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for closeDot (0.11 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. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after_test.go

    				t.Errorf("expected status code: %d, but got: %d", test.statusCodeExpected, w.Result().StatusCode)
    			}
    
    			closeGot := w.Header().Get("Connection")
    			if test.closeExpected != closeGot {
    				t.Errorf("expected Connection close: %s, but got: %s", test.closeExpected, closeGot)
    			}
    
    			retryAfterGot := w.Header().Get("Retry-After")
    			if test.retryAfterExpected != retryAfterGot {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/toggleDisabled.js

    ed")}).find("*[data-validation]").valAttr("event","keyup change").on("validation",function(b,c){if(!f){f=!0;var g=a(this).closest("form");c&&d(g,this,h)?e(g,"enabled"):e(g,"disabled"),f=!1}}).on("afterValidation",k).on("blur",function(){a(this).valAttr("have-been-blurred",1)}).each(function(){var b=a(this),c=b.attr("data-validation");c.indexOf("checkbox_group")>-1&&b.closest("form").find('input[name="'+b.attr("name")+'"]').each(function(){a(this).on("change",function(){b.validate()})})}),i.find(...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/MultipleCandidatesDetails.java

         */
        Set<T> getCandidateValues();
    
        /**
         * Calling this method indicates that the candidate is the closest match. It is allowed to call this method several times with
         * different values, in which case it indicates that multiple candidates are equally compatible.
         *
         * @param candidate The closest match. Must be present in {@link #getCandidateValues()}.
         */
        void closestMatch(T candidate);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 11 17:38:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/tagroot.go

    		var locs []*profile.Location
    		var match bool
    		for i := range keys {
    			// Loop backwards, ensuring the first tag is closest to the root,
    			// and the last tag is closest to the leaves.
    			k := keys[len(keys)-1-i]
    			values := formatLabelValues(s, k, outputUnit)
    			if len(values) > 0 {
    				match = true
    			}
    			locKey := locKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. 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)
  10. test-site/public/javascripts/suggestor.js

                                    }
                                });
                                $liEle.hover(function() {
                                    listSelNum = $(this).closest("ol").children("li").index(this) + 1;
                                    $(this).closest("ol").children("li").each(function(i){
                                        if(i == (listSelNum-1)) {
                                            if(typeof listSelectedCssInfo === 'undefined') {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
Back to top