Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,001 for msbuild (0.29 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

            }
        }
    
        static final class HasMsBuild implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                // Simplistic approach at detecting MSBuild by assuming Windows imply MSBuild is present
                return satisfied(UnitTestPreconditions.Windows) && notSatisfied(IsEmbeddedExecutor)
            }
        }
    
        static final class CanPublishToS3 implements TestPrecondition {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

                    }
                }
            """
            file("exe", "build.gradle") << """
                apply plugin: 'cpp-application'
    
                dependencies {
                    implementation project(':lib')
                }
            """
            file("lib", "build.gradle") << """
                apply plugin: 'cpp-library'
            """
            file("other", "build.gradle") << """
                apply plugin: 'cpp-library'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiProjectDependencyIntegrationTest.groovy

            when:
            run ':c:build'
    
            then:
            jarsBuilt 'a', 'b', 'c'
            depsCopied 'a', []
            depsCopied 'b', []
            depsCopied 'c', ['a', 'b']
        }
    
        def "project dependency c->b->a"() {
    
            projectDependency from: 'c', to: ['b']
            projectDependency from: 'b', to: ['a']
    
            when:
            run ':c:build'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/CrossProcessFileLockIntegrationTest.groovy

            then:
            def handle1 = executer.withArguments(':a:build', '-i').start()
            poll(120) {
                assert handle1.standardOutput.contains('waiting for file...')
            }
            //first build is waiting for file, so the lock should be releasable now (for example: the task history lock)
    
            and:
            def handle2 = executer.withArguments('b:build', '-is').start()
            handle2.waitForFinish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/go/printer/gobuild.go

    	// use that point instead. (Earlier in the file is always fine.)
    	if len(p.goBuild) > 0 && p.goBuild[0] < insert {
    		insert = p.goBuild[0]
    	} else if len(p.plusBuild) > 0 && p.plusBuild[0] < insert {
    		insert = p.plusBuild[0]
    	}
    
    	var x constraint.Expr
    	switch len(p.goBuild) {
    	case 0:
    		// Synthesize //go:build expression from // +build lines.
    		for _, pos := range p.plusBuild {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pkg/config/schema/collections/collections.agent.gen.go

    		MustAdd(Sidecar).
    		MustAdd(Telemetry).
    		MustAdd(VirtualService).
    		MustAdd(WasmPlugin).
    		MustAdd(WorkloadEntry).
    		MustAdd(WorkloadGroup).
    		Build()
    
    	// Kube contains only kubernetes collections.
    	Kube = collection.NewSchemasBuilder().
    		Build()
    
    	// Pilot contains only collections used by Pilot.
    	Pilot = collection.NewSchemasBuilder().
    		MustAdd(AuthorizationPolicy).
    		MustAdd(DestinationRule).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. Makefile.core.mk

    # This target should be expanded upon as we add more Linux architectures: i.e. build-arm64.
    # Then a new build target can be created such as build-container-bin that builds these
    # various platform images.
    .PHONY: build-linux
    build-linux: depend
    	GOOS=linux GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $(TARGET_OUT_LINUX)/ -tags=$(STANDARD_TAGS) $(STANDARD_BINARIES)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	// Also identify any //go:build comments.
    	content, goBuild, sawBinaryOnly, err := parseFileHeader(content)
    	if err != nil {
    		return false, false, err
    	}
    
    	// If //go:build line is present, it controls.
    	// Otherwise fall back to +build processing.
    	switch {
    	case goBuild != nil:
    		x, err := constraint.Parse(string(goBuild))
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/DefaultJavaPluginConventionTest.groovy

        }
    
        def "default dirs"() {
            expect:
            checkDirs()
        }
    
        def "dynamic dirs"() {
            when:
            project.buildDir = project.file('mybuild')
    
            then:
            checkDirs()
        }
    
        private void checkDirs() {
            assert convention.docsDir == new File(project.buildDir, convention.docsDirName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedExclusiveModeCrossProcessCacheAccess.java

            }
            final FileLock fileLock = lockManager.lock(lockTarget, lockOptions, cacheDisplayName, "", unused -> {});
            try {
                boolean rebuild = initializationAction.requiresInitialization(fileLock);
                if (rebuild) {
                    fileLock.writeFile(() -> initializationAction.initialize(fileLock));
                }
                onOpenAction.accept(fileLock);
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top