Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for runAnt (0.05 seconds)

  1. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/AntTask.groovy

            BuildLogger antLogger = makeLogger(stream, outputLevel)
    
            ant.project.addBuildListener(antLogger)
            try {
                runAnt(ant)
            } catch (Exception e) {
                // ant failed, so see if we have buffered output to emit, then rethrow the failure
                String buffer = outputBuffer.toString()
                if (buffer.isEmpty() == false) {
    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)
  2. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/test/AntFixture.groovy

            finalizedBy(stopTask)
        }
    
        @Override
        @Internal
        TaskProvider<AntFixtureStop> getStopTask() {
            return stopTask
        }
    
        @Override
        protected void runAnt(AntBuilder ant) {
            // reset everything
            getFileSystemOperations().delete {
                it.delete(baseDir)
            }
            cwd.mkdirs()
            final String realExecutable
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.1K bytes
    - Click Count (0)
  3. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/LicenseHeadersTask.java

            }
    
            additionalLicenses.put(categoryName + familyName, pattern);
        }
    
        @TaskAction
        public void runRat() {
            ReportConfiguration reportConfiguration = new ReportConfiguration();
            reportConfiguration.setAddingLicenses(true);
            List<IHeaderMatcher> matchers = new ArrayList<>();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 10.6K bytes
    - Click Count (0)
  4. tensorflow/c/c_api_function_test.cc

      }
    
      // Run the host graph, which now contains a function and check that
      // outputs are as expected.
      // 'T' stands for 'tensor' since the outputs are tensors, not scalars.
      void RunT(const std::vector<std::pair<TF_Operation*, TF_Tensor*>>& inputs,
                std::initializer_list<TF_Output> outputs,
                const std::vector<std::vector<int32_t>>& expected_results) {
        // Create a session for this graph
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 07 04:56:09 GMT 2026
    - 63.9K bytes
    - Click Count (1)
  5. CHANGELOG/CHANGELOG-1.21.md

    - Add missing `--kube-api-content-type` in kubemark hollow template ([#98911](https://github.com/kubernetes/kubernetes/pull/98911), [@Jeffwan](https://github.com/Jeffwan)) [SIG Scalability and Testing]
    - Avoid duplicate error messages when runing kubectl edit quota ([#98201](https://github.com/kubernetes/kubernetes/pull/98201), [@pacoxu](https://github.com/pacoxu)) [SIG API Machinery and Apps]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Click Count (0)
Back to Top