Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,442 for dain (0.06 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    // license that can be found in the LICENSE file.
    
    // The bug happened like this:
    //  1. The main binary adds an itab for *json.UnsupportedValueError / error
    //     (concrete type / interface type).  This itab goes in hash bucket 0x111.
    //  2. The plugin adds that same itab again.  That makes a cycle in the itab
    //     chain rooted at hash bucket 0x111.
    //  3. The main binary then asks for the itab for *dynamodbstreamsevt.Event /
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/go/build/testdata/other/main.go

    // Test data - not compiled.
    
    package main
    
    import (
    	"./file"
    )
    
    func main() {
    	file.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 92 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top