Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for logFile (0.05 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java

            try (Invoker<R> invoker = createInvoker()) {
                for (String goal : goals) {
                    Path logFile = cwd.resolve(goal + "-build.log").toAbsolutePath();
                    int exitCode = invoker.invoke(parser.parse(ParserRequest.mvn(
                                    List.of("-l", logFile.toString(), goal),
                                    new ProtoLogger(),
                                    new JLineMessageBuilderFactory())
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            O options = context.invokerRequest.options();
            if (options.logFile().isPresent()) {
                Path logFile = context.cwdResolver.apply(options.logFile().get());
                try {
                    PrintWriter printWriter = new PrintWriter(Files.newBufferedWriter(logFile));
                    context.closeables.add(printWriter);
                    return printWriter::println;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/forked/DefaultForkedMavenInvoker.java

                cmdAndArguments.add(mavenOptions.altInstallationToolchains().get());
            }
            if (mavenOptions.logFile().isPresent()) {
                cmdAndArguments.add("--log-file");
                cmdAndArguments.add(mavenOptions.logFile().get());
            }
            if (mavenOptions.color().isPresent()) {
                cmdAndArguments.add("--color");
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java

        public Optional<String> altInstallationToolchains() {
            return returnFirstPresentOrEmpty(Options::altInstallationToolchains);
        }
    
        @Override
        public Optional<String> logFile() {
            return returnFirstPresentOrEmpty(Options::logFile);
        }
    
        @Override
        public Optional<Boolean> rawStreams() {
            return returnFirstPresentOrEmpty(Options::rawStreams);
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java

        /**
         * Returns the path to the log file.
         *
         * @return an {@link Optional} containing the file path, or empty if not set
         */
        @Nonnull
        Optional<String> logFile();
    
        /**
         * Returns whether raw streams should be logged.
         *
         * @return a boolean indicating whether raw streams should be logged
         */
        @Nonnull
        Optional<Boolean> rawStreams();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Oct 22 14:53:58 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // LOG STREAMS
            if (commandLine.hasOption(CLIManager.LOG_FILE)) {
                File logFile = new File(commandLine.getOptionValue(CLIManager.LOG_FILE));
                logFile = resolveFile(logFile, cliRequest.workingDirectory);
    
                // redirect stdout and stderr to file
                try {
                    PrintStream ps = new PrintStream(new FileOutputStream(logFile));
                    System.setOut(ps);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

            }
            return Optional.empty();
        }
    
        @Override
        public Optional<String> logFile() {
            if (commandLine.hasOption(CLIManager.LOG_FILE)) {
                return Optional.of(commandLine.getOptionValue(CLIManager.LOG_FILE));
            }
            return Optional.empty();
        }
    
        @Override
        public Optional<Boolean> rawStreams() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    logging.search.docs.enabled=true
    logging.search.docs.fields=filetype,created,click_count,title,doc_id,url,score,site,filename,host,digest,boost,mimetype,favorite_count,_id,lang,last_modified,content_length,timestamp
    logging.search.use.logfile=true
    logging.app.packages=org.codelibs,org.dbflute,org.lastaflute
    
    # ========================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'logging.search.use.logfile'. <br>
         * The value is, e.g. true <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLoggingSearchUseLogfile();
    
        /**
         * Is the property for the key 'logging.search.use.logfile' true? <br>
         * The value is, e.g. true <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
  10. docs/site-replication/run-multi-site-oidc.sh

    	exit_1
    fi
    
    # create a bucket bucket2 on minio1.
    ./mc mb minio1/bucket2
    
    ./mc mb minio1/newbucket
    
    # copy large upload to newbucket on minio1
    truncate -s 17M lrgfile
    expected_checksum=$(cat ./lrgfile | md5sum)
    
    ./mc cp ./lrgfile minio1/newbucket
    sleep 5
    ./mc stat --no-list minio2/newbucket
    if [ $? -ne 0 ]; then
    	echo "expecting bucket to be present. exiting.."
    	exit_1
    fi
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top