Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,974 for msbuild (0.28 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

        def "can build library from visual studio"() {
            useMsbuildTool()
            def debugBinaryLib = staticLibrary("build/lib/main/debug/static/lib")
            def debugBinaryDll = sharedLibrary("build/lib/main/debug/shared/lib")
    
            given:
            app.library.writeSources(file("src/main"))
            settingsFile << """
                rootProject.name = 'lib'
            """
            buildFile << """
                apply plugin: 'cpp-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. ci/devinfra/docker_windows/Dockerfile

        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\VS\VC\Tools\MSVC\14.33.31629\bin\Hostx64\x64;C:\VS\Common7\Tools;C:\VS\MSBuild\Current\Bin\", \"Machine\");
    
    # Add signtool.exe to the PATH. Note this path may need to be edited if updates
    # are made to the Windows 10 SDK.
    RUN $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

            when:
            executer.withTasks("build").run()
    
            then:
            testFile("build/resources/main/prod.resource").assertExists()
            testFile("build/classes/java/main/prod.resource").assertDoesNotExist()
    
            testFile("build/resources/test/test.resource").assertExists()
            testFile("build/classes/java/test/test.resource").assertDoesNotExist()
    
            testFile("build/classes/java/main/Main.class").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/DefaultBasePluginConventionTest.groovy

            extension.libsDirectory.getAsFile().get() == project.file('mybuild/mylibs')
        }
    
        def "dirs are cached properly"() {
            when:
            project.buildDir = project.file('mybuild')
            convention.distsDirName = 'mydists'
    
            then:
            convention.distsDirectory.getAsFile().get() == project.file('mybuild/mydists')
            extension.distsDirectory.getAsFile().get() == project.file('mybuild/mydists')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/imports/build.go

    // lines beginning with '// +build' are taken as build directives.
    //
    // The file is accepted only if each such line lists something
    // matching the file. For example:
    //
    //	// +build windows linux
    //
    // marks the file as applicable only on Windows and Linux.
    //
    // If tags["*"] is true, then ShouldBuild will consider every
    // build tag except "ignore" to be both true and false for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. pkg/registry/rbac/validation/policy_compact_test.go

    				{Verbs: []string{"list"}, APIGroups: []string{""}, Resources: []string{"builds"}, ResourceNames: []string{"mybuild2"}},
    			},
    			Expected: []rbacv1.PolicyRule{
    				{Verbs: []string{"get"}, APIGroups: []string{""}, Resources: []string{"builds"}, ResourceNames: []string{"mybuild"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 9.5K bytes
    - Viewed (0)
  10. 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)
Back to top