Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,774 for rain (0.08 sec)

  1. src/cmd/compile/main.go

    	"s390x":    s390x.Init,
    	"wasm":     wasm.Init,
    }
    
    func main() {
    	// disable timestamps for reproducible output
    	log.SetFlags(0)
    	log.SetPrefix("compile: ")
    
    	buildcfg.Check()
    	archInit, ok := archInits[buildcfg.GOARCH]
    	if !ok {
    		fmt.Fprintf(os.Stderr, "compile: unknown architecture %q\n", buildcfg.GOARCH)
    		os.Exit(2)
    	}
    
    	gc.Main(archInit)
    	base.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 18:14:52 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/testdata/issue42484/main.go

    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	a := 0
    	a++
    	b := 0
    	f1(a, b)
    }
    
    func f1(a, b int) {
    	fmt.Printf("%d %d\n", a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 21:10:45 UTC 2021
    - 132 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/groovy/src/main/java/Main.java

    import org.apache.commons.beanutils.PropertyUtils;
    
    public class Main {
        public static void main(String[] args) throws Exception {
            Object person = new Person();
            PropertyUtils.setSimpleProperty(person, "name", "Bart Simpson");
            PropertyUtils.setSimpleProperty(person, "age", 38);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 313 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/kotlin/src/main/java/Main.java

    import org.apache.commons.beanutils.PropertyUtils;
    
    public class Main {
        public static void main(String[] args) throws Exception {
            Object person = new Person();
            PropertyUtils.setSimpleProperty(person, "name", "Bart Simpson");
            PropertyUtils.setSimpleProperty(person, "age", 38);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 313 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/application/kotlin/src/main/java/org/gradle/sample/Main.java

    package org.gradle.sample;
    
    public class Main {
        public static void main(String[] args) {
            if (System.getProperty("greeting.language").equals("en")) {
                System.out.println("Greetings from the sample application.");
            } else {
                System.out.println("Bonjour, monde!");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  6. test/typeparam/issue49667.dir/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "./b"
    
    func main() {
    	var _ b.B[int]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 220 bytes
    - Viewed (0)
  7. test/typeparam/dedup.dir/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./b"
    	"./c"
    )
    
    func main() {
    	b.B()
    	c.C()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 230 bytes
    - Viewed (0)
  8. test/typeparam/gencrawler.dir/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "./a"
    
    func main() {
    	a.V.Print()
    	a.FnPrint(&a.V)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 234 bytes
    - Viewed (0)
  9. test/fixedbugs/bug424.dir/main.go

    	lib.T
    	localT
    }
    
    func main() {
    	var i localI
    
    	i = new(localT)
    	if i.m() != "main.localT.m" {
    		println("BUG: localT:", i.m(), "called")
    	}
    
    	i = new(myT1)
    	if i.m() != "main.localT.m" {
    		println("BUG: myT1:", i.m(), "called")
    	}
    
    	i = new(myT2)
    	if i.m() != "main.localT.m" {
    		println("BUG: myT2:", i.m(), "called")
    	}
    
    	t3 := new(myT3)
    	if t3.m() != "main.localT.m" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testshared/testdata/issue47837/main/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"testshared/issue47837/a"
    )
    
    func main() {
    	var vara a.ImplA
    	a.TheFuncWithArgA(&vara)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 273 bytes
    - Viewed (0)
Back to top