Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 706 for light (0.08 sec)

  1. src/text/template/parse/parse_test.go

    	{"trim right", "{{3 -}}\n\n\ty", noError, `{{3}}"y"`},
    	{"trim left and right", "x \r\n\t{{- 3 -}}\n\n\ty", noError, `"x"{{3}}"y"`},
    	{"trim with extra spaces", "x\n{{-  3   -}}\ny", noError, `"x"{{3}}"y"`},
    	{"comment trim left", "x \r\n\t{{- /* hi */}}", noError, `"x"`},
    	{"comment trim right", "{{/* hi */ -}}\n\n\ty", noError, `"y"`},
    	{"comment trim left and right", "x \r\n\t{{- /* */ -}}\n\n\ty", noError, `"x""y"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    func induceSubS_8_32(text []byte, sa, freq, bucket []int32) {
    	// Initialize positions for right side of character buckets.
    	bucketMax_8_32(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    	// Analogous to induceSubL_8_32 above,
    	// as we scan the array right-to-left, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type S.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/go/types/signature.go

    	rparams  *TypeParamList // receiver type parameters from left to right, or nil
    	tparams  *TypeParamList // type parameters from left to right, or nil
    	scope    *Scope         // function scope for package-local and non-instantiated signatures; nil otherwise
    	recv     *Var           // nil if not a method
    	params   *Tuple         // (incoming) parameters from left to right; or nil
    	results  *Tuple         // (outgoing) results from left to right; or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/runtime/netpoll_solaris.go

    // passing the correct type of event set (POLLIN/POLLOUT). As we made
    // sure to have already associated the file descriptor with the port,
    // when we now call port_associate, we will unblock the main poller
    // loop (in runtimeĀ·netpoll) right away if the socket is actually
    // ready for I/O.
    //
    // The main poller loop runs in its own thread waiting for events
    // using port_getn. When an event happens, it will tell the scheduler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/time/zoneinfo.go

    	l = l.get()
    
    	// First try for a zone with the right name that was actually
    	// in effect at the given time. (In Sydney, Australia, both standard
    	// and daylight-savings time are abbreviated "EST". Using the
    	// offset helps us pick the right one for the given time.
    	// It's not perfect: during the backward transition we might pick
    	// either one.)
    	for i := range l.zone {
    		zone := &l.zone[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/walk.go

    // function calls, which could clobber function call arguments/results
    // currently on the stack.
    func mayCall(n ir.Node) bool {
    	// When instrumenting, any expression might require function calls.
    	if base.Flag.Cfg.Instrumenting {
    		return true
    	}
    
    	isSoftFloat := func(typ *types.Type) bool {
    		return types.IsFloat[typ.Kind()] || types.IsComplex[typ.Kind()]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/types.go

    type LimitResponseType string
    
    // Supported limit responses.
    const (
    	// LimitResponseTypeQueue means that requests that can not be executed right now are queued until they can be executed or a queuing limit is hit
    	LimitResponseTypeQueue LimitResponseType = "Queue"
    
    	// LimitResponseTypeReject means that requests that can not be executed right now are rejected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. src/cmd/internal/archive/archive.go

    	%-16s%-12d%-6d%-6d%-8o%-10d`
    	name mtime uid gid mode size
    
    (note the trailing backquote). The %-16s here means at most 16 *bytes* of
    the name, and if shorter, space padded on the right.
    */
    
    // A Data is a reference to data stored in an object file.
    // It records the offset and size of the data, so that a client can
    // read the data only if necessary.
    type Data struct {
    	Offset int64
    	Size   int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/config.go

    //
    // _Update_, _Create_, and _Delete_ are mutator operations. These operations
    // are asynchronous, and you might not see the effect immediately (e.g. _Get_
    // might not return the object by key immediately after you mutate the store.)
    // Intermittent errors might occur even though the operation succeeds, so you
    // should always check if the object store has been modified even if the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. cmd/object-handlers-common.go

    }
    
    // isETagEqual return true if the canonical representations of two ETag strings
    // are equal, false otherwise
    func isETagEqual(left, right string) bool {
    	if strings.TrimSpace(right) == "*" {
    		return true
    	}
    	return canonicalizeETag(left) == canonicalizeETag(right)
    }
    
    // setPutObjHeaders sets all the necessary headers returned back
    // upon a success Put/Copy/CompleteMultipart/Delete requests
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top