Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 621 for light (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/cm/devicemanager/topology_hints.go

    			deviceHints[resource] = nil
    			continue
    		}
    
    		// Short circuit to regenerate the same hints if there are already
    		// devices allocated to the Container. This might happen after a
    		// kubelet restart, for example.
    		allocated := m.podDevices.containerDevices(string(pod.UID), container.Name, resource)
    		if allocated.Len() > 0 {
    			if allocated.Len() != requested {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/plugin/noderesources.go

    				case <-ctx.Done():
    				}
    			}
    			continue
    		}
    		for {
    			response, err := stream.Recv()
    			if err != nil {
    				switch {
    				case errors.Is(err, io.EOF):
    					// This is okay. Some plugins might never change their
    					// resources after reporting them once.
    					active.cancel(errors.New("plugin has closed the stream"))
    				case status.Convert(err).Code() == codes.Unimplemented:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		{name: "ROTR", argLength: 2, reg: gp21, asm: "ROTR"},                      // arg0 right rotate by (arg1 mod 32) bits
    		{name: "ROTRV", argLength: 2, reg: gp21, asm: "ROTRV"},                    // arg0 right rotate by (arg1 mod 64) bits
    		{name: "ROTRconst", argLength: 1, reg: gp11, asm: "ROTR", aux: "Int64"},   // uint32(arg0) right rotate by auxInt bits, auxInt should be in the range 0 to 31.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
Back to top