Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,618 for constructors (0.34 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     * developers are saved from the hassles of encoding and decoding.
     *
     * ### Plus a modern API
     *
     * The URL (JDK1.0) and URI (Java 1.4) classes predate builders and instead use telescoping
     * constructors. For example, there's no API to compose a URI with a custom port without also
     * providing a query and fragment.
     *
     * Instances of [HttpUrl] are well-formed and always have a scheme, host, and path. With
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.32.md

    - Fake clientsets now use a common, generic implementation. The corresponding structs are now private; callers must use the corresponding constructors. ([#126503](https://github.com/kubernetes/kubernetes/pull/126503), [@skitt](https://github.com/skitt)) [SIG API Machinery, Architecture, Auth and Instrumentation]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /** The status code of the response. */
            protected int status;
    
            /**
             * Default constructor for ApiResponse.
             */
            public ApiResponse() {
                // Default constructor
            }
    
            /**
             * Sets the status of the response.
             * @param status The status to set.
             * @return This ApiResponse instance.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

    import jcifs.smb1.dcerpc.ndr.NdrObject;
    
    /**
     * Server Service RPC interface implementation for remote server administration (SMB1).
     */
    public class srvsvc {
    
        /**
         * Private constructor to prevent instantiation.
         */
        private srvsvc() {
        }
    
        /**
         * Gets the RPC interface syntax string.
         * @return the interface UUID and version
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/samr.java

         * Contains the relative ID and name of a SAM object.
         */
        public static class SamrSamEntry extends NdrObject {
    
            /**
             * Default constructor for SamrSamEntry.
             */
            public SamrSamEntry() {
                // Default constructor
            }
    
            /** The relative ID (RID) of the SAM entry */
            public int idx;
            /** The name of the SAM entry */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

         * Contains the relative ID and name of a SAM object.
         */
        public static class SamrSamEntry extends NdrObject {
    
            /**
             * Default constructor for SamrSamEntry.
             */
            public SamrSamEntry() {
                // Default constructor
            }
    
            /** The relative ID (RID) of the SAM entry */
            public int idx;
            /** The name of the SAM entry */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SMBSignatureValidationException.java

     *
     * @author mbechler
     *
     */
    public class SMBSignatureValidationException extends SmbException {
    
        /**
         * Default constructor for SMB signature validation exception.
         */
        public SMBSignatureValidationException() {
        }
    
        /**
         * Constructs an SMB signature validation exception with message and cause.
         *
         * @param msg the detail message describing the validation failure
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

    import jcifs.dcerpc.ndr.NdrObject;
    
    /**
     * Server Service RPC interface implementation for remote server administration
     */
    @SuppressWarnings("all")
    public class srvsvc {
    
        /**
         * Private constructor to prevent instantiation.
         */
        private srvsvc() {
        }
    
        /**
         * Gets the RPC interface syntax string.
         * @return the interface UUID and version
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

     * Provides structures and methods for DFS management and enumeration.
     */
    @SuppressWarnings("all")
    public class netdfs {
    
        /**
         * Default constructor for netdfs
         */
        public netdfs() {
            // Default constructor
        }
    
        /**
         * Gets the DCE/RPC syntax identifier for the DFS interface
         * @return the syntax identifier string
         */
        public static String getSyntax() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.8K bytes
    - Viewed (0)
Back to top