Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 251 for GetOutput (0.41 sec)

  1. src/main/java/org/codelibs/fess/job/PythonJob.java

                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("Python: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue != 0) {
                    final StringBuilder out = new StringBuilder();
                    if (processTimeout) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

            }
    
            @Override
            public ExecutionOutcome getOutcome() {
                return mode;
            }
    
            @Override
            public Object getOutput(File workspace) {
                return workOutput.getOutput(workspace);
            }
    
            @Override
            public boolean canStoreOutputsInCache() {
                return workOutput.canStoreInCache();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_op_order.cc

          return failure();
        }
        // Only push down the dequantize op when the output is smaller, so that it
        // can have smaller memory usage.
        auto input_type =
            mlir::dyn_cast<RankedTensorType>(dequantize_op.getOutput().getType());
        auto output_type = mlir::dyn_cast<RankedTensorType>(
            passthrough_op->getResult(0).getType());
        if (!input_type || !output_type ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_custom_aggregation_op_to_quant_stats.cc

        FloatAttr max = mlir::dyn_cast_or_null<FloatAttr>(op->getAttr("max"));
    
        // When there are no min and max attributes, remove op.
        if (min == nullptr || max == nullptr) {
          op.getOutput().replaceAllUsesWith(op.getInput());
          rewriter.eraseOp(op);
          return success();
        }
    
        // The layer stats contain only the first min/max pairs.
        ElementsAttr layer_stats = DenseFPElementsAttr::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/PrecompiledGroovyPluginsPlugin.java

            pluginSourceSet.getJava().srcDir(generatePluginAdapters.flatMap(GeneratePluginAdaptersTask::getPluginAdapterSourcesOutputDirectory));
            pluginSourceSet.getOutput().dir(precompilePlugins.flatMap(CompileGroovyScriptPluginsTask::getPrecompiledGroovyScriptsOutputDirectory));
            pluginSourceSet.getOutput().dir(extractPluginRequests.flatMap(ExtractPluginRequestsTask::getExtractedPluginRequestsClassesStagingDirectory));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/gradle-plugin-in-java/src/functionalTest/java/com/example/plugin/GreetingPluginFunctionalTest.java

                .withPluginClasspath()
                .withArguments("greet")
                .withProjectDir(projectDir)
                .build();
    
            // Verify the result
            assertTrue(result.getOutput().contains("Hello from plugin 'com.example.plugin.greeting'"));
        }
    
        private void writeString(File file, String string) throws IOException {
            try (Writer writer = new FileWriter(file)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/resources/org/gradle/api/resource/TextResourceIntegrationTest/shared/build.gradle

    class MyTask extends DefaultTask {
        @Nested
        TextResource config
    
        @OutputFile
        File output
    
        @TaskAction
        void generate() {
            getOutput().text = getConfig().asString()
        }
    }
    
    def generateConfigFile = tasks.register("generateConfigFile") {
        outputs.file "config.txt"
        doLast {
            file("config.txt").text = "my config"
        }
    }
    
    task generateConfigZip(type: Zip) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 27 20:48:11 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

            tensor_proto_attr.getValue(),
            mlir::dyn_cast<TensorType>(ToLegalType(op.getOutput().getType())));
        if (failed(dense_attr_or)) {
          op->emitError("failed to get DenseElementAttr.");
          return failure();
        }
    
        rewriter.replaceOpWithNewOp<TF::ConstOp>(
            op, ToLegalType(op.getOutput().getType()), *dense_attr_or);
        return success();
      }
    };
    
    struct ConvertTFQuantTypes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/java/junit/PluginFunctionalTest.java.template

            runner.withArguments("greeting");
            runner.withProjectDir(projectDir);
            BuildResult result = runner.build();
    
            // Verify the result
            assertTrue(result.getOutput().contains("Hello from plugin '${pluginId.value}'"));
        }
    
        private void writeString(File file, String string) throws IOException {
            try (Writer writer = new FileWriter(file)) {
                writer.write(string);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServices.java

            variant.getAttributes().attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objectFactory.named(LibraryElements.class, LibraryElements.RESOURCES));
            DefaultSourceSetOutput output = Cast.uncheckedCast(sourceSet.getOutput());
            DefaultSourceSetOutput.DirectoryContribution resourcesContribution = output.getResourcesContribution();
            if (resourcesContribution != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top