Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 198 for Hi (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/groovy/greeting-plugin/src/main/java/org/sample/GreetingTask.java

    public abstract class GreetingTask extends DefaultTask {
    
        @Input
        public abstract Property<String> getWho();
    
        @TaskAction
        public void greet() {
            System.out.println("Hi " + getWho().get() + "!!!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 400 bytes
    - Viewed (0)
  6. test/fixedbugs/bug497.go

    package main
    
    type T struct {
    	field s
    }
    
    type s struct{}
    
    var X T
    
    func F(_ T, c interface{}) int {
    	return len(c.(string))
    }
    
    func main() {
    	if v := F(X, "hi"); v != 2 {
    		panic(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 00:03:45 UTC 2015
    - 452 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/tests/compositeBuilds_plugin_dev.out

    > Task :greeting-plugin:compileJava
    > Task :greeting-plugin:pluginDescriptors
    > Task :greeting-plugin:processResources
    > Task :greeting-plugin:classes
    > Task :greeting-plugin:jar
    
    > Task :my-greeting-app:greeting
    Hi Bob!!!
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 278 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/tests/customPlugin.sample.conf

    # tag::cli[]
    # gradle --quiet hello
    # end::cli[]
    commands: [{
        executable: gradle
        args: hello
        flags: --quiet
        expected-output-file: customPlugin.out
    }, {
        executable: gradle
        args: hi
        flags: --quiet
        expected-output-file: customPluginScript.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 275 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customPlugins/customPluginNoConvention/kotlin/build.gradle.kts

                doLast {
                    println(extension.message.get())
                }
            }
        }
    }
    
    apply<GreetingPlugin>()
    
    // Configure the extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 608 bytes
    - Viewed (0)
  10. src/runtime/hash64.go

    }
    
    func memhash64Fallback(p unsafe.Pointer, seed uintptr) uintptr {
    	a := r8(p)
    	return mix(m5^8, mix(a^hashkey[1], a^seed^hashkey[0]))
    }
    
    func mix(a, b uintptr) uintptr {
    	hi, lo := math.Mul64(uint64(a), uint64(b))
    	return uintptr(hi ^ lo)
    }
    
    func r4(p unsafe.Pointer) uintptr {
    	return uintptr(readUnaligned32(p))
    }
    
    func r8(p unsafe.Pointer) uintptr {
    	return uintptr(readUnaligned64(p))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 17:39:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top