Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 394 for HI (0.73 sec)

  1. src/compress/lzw/writer.go

    var errOutOfCodes = errors.New("lzw: out of codes")
    
    // incHi increments e.hi and checks for both overflow and running out of
    // unused codes. In the latter case, incHi sends a clear code, resets the
    // writer state and returns errOutOfCodes.
    func (w *Writer) incHi() error {
    	w.hi++
    	if w.hi == w.overflow {
    		w.width++
    		w.overflow <<= 1
    	}
    	if w.hi == maxCode {
    		clear := uint32(1) << w.litWidth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/other.gradle.kts

    class GreetingScriptPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            project.task("hi") {
                doLast {
                    println("Hi from the GreetingScriptPlugin")
                }
            }
        }
    }
    
    // Apply the plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 283 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/text/Tokenizer.java

         * @param low
         *            最小の文字コード
         * @param hi
         *            最大の文字コード
         */
        protected static void whitespaceChars(final byte[] ctype2, int low, int hi) {
            if (low < 0) {
                low = 0;
            }
            if (hi >= ctype2.length) {
                hi = ctype2.length - 1;
            }
            while (low <= hi) {
                ctype2[low++] = CT_WHITESPACE;
            }
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_ppc64x.s

    	MOVD    $0x90, R10
    
    	VPMSUMD IN, H2L, XL   // H.lo·H^2.lo
    	VPMSUMD IN1, H2L, XL1 // H^2.lo·H^2.lo
    	VPMSUMD IN, H2, XM    // H.hi·H^2.lo+H.lo·H^2.hi
    	VPMSUMD IN1, H2, XM1  // H^2.hi·H^2.lo+H^2.lo·H^2.hi
    	VPMSUMD IN, H2H, XH   // H.hi·H^2.hi
    	VPMSUMD IN1, H2H, XH1 // H^2.hi·H^2.hi
    
    	VPMSUMD XL, XC2, T2  // 1st reduction phase
    	VPMSUMD XL1, XC2, HH // 1st reduction phase
    
    	VSLDOI $8, XM, ZERO, T0
    	VSLDOI $8, ZERO, XM, T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/propertyAndProvider/groovy/build.gradle

        @TaskAction
        void printMessage() {
            logger.quiet(message.get())
        }
    }
    
    tasks.register("greeting", Greeting) {
        greeting.set('Hi') // <4>
        greeting = 'Hi' // <5>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 397 bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/templates/home.html

                if (this.status == 200) { // request succeeded
                    var hi = JSON.parse(this.responseText);
                    document.getElementById("HeapSize").innerText = hi.HeapSize.toLocaleString() + " bytes";
                    document.getElementById("NumGC").innerText = hi.NumGC.toLocaleString();
    
                    var d = new Date(hi.CurrentTime / 1000000).toLocaleString();
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/util.go

    // hi exclusive (valid registers are lo through hi-1).
    func RegisterRegister(lo, hi int, Rconv func(int) string) {
    	regSpace = append(regSpace, regSet{lo, hi, Rconv})
    }
    
    func Rconv(reg int) string {
    	if reg == REG_NONE {
    		return "NONE"
    	}
    	for i := range regSpace {
    		rs := &regSpace[i]
    		if rs.lo <= reg && reg < rs.hi {
    			return rs.Rconv(reg)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/sayhi.go

    package foo
    
    import (
    	"fmt"
    	"sync"
    )
    
    func sayhi(n int, wg *sync.WaitGroup) {
    	fmt.Println("hi", n)
    	fmt.Println("hi", n)
    	wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 19:36:41 UTC 2021
    - 137 bytes
    - Viewed (0)
  9. src/regexp/syntax/regexp.go

    				lo, hi := re.Rune[i]+1, re.Rune[i+1]-1
    				escape(b, lo, lo == '-')
    				if lo != hi {
    					if hi != lo+1 {
    						b.WriteRune('-')
    					}
    					escape(b, hi, hi == '-')
    				}
    			}
    		} else {
    			for i := 0; i < len(re.Rune); i += 2 {
    				lo, hi := re.Rune[i], re.Rune[i+1]
    				escape(b, lo, lo == '-')
    				if lo != hi {
    					if hi != lo+1 {
    						b.WriteRune('-')
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec/canUseBuiltInAstTransform/src/test/groovy/UseBuiltInTransformTest.groovy

    import org.junit.Test
    
    class UseBuiltInTransformTest {
        @Delegate final TestDelegate delegate = new TestDelegate()
    
        @Test
        void transformHasBeenApplied() {
            assert doStuff("hi") == "[hi]"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 320 bytes
    - Viewed (0)
Back to top