Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for executeTask (0.06 seconds)

  1. android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

            returnValue += listenerLatch.getCount();
          }
          returnValue += listenerLatch.getCount();
        }
        return returnValue;
      }
    
      private final Runnable executeTask =
          new Runnable() {
            @Override
            public void run() {
              list.execute();
            }
          };
    
      @Benchmark
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jul 16 17:42:14 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/AntTask.groovy

        @Inject
        protected FileSystemOperations getFileSystemOperations() {
            throw new UnsupportedOperationException();
        }
    
        @TaskAction
        final void executeTask() {
            AntBuilder ant = new AntBuilder()
    
            // remove existing loggers, we add our own
            List<BuildLogger> toRemove = new ArrayList<>();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.4K bytes
    - Click Count (0)
  3. guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

            returnValue += listenerLatch.getCount();
          }
          returnValue += listenerLatch.getCount();
        }
        return returnValue;
      }
    
      private final Runnable executeTask =
          new Runnable() {
            @Override
            public void run() {
              list.execute();
            }
          };
    
      @Benchmark
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jul 16 17:42:14 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ValidateChangelogEntryTask.java

            this.changelogs = objectFactory.fileCollection();
            this.projectLayout = projectLayout;
        }
    
        @TaskAction
        public void executeTask() {
            final URI rootDir = projectLayout.getProjectDirectory().getAsFile().toURI();
            final Map<String, ChangelogEntry> changelogs = this.changelogs.getFiles()
                .stream()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3.3K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/PruneChangelogsTask.java

        public void setDryRun(boolean dryRun) {
            this.dryRun = dryRun;
        }
    
        @TaskAction
        public void executeTask() {
            findAndDeleteFiles(
                this.gitWrapper,
                files -> files.stream().filter(each -> each.delete() == false).collect(Collectors.toSet()),
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 6.6K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GenerateReleaseNotesTask.java

            releaseHighlightsFile = objectFactory.fileProperty();
            breakingChangesFile = objectFactory.fileProperty();
    
            gitWrapper = new GitWrapper(execOperations);
        }
    
        @TaskAction
        public void executeTask() throws IOException {
            if (needsGitTags(VersionProperties.getElasticsearch())) {
                findAndUpdateUpstreamRemote(gitWrapper);
            }
    
            LOGGER.info("Finding changelog files...");
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 12.9K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy

        ConfigurableFileTree docs
    
        /**
         * Substitutions done on every snippet's contents.
         */
        @Input
        Map<String, String> defaultSubstitutions = [:]
    
        @TaskAction
        void executeTask() {
            /*
             * Walks each line of each file, building snippets as it encounters
             * the lines that make up the snippet.
             */
            for (File file: docs) {
                String lastLanguage
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 10:08:26 GMT 2021
    - 17.8K bytes
    - Click Count (0)
  8. src/test/java/jcifs/ACETest.java

                // Execute permission
                int executeMask = ACE.FILE_EXECUTE | ACE.FILE_READ_ATTRIBUTES | ACE.READ_CONTROL;
                assertTrue((executeMask & ACE.FILE_EXECUTE) != 0, "Execute should include FILE_EXECUTE");
                assertFalse((executeMask & ACE.FILE_WRITE_DATA) != 0, "Execute should not include write access");
            }
    
            @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 24.4K bytes
    - Click Count (0)
Back to Top