Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 165 for shared (0.12 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    		d.ldr.Reachparent = make([]loader.Sym, d.ldr.NSym())
    	}
    	d.dynlink = d.ctxt.DynlinkingGo()
    
    	if d.ctxt.BuildMode == BuildModeShared {
    		// Mark all symbols defined in this library as reachable when
    		// building a shared library.
    		n := d.ldr.NDef()
    		for i := 1; i < n; i++ {
    			s := loader.Sym(i)
    			if d.ldr.SymType(s) == sym.STEXT && d.ldr.SymSize(s) == 0 {
    				// Zero-sized text symbol is a function deadcoded by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    	// driver can be mounted separately with different `-o context` options. This is
    	// typical for storage backends that provide volumes as filesystems on block
    	// devices or as independent shared volumes.
    	// Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                tasks.register("lock", FileLocker)
            """
        }
    
        def cleanup() {
            socketReceiverThread?.terminate = true
        }
    
        def "the lock holder is not hammered with ping requests for the shared lock"() {
            given:
            setupLockOwner()
            def pingRequestCount = 0
            //do not handle requests: this simulates the situation were pings do not arrive
            replaceSocketReceiver { pingRequestCount++ }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            assert isolatedToolingClient != null
            isolatedToolingClient.close()
        }
    
        /**
         * Specifies that the test use real daemon processes (not embedded) and a test-specific daemon registry. Uses a shared Gradle user home dir
         */
        void requireIsolatedDaemons() {
            if (useSeparateDaemonBaseDir) {
                daemonBaseDir = testWorkDirProvider.testDirectory.file("daemons")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    But instead of being limited to the previous build in the same workspace, task output caching allows Gradle to reuse task outputs from any earlier build in any location on the local machine.
    When using a shared build cache for task output caching this even works across developer machines and build agents.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

        }
    
        def "invalidates cached model when model builder input changes"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc("""
                project.providers.gradleProperty("shared-input").getOrNull()
                project.providers.systemProperty("\${project.name}-input").getOrNull()
            """)
            settingsFile << """
                include("a")
                include("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/node.go

    var _ phases.Data = &nodeData{}
    
    // nodeData defines all the runtime information used when running the kubeadm upgrade node workflow;
    // this data is shared across all the phases that are included in the workflow.
    type nodeData struct {
    	etcdUpgrade           bool
    	renewCerts            bool
    	dryRun                bool
    	cfg                   *kubeadmapi.UpgradeConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    	// symbols in other shared libraries, as in this mode symbols are global by
    	// default. "local" here means in the sense of the dynamic linker, i.e. not
    	// visible outside of the module (shared library or executable) that contains its
    	// definition. (When not compiling to support Go shared libraries, all symbols are
    	// local in this sense unless there is a cgo_export_* directive).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            then:
            parameter == newInstance
    
            when:
            newInstance.continueOnFailure = false
    
            then:
            parameter != newInstance
        }
    
        void "mutable collections are not shared"() {
            def parameter = new StartParameter()
            parameter.taskNames = ['a']
            parameter.excludedTaskNames = ['foo']
            parameter.projectProperties = [a: 'a']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    		into a C archive file. The only callable symbols will be those
    		functions exported using a cgo //export comment. Requires
    		exactly one main package to be listed.
    
    	-buildmode=c-shared
    		Build the listed main package, plus all packages it imports,
    		into a C shared library. The only callable symbols will
    		be those functions exported using a cgo //export comment.
    		Requires exactly one main package to be listed.
    
    	-buildmode=default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top