Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1201 - 1210 of 2,155 for minval (0.05 sec)

  1. android/guava/src/com/google/common/primitives/UnsignedInteger.java

     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class UnsignedInteger extends Number implements Comparable<UnsignedInteger> {
      public static final UnsignedInteger ZERO = fromIntBits(0);
      public static final UnsignedInteger ONE = fromIntBits(1);
      public static final UnsignedInteger MAX_VALUE = fromIntBits(-1);
    
      private final int value;
    
      private UnsignedInteger(int value) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/UnsignedInteger.java

     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class UnsignedInteger extends Number implements Comparable<UnsignedInteger> {
      public static final UnsignedInteger ZERO = fromIntBits(0);
      public static final UnsignedInteger ONE = fromIntBits(1);
      public static final UnsignedInteger MAX_VALUE = fromIntBits(-1);
    
      private final int value;
    
      private UnsignedInteger(int value) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/login/ActionResponseCredential.java

    import org.lastaflute.web.response.ActionResponse;
    
    public class ActionResponseCredential implements LoginCredential {
    
        private final Supplier<ActionResponse> action;
    
        public ActionResponseCredential(final Supplier<ActionResponse> action) {
            this.action = action;
        }
    
        public ActionResponse execute() {
            return action.get();
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/net/UuidUtilTest.java

    public class UuidUtilTest extends TestCase {
    
        /**
         * Test method for {@link org.codelibs.core.net.UuidUtil#create()}.
         */
        public void testCreate() {
            final String uuid = UuidUtil.create();
            System.out.println(uuid);
            final String uuid2 = UuidUtil.create();
            System.out.println(uuid2);
            assertFalse(uuid.equals(uuid2));
        }
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/TestCharSource.java

    import java.io.Reader;
    
    /**
     * A char source for testing that has configurable options.
     *
     * @author Colin Decker
     */
    public class TestCharSource extends CharSource implements TestStreamSupplier {
    
      private final TestByteSource byteSource;
    
      public TestCharSource(String content, TestOption... options) {
        this.byteSource = new TestByteSource(content.getBytes(UTF_8), options);
      }
    
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/SMBProtocolDecodingException.java

    
    import jcifs.CIFSException;
    
    
    /**
     * @author mbechler
     *
     */
    public class SMBProtocolDecodingException extends CIFSException {
    
        /**
         * 
         */
        private static final long serialVersionUID = 4862398838709265475L;
    
    
        /**
         * 
         */
        public SMBProtocolDecodingException () {
            super();
        }
    
    
        /**
         * @param message
         * @param cause
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacCredentialType.java

     */
    package jcifs.pac;
    
    
    /**
     * Structure representing the PAC_CREDENTIAL_TYPE record
     * 
     * @author jbbugeau
     */
    @SuppressWarnings ( "javadoc" )
    public class PacCredentialType {
    
        private static final int MINIMAL_BUFFER_SIZE = 32;
    
        private byte[] credentialType;
    
    
        public PacCredentialType ( byte[] data ) throws PACDecodingException {
            this.credentialType = data;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/CIFSException.java

    
    /**
     * Base for all checked exceptions used by this library
     * 
     * @author mbechler
     *
     */
    public class CIFSException extends IOException {
    
        /**
         * 
         */
        private static final long serialVersionUID = 7806460518865806784L;
    
    
        /**
         * 
         */
        public CIFSException () {
            super();
        }
    
    
        /**
         * 
         * @param message
         * @param cause
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenException.java

    /**
     * Base class for all maven exceptions.
     *
     * @since 4.0.0
     */
    @Experimental
    public class MavenException extends RuntimeException {
    
        @Serial
        private static final long serialVersionUID = 9027638326336093132L;
    
        public MavenException() {}
    
        public MavenException(String message) {
            super(message);
        }
    
        public MavenException(String message, Throwable cause) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenMetadata.java

     */
    @Deprecated(since = "4.0.0")
    abstract class MavenMetadata extends AbstractMetadata implements MergeableMetadata {
    
        static final String MAVEN_METADATA_XML = "maven-metadata.xml";
    
        protected Metadata metadata;
    
        private final Path path;
    
        protected final Date timestamp;
    
        private boolean merged;
    
        @Deprecated
        protected MavenMetadata(Metadata metadata, File file, Date timestamp) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top