Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for flushed (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	EXTPROC                          = 0x10000
    	FF1                              = 0x8000
    	FFDLY                            = 0x8000
    	FICLONE                          = 0x40049409
    	FICLONERANGE                     = 0x4020940d
    	FLUSHO                           = 0x1000
    	FS_IOC_ENABLE_VERITY             = 0x40806685
    	FS_IOC_GETFLAGS                  = 0x80086601
    	FS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b
    	FS_IOC_GET_ENCRYPTION_POLICY     = 0x400c6615
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K 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. 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)
  5. 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)
  6. 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