Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for Hi (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/path/filepath/match.go

    					chunk = chunk[1:]
    					break
    				}
    				var lo, hi rune
    				if lo, chunk, err = getEsc(chunk); err != nil {
    					return "", false, err
    				}
    				hi = lo
    				if chunk[0] == '-' {
    					if hi, chunk, err = getEsc(chunk[1:]); err != nil {
    						return "", false, err
    					}
    				}
    				if lo <= r && r <= hi {
    					match = true
    				}
    				nrange++
    			}
    			if match == negated {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/customPlugins/customPluginWithAdvancedConvention/tests/customPluginWithAdvancedConvention.out

    Hi from Gradle...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15 bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/mips.s

    	//inst:
    	//
    	// load ints and bytes
    	//
    	//	LMOVW rreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	R1, R2
    	MOVW	LO, R1
    	MOVW	HI, R1
    	MOVW	R1, LO
    	MOVW	R1, HI
    	MOVW	R1, R2
    	MOVW	LO, R1
    	MOVW	HI, R1
    	MOVW	R1, LO
    	MOVW	R1, HI
    
    	//	LMOVW addr ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	foo<>+3(SB), R2
    	MOVW	16(R1), R2
    	MOVW	(R1), R2
    	MOVW	foo<>+3(SB), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top