Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,212 for notified (0.21 sec)

  1. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

    /**
     * A wrapper for {@link Properties} that notifies a listener about accesses.
     */
    @SuppressWarnings("UnsynchronizedOverridesSynchronized")
    // TODO(mlopatkin) we need a better synchronization guarantees here. Just sprinkling synchronized won't help.
    public class AccessTrackingProperties extends Properties {
        /**
         * A listener that is notified about reads and modifications of the Properties instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    		// there's an active race. Once the CAS succeeds, we
    		// should queue up the preemption (which will require
    		// it to be reliable in the _Grunning case, not
    		// best-effort) and then sleep until we're notified
    		// that the goroutine is suspended.
    		if i == 0 {
    			nextYield = nanotime() + yieldDelay
    		}
    		if nanotime() < nextYield {
    			procyield(10)
    		} else {
    			osyield()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// * not be delivered at all. It's recommended to poll request progress periodically.
    	//
    	// Note: Only watches with matching context grpc metadata will be notified.
    	// https://github.com/kubernetes/kubernetes/blob/9325a57125e8502941d1b0c7379c4bb80a678d5c/vendor/go.etcd.io/etcd/client/v3/watch.go#L1037-L1042
    	//
    	// TODO: Remove when storage.Interface will be separate from etc3.store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	// KeyComparison functions should ensure they handle an empty existingKey, as "key" is not a required field.
    	//
    	// Warning: when a lock is stolen (from KeyComparison returning true), the old leader may not
    	// immediately be notified they have lost the leader election.
    	KeyComparison KeyComparisonFunc
    
    	// Callbacks are callbacks that are triggered during certain lifecycle
    	// events of the LeaderElector
    	Callbacks LeaderCallbacks
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. docs/en/docs/help-fastapi.md

    If you select "Watching" instead of "Releases only" you will receive notifications when someone creates a new issue or question. You can also specify that you only want to be notified about new issues, or discussions, or PRs, etc.
    
    Then you can try and help them solve those questions.
    
    ## Ask Questions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        for (;;) {
          pthread_mutex_lock(&mutex_);
          const bool notified = notified_;
          pthread_mutex_unlock(&mutex_);
          if (notified)
            break;
          SleepMilliseconds(10);
        }
      }
    
     private:
      pthread_mutex_t mutex_;
      bool notified_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);
    };
    
    // As a C-function, ThreadFuncWithCLinkage cannot be templated itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      /** The close reason from the peer, or null if this web socket has not yet read a close frame. */
      private var receivedCloseReason: String? = null
    
      /** True if this web socket failed and the listener has been notified. */
      private var failed = false
    
      /** Total number of pings sent by this web socket. */
      private var sentPingCount = 0
    
      /** Total number of pings received by this web socket. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        for (;;) {
          pthread_mutex_lock(&mutex_);
          const bool notified = notified_;
          pthread_mutex_unlock(&mutex_);
          if (notified)
            break;
          SleepMilliseconds(10);
        }
      }
    
     private:
      pthread_mutex_t mutex_;
      bool notified_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);
    };
    
    // As a C-function, ThreadFuncWithCLinkage cannot be templated itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/tokens_controller.go

    		// Retry for any error other than a NotFound
    		return !apierrors.IsNotFound(err), err
    	}
    	if liveSecret.ResourceVersion != cachedSecret.ResourceVersion {
    		// our view of the secret is not up to date
    		// we'll get notified of an update event later and get to try again
    		logger.V(2).Info("Secret is not up to date, skipping token population", "secret", klog.KRef(liveSecret.Namespace, liveSecret.Name))
    		return false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. architecture/networking/pilot.md

    #### Ingress
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top