Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 617 for goclang (0.12 sec)

  1. hack/lib/golang.sh

      done
    }
    
    # Asks golang what it thinks the host platform is. The go tool chain does some
    # slightly different things when the target platform matches the host platform.
    kube::golang::host_platform() {
      echo "$(go env GOHOSTOS)/$(go env GOHOSTARCH)"
    }
    
    # Takes the platform name ($1) and sets the appropriate golang env variables
    # for that platform.
    kube::golang::set_platform_envs() {
      [[ -n ${1-} ]] || {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_invalid_version.txt

    cd ..
    go get golang.org/x/text@upgrade
    go list -m golang.org/x/text
    stdout 'golang.org/x/text v1.999999.0 => golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c'
    
    # A pseudo-version derived from a non-ancestor tag is invalid.
    cp go.mod.orig go.mod
    go mod edit -require golang.org/x/text@v0.2.1-0.20170915032832-14c0d48ead0c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
    
            public Optional<InstalledToolChain> getClang() {
                GccMetadataProvider versionDeterminer = GccMetadataProvider.forClang(TestFiles.execActionFactory());
                File clang = new File("/usr/bin/clang");
                SearchResult<GccMetadata> version = versionDeterminer.getCompilerMetaData(Collections.emptyList(), spec -> spec.executable(clang).environment("DEVELOPER_DIR", xcodeDir.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  4. src/net/lookup_test.go

    	queries := [][]string{
    		{"udp", "golang.org"},
    		{"udp4", "golang.org"},
    		{"udp6", "golang.org"},
    		{"udp", "golang.org"},
    		{"udp", "golang.org"},
    	}
    	results := map[[2]string][]IPAddr{
    		{"udp", "golang.org"}: {
    			{IP: IPv4(127, 0, 0, 1)},
    			{IP: IPv6loopback},
    		},
    		{"udp4", "golang.org"}: {
    			{IP: IPv4(127, 0, 0, 1)},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/debug/dwarf/testdata/line-clang.elf

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 10K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/line-clang-dwarf5.elf

    Ian Lance Taylor <******@****.***> 1607728543 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 18:06:06 UTC 2020
    - 18K bytes
    - Viewed (0)
  7. pkg/log/config_test.go

    		o.logCallers = "default"
    		o.SetDefaultOutputLevel(DefaultScopeName, DebugLevel)
    		o.SetDefaultOutputLevel(GrpcScopeName, DebugLevel)
    		_ = Configure(o)
    
    		// output to the plain golang "log" package
    		log.Println("golang")
    
    		// output to the gRPC logging package
    		grpclog.Error("grpc-error")
    		grpclog.Warning("grpc-warn")
    		grpclog.Info("grpc-info")
    
    		// output directly to zap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/go.sum

    golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
    golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
    golang.org/x/term v0.0.0-20220526004731-065cf7ba2467/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
    golang.org/x/term v0.20.0 h1:VnkxpohqXaOBYJtBmEppKUG6mXpi+4O6purfc2+sMhw=
    golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcs/vcs_test.go

    	{"*:all", "is-public.com/foo", "zzz", true},
    	{"golang.org:git", "golang.org/x/text", "zzz", false},
    	{"golang.org:git", "golang.org/x/text", "git", true},
    	{"golang.org:zzz", "golang.org/x/text", "zzz", true},
    	{"golang.org:zzz", "golang.org/x/text", "git", false},
    	{"golang.org:zzz", "golang.org/x/text", "zzz", true},
    	{"golang.org:zzz", "golang.org/x/text", "git", false},
    	{"golang.org:git|hg", "golang.org/x/text", "hg", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/go.sum

    golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
    golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
    golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
    golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
    golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top