Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for HI (0.02 sec)

  1. src/net/netip/netip.go

    type Addr struct {
    	// addr is the hi and lo bits of an IPv6 address. If z==z4,
    	// hi and lo contain the IPv4-mapped IPv6 address.
    	//
    	// hi and lo are constructed by interpreting a 16-byte IPv6
    	// address as a big-endian 128-bit number. The most significant
    	// bits of that number go into hi, the rest into lo.
    	//
    	// For example, 0011:2233:4455:6677:8899:aabb:ccdd:eeff is stored as:
    	//  addr.hi = 0x0011223344556677
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

        }
    
        final TestFile projectDir
        final TestFile scriptFile
        final List<String> buildArguments
        final String expectedOutputBeforeChange = 'Hello!'
        final String expectedOutputAfterChange = 'Hi!'
    
        ScriptChangeFixture(TestFile projectDir, TestFile scriptFile, List<String> buildArguments) {
            this.projectDir = projectDir
            this.scriptFile = scriptFile
            this.buildArguments = buildArguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/sym.go

    	})
    }
    
    func (ctxt *Link) Int128Sym(hi, lo int64) *LSym {
    	name := fmt.Sprintf("$i128.%016x%016x", uint64(hi), uint64(lo))
    	return ctxt.LookupInit(name, func(s *LSym) {
    		s.Size = 16
    		if ctxt.Arch.ByteOrder == binary.LittleEndian {
    			s.WriteInt(ctxt, 0, 8, lo)
    			s.WriteInt(ctxt, 8, 8, hi)
    		} else {
    			s.WriteInt(ctxt, 0, 8, hi)
    			s.WriteInt(ctxt, 8, 8, lo)
    		}
    		s.Type = objabi.SRODATA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	}
    	if hi > frame.sp+maxExpand {
    		hi = frame.sp + maxExpand
    	}
    	// And don't go outside the stack bounds.
    	if lo < stk.lo {
    		lo = stk.lo
    	}
    	if hi > stk.hi {
    		hi = stk.hi
    	}
    
    	// Print the hex dump.
    	print("stack: frame={sp:", hex(frame.sp), ", fp:", hex(frame.fp), "} stack=[", hex(stk.lo), ",", hex(stk.hi), ")\n")
    	hexdumpWords(lo, hi, func(p uintptr) byte {
    		switch p {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/runtime/rand.go

    		goarch.IsPpc64le|goarch.IsMips64|goarch.IsMips64le|
    		goarch.IsS390x|goarch.IsRiscv64|goarch.IsLoong64 == 1 {
    		mp.cheaprand += 0xa0761d6478bd642f
    		hi, lo := math.Mul64(mp.cheaprand, mp.cheaprand^0xe7037ed1a0b428db)
    		return uint32(hi ^ lo)
    	}
    
    	// Implement xorshift64+: 2 32-bit xorshift sequences added together.
    	// Shift triplet [17,7,16] was calculated as indicated in Marsaglia's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

            result.value.result.serializedModel.empty
            result.value.failure == null
            result.value.exception == null
    
            def buildResult = BuildActionResult.of(new SerializedPayload("header", ["hi".bytes]))
            def message2 = new Success(buildResult)
            def result2 = serialize(message2, serializer)
            result2 instanceof Success
            result2.value instanceof BuildActionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat.go

    	_ = x[len(z)-1] // bounds check elimination hint
    	for i := range z {
    		hi, lo := bits.Mul(x[i], y)
    		lo, c := bits.Add(lo, z[i], 0)
    		// We use bits.Add with zero to get an add-with-carry instruction that
    		// absorbs the carry from the previous bits.Add.
    		hi, _ = bits.Add(hi, 0, c)
    		lo, c = bits.Add(lo, carry, 0)
    		hi, _ = bits.Add(hi, 0, c)
    		carry = hi
    		z[i] = lo
    	}
    	return carry
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/runtime/checkptr.go

    // See go.dev/issue/67401.
    //
    //go:linkname checkptrBase
    func checkptrBase(p unsafe.Pointer) uintptr {
    	// stack
    	if gp := getg(); gp.stack.lo <= uintptr(p) && uintptr(p) < gp.stack.hi {
    		// TODO(mdempsky): Walk the stack to identify the
    		// specific stack frame or even stack object that p
    		// points into.
    		//
    		// In the mean time, use "1" as a pseudo-address to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. cmd/erasure.go

    			di.Scanning = info.Scanning
    			di.State = diskErrToDriveState(err)
    			di.FreeInodes = info.FreeInodes
    			di.UsedInodes = info.UsedInodes
    			if info.Healing {
    				if hi := disks[index].Healing(); hi != nil {
    					hd := hi.toHealingDisk()
    					di.HealInfo = &hd
    				}
    			}
    			di.Metrics = &madmin.DiskMetrics{
    				LastMinute:              make(map[string]madmin.TimedAction, len(info.Metrics.LastMinute)),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    [source,text]
    ----
    $ ./gradlew build -PmyProperty='Hi, world'
    ----
    2. *System Property:* Gradle creates specially-named system properties for project properties which you can set using the `-D` command line flag or `gradle.properties` file. For the project property `prop`, the system property created is called `org.gradle.project.__prop__`.
    +
    [source,text]
    ----
    $ ./gradlew build -Dorg.gradle.project.myProperty='Hi, world'
    ----
    +
    .gradle.properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top