Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 497 for compiling (0.12 sec)

  1. src/cmd/internal/obj/x86/seh.go

    		return
    	}
    	if movbp.Link.Pc > math.MaxUint8 {
    		// SEH unwind information don't support prologues that are more than 255 bytes long.
    		// These are very rare, but still possible, e.g., when compiling functions with many
    		// parameters with -gcflags=-d=maymorestack=runtime.mayMoreStackPreempt.
    		// Return without reporting an error.
    		return
    	}
    
    	// Reference:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build.go

    If the arguments to build are a list of .go files from a single directory,
    build treats them as a list of source files specifying a single package.
    
    When compiling packages, build ignores files that end in '_test.go'.
    
    When compiling a single main package, build writes the resulting
    executable to an output file named after the last non-major-version
    component of the package import path. The '.exe' suffix is added
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. architecture/platforms.md

    ### Software development platform
    
    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    This platform is agnostic to what kind of software is being developed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. cmd/preferredimports/preferredimports.go

    }
    
    func main() {
    	flag.Parse()
    	args := flag.Args()
    
    	if len(args) == 0 {
    		args = append(args, ".")
    	}
    
    	regex, err := regexp.Compile(*regex)
    	if err != nil {
    		log.Fatalf("Error compiling regex: %v", err)
    	}
    	c := collector{regex: regex}
    	for _, arg := range args {
    		err := filepath.Walk(arg, c.handlePath)
    		if err != nil {
    			log.Fatalf("Error walking: %v", err)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. build/pause/Makefile

    KUBE_CROSS_IMAGE ?= registry.k8s.io/build-image/kube-cross
    KUBE_CROSS_VERSION ?= $(shell cat ../build-image/cross/VERSION)
    
    # NOTE(claudiub): The Windows pause image also requires the wincat binary we're compiling for the
    # port-forwarding scenarios. If it's no longer necessary, it can be removed.
    # For more information, see: https://github.com/kubernetes/kubernetes/pull/91452
    BIN.linux = pause
    BIN.windows = pause wincat
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    | compileClasspath
    | For compiling this library
    | no
    | yes
    | This configuration contains the compile classpath of this library, and is therefore used when invoking the java compiler to compile it.
    
    | runtimeClasspath
    | For executing this library
    | no
    | yes
    | This configuration contains the runtime classpath of this library
    
    | testCompileClasspath
    | For compiling the tests of this library
    | no
    | yes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/coverage/cover.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package coverage
    
    // This package contains support routines for coverage "fixup" in the
    // compiler, which happens when compiling a package whose source code
    // has been run through "cmd/cover" to add instrumentation. The two
    // important entry points are FixupVars (called prior to package init
    // generation) and FixupInit (called following package init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    These plugins provide essential functionality for building and managing projects.
    
    Some examples of core plugins include:
    
    - *java*: Provides support for building Java projects.
    - *groovy*: Adds support for compiling and testing Groovy source files.
    - *ear*: Adds support for building EAR files for enterprise applications.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

     *
     * <pre>
     * then:
     * executedAndNotSkipped(":compileJava")
     *
     * result.groupedOutput.task(":compileJava")
     *     .assertOutputContains("Compiling with toolchain")
     * </pre>
     */
    public class GroupedOutputFixture {
        /**
         * All tasks will start with > Task, captures everything starting with : and going until end of line
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':compileDebugSwift'.")
            failure.assertHasCause("A build operation failed.")
            failure.assertThatCause(containsText("Swift compiler failed while compiling swift file(s)"))
        }
    
        def "can build debug and release variants of library"() {
            given:
            def lib = new SwiftLib()
            settingsFile << "rootProject.name = '${lib.projectName}'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top