Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 816 for QUEUE (0.06 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/QueueInitializerTest.groovy

            when:
            initializer.onQueueAdded(queue)
    
            then:
            0 * queue._
        }
    
        def "discards message on end of stream received"() {
            given:
            def closed = new EndOfStream()
    
            initializer.onStatefulMessage(closed)
    
            when:
            initializer.onQueueAdded(queue)
    
            then:
            1 * queue.dispatch(closed)
            0 * queue._
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

                return;
            }
            final Deque<Object> queue = new ArrayDeque<Object>(mutableValues.size() + immutableValues.size());
            queue.addAll(immutableValues);
            queue.addAll(mutableValues);
            while (!queue.isEmpty()) {
                Object dependency = queue.removeFirst();
                if (dependency instanceof Buildable) {
                    context.add(dependency);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlQueueService.java

     *
     */
    public interface UrlQueueService<QUEUE extends UrlQueue<?>> {
    
        void updateSessionId(String oldSessionId, String newSessionId);
    
        void add(String sessionId, String url);
    
        void insert(QUEUE urlQueue);
    
        void delete(String sessionId);
    
        void deleteAll();
    
        void offerAll(String sessionId, List<QUEUE> newUrlQueueList);
    
        QUEUE poll(String sessionId);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/FinalizableSoftReference.java

      /**
       * Constructs a new finalizable soft reference.
       *
       * @param referent to softly reference
       * @param queue that should finalize the referent
       */
      protected FinalizableSoftReference(@CheckForNull T referent, FinalizableReferenceQueue queue) {
        super(referent, queue.queue);
        queue.cleanUp();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/FinalizableSoftReference.java

      /**
       * Constructs a new finalizable soft reference.
       *
       * @param referent to softly reference
       * @param queue that should finalize the referent
       */
      protected FinalizableSoftReference(@CheckForNull T referent, FinalizableReferenceQueue queue) {
        super(referent, queue.queue);
        queue.cleanUp();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            1 * buildOperationExecutor.runAll(commandLineTool, _) >> { worker, action -> action.execute(queue) }
            1 * invocationContext.getArgAction() >> Actions.doNothing()
            1 * invocationContext.createInvocation("linking lib", expectedArgs, operationLogger) >> invocation
            1 * queue.add(invocation)
            1 * queue.setLogLocation(LOG_LOCATION)
            0 * _
        }
    
        List<String> getSoNameProp(def value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/operations/MaxWorkersTest.groovy

                    instant.worker2Ready
                    ConcurrentSpec spec = this;
                    def child2 = workerLeaseService.startWorker()
                    processor.runAll(processorWorker, { queue ->
                        queue.add(new DefaultBuildOperationQueueTest.TestBuildOperation() {
                            @Override
                            void run(BuildOperationContext buildOperationContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

    /**
     * A bounded {@linkplain BlockingQueue blocking queue} backed by an array. This queue orders
     * elements FIFO (first-in-first-out). The head of the queue is that element that has been
     * on the queue the longest time. The tail of the queue is that element that has been on
     * the queue the shortest time. New elements are inserted at the tail of the queue, and the queue
     * retrieval operations obtain elements at the head of the queue.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

            Set<Class<?>> seenInterfaces = new HashSet<>();
            Queue<Class<? super T>> queue = new ArrayDeque<Class<? super T>>();
            queue.add(clazz);
            Class<? super T> type;
            while ((type = queue.poll()) != null) {
                if (excludedTypes.contains(type)) {
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestDryRunner.java

        }
    
        @Override
        public void run(RunNotifier notifier) {
            LinkedList<Description> queue = new LinkedList<Description>();
            queue.add(runner.getDescription());
            while (!queue.isEmpty()) {
                Description description = queue.removeFirst();
                queue.addAll(description.getChildren());
                if (description.isTest()) {
                    notifier.fireTestIgnored(description);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top