Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 161 for shared (0.26 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            return service.launcherFor(extension.getToolchain());
        }
    
        /**
         * A state shared by the validation process.
         * <p>
         * This separate class is required to ensure the shared state remains shared after deserialization of actions from the configuration cache.
         *
         * @see #configureJarTask(Project, GradlePluginDevelopmentExtension)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{78, "EREMCHG", "remote address changed"},
    	{79, "ELIBACC", "can not access a needed shared library"},
    	{80, "ELIBBAD", "accessing a corrupted shared library"},
    	{81, "ELIBSCN", ".lib section in a.out corrupted"},
    	{82, "ELIBMAX", "attempting to link in too many shared libraries"},
    	{83, "ELIBEXEC", "cannot exec a shared library directly"},
    	{84, "EILSEQ", "invalid or incomplete multibyte or wide character"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{78, "EREMCHG", "remote address changed"},
    	{79, "ELIBACC", "can not access a needed shared library"},
    	{80, "ELIBBAD", "accessing a corrupted shared library"},
    	{81, "ELIBSCN", ".lib section in a.out corrupted"},
    	{82, "ELIBMAX", "attempting to link in too many shared libraries"},
    	{83, "ELIBEXEC", "cannot exec a shared library directly"},
    	{84, "EILSEQ", "invalid or incomplete multibyte or wide character"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    // context.Context.
    type Shell struct {
    	action       *Action // nil for the root shell
    	*shellShared         // per-Builder state shared across Shells
    }
    
    // shellShared is Shell state shared across all Shells derived from a single
    // root shell (generally a single Builder).
    type shellShared struct {
    	workDir string // $WORK, immutable
    
    	printLock sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            """
            buildFile << """
                apply plugin: 'cpp-library'
                library {
                    baseName = 'some-lib'
                    linkage = [Linkage.STATIC, Linkage.SHARED]
                    privateHeaders.from = []
                    publicHeaders.from = ['include']
                    binaries.configureEach(CppSharedLibrary) {
                        compileTask.get().includes.from("other")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

        doesNotContain("teamcity.agent.name", "EC2")
    }
    
    /**
     * We have some "shared" host where a Linux build agent and a Windows build agent
     * both run on the same bare metal. Some builds require exclusive access to the
     * hardware resources (e.g. performance test).
     */
    fun Requirements.requiresNotSharedHost() {
        doesNotContain("agent.host.type", "shared")
    }
    
    /**
     * This is an undocumented location that forbids anonymous access.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	for ; ; state = c.state.load() {
    		switch {
    		case !state.locked() && state.havePtr():
    			if !c.state.update(&state, state.incReader()) {
    				continue
    			}
    			// Counter unlocked or counter shared; has an initialized count pointer; acquired shared lock.
    			if c.ptr.count == nil {
    				for !c.state.update(&state, state.addExtra(uint64(n))) {
    					// keep trying - we already took the reader lock
    					state = c.state.load()
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/kube/util.go

    		return nil, errors.NewRequestEntityTooLargeError(fmt.Sprintf("limit is %d", MaxRequestBodyBytes))
    	}
    	return data, nil
    }
    
    // StripUnusedFields is the transform function for shared informers,
    // it removes unused fields from objects before they are stored in the cache to save memory.
    func StripUnusedFields(obj any) (any, error) {
    	t, ok := obj.(metav1.ObjectMetaAccessor)
    	if !ok {
    		// shouldn't happen
    		return obj, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. pkg/kube/kclient/client.go

    // Internally, this uses a shared informer, so calling this multiple times will share the same internals.
    func New[T controllers.ComparableObject](c kube.Client) Client[T] {
    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals. This is keyed on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    import spock.lang.Shared
    
    import java.util.concurrent.Executor
    import java.util.concurrent.Executors.DefaultThreadFactory
    import java.util.concurrent.ThreadFactory
    
    class ConfigurationCacheUnsupportedTypesIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top