Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,724 for list1 (0.23 sec)

  1. src/cmd/internal/obj/s390x/listz.go

    // Based on cmd/internal/obj/ppc64/list9.go.
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2008 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 01 10:41:37 UTC 2017
    - 2.4K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/list8.txt

    -- input --
    Loose lists.
      - A
    
        B
      - C
        D
      - E
      - F
    -- gofmt --
    Loose lists.
    
      - A
    
        B
    
      - C
        D
    
      - E
    
      - F
    -- text --
    Loose lists.
    
      - A
    
        B
    
      - C D
    
      - E
    
      - F
    -- markdown --
    Loose lists.
    
      - A
    
        B
    
      - C D
    
      - E
    
      - F
    -- html --
    <p>Loose lists.
    <ul>
    <li><p>A
    <p>B
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 335 bytes
    - Viewed (0)
  3. src/container/list/list.go

    }
    
    // Prev returns the previous list element or nil.
    func (e *Element) Prev() *Element {
    	if p := e.prev; e.list != nil && p != &e.list.root {
    		return p
    	}
    	return nil
    }
    
    // List represents a doubly linked list.
    // The zero value for List is an empty list ready to use.
    type List struct {
    	root Element // sentinel list element, only &root, root.prev, and root.next are used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/list.go

    	if err == nil {
    		requirements = rs
    		// TODO(#61605): The extra ListU clause fixes a problem with Go 1.21rc3
    		// where "go mod tidy" and "go list -m -u all" fight over whether the go.sum
    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/list9.txt

    -- input --
    Text.
    
    1. Not a list
    2. because it is
    3. unindented.
    
    4. This one
      is a list
      because of the indented text.
    5. More wrapped
      items.
    6. And unwrapped.
    
    7. The blank line stops the heuristic.
    -- gofmt --
    Text.
    
    1. Not a list
    2. because it is
    3. unindented.
    
     4. This one
        is a list
        because of the indented text.
     5. More wrapped
        items.
     6. And unwrapped.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 419 bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/list5.go

    // Inferno utils/5c/list.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5c/list.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/profile-list.go

    	return &cobra.Command{
    		Use:   "list",
    		Short: "Lists available Istio configuration profiles",
    		Long:  "The list subcommand lists the available Istio configuration profiles.",
    		Args:  cobra.ExactArgs(0),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			return profileList(cmd, plArgs)
    		},
    	}
    }
    
    // profileList list all the builtin profiles.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/list9.go

    // cmd/9l/list.c from Vita Nuova.
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2008 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. test/typeparam/list.go

    import (
    	"fmt"
    )
    
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // _List is a linked list of ordered values of type T.
    type _List[T Ordered] struct {
    	next *_List[T]
    	val  T
    }
    
    func (l *_List[T]) Largest() T {
    	var max T
    	for p := l; p != nil; p = p.next {
    		if p.val > max {
    			max = p.val
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/list7.go

    	}
    	return "SPC_??"
    }
    
    func rlconv(list int64) string {
    	str := ""
    
    	// ARM64 register list follows ARM64 instruction decode schema
    	// | 31 | 30 | ... | 15 - 12 | 11 - 10 | ... |
    	// +----+----+-----+---------+---------+-----+
    	// |    | Q  | ... | opcode  |   size  | ... |
    
    	firstReg := int(list & 31)
    	opcode := (list >> 12) & 15
    	var regCnt int
    	var t string
    	switch opcode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top