Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,618 for constructors (0.45 sec)

  1. android/guava/src/com/google/common/base/internal/Finalizer.java

      private final ReferenceQueue<Object> queue;
    
      // By preference, we will use the Thread constructor that has an `inheritThreadLocals` parameter.
      // But before Java 9, our only way not to inherit ThreadLocals is to zap them after the thread
      // is created, by accessing a private field.
      private static final @Nullable Constructor<Thread> bigThreadConstructor =
          getBigThreadConstructor();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

     * flags is necessary to distinguish which type of Named Pipe behavior
     * is desired.
     *
     * <table border="1">
     * <caption>SmbNamedPipe Constructor Examples</caption>
     * <tr>
     * <td colspan="2"><b><code>SmbNamedPipe</code> Constructor Examples</b></td>
     * <tr><td ><b>Code Sample</b></td><td><b>Description</b></td></tr>
     * <tr><td ><pre>
     * new SmbNamedPipe( "smb1://server/IPC$/PIPE/foo",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java

        private int[] ciphers;
    
        /**
         * Constructs an encryption negotiate context.
         *
         * @param config the configuration (currently unused)
         * @param ciphers array of encryption cipher IDs to negotiate
         */
        public EncryptionNegotiateContext(final Configuration config, final int ciphers[]) {
            this.ciphers = ciphers;
        }
    
        /**
         * Default constructor for decoding.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenBuilderException.java

        /**
         * The collection of problems associated with this exception.
         */
        private final ProblemCollector<BuilderProblem> problems;
    
        /**
         * Constructs a new exception with the specified message and cause.
         * This constructor creates an empty problem collector.
         *
         * @param message the detail message
         * @param cause the cause of this exception
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java

     */
    @ExtendWith(MockitoExtension.class)
    @DisplayName("NdrShort Test Suite")
    class NdrShortTest {
    
        @Mock
        private NdrBuffer mockBuffer;
    
        @Nested
        @DisplayName("Constructor Tests")
        class ConstructorTests {
    
            @ParameterizedTest
            @DisplayName("Should mask input values with 0xFF correctly")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/fscc/FileBasicInfo.java

        private long lastAccessTime;
        private long lastWriteTime;
        private long changeTime;
        private int attributes;
    
        /**
         * Default constructor for decoding.
         */
        public FileBasicInfo() {
        }
    
        /**
         * Constructs file basic information.
         *
         * @param create file creation time
         * @param lastAccess last access time
         * @param lastWrite last write time
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java

            this.compressionAlgorithms = compressionAlgorithms != null ? compressionAlgorithms.clone() : new int[0];
            this.flags = flags;
        }
    
        /**
         * Default constructor for response parsing.
         */
        public CompressionNegotiateContext() {
            this.compressionAlgorithms = new int[0];
            this.flags = 0;
        }
    
        @Override
        public int getContextType() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/fscc/FileRenameInformation2.java

    public class FileRenameInformation2 implements FileInformation {
    
        private boolean replaceIfExists;
        private String fileName;
    
        /**
         * Default constructor for decoding.
         */
        public FileRenameInformation2() {
        }
    
        /**
         * Constructs file rename information.
         *
         * @param name the new file name
         * @param replaceIfExists whether to replace if the target file exists
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

     * Provides structures and methods for DFS management and enumeration.
     */
    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.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/spnego/NegTokenInit.java

        private ASN1ObjectIdentifier[] mechanisms;
    
        private int contextFlags;
    
        /**
         * Default constructor for NegTokenInit
         */
        public NegTokenInit() {
        }
    
        /**
         * Constructs a NegTokenInit with the specified parameters
         * @param mechanisms the array of supported authentication mechanisms
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top