Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for flushed (0.14 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    	ft := formTable[f]
    	n, ok := ft.quickSpan(src, 0, len(b), true)
    	if ok {
    		return b
    	}
    	out := make([]byte, n, len(b))
    	copy(out, b[0:n])
    	rb := reorderBuffer{f: *ft, src: src, nsrc: len(b), out: out, flushF: appendFlush}
    	return doAppendInner(&rb, n)
    }
    
    // String returns f(s).
    func (f Form) String(s string) string {
    	src := inputString(s)
    	ft := formTable[f]
    	n, ok := ft.quickSpan(src, 0, len(s), true)
    	if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. cmd/storage-rest-server.go

    					} else {
    						write([]byte{0})
    					}
    					return
    				default:
    				}
    
    				// Response not ready, write a filler byte.
    				write([]byte{32})
    				if canWrite {
    					w.(http.Flusher).Flush()
    				}
    			case err := <-doneCh:
    				if err != nil {
    					write([]byte{1})
    					write([]byte(err.Error()))
    				} else {
    					write([]byte{0})
    				}
    				return
    			}
    		}
    	}()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

                    @Override
                    public void flush() {
                        // for performance, ignore flushes
                    }
                };
                XmlNodePrinter nodePrinter = new XmlNodePrinter(indentPrinter);
                nodePrinter.setPreserveWhitespace(true);
                nodePrinter.print(node);
                printWriter.flush();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal.go

    		}
    	}
    	return depth == 0 && inquote == 0 && !incomment
    }
    
    // Flush flushes any buffered XML to the underlying writer.
    // See the [Encoder.EncodeToken] documentation for details about when it is necessary.
    func (enc *Encoder) Flush() error {
    	return enc.p.w.Flush()
    }
    
    // Close the Encoder, indicating that no more data will be written. It flushes
    // any buffered XML to the underlying writer and returns an error if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. pkg/log/config.go

    	})
    	// --vklog is non zero then KlogScope should be increased.
    	// klog is a special case.
    	if klogVerbose() {
    		KlogScope.SetOutputLevel(DebugLevel)
    	}
    
    	return nil
    }
    
    // Sync flushes any buffered log entries.
    // Processes should normally take care to call Sync before exiting.
    func Sync() error {
    	return funcs.Load().(patchTable).sync()
    }
    
    // Close implements io.Closer.
    func Close() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    determine which *types* may be impacted. For example, we know a `WasmPlugin` does not impact the `Cluster` type, so we can skip generating `Cluster` in this case. Warning: Envoy currently has a bug that *requires* `Endpoints` to be pushed any time the corresponding `Cluster` is pushed, so this optimization is intentionally turned off in this specific case.
    
    Finally, we determine which subset of the type we need to generate. XDS has two modes - "State of the World (SotW)" and "Delta". In SotW, we...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. src/runtime/traceruntime.go

    //
    // nosplit because it's called by traceAcquire, which is nosplit.
    //
    //go:nosplit
    func traceAcquireEnabled() traceLocker {
    	// Any time we acquire a traceLocker, we may flush a trace buffer. But
    	// buffer flushes are rare. Record the lock edge even if it doesn't happen
    	// this time.
    	lockRankMayTraceFlush()
    
    	// Prevent preemption.
    	mp := acquirem()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.go

    			return
    		}
    		// Could save f so after can call f.Close; not worth the effort.
    	}
    
    }
    
    // after runs after all testing.
    func after() {
    	if *cpuProfile != "" {
    		pprof.StopCPUProfile() // flushes profile to disk
    	}
    	if *memProfile != "" {
    		f, err := os.Create(*memProfile)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "testing: %s", err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/pgen.go

    		return
    	}
    
    	pp.Flush() // assemble, fill in boilerplate, etc.
    
    	// If we're compiling the package init function, search for any
    	// relocations that target global map init outline functions and
    	// turn them into weak relocs.
    	if fn.IsPackageInit() && base.Debug.WrapGlobalMapCtl != 1 {
    		weakenGlobalMapInitRelocs(fn)
    	}
    
    	// fieldtrack must be called after pp.Flush. See issue 20014.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_386.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
    - 11.6K bytes
    - Viewed (0)
Back to top