Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 112 for flushed (0.14 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			fnName             string
    			abi                string
    			localSize, argSize int
    			wroteSP            bool
    			noframe            bool
    			haveRetArg         bool
    			retLine            []int
    		)
    
    		flushRet := func() {
    			if fn != nil && fn.vars["ret"] != nil && !haveRetArg && len(retLine) > 0 {
    				v := fn.vars["ret"]
    				resultStr := fmt.Sprintf("%d-byte ret+%d(FP)", v.size, v.off)
    				if abi == "ABIInternal" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/runtime/mspanset.go

    		if spineLen <= uintptr(head)/spanSetBlockEntries {
    			// We're racing with a spine growth and the allocation of
    			// a new block (and maybe a new spine!), and trying to grab
    			// the span at the index which is currently being pushed.
    			// Instead of spinning, let's just notify the caller that
    			// there's nothing currently here. Spinning on this is
    			// almost definitely not worth it.
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    partial order.  Positive NaNs are greater than positive
    infinity. Negative NaNs are less than negative infinity. NaNs with
    distinct payloads are treated as distinct. Subnormal numbers are
    preserved (not flushed to zero). Positive infinity is greater than all
    numbers. Negative infinity is less than all numbers. Positive is
    greater than negative zero. There are less than k values greater than
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. 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)
  9. src/net/http/transport_test.go

    				}
    			}()
    		}
    		wg.Wait()
    	}
    
    	var initialCC contextCounter
    	doPosts(&initialCC)
    
    	// flushCC exists only to put pressure on the GC to finalize the initialCC
    	// contexts: the flushCC allocations should eventually displace the initialCC
    	// allocations.
    	var flushCC contextCounter
    	for i := 0; ; i++ {
    		live := initialCC.Read()
    		if live == 0 {
    			break
    		}
    		if i >= 100 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	}
    	if n := len(p) - (len(p) % TagSize); n > 0 {
    		updateGeneric(&h.macState, p[:n])
    		p = p[n:]
    	}
    	if len(p) > 0 {
    		h.offset += copy(h.buffer[h.offset:], p)
    	}
    	return nn, nil
    }
    
    // Sum flushes the last incomplete chunk from the buffer, if any, and generates
    // the MAC output. It does not modify its state, in order to allow for multiple
    // calls to Sum, even if no Write is allowed after Sum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top