Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,477 for lisp (0.07 sec)

  1. 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)
  2. src/cmd/vendor/rsc.io/markdown/list.go

    			return false
    		}
    		list = &listBuilder{bullet: rune(bullet), num: num}
    		p.addBlock(list)
    	}
    	b := &itemBuilder{list: list, width: n, haveContent: !t.isBlank()}
    	list.todo = func() line {
    		p.addBlock(b)
    		list.item = b
    		return t
    	}
    	return true
    }
    
    // GitHub task list extension
    
    func (p *parseState) taskList(list *List) {
    	for _, item := range list.Items {
    		item := item.(*Item)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. src/go/doc/comment/testdata/list.txt

    -- input --
    Text.
    - Not a list.
     - Here is the list.
         • Using multiple bullets.
              * Indentation does not matter.
         + Lots of bullets.
    More text.
    
    -- gofmt --
    Text.
    - Not a list.
      - Here is the list.
      - Using multiple bullets.
      - Indentation does not matter.
      - Lots of bullets.
    
    More text.
    
    -- text --
    Text. - Not a list.
      - Here is the list.
      - Using multiple bullets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 776 bytes
    - Viewed (0)
  5. hack/testdata/list.yaml

    apiVersion: v1
    kind: List
    items:
    - apiVersion: v1
      kind: Service
      metadata:
        name: list-service-test
      spec:
        ports:
        - protocol: TCP
          port: 80
        selector:
          app: list-deployment-test
    - apiVersion: apps/v1
      kind: Deployment
      metadata:
        name: list-deployment-test
        labels:
          app: list-deployment-test
      spec:
        replicas: 1
        selector:
          matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 588 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/list.yaml

    apiVersion: v1
    kind: List
    items:
      - apiVersion: apps/v1
        kind: Deployment
        metadata:
          name: hello-v1
        spec:
          replicas: 3
          selector:
            matchLabels:
              app: hello  
              tier: backend
              track: stable
              version: v1
          template:
            metadata:
              labels:
                app: hello
                tier: backend
                track: stable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/list.go

    		// 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)
  8. pkg/kube/inject/testdata/inject/list-frontend.yaml

    apiVersion: v1
    kind: List
    items:
      - kind: Service
        apiVersion: v1
        metadata:
          name: frontend
        spec:
          selector:
            app: hello
            tier: frontend
          ports:
            - protocol: "TCP"
              port: 80
              targetPort: 80
          type: LoadBalancer
      - apiVersion: apps/v1
        kind: Deployment
        metadata:
          name: frontend
        spec:
          replicas: 1
          selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 893 bytes
    - Viewed (0)
  9. cluster/gce/list-resources.sh

    gcloud-list compute instance-groups "${ZONE:+"zone:(${ZONE}) AND "}name ~ '${INSTANCE_PREFIX}.*'"
    gcloud-list compute instances "${ZONE:+"zone:(${ZONE}) AND "}name ~ '${INSTANCE_PREFIX}.*'"
    
    # List disk resources, filtering by instance prefix if provided.
    gcloud-list compute disks "${ZONE:+"zone:(${ZONE}) AND "}name ~ '${INSTANCE_PREFIX}.*'"
    
    # List network resources. We include names starting with "a", corresponding to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. android/guava/javadoc-link/checker-framework/package-list

    cpovirk <******@****.***> 1512668275 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
Back to top