Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for flushed (0.17 sec)

  1. src/syscall/ztypes_linux_amd64.go

    	ICANON   = 0x2
    	XCASE    = 0x4
    	ECHO     = 0x8
    	ECHOE    = 0x10
    	ECHOK    = 0x20
    	ECHONL   = 0x40
    	NOFLSH   = 0x80
    	TOSTOP   = 0x100
    	ECHOCTL  = 0x200
    	ECHOPRT  = 0x400
    	ECHOKE   = 0x800
    	FLUSHO   = 0x1000
    	PENDIN   = 0x4000
    	IEXTEN   = 0x8000
    	TCGETS   = 0x5401
    	TCSETS   = 0x5402
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "org.mK",
              "us",
              "co.uk.", // Trailing dot
              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
              "j\u00f8rpeland.no", // "jorpeland.no" (first o slashed)
              "xn--jrpeland-54a.no"); // IDNA (punycode) encoding of above
    
      private static final ImmutableSet<String> PS_NOT_RS =
          ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	*pauses = p[:n+n+3]
    }
    
    // flushmcache flushes the mcache of allp[i].
    //
    // The world must be stopped.
    //
    //go:nowritebarrier
    func flushmcache(i int) {
    	assertWorldStopped()
    
    	p := allp[i]
    	c := p.mcache
    	if c == nil {
    		return
    	}
    	c.releaseAll()
    	stackcache_clear(c)
    }
    
    // flushallmcaches flushes the mcaches of all Ps.
    //
    // The world must be stopped.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/ipset/ipset_test.go

    		},
    	}
    	runner := New(fexec)
    	// Success.
    	err := runner.FlushSet("FOOBAR")
    	if err != nil {
    		t.Errorf("expected success, got %v", err)
    	}
    	if fcmd.CombinedOutputCalls != 1 {
    		t.Errorf("expected 1 CombinedOutput() calls, got %d", fcmd.CombinedOutputCalls)
    	}
    	if !sets.NewString(fcmd.CombinedOutputLog[0]...).HasAll("ipset", "flush", "FOOBAR") {
    		t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  5. src/encoding/base32/base32.go

    	}
    
    	// Trailing fringe.
    	copy(e.buf[:], p)
    	e.nbuf = len(p)
    	n += len(p)
    	return
    }
    
    // Close flushes any pending output from the encoder.
    // It is an error to call Write after calling Close.
    func (e *encoder) Close() error {
    	// If there's anything left in the buffer, flush it out
    	if e.err == nil && e.nbuf > 0 {
    		e.enc.Encode(e.out[0:], e.buf[0:e.nbuf])
    		encodedLen := e.enc.EncodedLen(e.nbuf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/archive/tar/writer.go

    	io.Writer
    	fileState
    
    	ReadFrom(io.Reader) (int64, error)
    }
    
    // Flush finishes writing the current file's block padding.
    // The current file must be fully written before Flush can be called.
    //
    // This is unnecessary as the next call to [Writer.WriteHeader] or [Writer.Close]
    // will implicitly flush out the file's padding.
    func (tw *Writer) Flush() error {
    	if tw.err != nil {
    		return tw.err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/encoding/base64/base64.go

    	}
    
    	// Trailing fringe.
    	copy(e.buf[:], p)
    	e.nbuf = len(p)
    	n += len(p)
    	return
    }
    
    // Close flushes any pending output from the encoder.
    // It is an error to call Write after calling Close.
    func (e *encoder) Close() error {
    	// If there's anything left in the buffer, flush it out
    	if e.err == nil && e.nbuf > 0 {
    		e.enc.Encode(e.out[:], e.buf[:e.nbuf])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/engine.go

    func (e *Engine) Execute(s *State, file string, script *bufio.Reader, log io.Writer) (err error) {
    	defer func(prev *Engine) { s.engine = prev }(s.engine)
    	s.engine = e
    
    	var sectionStart time.Time
    	// endSection flushes the logs for the current section from s.log to log.
    	// ok indicates whether all commands in the section succeeded.
    	endSection := func(ok bool) error {
    		var err error
    		if sectionStart.IsZero() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	EXTPROC                          = 0x10000
    	FF1                              = 0x8000
    	FFDLY                            = 0x8000
    	FICLONE                          = 0x80049409
    	FICLONERANGE                     = 0x8020940d
    	FLUSHO                           = 0x2000
    	FS_IOC_ENABLE_VERITY             = 0x80806685
    	FS_IOC_GETFLAGS                  = 0x40086601
    	FS_IOC_GET_ENCRYPTION_NONCE      = 0x4010661b
    	FS_IOC_GET_ENCRYPTION_POLICY     = 0x800c6615
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	EXTPROC                          = 0x10000
    	FF1                              = 0x8000
    	FFDLY                            = 0x8000
    	FICLONE                          = 0x40049409
    	FICLONERANGE                     = 0x4020940d
    	FLUSHO                           = 0x1000
    	FP_XSTATE_MAGIC2                 = 0x46505845
    	FS_IOC_ENABLE_VERITY             = 0x40806685
    	FS_IOC_GETFLAGS                  = 0x80046601
    	FS_IOC_GET_ENCRYPTION_NONCE      = 0x8010661b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top