Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 286 for aligned2 (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            // Aligned modules
            def firstAligned = mavenRepo.module('org.aligned', 'aligned1', '1.0').dependsOn(intermediate20).publish()
            mavenRepo.module('org.aligned', 'aligned1', '2.0').dependsOn(intermediate20).publish()
            def otherAligned = mavenRepo.module('org.aligned', 'aligned2', '2.0').publish()
    
            // Roots
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. src/text/tabwriter/example_test.go

    	// so its final cell is not part of an aligned column.
    	const padding = 3
    	w := tabwriter.NewWriter(os.Stdout, 0, 0, padding, '-', tabwriter.AlignRight|tabwriter.Debug)
    	fmt.Fprintln(w, "a\tb\taligned\t")
    	fmt.Fprintln(w, "aa\tbb\taligned\t")
    	fmt.Fprintln(w, "aaa\tbbb\tunaligned") // no trailing tab
    	fmt.Fprintln(w, "aaaa\tbbbb\taligned\t")
    	w.Flush()
    
    	// output:
    	// ------a|------b|---aligned|
    	// -----aa|-----bb|---aligned|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_amd64.s

    align_4:
    	BTQ $2, BX
    	JNC aligned
    
    	CRC32L (SI), AX
    
    	SUBQ $4, CX
    	ADDQ $4, SI
    
    aligned:
    	// The input is now 8-byte aligned and we can process 8-byte chunks.
    	CMPQ CX, $8
    	JL less_than_8
    
    	CRC32Q (SI), AX
    	ADDQ $8, SI
    	SUBQ $8, CX
    	JMP aligned
    
    less_than_8:
    	// We may have some bytes left over; process 4 bytes, then 2, then 1.
    	BTQ $2, CX
    	JNC less_than_4
    
    	CRC32L (SI), AX
    	ADDQ $4, SI
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/comments.golden

    	   aligned		line
    	   aligned line
    	*/
    }
    
    func _() {
    	/* freestanding comment
    	   aligned		line
    	   aligned line
    	*/
    }
    
    func _() {
    	/* freestanding comment
    	   aligned		line
    	   aligned line */
    }
    
    func _() {
    	/*	freestanding comment
    		aligned		line
    		aligned line
    	*/
    }
    
    func _() {
    	/*	freestanding comment
    		aligned		line
    		aligned line
    	*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  5. src/go/printer/testdata/comments.input

    	   aligned		line
    	   aligned line
    	*/
    }
    
    func _() {
    	/* freestanding comment
    	   aligned		line
    	   aligned line
    	   */
    }
    
    func _() {
    	/* freestanding comment
    	   aligned		line
    	   aligned line */
    }
    
    func _() {
    	/*	freestanding comment
    		aligned		line
    		aligned line
    	*/
    }
    
    func _() {
    	/*	freestanding comment
    		aligned		line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_s390x.go

    	if !hasVX {
    		panic("not available")
    	}
    	// Use vectorized function if data length is above threshold.
    	if len(p) >= vxMinLen {
    		aligned := len(p) & ^vxAlignMask
    		crc = vectorizedCastagnoli(crc, p[:aligned])
    		p = p[aligned:]
    	}
    	if len(p) == 0 {
    		return crc
    	}
    	return slicingUpdate(crc, archCastagnoliTable8, p)
    }
    
    func archAvailableIEEE() bool {
    	return hasVX
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_ppc64le.go

    			newlen := vecMinLen - align
    			crc = ppc64SlicingUpdateBy8(crc, archCastagnoliTable8, p[:newlen])
    			p = p[newlen:]
    		}
    		// p should be aligned now
    		aligned := len(p) & ^vecAlignMask
    		crc = vectorCrc32(crc, crcCast, p[:aligned])
    		p = p[aligned:]
    	}
    	if len(p) == 0 {
    		return crc
    	}
    	return ppc64SlicingUpdateBy8(crc, archCastagnoliTable8, p)
    }
    
    func archAvailableIEEE() bool {
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/crypto/subtle/xor_amd64.s

    	JZ    aligned
    
    not_aligned:
    	TESTQ $7, DX           // AND $7 & len, if not zero jump to loop_1b.
    	JNE   loop_1b
    	SUBQ  $8, DX           // XOR 8bytes backwards.
    	MOVQ  (SI)(DX*1), DI
    	MOVQ  (CX)(DX*1), AX
    	XORQ  AX, DI
    	MOVQ  DI, (BX)(DX*1)
    	CMPQ  DX, $16          // if len is greater or equal 16 here, it must be aligned.
    	JGE   aligned
    
    ret:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 18:14:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/go/printer/testdata/comments2.golden

    		println("test")
    	}
    }
    
    func issue5623() {
    L:
    	_ = yyyyyyyyyyyyyyyy			// comment - should be aligned
    	_ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx	/* comment */
    
    	_ = yyyyyyyyyyyyyyyy			/* comment - should be aligned */
    	_ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx	// comment
    
    LLLLLLL:
    	_ = yyyyyyyyyyyyyyyy			// comment - should be aligned
    	_ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx	// comment
    
    LL:
    LLLLL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/go/printer/testdata/comments2.input

       }
    }
    
    func issue5623() {
    L:
       _ = yyyyyyyyyyyyyyyy // comment - should be aligned
       _ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx /* comment */
    
       _ = yyyyyyyyyyyyyyyy /* comment - should be aligned */
       _ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx // comment
    
    LLLLLLL:
       _ = yyyyyyyyyyyyyyyy // comment - should be aligned
       _ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx // comment
    
    LL:
    LLLLL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 00:06:54 UTC 2017
    - 2.3K bytes
    - Viewed (0)
Back to top