Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 450 for HI (0.24 sec)

  1. src/fmt/doc.go

    		Printf("%d", "hi"):        %!d(string=hi)
    	Too many arguments: %!(EXTRA type=value)
    		Printf("hi", "guys"):      hi%!(EXTRA string=guys)
    	Too few arguments: %!verb(MISSING)
    		Printf("hi%d"):            hi%!d(MISSING)
    	Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
    		Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
    		Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/hash/maphash/maphash_purego.go

    }
    
    func r4(p []byte) uint64 {
    	return uint64(byteorder.LeUint32(p))
    }
    
    func r8(p []byte) uint64 {
    	return byteorder.LeUint64(p)
    }
    
    func mix(a, b uint64) uint64 {
    	hi, lo := bits.Mul64(a, b)
    	return hi ^ lo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/math/rand/rng.go

    }
    
    // seed rng x[n+1] = 48271 * x[n] mod (2**31 - 1)
    func seedrand(x int32) int32 {
    	const (
    		A = 48271
    		Q = 44488
    		R = 3399
    	)
    
    	hi := x / Q
    	lo := x % Q
    	x = A*lo - R*hi
    	if x < 0 {
    		x += int32max
    	}
    	return x
    }
    
    // Seed uses the provided seed value to initialize the generator to a deterministic state.
    func (rng *rngSource) Seed(seed int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 14:20:53 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithAnnotation.java

    package org.gradle.test;
    
    @Deprecated @JavaAnnotation
    public class JavaClassWithAnnotation {
        @Deprecated @JavaAnnotation
        String getAnnotatedProperty() { return "hi"; }
    
        @Deprecated @JavaAnnotation
        void annotatedMethod() { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 242 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/connectProperties/tests/connectProperties.out

    > Task :greeting
    Hi from Gradle
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 87 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/customPlugins/customPluginNoConvention/tests/customPluginNoConvention.out

    Hi from Gradle...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 15 bytes
    - Viewed (0)
  7. src/archive/tar/testdata/gnu-not-utf8.tar

    hi????bye...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 01:35:39 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/switch.go

    	const binarySearchMin = 4 // minimum number of cases for binary search
    
    	var do func(lo, hi int, out *ir.Nodes)
    	do = func(lo, hi int, out *ir.Nodes) {
    		n := hi - lo
    		if n < binarySearchMin {
    			for i := lo; i < hi; i++ {
    				nif := ir.NewIfStmt(base.Pos, nil, nil, nil)
    				leaf(i, nif)
    				base.Pos = base.Pos.WithNotStmt()
    				nif.Cond = typecheck.Expr(nif.Cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. src/crypto/internal/hpke/hpke.go

    }
    
    type uint128 struct {
    	hi, lo uint64
    }
    
    func (u uint128) addOne() uint128 {
    	lo, carry := bits.Add64(u.lo, 1, 0)
    	return uint128{u.hi + carry, lo}
    }
    
    func (u uint128) bitLen() int {
    	return bits.Len64(u.hi) + bits.Len64(u.lo)
    }
    
    func (u uint128) bytes() []byte {
    	b := make([]byte, 16)
    	binary.BigEndian.PutUint64(b[0:], u.hi)
    	binary.BigEndian.PutUint64(b[8:], u.lo)
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/testData/sessionBuilder/resolveAgainstCommonKLibFromOtherModule/jvmMain/jvmSrc.kt

    package jvmTest
    
    import common.greetEachOther
    import some.example.Person
    
    private class MyPerson(
        name: String
    ) : Person(name) {
        override fun greet() = "Hi"
    }
    
    fun test() {
        greetEachOther(
            listOf(
                Person("Alice"),
                MyPerson("Bob"),
            )
        )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 07 12:14:19 UTC 2024
    - 293 bytes
    - Viewed (0)
Back to top