Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 394 for HI (0.02 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            """
            when:
            withEnvironmentVars(GREETING: "hi")
            configurationCacheRun("greet")
    
            then:
            output.count("Hi!") == 1
            configurationCache.assertStateStored()
    
            when:
            withEnvironmentVars(GREETING: "hi")
            configurationCacheRun("greet")
    
            then:
            output.count("Hi!") == 1
            configurationCache.assertStateLoaded()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    //go:build linux && (mips || mips64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMips is the registers used by mips binaries.
    type PtraceRegsMips struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMips fetches the registers used by mips binaries.
    func PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/testing/testing_windows.go

    	delta := a.now - b.now
    
    	if queryPerformanceFrequency == 0 {
    		queryPerformanceFrequency = windows.QueryPerformanceFrequency()
    	}
    	hi, lo := bits.Mul64(uint64(delta), uint64(time.Second)/uint64(time.Nanosecond))
    	quo, _ := bits.Div64(hi, lo, uint64(queryPerformanceFrequency))
    	return time.Duration(quo)
    }
    
    var queryPerformanceFrequency int64
    
    // highPrecisionTimeSince returns duration since a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm_arm64_test.go

    		},
    	}
    	for _, test := range tests {
    		hi, lo, err := splitImm24uScaled(test.v, test.shift)
    		switch {
    		case err == nil && test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) succeeded, want error", test.v, test.shift)
    		case err != nil && !test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) failed: %v", test.v, test.shift, err)
    		case !test.wantErr:
    			if got, want := hi, test.wantHi; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go

    //go:build linux && (mipsle || mips64le)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMipsle is the registers used by mipsle binaries.
    type PtraceRegsMipsle struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMipsle fetches the registers used by mipsle binaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/runtime/asm_mipsx.s

    TEXT runtime·panicExtendIndex(SB),NOSPLIT,$0-12
    	MOVW	R5, hi+0(FP)
    	MOVW	R1, lo+4(FP)
    	MOVW	R2, y+8(FP)
    	JMP	runtime·goPanicExtendIndex(SB)
    TEXT runtime·panicExtendIndexU(SB),NOSPLIT,$0-12
    	MOVW	R5, hi+0(FP)
    	MOVW	R1, lo+4(FP)
    	MOVW	R2, y+8(FP)
    	JMP	runtime·goPanicExtendIndexU(SB)
    TEXT runtime·panicExtendSliceAlen(SB),NOSPLIT,$0-12
    	MOVW	R5, hi+0(FP)
    	MOVW	R2, lo+4(FP)
    	MOVW	R3, y+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppMainWithOptionalFeature.groovy

        }
    
        final SourceFile sourceFile = new SourceFile("cpp", "main.cpp", """
        #include <iostream>
        #include "greeter.h"
    
        int main(int argc, char** argv) {
        #ifdef WITH_FEATURE
            std::cout << "hi from main" << std::endl;
        #endif
            Greeter greeter;
            greeter.sayHello();
            return 0;
        }
        """)
    
        @Override
        String getExpectedOutput() {
            return greeter.expectedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/tests/customPluginScript.out

    Hi from the GreetingScriptPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 33 bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/BaseSerializerFactoryTest.groovy

        def factory = new BaseSerializerFactory()
    
        def "uses efficient serialization for Strings"() {
            expect:
            def serializer = factory.getSerializerFor(String)
            usesEfficientSerialization("hi", serializer, 3) == "hi"
        }
    
        def "uses efficient serialization for Files"() {
            expect:
            def serializer = factory.getSerializerFor(File)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	}
    	MULQ(mustAddr(bX)) // RDX, RAX = RAX * bX
    	ADDQ(RAX, r.lo)
    	ADCQ(RDX, r.hi)
    }
    
    // shiftRightBy51 returns r >> 51 and r.lo.
    //
    // After this function is called, the uint128 may not be used anymore.
    func shiftRightBy51(r *uint128) (out, lo GPVirtual) {
    	out = r.hi
    	lo = r.lo
    	SHLQ(Imm(64-51), r.lo, r.hi)
    	r.lo, r.hi = nil, nil // make sure the uint128 is unusable
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top