Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,337 for IsShared (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/visual_studio_plugin.adoc

    +
    Generates the `.vcxproj` file for the shared linkage of the `main` component.
    
    `__projectName__DllVisualStudioFilters` — link:{groovyDslPath}/org.gradle.ide.visualstudio.tasks.GenerateFiltersFileTask.html[GenerateFiltersFileTask]::
    +
    Generates the `.vcxproj.filters` file for the shared linkage of the `main` component.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

    import org.gradle.internal.typeconversion.NotationParser
    import spock.lang.Shared
    import spock.lang.Specification
    import spock.lang.Subject
    
    class CapabilityNotationParserFactoryTest extends Specification {
        @Subject
        @Shared
        private NotationParser<Object, Capability> strictParser = new CapabilityNotationParserFactory(true).create()
        @Subject
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/dist/supported_test.go

    	defer func(a, o string) {
    		goarch = a
    		goos = o
    	}(goarch, goos)
    
    	var modes = []string{
    		// we assume that "exe" and "archive" always work
    		"pie",
    		"c-archive",
    		"c-shared",
    		"shared",
    		"plugin",
    	}
    
    	for _, a := range okgoarch {
    		goarch = a
    		for _, o := range okgoos {
    			if _, ok := cgoEnabled[o+"/"+a]; !ok {
    				continue
    			}
    			goos = o
    			for _, mode := range modes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/runtime/rt0_linux_arm.s

    #include "textflag.h"
    
    TEXT _rt0_arm_linux(SB),NOSPLIT|NOFRAME,$0
    	MOVW	(R13), R0	// argc
    	MOVW	$4(R13), R1		// argv
    	MOVW	$_rt0_arm_linux1(SB), R4
    	B		(R4)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm_linux_lib(SB),NOSPLIT,$0
    	B	_rt0_arm_lib(SB)
    
    TEXT _rt0_arm_linux1(SB),NOSPLIT|NOFRAME,$0
    	// We first need to detect the kernel ABI, and warn the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 1007 bytes
    - Viewed (0)
  5. src/sync/pool.go

    // build efficient, thread-safe free lists. However, it is not suitable for all
    // free lists.
    //
    // An appropriate use of a Pool is to manage a group of temporary items
    // silently shared among and potentially reused by concurrent independent
    // clients of a package. Pool provides a way to amortize allocation overhead
    // across many clients.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeSoftwareModelParallelIntegrationTest.groovy

            when:
            succeeds("assemble", "parallelTask")
    
            then:
            assertTaskIsParallel("linkMainExecutable")
        }
    
        @ToBeFixedForConfigurationCache
        def "can execute link shared library tasks in parallel"() {
            given:
            withComponentsForAppAndSharedLib()
            createTaskThatRunsInParallelUsingCustomToolchainWith("linkMainLibSharedLibrary")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/runtime/rt0_linux_arm64.s

    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    TEXT _rt0_arm64_linux(SB),NOSPLIT|NOFRAME,$0
    	MOVD	0(RSP), R0	// argc
    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_linux_lib(SB),NOSPLIT,$184
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(24)
    	SAVE_F8_TO_F15(104)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestFrameworkTest.groovy

    import org.gradle.internal.time.Clock
    import org.gradle.testfixtures.ProjectBuilder
    import org.gradle.util.TestUtil
    import spock.lang.Shared
    import spock.lang.Specification
    
    public class TestNGTestFrameworkTest extends Specification {
    
        @Shared ObjectFactory objects = TestUtil.objectFactory()
    
        private project = ProjectBuilder.builder().build()
        Test testTask = TestUtil.createTask(Test, project)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/test/groovy/org/gradle/test/precondition/PredicateFileTest.groovy

    package org.gradle.test.precondition
    
    import spock.lang.Specification
    
    class PredicateFileTest extends Specification {
    
        Set<Set<String>> values = [
            // Value NOT shared between single and multi cases
            ["value1"] as Set,
            // Value shared between single and multi cases
            ["value2"] as Set,
            ["value2", "value3"] as Set,
        ] as Set
    
        def "accept single values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

    import static org.junit.Assume.assumeTrue
    
    @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC)
    class AbstractSwiftMixedLanguageIntegrationTest extends AbstractIntegrationSpec {
        public static final String SHARED = "SHARED"
        public static final String STATIC = "STATIC"
        def swiftToolChain = AvailableToolChains.getToolChain(ToolChainRequirement.SWIFTC)
        def cppToolChain = AvailableToolChains.getToolChain(ToolChainRequirement.CLANG)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top