Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 251 for GetOutput (0.18 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/internal/graph/GraphRenderer.java

            if (prefix.length() == 0) {
                seenRootChildren = false;
            } else {
                prefix.setLength(prefix.length() - 5);
            }
        }
    
        public StyledTextOutput getOutput() {
            return output;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

        SmbPipeInputStream getInput () throws CIFSException;
    
    
        /**
         * 
         * @return this pipe's output stream
         * @throws SmbException
         * @throws
         */
        @Override
        SmbPipeOutputStream getOutput () throws CIFSException;
    
    
        /**
         * @return tree connection
         * @throws SmbException
         * @throws CIFSException
         */
        SmbTreeHandleInternal ensureTreeConnected () throws CIFSException;
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/ProjectsPageRenderer.java

            final String cssLink = builder.requireResource(getClass().getResource("/org/gradle/api/tasks/diagnostics/htmldependencyreport/style.css"));
    
            new Html(builder.getOutput()) {{
                html();
                    head();
                        meta().httpEquiv("Content-Type").content("text/html; charset=utf-8");
                        meta().httpEquiv("x-ua-compatible").content("IE=edge");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 03 18:14:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top