Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 665 for leves (0.03 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

             * Enumeration data object corresponding to the level
             */
            public NdrObject e;
    
            @Override
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_long(this.level);
                final int _descr = this.level;
                _dst.enc_ndr_long(_descr);
                _dst.enc_ndr_referent(this.e, 1);
    
                if (this.e != null) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jConfiguration.java

     * implementation.
     *
     * @since 3.1.0
     */
    public interface Slf4jConfiguration {
        /**
         * Level
         */
        enum Level {
            DEBUG,
            INFO,
            ERROR
        }
    
        /**
         * Set root logging level.
         *
         * @param level the level
         */
        void setRootLoggerLevel(Level level);
    
        /**
         * Activate logging implementation configuration (if necessary).
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/LogStream.java

        /**
         * The current logging level.
         */
        public static int level = 1;
    
        /**
         * Constructs a LogStream with the specified output stream.
         *
         * @param stream the output stream for logging
         */
        public LogStream(final PrintStream stream) {
            super(stream);
        }
    
        /**
         * Sets the logging level.
         *
         * @param level the logging level to set
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <Configuration status="WARN">
    
    	<Properties>
    		<Property name="domain.name" value="${sys:fess.log.name:-fess}" />
    		<Property name="log.level" value="${sys:fess.log.level:-info}" />
    		<Property name="root.log.level" value="${sys:fess.log.level:-warn}" />
    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <Configuration status="WARN">
    
    	<Properties>
    		<Property name="domain.name" value="${sys:fess.log.name:-fess}" />
    		<Property name="log.level" value="${sys:fess.log.level:-info}" />
    		<Property name="root.log.level" value="${sys:fess.log.level:-warn}" />
    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/logging/impl/LogbackConfiguration.java

        @Override
        public void setRootLoggerLevel(Level level) {
            ch.qos.logback.classic.Level value =
                    switch (level) {
                        case DEBUG -> ch.qos.logback.classic.Level.DEBUG;
                        case INFO -> ch.qos.logback.classic.Level.INFO;
                        default -> ch.qos.logback.classic.Level.ERROR;
                    };
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 17 09:56:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. .github/workflows/build.yml

            with:
              api-level: ${{ matrix.api-level }}
              arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}
              script: ./gradlew :android-test:connectedCheck
            env:
              API_LEVEL: ${{ matrix.api-level }}
    
          - name: Run Release Tests
            uses: reactivecircus/android-emulator-runner@v2
            with:
              api-level: ${{ matrix.api-level }}
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 12 04:49:37 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/logging/Slf4jLogger.java

        public Slf4jLogger(org.slf4j.Logger logger) {
            this.logger = requireNonNull(logger, "logger");
        }
    
        @Override
        public void log(Level level, String message, Throwable error) {
            requireNonNull(level, "level");
            requireNonNull(message, "message");
            switch (level) {
                case ERROR -> logger.error(message, error);
                case WARN -> logger.warn(message, error);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 31 20:56:58 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CliUtils.java

                    }
                }
                return null;
            };
        }
    
        public static int toMavenExecutionRequestLoggingLevel(Slf4jConfiguration.Level level) {
            requireNonNull(level, "level");
            return switch (level) {
                case DEBUG -> MavenExecutionRequest.LOGGING_LEVEL_DEBUG;
                case INFO -> MavenExecutionRequest.LOGGING_LEVEL_INFO;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 13 18:30:29 UTC 2025
    - 5K bytes
    - Viewed (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/logging/SystemLogger.java

            }
            return new PrintStream(outputStream, true);
        }
    
        @Override
        public void log(Level level, String message, Throwable error) {
            requireNonNull(level, "level");
            requireNonNull(message, "message");
            if (level.ordinal() >= threshold.ordinal()) {
                out.println("[" + level.name() + "] " + message);
                if (error != null) {
                    error.printStackTrace(out);
                }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Feb 08 16:25:25 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top