Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 659 for goose (0.04 sec)

  1. test/fixedbugs/issue31412a.go

    type Name string
    
    type EFunc func(int) int
    
    func Register(f EFunc, names ...Name) int {
    	return f(len(names))
    }
    
    const (
    	B Name = "B"
    )
    
    func RegisterIt() {
    	n := B + "Duck"
    	d := B + "Goose"
    	f := func(x int) int { return x + 9 }
    	Register(f, n, d)
    }
    
    func main() {
    	RegisterIt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:17:26 UTC 2019
    - 531 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    abstract Property<CustomData> getCustomData();
    
                    @TaskAction
                    void run() {
                    }
                }
    
                extension.customData.vcsUrl = "goose"
                tasks.register("crashTask", CrashTask) {
                    customData = extension.customData
                    outputDir = file("build/crashTask")
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/internal/goos/goos.go

    // license that can be found in the LICENSE file.
    
    // package goos contains GOOS-specific constants.
    package goos
    
    // The next line makes 'go generate' write the zgoos*.go files with
    // per-OS information, including constants named Is$GOOS for every
    // known GOOS. The constant is 1 on the current system, 0 otherwise;
    // multiplying by them is useful for defining GOOS-specific constants.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 534 bytes
    - Viewed (0)
  4. src/internal/goos/gengoos.go

    			inGOOS = true
    		} else if inGOOS && strings.HasPrefix(line, "}") {
    			break
    		} else if inGOOS {
    			goos := strings.Fields(line)[0]
    			goos = strings.TrimPrefix(goos, `"`)
    			goos = strings.TrimSuffix(goos, `":`)
    			gooses = append(gooses, goos)
    		}
    	}
    
    	for _, target := range gooses {
    		if target == "nacl" {
    			continue
    		}
    		var tags []string
    		if target == "linux" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 15 21:31:23 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/mkall.sh

    #
    # * syscall_${GOOS}.go
    #
    # This hand-written Go file implements system calls that need
    # special handling and lists "//sys" comments giving prototypes
    # for ones that can be auto-generated.  Mksyscall reads those
    # comments to generate the stubs.
    #
    # * syscall_${GOOS}_${GOARCH}.go
    #
    # Same as syscall_${GOOS}.go except that it contains code specific
    # to ${GOOS} on one particular architecture.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Come and help me out of THIS!'  (Sounds of more broken glass.)
    
      `Now tell me, Pat, what's that in the window?'
    
      `Sure, it's an arm, yer honour!'  (He pronounced it `arrum.')
    
      `An arm, you goose!   Who ever saw one that size?  Why, it
    fills the whole window!'
    
      `Sure, it does, yer honour:  but it's an arm for all that.'
    
      `Well, it's got no business there, at any rate:  go and take it
    away!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Come and help me out of THIS!'  (Sounds of more broken glass.)
    
      `Now tell me, Pat, what's that in the window?'
    
      `Sure, it's an arm, yer honour!'  (He pronounced it `arrum.')
    
      `An arm, you goose!   Who ever saw one that size?  Why, it
    fills the whole window!'
    
      `Sure, it does, yer honour:  but it's an arm for all that.'
    
      `Well, it's got no business there, at any rate:  go and take it
    away!'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	mkerrors=
    	mksysnum=
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    *)
    	echo 'unrecognized $GOOS_$GOARCH: ' "$GOOSARCH" 1>&2
    	exit 1
    	;;
    esac
    
    (
    	if [ -n "$mkerrors" ]; then echo "$mkerrors |gofmt >$zerrors"; fi
    	case "$GOOS" in
    	*)
    		syscall_goos="syscall_$GOOS.go"
    		case "$GOOS" in
    		darwin | dragonfly | freebsd | netbsd | openbsd)
    			syscall_goos="syscall_bsd.go $syscall_goos"
    			;;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/distpack/pack.go

    	if goroot == "" {
    		log.Fatalf("missing $GOROOT")
    	}
    	gohostos = runtime.GOOS
    	gohostarch = runtime.GOARCH
    	goos = os.Getenv("GOOS")
    	if goos == "" {
    		goos = gohostos
    	}
    	goarch = os.Getenv("GOARCH")
    	if goarch == "" {
    		goarch = gohostarch
    	}
    	goosUnderGoarch := goos + "_" + goarch
    	goosDashGoarch := goos + "-" + goarch
    	exe := ""
    	if goos == "windows" {
    		exe = ".exe"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/link/doc.go

    	-importcfg file
    		Read import configuration from file.
    		In the file, set packagefile, packageshlib to specify import resolution.
    	-installsuffix suffix
    		Look for packages in $GOROOT/pkg/$GOOS_$GOARCH_suffix
    		instead of $GOROOT/pkg/$GOOS_$GOARCH.
    	-k symbol
    		Set field tracking symbol. Use this flag when GOEXPERIMENT=fieldtrack is set.
    	-libgcc file
    		Set name of compiler support library.
    		This is only used in internal link mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top