Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 251 for GetOutput (0.42 sec)

  1. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/GradleExecutionResult.java

            this.tasks = tasks;
            this.throwable = throwable;
        }
    
        public BuildOperationParameters getBuildOperationParameters() {
            return buildOperationParameters;
        }
    
        public String getOutput() {
            return output;
        }
    
        public List<BuildTask> getTasks() {
            return tasks;
        }
    
        public Throwable getThrowable() {
            return throwable;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/TextReportBuilder.java

        void item(String title, Iterable<String> values);
    
        void item(String title, File value);
    
        void item(String value);
    
        void item(File value);
    
        StyledTextOutput getOutput();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 30 23:30:16 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

        // argument in the list.
        auto arg = bb.getArgument(0);
    
        auto remove_quantize_op = [&](QuantizeOp quantize_op) {
          auto quantize_output = quantize_op.getOutput();
          auto quantize_type = quantize_output.getType();
          input_types.push_back(quantize_type);
          auto new_arg = bb.addArgument(quantize_type, loc);
          quantize_output.replaceAllUsesWith(new_arg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            return new EclipseClasspathFixture(userHomeDir, new XmlParser().parse(file))
        }
    
        List<Node> getEntries() {
            return this.classpath.classpathentry as List
        }
    
        String getOutput() {
            return this.classpath.classpathentry.find { it.@kind == 'output' }.@path
        }
    
        List<String> getContainers() {
            return this.classpath.classpathentry.findAll { it.@kind == 'con' }.collect { it.@path }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItemTest.java

            assertEquals(1, stemmerOverrideItem.getId());
            assertEquals("aaa", stemmerOverrideItem.getInput());
            assertEquals("a", stemmerOverrideItem.getOutput());
            assertNull(stemmerOverrideItem.getNewInput());
            assertNull(stemmerOverrideItem.getNewOutput());
            assertFalse(stemmerOverrideItem.isUpdated());
            assertFalse(stemmerOverrideItem.isDeleted());
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignMutableWorkspaceStepTest.groovy

                return delegateResult
            }
            0 * _
    
            when:
            def output = result.getOutputAs(Object)
    
            then:
            output.get() == delegateOutput
            1 * delegateExecution.getOutput(workspace) >> delegateOutput
            0 * _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPluginExtension.java

            task.getJvmArgumentProviders().add(new JacocoAgent(extension));
            task.doFirst(new JacocoOutputCleanupTestTaskAction(
                fs,
                providers.provider(() -> extension.isEnabled() && extension.getOutput() == JacocoTaskExtension.Output.FILE),
                providers.provider(extension::getDestinationFile)
            ));
    
            // Do not cache the task if we are not writing execution data to a file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbPipeHandle.java

         * @throws CIFSException
         */
        InputStream getInput () throws CIFSException;
    
    
        /**
         * 
         * @return this pipe's output stream
         * @throws CIFSException
         */
        OutputStream getOutput () throws CIFSException;
    
    
        /**
         * {@inheritDoc}
         * 
         * @throws CIFSException
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

                        .nagUser();
    
                    return ((JvmTestSuite) testing.getSuites().findByName(JvmTestSuitePlugin.DEFAULT_TEST_SUITE_NAME)).getSources().getOutput().getClassesDirs();
                });
                test.getConventionMapping().map("classpath", () -> {
                    DeprecationLogger.deprecate("Relying on the convention for Test.classpath in custom Test tasks")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 21:08:13 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

                            .withArguments("customTask")
                            .withPluginClasspath()
                            .build();
    
                        assertTrue(result.getOutput().contains("Hello from plugin"));
                        assertTrue(result.getOutput().contains("Hello from custom task"));
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top