Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for RunAll (0.13 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

        }
    
        boolean hasNext() {
          return !tasks.isEmpty();
        }
    
        void runNext() {
          assertTrue("expected at least one task to run", hasNext());
          tasks.remove().run();
        }
    
        void runAll() {
          while (hasNext()) {
            runNext();
          }
        }
      }
    
      private FakeExecutor fakePool;
      private SequentialExecutor e;
    
      @Override
      public void setUp() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

        }
    
        boolean hasNext() {
          return !tasks.isEmpty();
        }
    
        void runNext() {
          assertTrue("expected at least one task to run", hasNext());
          tasks.remove().run();
        }
    
        void runAll() {
          while (hasNext()) {
            runNext();
          }
        }
      }
    
      private FakeExecutor fakePool;
      private SequentialExecutor e;
    
      @Override
      public void setUp() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/CrawlJob.java

                }
            }
    
            final StringBuilder resultBuf = new StringBuilder(100);
            final boolean runAll = webConfigIds == null && fileConfigIds == null && dataConfigIds == null;
    
            if (sessionId == null) { // create session id
                final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

        public void crawl(final String sessionId, final List<String> webConfigIdList, final List<String> fileConfigIdList) {
            final boolean runAll = webConfigIdList == null && fileConfigIdList == null;
            final List<WebConfig> webConfigList;
            if (runAll || webConfigIdList != null) {
                webConfigList = ComponentUtil.getCrawlingConfigHelper().getWebConfigListByIds(webConfigIdList);
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/Crawler.java

                final List<String> dataConfigIdList = options.getDataConfigIdList();
                final boolean runAll = webConfigIdList == null && fileConfigIdList == null && dataConfigIdList == null;
    
                Thread webFsCrawlerThread = null;
                Thread dataCrawlerThread = null;
    
                if (runAll || webConfigIdList != null || fileConfigIdList != null) {
                    webFsCrawlerThread = new Thread((Runnable) () -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                    }
                    tasks.register("runAll") {
                        dependsOn(problematic, basic)
                    }
                }
            """)
            withParallelThreads(3)
    
            expect:
            succeeds "runAll", "--parallel"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_plugin_test.go

    				}
    			})
    		}
    	}
    
    	t.Run("both supported", func(t *testing.T) {
    		runAll(t, bothModes)
    	})
    	t.Run("persistent supported", func(t *testing.T) {
    		runAll(t, persistentMode)
    	})
    	t.Run("ephemeral supported", func(t *testing.T) {
    		runAll(t, ephemeralMode)
    	})
    }
    
    func TestPluginNewUnmounter(t *testing.T) {
    	plug, tmpDir := newTestPlugin(t, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                return;
            }
            buildOperationExecutor.runAll(queue -> {
                VerificationEvent event;
                synchronized (verificationEvents) {
                    while ((event = verificationEvents.poll()) != null) {
                        VerificationEvent ve = event;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

        private void computeChecksumsConcurrently(SignatureVerificationService signatureVerificationService) {
            Set<String> collectedIgnoredKeys = generatePgpInfo ? Sets.newConcurrentHashSet() : null;
            buildOperationExecutor.runAll(queue -> {
                for (VerificationEntry entry : entriesToBeWritten) {
                    if (shouldSkipVerification(entry.getArtifactKind())) {
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                LOGGER.debug("Submitting {} metadata files to resolve in parallel for {}", toDownloadInParallel.size(), node);
                buildOperationExecutor.runAll(buildOperationQueue -> {
                    for (final ComponentState componentState : toDownloadInParallel) {
                        buildOperationQueue.add(new DownloadMetadataOperation(componentState));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top