Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,240 for goclang (0.16 sec)

  1. test/fixedbugs/issue49100b.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
    
    func r(j int) {
    loop:
    	for i, c := range "goclang" {
    		if i == 2 {
    			continue loop
    		}
    		println(string(c))
    	}
    }
    
    func main() {
    loop:
    	for j := 0; j < 4; j++ {
    		r(j)
    		if j == 0 {
    			break loop
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 14:25:03 UTC 2021
    - 387 bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/testdata/mod/golang.org_x_internal_v0.1.0.txt

    written by hand — loosely derived from golang.org/x/crypto/internal/subtle,
    but splitting the internal package across a module boundary
    
    -- .mod --
    module golang.org/x/internal
    -- .info --
    {"Version":"v0.1.0","Name":"","Short":"","Time":"2018-07-25T17:24:00Z"}
    -- go.mod --
    module golang.org/x/internal
    -- subtle/aliasing.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 01:58:53 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/golang.org_x_useinternal_v0.1.0.txt

    written by hand — uses an internal package from another module
    (https://golang.org/s/go14internal)
    
    -- .mod --
    module golang.org/x/useinternal
    -- .info --
    {"Version":"v0.1.0","Name":"","Short":"","Time":"2018-07-25T17:24:00Z"}
    -- go.mod --
    module golang.org/x/useinternal
    -- useinternal.go --
    package useinternal
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 01:58:53 UTC 2018
    - 356 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/golang.org_notx_useinternal_v0.1.0.txt

    written by hand — attempts to use a prohibited internal package
    (https://golang.org/s/go14internal)
    
    -- .mod --
    module golang.org/notx/useinternal
    -- .info --
    {"Version":"v0.1.0","Name":"","Short":"","Time":"2018-07-25T17:24:00Z"}
    -- go.mod --
    module golang.org/notx/useinternal
    -- useinternal.go --
    package useinternal
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 01:58:53 UTC 2018
    - 363 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/golang.org_x_text_v0.3.0.txt

    written by hand - just enough to compile rsc.io/sampler, rsc.io/quote
    
    -- .mod --
    module golang.org/x/text
    -- .info --
    {"Version":"v0.3.0","Name":"","Short":"","Time":"2017-09-16T03:28:32Z"}
    -- go.mod --
    module golang.org/x/text
    -- unused/unused.go --
    package unused
    -- language/lang.go --
    // Copyright 2018 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:13 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/Clang.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.api.Incubating;
    
    /**
     * The <a href="http://clang.llvm.org">Clang</a> tool chain.
     */
    @Incubating
    public interface Clang extends GccCompatibleToolChain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 837 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/golang.org_x_text_v0.0.0-20170915032832-14c0d48ead0c.txt

    written by hand - just enough to compile rsc.io/sampler, rsc.io/quote
    
    -- .mod --
    module golang.org/x/text
    -- .info --
    {"Version":"v0.0.0-20170915032832-14c0d48ead0c","Name":"v0.0.0-20170915032832-14c0d48ead0c","Short":"14c0d48ead0c","Time":"2017-09-15T03:28:32Z"}
    -- go.mod --
    module golang.org/x/text
    -- unused/unused.go --
    package unused
    -- language/lang.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:13 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/.clang-format

    # Run manually to reformat a file:
    # clang-format -i --style=file <file>
    BasedOnStyle: Google
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 22:28:35 UTC 2017
    - 124 bytes
    - Viewed (0)
  10. .clang-format

    # Run manually to reformat a file:
    # clang-format -i --style=file <file>
    BasedOnStyle: Google
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 04:00:43 UTC 2021
    - 124 bytes
    - Viewed (0)
Back to top