Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 399 for msgs (0.01 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            String msg = indent + artifact;
            msg += " (";
            if (replacement.getVersion() != null) {
                msg += "applying version: " + replacement.getVersion() + ";";
            }
            if (replacement.getScope() != null) {
                msg += "applying artifactScope: " + replacement.getScope();
            }
            msg += ")";
            logger.debug(msg);
        }
    
        @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. cmd/logging.go

    	}
    }
    
    func iamLogEvent(ctx context.Context, msg string, args ...any) {
    	logger.Event(ctx, "iam", msg, args...)
    }
    
    func rebalanceLogIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "rebalance", err, errKind...)
    }
    
    func rebalanceLogEvent(ctx context.Context, msg string, args ...any) {
    	logger.Event(ctx, "rebalance", msg, args...)
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java

                // Act
                MsrpcSamrConnect2 msg = new MsrpcSamrConnect2(systemName, accessMask, ph);
    
                // Assert - instance should be created and extend proper class
                assertNotNull(msg);
                assertTrue(msg instanceof samr.SamrConnect2);
                assertTrue(msg instanceof DcerpcMessage);
            }
        }
    
        @Nested
        @DisplayName("Edge case handling")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionAggregation.java

                String msg = "The value should not be null: variableName=null value=" + value;
                throw new IllegalArgumentException(msg);
            }
            if (value == null) {
                String msg = "The value should not be null: variableName=" + variableName;
                throw new IllegalArgumentException(msg);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/UnsupportedSearchException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new UnsupportedSearchException with the specified message.
         *
         * @param msg the exception message
         */
        public UnsupportedSearchException(final String msg) {
            super(msg);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  6. gradlew

        echo "$*"
        echo
        exit 1
    } >&2
    
    # OS specific support (must be 'true' or 'false').
    cygwin=false
    msys=false
    darwin=false
    nonstop=false
    case "$( uname )" in                #(
      CYGWIN* )         cygwin=true  ;; #(
      Darwin* )         darwin=true  ;; #(
      MSYS* | MINGW* )  msys=true    ;; #(
      NONSTOP* )        nonstop=true ;;
    esac
    
    CLASSPATH="\\\"\\\""
    
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java

        void testSetAndGetFlags(int value) {
            msg.setFlags(value);
            assertEquals(value, msg.getFlags(), "getFlags should return the value set");
        }
    
        @Test
        @DisplayName("setFlag true sets the bit")
        void testSetFlagTrue() {
            msg.setFlag(0x4, true);
            assertTrue(msg.getFlag(0x4), "Bit should be set after setFlag(true)");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/util/transport/TransportException.java

         */
        public TransportException() {
        }
    
        /**
         * Constructs a new TransportException with the specified detail message.
         * @param msg the detail message
         */
        public TransportException(final String msg) {
            super(msg);
        }
    
        /**
         * Constructs a new TransportException with the specified cause.
         * @param rootCause the cause of this exception
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbException.java

         *
         * @param msg the detail message
         */
        public SmbException(final String msg) {
            super(msg);
            this.status = NT_STATUS_UNSUCCESSFUL;
        }
    
        /**
         * Constructs an SmbException with the specified detail message and root cause
         *
         * @param msg the detail message
         * @param rootCause the underlying cause of this exception
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbUnsupportedOperationException.java

        }
    
        /**
         * Constructs a new SmbUnsupportedOperationException with the specified message
         * @param msg the detail message
         */
        public SmbUnsupportedOperationException(final String msg) {
            super(msg);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top