Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,071 for compilers (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    NOTE: The `compile` and `runtime` configurations have been removed with Gradle 7.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            when:
            run "compile"
            then:
            executedAndNotSkipped ":compile"
    
            when:
            run "compile"
            then:
            skipped ":compile"
    
            when:
            buildFile.text = buildScriptWithClasspath("lib2.jar", "lib1.jar")
            run "compile"
            then:
            executedAndNotSkipped ":compile"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. src/internal/bisect/bisect.go

    // Copyright 2023 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 bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stmt.go

    func goVal(val constant.Value) interface{} {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    	// and string values, so only create Go values for these
    	// types.
    	switch val.Kind() {
    	case constant.Int:
    		if x, ok := constant.Int64Val(val); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/build.go

    	default:
    		return fmt.Errorf("unknown compiler %q", value)
    	}
    	cfg.BuildToolchainName = value
    	cfg.BuildContext.Compiler = value
    	return nil
    }
    
    func (c buildCompiler) String() string {
    	return cfg.BuildContext.Compiler
    }
    
    func init() {
    	switch build.Default.Compiler {
    	case "gc", "gccgo":
    		buildCompiler{}.Set(build.Default.Compiler)
    	}
    }
    
    type BuildFlagMask int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. src/go/types/stmt.go

    // goVal returns the Go value for val, or nil.
    func goVal(val constant.Value) any {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    	// and string values, so only create Go values for these
    	// types.
    	switch val.Kind() {
    	case constant.Int:
    		if x, ok := constant.Int64Val(val); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.run("test", "-c", "-n", "p1")
    	tg.grepBothNot(`([\\/]compile|gccgo).* (-p main|-fgo-pkgpath=main).*p1\.go`, "should not have run compile -p main p1.go")
    	tg.grepStderr(`([\\/]compile|gccgo).* (-p p1|-fgo-pkgpath=p1).*p1\.go`, "should have run compile -p p1 p1.go")
    }
    
    // Issue 4104.
    func TestGoTestWithPackageListedMultipleTimes(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    		runtime.Stack(buf, true)
    	}
    }
    
    // TestTryAdd tests the cases that are hard to test with real program execution.
    //
    // For example, the current go compilers may not always inline functions
    // involved in recursion but that may not be true in the future compilers. This
    // tests such cases by using fake call sequences and forcing the profile build
    // utilizing translateCPUProfile defined in proto_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	return fmt.Sprintf("/*line :%d:%d*/%s", p.Line, p.Column, s)
    }
    
    // checkGCCBaseCmd returns the start of the compiler command line.
    // It uses $CC if set, or else $GCC, or else the compiler recorded
    // during the initial build as defaultCC.
    // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
    //
    // The compiler command line is split into arguments on whitespace. Quotes
    // are understood, so arguments may contain whitespace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    		If the package uses cgo or SWIG, these will be compiled with the
    		OS-native compiler (typically gcc); otherwise they will
    		trigger an error.
    	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    		C++ source files. Only useful with cgo or SWIG, and always
    		compiled with the OS-native compiler.
    	.m
    		Objective-C source files. Only useful with cgo, and always
    		compiled with the OS-native compiler.
    	.s, .S, .sx
    		Assembler source files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top