Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 736 for shared (0.11 sec)

  1. src/cmd/go/internal/work/init.go

    				case "arm64":
    					codegenArg = "-shared"
    				}
    
    			case "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
    				// Use -shared so that the result is
    				// suitable for inclusion in a PIE or
    				// shared library.
    				codegenArg = "-shared"
    			}
    		}
    		cfg.ExeSuffix = ".a"
    		ldBuildmode = "c-archive"
    	case "c-shared":
    		pkgsFilter = oneMainPkg
    		if gccgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

                    return backingCache
                }
            }
        }
    
        def "acquires lock on open and releases on close when lock mode is shared"() {
            def access = newAccess(Shared)
    
            when:
            access.open()
    
            then:
            1 * lockManager.lock(lockFile, mode(Shared), "<display-name>") >> lock
            1 * initializationAction.requiresInitialization(lock) >> false
            _ * lock.state
            0 * _._
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. apache-maven/pom.xml

                  <exclude>src/assembly/shared/init</exclude>
                  <exclude>src/assembly/shared/init.cmd</exclude>
                  <exclude>src/assembly/shared/mvnlauncher</exclude>
                  <exclude>src/assembly/shared/mvnlauncher.cmd</exclude>
                  <exclude>src/assembly/shared/mvnvalidate</exclude>
                  <exclude>src/assembly/shared/mvnvalidate.cmd</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/cshared_test.go

    	}
    	libgoname = "libgo.a"
    
    	args = []string{"go", "build", "-buildmode=c-shared", "-o", filepath.Join(installdir, libgoname), "./libgo"}
    	cmd = exec.Command(args[0], args[1:]...)
    	out, err = cmd.CombinedOutput()
    	if err != nil {
    		return fmt.Errorf("command failed: %v\n%v\n%s\n", args, err, out)
    	}
    
    	args = []string{"go", "build", "-buildmode=c-shared",
    		"-installsuffix", "testcshared",
    		"-o", libgoname,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[build_services]]
    = Using Shared Build Services
    
    Shared build services allow tasks to share state or resources.
    For example, tasks might share a cache of pre-computed values or use a web service or database instance.
    
    A build service is an object that holds the state for tasks to use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    - If the retention period is customized for Gradle versions greater than or equal to version 8.0 to use retention periods _longer_ than the previously fixed periods, the older versions of Gradle may clean the shared caches earlier than what is configured.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

        @Shared
        def socketError = new SocketException()
        @Shared
        def connectTimeout = new SocketTimeoutException()
        @Shared
        def cannotConnect = new HttpHostConnectException(null, null)
        @Shared
        def missing = status(404)
        @Shared
        def clientTimeout = status(408)
        @Shared
        def tooManyRequests = status(429)
        @Shared
        def forbidden = status(403)
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

        @Shared
            versionIdentifier = new DefaultModuleVersionIdentifier("org.test", "producer", "1.0")
        @Shared
            componentIdentifier = DefaultModuleComponentIdentifier.newId(versionIdentifier)
        @Shared
            attributes = AttributeTestUtil.attributesFactory().of(Attribute.of("someAttribute", String), "someValue")
        @Shared
            schema = createSchema()
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			expect: authorizer.DecisionNoOpinion,
    		},
    		{
    			name:   "allowed shared secret via pod",
    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "secrets", Name: "secret0-shared", Namespace: "ns0"},
    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "allowed shared secret via pvc",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    - `release` - Generate debug symbols and optimize, but extract the debug symbols from the binary
    
    Linkages - default to _shared_::
    The linkage expresses whether a shared library or static library should be created. Libraries can produce a shared library, a static library or both.
    
    The linkage can be configured as follows:
    
    .Configure library linkages
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top