Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 820 for HEAD (0.03 sec)

  1. platforms/documentation/docs/src/main/resources/head.html

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 155 bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/head.txt

    Russ Cox <******@****.***> 1649017808 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/admin/head.jsp

    Koki Igarashi <******@****.***> 1581510110 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 984 bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/head.go

    Johan Brandhorst-Satzkorn <******@****.***> 1679723041 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/main/webapp/images/logo-head.png

    logo-head.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 30 11:04:53 UTC 2015
    - 907 bytes
    - Viewed (0)
  6. src/runtime/mspanset.go

    // on the span set.
    func (b *spanSet) reset() {
    	head, tail := b.index.load().split()
    	if head < tail {
    		print("head = ", head, ", tail = ", tail, "\n")
    		throw("attempt to clear non-empty span set")
    	}
    	top := head / spanSetBlockEntries
    	if uintptr(top) < b.spineLen.Load() {
    		// If the head catches up to the tail and the set is empty,
    		// we may not clean up the block containing the head and tail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. hack/update-generated-api-compatibility-data.sh

    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -run //HEAD >/dev/null 2>&1 || true
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/apiextensions-apiserver/pkg/apis -run //HEAD >/dev/null 2>&1 || true
    
    # Now that we have regenerated data at HEAD, run the test without suppressing output or failures
    go test k8s.io/api -run //HEAD -count=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

            private final T head;
            private final PersistentList<T> tail;
    
            public Cons(T head, PersistentList<T> tail) {
                this.head = head;
                this.tail = tail;
            }
    
            @Override
            public void forEach(Consumer<? super T> consumer) {
                consumer.accept(head);
                tail.forEach(consumer);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/groovy-list-library/src/main/groovy/org/gradle/sample/list/LinkedList.groovy

    class LinkedList {
        private Node head
    
        void add(String element) {
            Node newNode = new Node(element)
    
            Node it = tail(head)
            if (it == null) {
                head = newNode
            } else {
                it.next = newNode
            }
        }
    
        private static Node tail(Node head) {
            Node it
    
            for (it = head; it != null && it.next != null; it = it.next) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/list/LinkedList.groovy.template

    class LinkedList {
        private Node head
    
        void add(String element) {
            Node newNode = new Node(element)
    
            Node it = tail(head)
            if (it == null) {
                head = newNode
            } else {
                it.next = newNode
            }
        }
    
        private static Node tail(Node head) {
            Node it
    
            for (it = head; it != null && it.next != null; it = it.next) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top