Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 206 for GetOutput (0.39 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DefaultExecOutput.java

        }
    
        @Override
        public StandardStreamContent getStandardOutput() {
            return new DefaultStandardStreamContent(dataProvider.map(transformer(ExecOutputData::getOutput)));
        }
    
        @Override
        public StandardStreamContent getStandardError() {
            return new DefaultStandardStreamContent(dataProvider.map(transformer(ExecOutputData::getError)));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceDirectoryOutputCrossVersionSpec.groovy

            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.sourceDirectories.size() == 1
            project.sourceDirectories[0].getOutput() == null
        }
    
        def "Source directory has output specified"() {
            setup:
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
            """apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                }
    
                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("Exit Code: {} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue == 143 && mt.isTeminated()) {
                    throw new CommandExecutionException("The command execution is timeout: " + String.join(" ", commands));
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      return InferTensorSize(
          context, mlir::cast<mlir::TensorType>(op.getOutput().getType()));
    }
    
    // The cost function for tf.SparseSegmentSumOp.
    template <typename OpType>
    int64_t InferSparseSegmentOpCost(const CostContext& context, OpType op) {
      return InferTensorSize(
          context, mlir::cast<mlir::TensorType>(op.getOutput().getType()));
    }
    
    // CostFunctionRegistry is a map from op names to their cost functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/InputStreamThread.java

                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to process an input stream.", e);
                    }
                }
            }
        }
    
        public String getOutput() {
            final StringBuilder buf = new StringBuilder(100);
            for (final String value : list) {
                buf.append(value).append("\n");
            }
            return buf.toString();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/test/java/org/gradle/api/plugins/jvm/internal/DefaultJvmLanguageUtilitiesTest.groovy

                it.compiledWithJava {
                    it.targetCompatibility = '8'
                }
            }
    
            then:
            _ * sourceSet.getName() >> 'main'
            1 * sourceSet.getOutput() >> sourceSetOutput
            1 * sourceSetOutput.getGeneratedSourcesDirs() >> Stub(ConfigurableFileCollection)
            1 * sourceSetOutput.getClassesDirs() >> Stub(ConfigurableFileCollection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:34:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                // Dependencies
                ideaModule.dependsOn((Callable<FileCollection>) () ->
                    mainFeature.getSourceSet().getOutput().getDirs().plus(defaultTestSuite.getSources().getOutput().getDirs())
                );
            });
    
            // Defaults
            setupScopes(mainFeature, defaultTestSuite);
    
            // Convention
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

            this.dumpOnExit = dumpOnExit;
        }
    
        /**
         * The type of output to generate. Defaults to {@link Output#FILE}.
         */
        @Input
        public Output getOutput() {
            return output;
        }
    
        public void setOutput(Output output) {
            this.output = output;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top