Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 394 for HI (0.02 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		gpspg      = gpg | buildReg("SP")
    		gpspsbg    = gpspg | buildReg("SB")
    		fp         = buildReg("F0 F2 F4 F6 F8 F10 F12 F14 F16 F18 F20 F22 F24 F26 F28 F30")
    		lo         = buildReg("LO")
    		hi         = buildReg("HI")
    		callerSave = gp | fp | lo | hi | buildReg("g") // runtime.setg (and anything calling it) may clobber g
    		r1         = buildReg("R1")
    		r2         = buildReg("R2")
    		r3         = buildReg("R3")
    		r4         = buildReg("R4")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/propertyAndProvider/tests/usePropertyAndProvider.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)
  4. src/regexp/syntax/prog.go

    				return j / 2
    			}
    		}
    		return noMatch
    	}
    
    	// Otherwise binary search.
    	lo := 0
    	hi := len(rune) / 2
    	for lo < hi {
    		m := int(uint(lo+hi) >> 1)
    		if c := rune[2*m]; c <= r {
    			if r <= rune[2*m+1] {
    				return m
    			}
    			lo = m + 1
    		} else {
    			hi = m
    		}
    	}
    	return noMatch
    }
    
    // MatchEmptyWidth reports whether the instruction matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. test/codegen/mathbits.go

    }
    
    func Div32(hi, lo, x uint32) (q, r uint32) {
    	// arm64:"ORR","UDIV","MSUB",-"UREM"
    	return bits.Div32(hi, lo, x)
    }
    
    func Div64(hi, lo, x uint64) (q, r uint64) {
    	// amd64:"DIVQ"
    	return bits.Div64(hi, lo, x)
    }
    
    func Div64degenerate(x uint64) (q, r uint64) {
    	// amd64:-"DIVQ"
    	return bits.Div64(0, x, 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/testsJar/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)
  7. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/javadocJar/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)
  8. src/sort/zsortfunc.go

    	}
    }
    
    func heapSort_func(data lessSwap, a, b int) {
    	first := a
    	lo := 0
    	hi := b - a
    
    	// Build heap with greatest element at top.
    	for i := (hi - 1) / 2; i >= 0; i-- {
    		siftDown_func(data, i, hi, first)
    	}
    
    	// Pop elements, largest first, into end of data.
    	for i := hi - 1; i >= 0; i-- {
    		data.Swap(first, first+i)
    		siftDown_func(data, lo, i, first)
    	}
    }
    
    // pdqsort_func sorts data[a:b].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/cover/testdata/pkgcfg/yesFuncsNoTests/yfnt.go

    package yesFuncsNoTests
    
    func F1() {
    	println("hi")
    }
    
    func F2(x int) int {
    	if x < 0 {
    		return 9
    	} else {
    		return 10
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 19:44:37 UTC 2023
    - 126 bytes
    - Viewed (0)
  10. pkg/controller/job/indexed_job_utils.go

    	return builder.String()
    }
    
    func (oi orderedIntervals) has(ix int) bool {
    	lo := 0
    	hi := len(oi)
    	// Invariant: oi[hi].Last >= ix
    	for hi > lo {
    		mid := lo + (hi-lo)/2
    		if oi[mid].Last >= ix {
    			hi = mid
    		} else {
    			lo = mid + 1
    		}
    	}
    	if hi == len(oi) {
    		return false
    	}
    	return oi[hi].First <= ix
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top