Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for Synchronizer (0.2 sec)

  1. src/runtime/mfinal.go

    // a new goroutine.
    //
    // In the terminology of the Go memory model, a call
    // SetFinalizer(x, f) “synchronizes before” the finalization call f(x).
    // However, there is no guarantee that KeepAlive(x) or any other use of x
    // “synchronizes before” f(x), so in general a finalizer should use a mutex
    // or other synchronization mechanism if it needs to access mutable state in x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       *
       * <p>This method is not type-safe, as it may be called on elements that are not mutually
       * comparable.
       *
       * <p>This method is safe to use even when {@code elements} is a synchronized or concurrent
       * collection that is currently being modified by another thread.
       *
       * @throws ClassCastException if the elements are not mutually comparable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                            loadedClass = it.localClassLoader.loadClass(className)
                        }
                    }
                    return loadedClass!!
                }
    
            @Synchronized
            override fun onReuse() {
                scope?.let {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    it.onReuse()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

        }
    
        private GradleUserHomeScopeServiceRegistry userHomeServicesOf(ServiceRegistry globalServices) {
            return globalServices.get(GradleUserHomeScopeServiceRegistry.class);
        }
    
        public synchronized static ServiceRegistry getGlobalServices() {
            if (globalServices == null) {
                globalServices = createGlobalServices();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            return new DefaultFinishEvent<>(event.getEventTime(), event.getDisplayName(), descriptor, toResult(event.getResult()));
        }
    
        private synchronized <T extends OperationDescriptor> T addDescriptor(InternalOperationDescriptor descriptor, T clientDescriptor) {
            if (this.descriptorCache.containsKey(descriptor.getId())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

        @Resource
        protected ContentLengthHelper contentLengthHelper;
    
        protected volatile SmbAuthenticationHolder smbAuthenticationHolder;
    
        protected CIFSContext cifsContext;
    
        @Override
        public synchronized void init() {
            if (smbAuthenticationHolder != null) {
                return;
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing SmbClient...");
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                            volatile T instance;
    
                            @Override
                            public T get() {
                                if (instance == null) {
                                    synchronized (this) {
                                        if (instance == null) {
                                            instance = unscoped.get();
                                        }
                                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/runtime/tracestack.go

    // from stack traces, see CL 5523.
    //
    // Avoid calling this function directly. gen needs to be the current generation
    // that this stack trace is being written out for, which needs to be synchronized with
    // generations moving forward. Prefer traceEventWriter.stack.
    func traceStack(skip int, gp *g, gen uintptr) uint64 {
    	var pcBuf [traceStackSize]uintptr
    
    	// Figure out gp and mp for the backtrace.
    	var mp *m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// certain requests may impact result of further requests. As an example, if we first
    			// ensure that watchcache is synchronized up to ResourceVersion X (using Get/List requests
    			// with NotOlderThan semantic), the further requests (even specifying earlier resource
    			// version) will also return the result synchronized to at least ResourceVersion X.
    			// By parallelizing test cases we ensure that the order in which test cases are defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. src/runtime/traceruntime.go

    //
    // sched.lock must be held to synchronize with traceAdvance.
    func traceThreadDestroy(mp *m) {
    	assertLockHeld(&sched.lock)
    
    	// Flush all outstanding buffers to maintain the invariant
    	// that an M only has active buffers while on sched.freem
    	// or allm.
    	//
    	// Perform a traceAcquire/traceRelease on behalf of mp to
    	// synchronize with the tracer trying to flush our buffer
    	// as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top