Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for bkts (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    .
    ├── settings.gradle.kts
    └── nested
        ├── settings.gradle.kts
        └── nestedNested
            └── settings.gradle.kts
    ----
    .settings.gradle.kts
    [source,kotlin]
    ----
    includeBuild("nested")
    ----
    .nested/settings.gradle.kts
    [source,kotlin]
    ----
    includeBuild("nestedNested")
    ----
    =====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            }
        }
    
        def "reports problems in project Kotlin build scripts"() {
            settingsFile << """
                include 'a'
            """
            file("a/build.gradle.kts") << """
                gradle.buildFinished { }
                tasks.register("broken") {
                    doFirst {
                        println(project.name)
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    // AX: data
    // BX: hash seed
    // CX: length
    // At return: AX = return value
    TEXT aeshashbody<>(SB),NOSPLIT,$0-0
    	// Fill an SSE register with our seeds.
    	MOVQ	BX, X0				// 64 bits of per-table hash seed
    	PINSRW	$4, CX, X0			// 16 bits of length
    	PSHUFHW $0, X0, X0			// repeat length 4 times total
    	MOVO	X0, X1				// save unscrambled seed
    	PXOR	runtime·aeskeysched(SB), X0	// xor in per-process seed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    }
    
    // countRegs returns the number of set bits in the register mask.
    func countRegs(r regMask) int {
    	return bits.OnesCount64(uint64(r))
    }
    
    // pickReg picks an arbitrary register from the register mask.
    func pickReg(r regMask) register {
    	if r == 0 {
    		panic("can't pick a register from an empty set")
    	}
    	// pick the lowest one
    	return register(bits.TrailingZeros64(uint64(r)))
    }
    
    type use struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	}
    	return setgroups(len(a), &a[0])
    }
    
    type WaitStatus uint32
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits. At least that's the idea.
    // There are various irregularities. For example, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    bDKdCd/CUXipar/Ab7Mv8iljiPz3U5p+Za169EAHf4c/uCNRvqaX9m3mNBTYGKqs
    lb5uUh3++wmdnySCjpUBPH2PbtPoujEarLqPYnZvwFy0SJ5FCvNF3AEcnF77qTol
    M3462XKQFy9OBdXAL9E4j9+MbZBRa7Am1ZQC8g1pybxAcm6Dpoy0Px/ZDiTj/ExC
    bKs/W1dR7qV9bNzL/PPHZxU+6w9jf2elle8BbN/0jkY8QyWyNyBkZJmu3HIf7bNC
    096Sim1zFCG8bphwY4oksJYwB6OrBvqQq8bB4ZeBeVFk+BqFqWykJfsML4Yn34kB
    IgQTAQIADAUCU2pGCwWDB4YfgAAKCRCTPtdD2uqHe/GMCACrFcqarUdw2yIv18HO
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  8. src/time/format.go

    	stdNeedClock      = 2 << 8             // need hour, minute, second
    	stdArgShift       = 16                 // extra argument in high bits, above low stdArgShift
    	stdSeparatorShift = 28                 // extra argument in high 4 bits for fractional second separators
    	stdMask           = 1<<stdArgShift - 1 // mask out argument
    )
    
    // std0x records the std values for "01", "02", ..., "06".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. src/sync/atomic/atomic_test.go

    // total.
    // Swap can't add 1, so it uses a different scheme.
    // The functions repeatedly generate a pseudo-random number such that
    // low bits are equal to high bits, swap, check that the old value
    // has low and high bits equal.
    
    var hammer32 = map[string]func(*uint32, int){
    	"SwapInt32":             hammerSwapInt32,
    	"SwapUint32":            hammerSwapUint32,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top