Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,774 for rain (0.12 sec)

  1. test/typeparam/mapimp.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"
    	"fmt"
    	"reflect"
    	"strconv"
    )
    
    func main() {
    	got := a.Mapper([]int{1, 2, 3}, strconv.Itoa)
    	want := []string{"1", "2", "3"}
    	if !reflect.DeepEqual(got, want) {
    		panic(fmt.Sprintf("got %s, want %s", got, want))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 661 bytes
    - Viewed (0)
  2. src/cmd/link/main.go

    // configuration of the architecture-specific variables.
    //
    // Then control flow passes to ld.Main, which parses flags, makes
    // some configuration decisions, and then gives the architecture
    // packages a second chance to modify the linker's configuration
    // via the ld.Arch.Archinit function.
    
    func main() {
    	var arch *sys.Arch
    	var theArch ld.Arch
    
    	buildcfg.Check()
    	switch buildcfg.GOARCH {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. test/typeparam/issue50485.dir/main.go

    package main
    
    import (
    	"./a"
    )
    
    func main() {
    	_ = a.OrdOption(a.Given[int]())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 82 bytes
    - Viewed (0)
  4. src/debug/gosym/testdata/main.go

    package main
    
    func linefrompc()
    func pcfromline()
    
    func main() {
    	// Prevent GC of our test symbols
    	linefrompc()
    	pcfromline()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 12 20:27:20 UTC 2018
    - 130 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/multi-project/groovy/exe/src/main/cpp/main.cpp

    #include "hello.h"
    
    int main () {
      hello();
      return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 59 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/tooling/src/main/java/org/gradle/sample/Main.java

    import org.gradle.tooling.*;
    import org.gradle.sample.plugin.CustomModel;
    
    import java.io.File;
    import java.lang.Object;
    import java.lang.String;
    import java.lang.System;
    
    public class Main {
        public static void main(String[] args) {
            // Configure the connector and create the connection
            GradleConnector connector = GradleConnector.newConnector();
    
            if (args.length > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/testdata/issue62430/main.go

    // in some stdlib package (ex: unicode), however there
    // may be references to that map var from a plugin that
    // gets loaded.
    
    package main
    
    import (
    	"fmt"
    	"plugin"
    	"unicode"
    )
    
    func main() {
    	p, err := plugin.Open("issue62430.so")
    	if err != nil {
    		panic(err)
    	}
    	s, err := p.Lookup("F")
    	if err != nil {
    		panic(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 804 bytes
    - Viewed (0)
  8. src/runtime/testdata/testwinlib/main.go

    //go:build windows && cgo
    // +build windows,cgo
    
    package main
    
    // #include <windows.h>
    // typedef void(*callmeBackFunc)();
    // static void bridgeCallback(callmeBackFunc callback) {
    //	callback();
    //}
    import "C"
    
    // CallMeBack call backs C code.
    //
    //export CallMeBack
    func CallMeBack(callback C.callmeBackFunc) {
    	C.bridgeCallback(callback)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 925 bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents/main.cpp

    #include <iostream>
    <%
    includes.each { include ->
        out.println "#include \"$include\""
    }
    %>
    
    int main(int argc, char**argv) {
        return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 146 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/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)
Back to top