Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 350 for Stabil (0.13 sec)

  1. util/print_surefire_reports.sh

        sed -e 's/TEST-//; s/.xml$//'))
    
    for file in "${files[@]}"; do
      # Dump file-output.txt and file.txt.
      # Use tail to include a filename header before each (and maybe truncate).
      tail -n 9999 "${file}"*.txt
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Sep 29 13:44:26 UTC 2020
    - 366 bytes
    - Viewed (0)
  2. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        # CRI Log Example:
        # 2016-02-17T00:04:05.931087621Z stdout F [info:2016-02-16T16:04:05.930-08:00] Some log text here
        <source>
          @type tail
          path /var/log/containers/*.log
          pos_file /var/log/gcp-containers.log.pos
          # Tags at this point are in the format of:
          # reform.var.log.containers.<POD_NAME>_<NAMESPACE_NAME>_<CONTAINER_NAME>-<CONTAINER_ID>.log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  3. src/internal/bytealg/compare_s390x.s

    	CMPBEQ	R3, R5, cmplengths
    	MOVD	R4, R8
    	CMPBLE	R4, R6, amin
    	MOVD	R6, R8
    amin:
    	CMPBEQ	R8, $0, cmplengths
    	CMP	R8, $256
    	BLE	tail
    loop:
    	CLC	$256, 0(R3), 0(R5)
    	BGT	gt
    	BLT	lt
    	SUB	$256, R8
    	MOVD	$256(R3), R3
    	MOVD	$256(R5), R5
    	CMP	R8, $256
    	BGT	loop
    tail:
    	SUB	$1, R8
    	EXRL	$cmpbodyclc<>(SB), R8
    	BGT	gt
    	BLT	lt
    cmplengths:
    	CMP	R4, R6
    	BEQ	eq
    	BLT	lt
    gt:
    	MOVD	$1, 0(R7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. src/runtime/memclr_plan9_386.s

    	MOVL	ptr+0(FP), DI
    	MOVL	n+4(FP), BX
    	XORL	AX, AX
    
    tail:
    	TESTL	BX, BX
    	JEQ	_0
    	CMPL	BX, $2
    	JBE	_1or2
    	CMPL	BX, $4
    	JB	_3
    	JE	_4
    	CMPL	BX, $8
    	JBE	_5through8
    	CMPL	BX, $16
    	JBE	_9through16
    	MOVL	BX, CX
    	SHRL	$2, CX
    	REP
    	STOSL
    	ANDL	$3, BX
    	JNE	tail
    	RET
    
    _1or2:
    	MOVB	AX, (DI)
    	MOVB	AX, -1(DI)(BX*1)
    	RET
    _0:
    	RET
    _3:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 29 19:11:07 UTC 2021
    - 983 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/list/LinkedList.java.template

        private Node head;
    
        public 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) {}
    
            return it;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/java-list-library/src/main/java/org/gradle/sample/list/LinkedList.java

        private Node head;
    
        public 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) {}
    
            return it;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // Head for the first type in the list, and Tail for the rest of the
    // list.
    
    // The empty type list.
    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    struct Types1 {
      typedef T1 Head;
      typedef Types0 Tail;
    };
    template <typename T1, typename T2>
    struct Types2 {
      typedef T1 Head;
      typedef Types1<T2> Tail;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // Head for the first type in the list, and Tail for the rest of the
    // list.
    
    // The empty type list.
    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    struct Types1 {
      typedef T1 Head;
      typedef Types0 Tail;
    };
    template <typename T1, typename T2>
    struct Types2 {
      typedef T1 Head;
      typedef Types1<T2> Tail;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  9. test/typeparam/issue50993.go

    }
    
    func LoadPointer[T any](addr **T) (val *T) {
    	return (*T)(
    		atomic.LoadPointer(
    			(*unsafe.Pointer)(unsafe.Pointer(addr)),
    		))
    }
    
    func (q *Node[T]) Pop() {
    	var tail, head *Node[T]
    	if head == LoadPointer(&tail) {
    	}
    }
    
    func main() {
    	ch := Node[uint64]{}
    	ch.Pop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 569 bytes
    - Viewed (0)
  10. src/internal/bytealg/indexbyte_arm64.s

    	// Only do the clear for the last possible block with less than 32 bytes
    	// Condition flags come from SUBS in the loop
    	BHS	tail
    
    masklast:
    	// Clear the irrelevant upper bits
    	ADD	R9, R10, R4
    	AND	$0x1f, R4, R4
    	SUB	$0x20, R4, R4
    	NEG	R4<<1, R4
    	LSL	R4, R6, R6
    	LSR	R4, R6, R6
    
    tail:
    	// Check that we have found a character
    	CBZ	R6, fail
    	// Count the trailing zeros using bit reversing
    	RBIT	R6, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
Back to top