Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 88 of 88 for flushed (0.47 sec)

  1. src/cmd/compile/internal/wasm/ssa.go

       before any call and restored from the global variable after any call.
    
       Calling convention:
    
       All Go arguments and return values are passed on the Go stack, not
       the wasm stack. In addition, return addresses are pushed on the
       Go stack at every call point. Return addresses are not used during
       normal execution, they are used only when resuming goroutines.
       (So they are not really a "return address", they are a "resume address".)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    		}
    		if !cfg.BuildN {
    			sh.Print(string(stdout))
    		}
    	}
    	return nil
    }
    
    // flushOutput flushes the output being queued in a.
    func (b *Builder) flushOutput(a *Action) {
    	b.Shell(a).Print(string(a.output))
    	a.output = nil
    }
    
    // updateBuildID updates the build ID in the target written by action a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/net/http/transfer.go

    	}
    	return false
    }
    
    // bufioFlushWriter is an io.Writer wrapper that flushes all writes
    // on its wrapped writer if it's a *bufio.Writer.
    type bufioFlushWriter struct{ w io.Writer }
    
    func (fw bufioFlushWriter) Write(p []byte) (n int, err error) {
    	n, err = fw.w.Write(p)
    	if bw, ok := fw.w.(*bufio.Writer); n > 0 && ok {
    		ferr := bw.Flush()
    		if ferr != nil && err == nil {
    			err = ferr
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    	stopCh := make(chan struct{})
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		w.Header().Add("MyHeader", expected)
    		w.WriteHeader(200)
    		w.(http.Flusher).Flush()
    		<-stopCh
    	}))
    	defer backend.Close()
    	defer close(stopCh)
    
    	backendURL, err := url.Parse(backend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/inline.go

    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    	// Leaf inlines are converted immediately.
    	// Non-leaf inlines have potential starts pushed on a stack while we await completion.
    	// Links take priority over other emphasis, so the emphasis must be delayed.
    	p.s = s
    	p.list = nil
    	p.emitted = 0
    	var opens []int // indexes of open ![ and [ Plains in p.list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/bufio/bufio.go

    // Writer implements buffering for an [io.Writer] object.
    // If an error occurs writing to a [Writer], no more data will be
    // accepted and all subsequent writes, and [Writer.Flush], will return the error.
    // After all data has been written, the client should call the
    // [Writer.Flush] method to guarantee all data has been forwarded to
    // the underlying [io.Writer].
    type Writer struct {
    	err error
    	buf []byte
    	n   int
    	wr  io.Writer
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

     public:
      // The c'tor pushes the given source file location and message onto
      // a trace stack maintained by Google Test.
      ScopedTrace(const char* file, int line, const Message& message);
    
      // The d'tor pops the info pushed by the c'tor.
      //
      // Note that the d'tor is not virtual in order to be efficient.
      // Don't inherit from ScopedTrace!
      ~ScopedTrace();
    
     private:
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. src/runtime/export_test.go

    	return (*pageCache)(c).alloc(npages)
    }
    func (c *PageCache) Flush(s *PageAlloc) {
    	cp := (*pageCache)(c)
    	sp := (*pageAlloc)(s)
    
    	systemstack(func() {
    		// None of the tests need any higher-level locking, so we just
    		// take the lock internally.
    		lock(sp.mheapLock)
    		cp.flush(sp)
    		unlock(sp.mheapLock)
    	})
    }
    
    // Expose chunk index type.
    type ChunkIdx chunkIdx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top