Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 394 for HI (0.03 sec)

  1. 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)
  2. 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)
  3. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/remoteparent/some-thing/src/main/java/Bar.java

    import org.apache.commons.lang.StringUtils;
    
    public class Bar {
        public String toString() {
            return StringUtils.normalizeSpace("hi  there!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 160 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/singleModule/some-thing/src/main/java/Foo.java

    import org.apache.commons.lang.StringUtils;
    
    public class Foo {
      public String toString() {
        return StringUtils.normalizeSpace("hi  there!");
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 152 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/sourcesJar/some-thing/src/main/java/Foo.java

    import org.apache.commons.lang.StringUtils;
    
    public class Foo {
      public String toString() {
        return StringUtils.normalizeSpace("hi  there!");
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 152 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.kt

    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p3.setContent
    
    fun test(): Int {
        return setContent {
            Greeting("test")
        }
    }
    
    @MyComposable
    fun Greeting(name: String) {
        show("hi $name!")
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 542 bytes
    - Viewed (0)
Back to top